79694084

Date: 2025-07-08 10:40:58
Score: 2.5
Natty:
Report link

I had the same issue while connecting with a data blend. I figured that it was due to the wrong join conditions.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jasmine Dsouza

79694079

Date: 2025-07-08 10:36:57
Score: 1.5
Natty:
Report link
# Add these 
chart.x_axis.delete = False
chart.y_axis.delete = False

I had the exact same issue. For some reason you have to specify not to delete them.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Skyler Considine

79694074

Date: 2025-07-08 10:32:56
Score: 2
Natty:
Report link

The question is not the most recent one, but wanted to add d3, if you want to have total control over functionality and look of your node graph. The learning curve is somewhat steep, but the library is quite powerful.

Check this out https://d3-graph-gallery.com/network.html

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: dunecat

79694071

Date: 2025-07-08 10:31:55
Score: 3
Natty:
Report link

I have succeded updating Description attribute using this as a reference

https://aps.autodesk.com/blog/write-description-attribute-file-item-acc-and-bim360

But eventhough it's menitioned in the blog that it's possible to read the description attribute using one of the two methods mentioned, I am not able to get any description from acc

Reasons:
  • Blacklisted phrase (1): I am not able to
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dr. Mob

79694070

Date: 2025-07-08 10:31:55
Score: 3
Natty:
Report link

I guess if you try to use item-value and do not set the item-key you will see the result you desired.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Goli

79694066

Date: 2025-07-08 10:27:54
Score: 2.5
Natty:
Report link

Follow the documentation below if anyone faces a problem with Chakra UI installation in React.js
Chakra UI installation for React JS

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ajaya Kumar Behera

79694062

Date: 2025-07-08 10:22:53
Score: 0.5
Natty:
Report link

I found myself banging my head for quite a while to manage to make timescaledb extension work on a Mac M2. But using your instructions and looking into what the official script for moving the file does I manage to finally make it work and run smoothly

For whoever is stuck in a similar way here is what was wrong on my setup and what made it succeed:

- macOs 15.5 on Apple Silicon M2

- Postgres version 17 with Postgres App

- Timescaledb version 2.20.3

Your step 3.2 was always failing for me, first because on this line:

/usr/bin/install -c -m 755 $(find /opt/homebrew/Cellar/timescaledb/2.20.3/lib/timescaledb/postgresql/ -name "timescaledb*.so")  /Applications/Postgres.app/Contents/Versions/17/lib/postgresql

I had to specify the postgresql version at the homebrew location, like this:

/usr/bin/install -c -m 755 $(find /opt/homebrew/Cellar/timescaledb/2.7.2/lib/timescaledb/postgresql@17/ -name "timescaledb*.so")  /Applications/Postgres.app/Contents/Versions/17/lib/postgresql

And then the error was that no matter how I installed Timescaledb, the .so files was nowhere to be found. In the original script (which has the wrong paths, as it assumes you are running postgres from homebrew) it uses the correct file extension.

What fixed it, was to change the line to this:

/usr/bin/install -c -m 755 $(find /opt/homebrew/Cellar/timescaledb/2.20.3/lib/timescaledb/postgresql@17/ -name "timescaledb*.dylib")  /Applications/Postgres.app/Contents/Versions/17/lib/postgresql

I hope this can help someone else who has a similar setup or is having the same error. Not sure it is a Apple Silicon M2 difference or something that timescale itself changed.

Reasons:
  • Whitelisted phrase (-1): hope this can help
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): having the same error
  • Low reputation (0.5):
Posted by: killerkiara

79694047

Date: 2025-07-08 10:12:50
Score: 2.5
Natty:
Report link

thank you so much for your solution, I follow your solution, but always get error when try to create deploy app

# AWS CodeDeploy blue/green application and deployment group

# IAM role for CodeDeploy
data "aws_iam_policy_document" "codedeploy_assume_role" {
  statement {
    effect = "Allow"
    principals {
      type        = "Service"
      identifiers = ["codedeploy.amazonaws.com"]
    }
    actions = ["sts:AssumeRole"]
  }
}

resource "aws_iam_role" "codedeploy" {
  name               = "${var.base_name}-codedeploy-role"
  assume_role_policy = data.aws_iam_policy_document.codedeploy_assume_role.json
}

resource "aws_iam_role_policy_attachment" "codedeploy_service" {
  role       = aws_iam_role.codedeploy.name
  policy_arn = "arn:aws:iam::aws:policy/service-role/AWSCodeDeployRole"
}

# CodeDeploy application
resource "aws_codedeploy_app" "bluegreen" {
  name             = "${var.base_name}-codedeploy-app"
  compute_platform = "Server"
}

# CodeDeploy deployment group
resource "aws_codedeploy_deployment_group" "bluegreen" {
  app_name              = aws_codedeploy_app.bluegreen.name
  deployment_group_name = "${var.base_name}-bluegreen-dg"
  service_role_arn      = aws_iam_role.codedeploy.arn
  deployment_config_name = "CodeDeployDefault.AllAtOnce"

  deployment_style {
    deployment_type   = "BLUE_GREEN"
    deployment_option = "WITH_TRAFFIC_CONTROL"
  }

  load_balancer_info {
    target_group_pair_info {
      prod_traffic_route {
        listener_arns = [var.prod_listener_arn]
      }

      test_traffic_route {
        listener_arns = [var.test_listener_arn]
      }
      
      target_group {
        name = data.aws_lb_target_group.blue.name
        # arn  = data.aws_lb_target_group.blue.arn
      }

      target_group {
        name = data.aws_lb_target_group.green.name
        # arn  = data.aws_lb_target_group.green.arn
      }
    }
}

  autoscaling_groups = [
    var.blue_asg_name,
    var.green_asg_name,
  ]

  blue_green_deployment_config {
    deployment_ready_option {
      action_on_timeout = "CONTINUE_DEPLOYMENT"
    }
    green_fleet_provisioning_option {
    #   action = "COPY_AUTO_SCALING_GROUP"
        action = "DISCOVER_EXISTING"
    }
    terminate_blue_instances_on_deployment_success {
      action                          = "TERMINATE"
      termination_wait_time_in_minutes = 5
    }
  }

  auto_rollback_configuration {
    enabled = true
    events  = ["DEPLOYMENT_FAILURE"]
  }

  depends_on = [aws_iam_role_policy_attachment.codedeploy_service]
}

# Data sources for the blue and green ALB target groups
data "aws_lb_target_group" "blue" {
  name = var.blue_tg_name
}

data "aws_lb_target_group" "green" {
  name = var.green_tg_name
}

# Debug outputs
output "blue_tg_info" {
  value = data.aws_lb_target_group.blue
}

output "green_tg_info" {
  value = data.aws_lb_target_group.green
}

output "asg_info" {
  value = var.green_asg_name
}

and the error

$ terragrunt apply
INFO[0005] Downloading Terraform configurations from file:///home/freedom/00_work/biz/Cloud-VMS-Auto-Deploy_vscode/IASecurityIaC into /home/freedom/00_work/biz/Cloud-VMS-Auto-Deploy_vscode/IASecurityIaC/non-prod/ap-northeast-1/cloud_qc/codedeploy/.terragrunt-cache/8oSkZEgW4QC-Cp76Tua2Cl8nT2U/gGv3eEtvBft_C1hxVM5RhtucZMg 
Initializing the backend...

Successfully configured the backend "s3"! Terraform will automatically
use this backend unless the backend configuration changes.
Initializing provider plugins...
- Finding hashicorp/aws versions matching "~> 6.0.0"...
- Installing hashicorp/aws v6.0.0...
- Installed hashicorp/aws v6.0.0 (signed by HashiCorp)
Terraform has created a lock file .terraform.lock.hcl to record the provider
selections it made above. Include this file in your version control repository
so that Terraform can guarantee to make the same selections by default when
you run "terraform init" in the future.

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
data.aws_lb_target_group.green: Reading...
data.aws_iam_policy_document.codedeploy_assume_role: Reading...
data.aws_lb_target_group.blue: Reading...
aws_codedeploy_app.bluegreen: Refreshing state... [id=48d7cc00-af33-4443-872d-0eebdb0aeba5:cloud-cloud-qc-codedeploy-app]
data.aws_iam_policy_document.codedeploy_assume_role: Read complete after 0s [id=4250039221]
aws_iam_role.codedeploy: Refreshing state... [id=cloud-cloud-qc-codedeploy-role]
data.aws_lb_target_group.blue: Read complete after 0s [id=arn:aws:elasticloadbalancing:ap-northeast-1:553137501913:targetgroup/cloud-cloud-qc-blue-tg/6cd5ba0e31e504a9]
data.aws_lb_target_group.green: Read complete after 0s [id=arn:aws:elasticloadbalancing:ap-northeast-1:553137501913:targetgroup/cloud-cloud-qc-green-tg/f02e16da413ba528]
aws_iam_role_policy_attachment.codedeploy_service: Refreshing state... [id=cloud-cloud-qc-codedeploy-role-20250708032614888900000001]

Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
  + create

Terraform will perform the following actions:

  # aws_codedeploy_deployment_group.bluegreen will be created
  + resource "aws_codedeploy_deployment_group" "bluegreen" {
      + app_name                    = "cloud-cloud-qc-codedeploy-app"
      + arn                         = (known after apply)
      + autoscaling_groups          = [
          + "cloud-cloud-qc-blue-asg",
          + "cloud-cloud-qc-green-asg",
        ]
      + compute_platform            = (known after apply)
      + deployment_config_name      = "CodeDeployDefault.AllAtOnce"
      + deployment_group_id         = (known after apply)
      + deployment_group_name       = "cloud-cloud-qc-bluegreen-dg"
      + id                          = (known after apply)
      + outdated_instances_strategy = "UPDATE"
      + region                      = "ap-northeast-1"
      + service_role_arn            = "arn:aws:iam::553137501913:role/cloud-cloud-qc-codedeploy-role"
      + tags_all                    = (known after apply)
      + termination_hook_enabled    = false

      + auto_rollback_configuration {
          + enabled = true
          + events  = [
              + "DEPLOYMENT_FAILURE",
            ]
        }

      + blue_green_deployment_config {
          + deployment_ready_option {
              + action_on_timeout = "CONTINUE_DEPLOYMENT"
            }
          + green_fleet_provisioning_option {
              + action = "DISCOVER_EXISTING"
            }
          + terminate_blue_instances_on_deployment_success {
              + action                           = "TERMINATE"
              + termination_wait_time_in_minutes = 5
            }
        }

      + deployment_style {
          + deployment_option = "WITH_TRAFFIC_CONTROL"
          + deployment_type   = "BLUE_GREEN"
        }

      + load_balancer_info {
          + target_group_pair_info {
              + prod_traffic_route {
                  + listener_arns = [
                      + "arn:aws:elasticloadbalancing:ap-northeast-1:553137501913:listener/app/cloud-cloud-qc-alb/9314f6ccb72ed9a4/204a8b3c82c99e93",
                    ]
                }
              + target_group {
                  + name = "cloud-cloud-qc-blue-tg"
                }
              + target_group {
                  + name = "cloud-cloud-qc-green-tg"
                }
              + test_traffic_route {
                  + listener_arns = [
                      + "arn:aws:elasticloadbalancing:ap-northeast-1:553137501913:listener/app/cloud-cloud-qc-alb/9314f6ccb72ed9a4/a12459070bc8e21d",
                    ]
                }
            }
        }
    }

Plan: 1 to add, 0 to change, 0 to destroy.

Do you want to perform these actions?
  Terraform will perform the actions described above.
  Only 'yes' will be accepted to approve.

  Enter a value: yes

aws_codedeploy_deployment_group.bluegreen: Creating...
╷
│ Error: creating CodeDeploy Deployment Group (cloud-cloud-qc-bluegreen-dg): operation error CodeDeploy: CreateDeploymentGroup, https response error StatusCode: 400, RequestID: 0ef49bcc-06db-49e2-b579-d24e99d1cad4, InvalidLoadBalancerInfoException: The specification for load balancing in the deployment group is invalid. The deploymentOption value is set to WITH_TRAFFIC_CONTROL, but either no load balancer was specified in elbInfoList or no target group was specified in targetGroupInfoList.
│ 
│   with aws_codedeploy_deployment_group.bluegreen,
│   on main.tf line 32, in resource "aws_codedeploy_deployment_group" "bluegreen":
│   32: resource "aws_codedeploy_deployment_group" "bluegreen" {
│ 
╵
ERRO[0031] terraform invocation failed in /home/freedom/00_work/biz/Cloud-VMS-Auto-Deploy_vscode/IASecurityIaC/non-prod/ap-northeast-1/cloud_qc/codedeploy/.terragrunt-cache/8oSkZEgW4QC-Cp76Tua2Cl8nT2U/gGv3eEtvBft_C1hxVM5RhtucZMg/modules/cloud/codedeploy  error=[/home/freedom/00_work/biz/Cloud-VMS-Auto-Deploy_vscode/IASecurityIaC/non-prod/ap-northeast-1/cloud_qc/codedeploy/.terragrunt-cache/8oSkZEgW4QC-Cp76Tua2Cl8nT2U/gGv3eEtvBft_C1hxVM5RhtucZMg/modules/cloud/codedeploy] exit status 1 prefix=[/home/freedom/00_work/biz/Cloud-VMS-Auto-Deploy_vscode/IASecurityIaC/non-prod/ap-northeast-1/cloud_qc/codedeploy] 
ERRO[0031] 1 error occurred:
        * [/home/freedom/00_work/biz/Cloud-VMS-Auto-Deploy_vscode/IASecurityIaC/non-prod/ap-northeast-1/cloud_qc/codedeploy/.terragrunt-cache/8oSkZEgW4QC-Cp76Tua2Cl8nT2U/gGv3eEtvBft_C1hxVM5RhtucZMg/modules/cloud/codedeploy] exit status 1

could you share your aws_codedeploy_deployment_group terraform code

aws_codedeploy_deployment_group
aws_codedeploy_deployment_group
Reasons:
  • Blacklisted phrase (0.5): thank you
  • RegEx Blacklisted phrase (2.5): could you share your
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nguyễn Sơn

79694041

Date: 2025-07-08 10:03:48
Score: 3
Natty:
Report link

as far as I remember, there used to be a PoserFusion plugins for Poser 11 that allowed to import Poser Scene (.pz3) in 3ds Max.

https://jurn.link/dazposer/index.php/2019/09/21/poserfusion-plugins-for-poser-11-last-chance-to-get/

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: LAOMUSIC ARTS

79694036

Date: 2025-07-08 09:58:46
Score: 5
Natty: 5.5
Report link

I am using different extra-screens with my laptop at different places. I sometimes need to re-adjust. Is there way to have a simple add-on to set this value, e.g. from a drop down list?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Wolfgang

79694027

Date: 2025-07-08 09:50:44
Score: 3
Natty:
Report link

I don't know if it's exactly what you're looking for, but you can find the log file by clicking on Help then Show Log in Finder (I think it's Explorer on Windows).

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jonathan Alfonso

79694023

Date: 2025-07-08 09:49:43
Score: 2.5
Natty:
Report link

Somewhere in your current code file, it might be an incorrect comment, it happened to me as well, with a single forward slash '/' instead of '//'.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Vincent

79694022

Date: 2025-07-08 09:48:43
Score: 2
Natty:
Report link

One way is to use the C keyword:

_Thread_local int g_a = 3;
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Dorian

79694018

Date: 2025-07-08 09:46:42
Score: 0.5
Natty:
Report link

Yes, you can call Java methods (non-native) from a class resolved using vm.resolveClass() in unidbg, as long as the method exists in the APK's DEX file and is not marked native.

Example:

DvmClassclazz = vm.resolveClass("Lcom/example/MyClass;"); DvmObject<?> result = clazz.callStaticJniMethodObject(emulator, "getValue()Ljava/lang/String;"); System.out.println("Result: " + result.getValue());

For instance methods:

DvmObject<?> instance = clazz.newObject(null); DvmObject<?> result = instance.callJniMethodObject(emulator, "sayHello()Ljava/lang/String;");

Important:

If the method uses Android system APIs, you may need to override or mock behavior via the JNI interface.

Assumptions:

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Mr.K

79694016

Date: 2025-07-08 09:45:41
Score: 4
Natty:
Report link

This was triaged as a bug, for anyone who sees the same issue: https://github.com/flutter/flutter/issues/170255

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: freebie

79694010

Date: 2025-07-08 09:42:40
Score: 0.5
Natty:
Report link

Thanks. This also worked for me.

  1. In XCode, go to the Runner > Build Settings > Signing > Code Signing Entitlements

  2. Make sure that you have the correct file in the Debug. Do not leave it empty and copy and paste the Profile one there.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Matthew Winnel

79694006

Date: 2025-07-08 09:35:38
Score: 0.5
Natty:
Report link

Dash deliberately ignores HOST whenever it detects that it is running inside a Conda-managed environment (CONDA_PREFIX is in os.environ).
This guard was added while fixing #3069 because some Conda activators export an invalid host name (e.g. x86_64-conda-linux-gnu), which breaks Flask’s socket binding.

https://github.com/plotly/dash/issues/3069
https://github.com/plotly/dash/pull/3130

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Salt

79694004

Date: 2025-07-08 09:34:38
Score: 3
Natty:
Report link

this work perfectly Put the entire formula in a Table function like - Table({Value: LookUp( )})

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Huda Albar

79694003

Date: 2025-07-08 09:34:38
Score: 2
Natty:
Report link

try this way

<script src="{{ 'landing-product-cards__item.js' | asset_url }}"></script>

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hassaan Maqsood

79694002

Date: 2025-07-08 09:34:38
Score: 2.5
Natty:
Report link

If your Isotope masonry layout isn’t aligning correctly, the issue is likely due to a missing or incorrect .grid-sizer.

You should include a .grid-sizer div inside your .grid container and set it as the columnWidth in your Isotope configuration:

$('.grid').imagesLoaded(function () {
  $('.grid').isotope({
    itemSelector: '.grid-item',
    percentPosition: true,
    masonry: {
      columnWidth: '.grid-sizer'
    }
  });
});

Here’s a live demo I built that shows this solution in action: here
(Disclosure: I created this page to demonstrate the fix for others having the same issue.)

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): having the same issue
  • Low reputation (1):
Posted by: Md Mehadi Hassan

79693997

Date: 2025-07-08 09:32:37
Score: 1
Natty:
Report link

To completely remove all notes from the remote:

git push -d origin refs/notes/commits

Optionally, running the following afterwards will also delete them locally:

git fetch --force origin "refs/notes/*:refs/notes/*"

See @max's answer for removing them only locally, though.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Julian Prein

79693990

Date: 2025-07-08 09:28:36
Score: 6.5
Natty:
Report link

Can you show the code in more detail? There's probably an error somewhere. And I hope you didn't forget to write something like app.listen(3000);

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you show the code
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: sh4man

79693987

Date: 2025-07-08 09:27:35
Score: 1.5
Natty:
Report link

It is maybe because of the div. Try either with <form role="search"> or with the <search> tag

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Prango

79693986

Date: 2025-07-08 09:26:35
Score: 1.5
Natty:
Report link

A thread mixes two different things, this is why it is hard to understand. First, there is a processor that executes something. Second, there is an instruction that needs to be executed. In very early days a processor was given an instruction and was running it to the end. There was no point to run multiple instructions at once.

Reason: If we have jobs A and B and each takes 5 minutes, then if we do it one after another, A will be ready in 5 minutes and B in 10. But if we somehow switch between them every minute then A will be ready in 9 minutes and B in 10. So what is the point of switching? And this is even if we assume that switching itself is instantaneous.

Then computers got additional processors. Those were specialized; for example, they were helping to service disk requests. As a result the situation changed so: there is the main processor doing something. It then makes a request to a specialized processor to do something special, say read or write data. That processor will do it on its own, but it will take some time. During that time the main processor has nothing to do. Now this becomes wasteful; it could be doing some other instruction as well.

The instructions are unrelated, so the the simplest and most semantically sound way to organize that would be to write each instruction as if it was a sole instruction run by a single processor and let the processor to handle the switching transparently to the instruction. So this is how it was done. The processor runs an instruction and then at a suitable moment it stops it, places a bookmark, and puts it aside. Then it picks another bookmarked instruction, reads the bookmark and continues from where it was. An instruction has no notion it shares the processor with any other instruction.

The core idea of a modern thread is that it is such an independent instruction that is assumed to run sequentially from start to finish. It rarely exists in such a pure form though. I would love to give SQL as an example: although in most cases it actually runs concurrently there is absolutely no notion of concurrency in SQL itself. But SQL is not a good example because it has no instructions either and I cannot think of a similar procedural language.

In most other cases the notion of concurrency seeps in in the form of special resources that need to be locked and unlocked or about certain values that may change on their own, or even in nearly explicit form of asynchronous functions and so on. There are quite a few such concepts.

So a thread is a) first, an instruction that is written as if it was the sole instruction to be run; b) a bookmark in that instruction.

Does a thread need a stack? Not really; this comes from the processor. A processor needs some memory to lay out the data for the next step and that memory could be in the form of a stack.

But first, it does not have to be a stack. For example, in Pascal the size of a stack frame is precalculated at compilation time (it may have an internal stack of fixed size) and it is possible to give the processor memory in the form of individual frames. We can place these frames on a stack or we can just as well place them anywhere and just link them into a list. This is actually a good solution for concurrent programs because the memory is not reserved in relatively large stacks but is doled out in small frames as needed. (Concurrent Pascal worked this way with a QuickFit-like allocator.)

Second, even if we used a stack for working memory, we could have a single stack per processor provided we do not switch between threads arbitrarily. If every job had a unique priority and we always did the one with the highest priority, then we would interrupt a job only to do a more urgent one, and by the time we resumed it the stack would be clear again and we could just continue the previous job using the same stack.

So the reason a thread normally gets its own stack is not inherent to the concept of a thread, but is more like a specific implementation of a specific strategy.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (2): urgent
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Mikhail Edoshin

79693985

Date: 2025-07-08 09:25:35
Score: 2
Natty:
Report link

Django may load slowly in PyCharm due to indexing, a misconfigured interpreter, or outdated pip. Try using a clean virtual environment, update pip, and wait for indexing to finish. If needed, install Django via terminal using:

pip install django -i https://pypi.org/simple

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dzine Decoded

79693984

Date: 2025-07-08 09:24:34
Score: 1
Natty:
Report link

Found the solution.
The problem was on the destination page.

If anyone has the same problem, you must catch the exception inside a cy.origin block :

cy.origin('www.external.domain', () => {
    cy.on('uncaught:exception', (err, runnable) => {
        return false // or anything that suits your needs
    })
})
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: NiNo

79693976

Date: 2025-07-08 09:21:33
Score: 2.5
Natty:
Report link

Identity theft is a crime and prison is the resolution from judges in the court of law, and can easily be included as evidence of a scripting scandal, created by conartist #1 and #2 people possing,acting, threatening,saying that it is revenge for something like a unforgiving act, brought upon by c/, due to cheating act, however, dates, DNA, and documents can show, timelines of conspiracy acts compiled by these criminals, all day long.

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Cassandra

79693973

Date: 2025-07-08 09:20:33
Score: 1.5
Natty:
Report link

The command `git stash --include-untracked` includes changes to untracked files in the stash, but it does not include files or directories that are ignored by `.gitignore`.

Those "ignored paths" messages simply indicate that Git is aware of their existence but skipped them due to ignore rules.

If you want to stash only the changes made to tracked files, use `git stash` without any additional flags.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: su rui

79693969

Date: 2025-07-08 09:18:32
Score: 0.5
Natty:
Report link

The code doesn't work as you are passing a string into the component as a prop, rather of the actual Vue component
What you can do is to try to store all the components in a JS Object with IDs assigned to it and use a function to call them. An Example code will be like this →

Working Code → https://play.vuejs.org/#eNrVVUtz2zYQ/isoL0qm4ZuSbVnxTON6WncU11N7cmjZA0RCFGwQYAFQj2T837sLirLk1ymXzNij3f12P+xT+ub90jTBsmXe2JuYQvPGEsNs25zlkteN0pZMFS25rC4LJclcq5oMgnDPhsGD053376pmB669offLJSjGEg4f5wqCJJP2V2op+Ui+5ZKQAXpfC2pqXg7GffgHB4nu3cF4L4FcPiDrvJWF5fCwhvS1vNaqYdpl8u6ebd476g56/vQ/4PHvlmcSdm2ABoBiWd0IahlohEyKPoiMufmYe0+feudyH5CfyaAv4H3unU3CXSDwTMI9Uu+DZw3EzHkV3BklYQwu09zDEC6Y/rPBqkzujbv2IEaFUKs/nM3qlrneuJgFK+5fsN+ZNdpy71ozw/SS5d4Os1RXzHbwxc0VW4O8A2tVtgK83wD/YkaJFnPs3D61soS09/xctpduPWBkt+ZibZk0fVGYKHo+OP/cgzXB2bxW+mO6aZC5OJgbdPHJRj5b57fGWvKlE0A0y4qsayFxugtrm3EYrlarYJUGSldhEkVRCC65R1a8tAtwShNQFoxXC9trS85Wn9Qa1IhEJMngD5fgJ98nj5fxGV7XnAoy5ZI5uyGzDflyR2GIRtAludWtWdxzSXyCmRhIpeJ20c4CWI2w2MyYpoIzGQpg8OsynAk1C2tqgBhsBfSYBXZtie+fTSoy50JAShLWEHI0Vqt7BnrRag17ea6Egplt7T5SFrTBFVcwz0PgTnH5HOkbAh04mzTULnqgpGZBtaYbAOPRYwDa1XwO4+mBEoTPcULSIgtOjqB3JyQLohQ+TpCUwncMdK2vZK4Z+4q1UGs1n7WWXdEaS3rGj9StxnkEKWwTWVLRMpxwPDqNci/cUd9qKs1c6foZp+2RHVccDJFLs4ZRaF8rsQwuSzbnklvMy24aDNXKAvX+sxGBIuPkNB1tJZdDiE17vXUjWKIXW7cPqIYW3KJ7kL7d0CICEWz+1uCjDRTnBkpnRwFdO6A3ofHv7zOROEgOJjLKthPZdiOs8HKXVXeoYXepT79B939ifpzDv9nUMyXc1f+mVCXYy4deOQzuugvzS2Z4JX38DTMHJz+9PL+4urlw5+6WaDuVJxfudgJSi5f+SZAeDadJACuYTmMSx0E2xW0RcUyOg0z4MB0Ce340RPEY/tPhlyT+Wmf+6D8/yJIhifzgKE78IDk+vj0icWZRcrbbY2C1IKUOPEHQ+aEJwWGdkegFGnj8gAcvZI8oTg+ZEH6VaviEanRI5TLeowJ42G3f2yv38D+cmOxP

<script setup>
import LoadingIcon from './LoadingIcon.vue';
import HomeIcon from './HomeIcon.vue';

const iconComponentData = {
  'IconPlasmid':HomeIcon,
  'loading':LoadingIcon
}

function returnProperIcon (key){
  return iconComponentData[key]
}

</script>

<template>
  <component :is="returnProperIcon('Icon' + 'Plasmid')"></component>
</template>

Welcome to the Vue Ecosystem, Happy coding !

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jesvin palatty

79693968

Date: 2025-07-08 09:17:32
Score: 1
Natty:
Report link

Django in it of itself is a large package, so I wouldn't be too worried about this.

When combined with the fact that pycharm has to do background indexing for code completion on the whole django database this can also take a long time.

If you really wanted you could try clearing the cache by doing this:

File -> Invalidate caches and restart

This will cause pycharm to reindex

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Explants

79693950

Date: 2025-07-08 09:03:29
Score: 0.5
Natty:
Report link

Sorry for bringing such old thread, but wouldn't it work with try-finanly ?

Something like:

try { 
    // some actions
    return javax.ws.rs.core.Response.status(200).entity("response").build();
} finally {
   // here I would like to perform an action after the response is sent to the browser
   // for eg. change a state of a file to processed or do a database operation or anything in that manner
}

I would expect that this way - in case the return crashes the service for whatever reason (usually OOM Kill in kubernetes)
the finally part will not be executed, allowing the request to become idempotent

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ivaylo Ivanov

79693947

Date: 2025-07-08 08:57:27
Score: 1.5
Natty:
Report link

You’re close, but intermittent geofence triggers are a known pain point in Android due to a mix of power optimizations, background restrictions, and subtle lifecycle issues. Here are 10 critical checks and recommendations to ensure your geofencing is more reliable:

Location Request Frequency

You’re not actively requesting LocationUpdates — that’s fine for geofence-only logic. But adding a passive location request can help keep Play Services “warm” and improve accuracy:

val request = LocationRequest.create().apply {
    priority = LocationRequest.PRIORITY_HIGH_ACCURACY
    interval = 10_000
}
fusedLocationClient.requestLocationUpdates(request, locationCallback, Looper.getMainLooper())

Debounce Duplicate Registrations

Calling addGeofences() multiple times with same requestId or without calling removeGeofences() first can make things flaky.

Consider clearing old geofences before re-registering:

geofencingClient.removeGeofences(geofencePendingIntent).addOnCompleteListener {
    addGeofenceRequest()
}

You’re doing most things right — the remaining 10% is getting Android’s behavior under real-world,
Please share the manifest with permission and receiver

Reasons:
  • RegEx Blacklisted phrase (2.5): Please share
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sanjay

79693941

Date: 2025-07-08 08:52:26
Score: 2
Natty:
Report link

Solved it by using the command

parray/x 32 hash
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: skoestlmeier

79693932

Date: 2025-07-08 08:45:23
Score: 6.5
Natty: 5
Report link

I'm the same, but can you resolve this problem?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve this problem?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: MKD

79693919

Date: 2025-07-08 08:36:22
Score: 1.5
Natty:
Report link

i had this problem on one of my apps , you should change kivy verision that compatible with kivymd
i use kivymd ver 1.1.1 and use kivy version 2.2.0 or 2.1.0
you should write version of libraries in spec file

like this requirements = python3,kivy==2.1.0,kivymd==1.1.1,requests==2.32.4,sqlite3==2.6.0,jdatetime==5.2.0

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: mohammad hasan Shahbazian

79693911

Date: 2025-07-08 08:32:20
Score: 2.5
Natty:
Report link

Yes, it is false in the code documentation.

(property) PointInTimeRecoverySpecification.pointInTimeRecoveryEnabled: boolean

Indicates whether point-in-time recovery is enabled (true) or disabled (false) on the table.

@default

false

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @default
  • Low reputation (0.5):
Posted by: Radhesh Khanna

79693909

Date: 2025-07-08 08:30:20
Score: 0.5
Natty:
Report link

None of the variants worked for me (I have xclip installed, using wayland on Ubuntu: 24.04.2 LTS, with tmux 3.4).

Apparently holding shift, when mouse-selecting and then ctrl+shift+C copies no problems to global copyclip to be used anywhere.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: yomajo

79693900

Date: 2025-07-08 08:24:18
Score: 3
Natty:
Report link

Turned out to be an API issue. Archiving

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: envyM6

79693894

Date: 2025-07-08 08:18:17
Score: 2.5
Natty:
Report link

Validate Rule Syntax and Evaluation: Ensure the YAML syntax is correct (e.g., proper indentation, no trailing periods) and test the rule using cortextool rules lint or by querying the Cortex ruler API (/api/v1/rules) to confirm it’s loaded and evaluated.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Amanuel Zerfu

79693891

Date: 2025-07-08 08:16:16
Score: 0.5
Natty:
Report link

The clang shipping with Xcode26 needs an extra compiler flag for this: -fsized-deallocation. Adding this to Other C++ flags solves the issue.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Tobi

79693887

Date: 2025-07-08 08:13:15
Score: 4
Natty: 4.5
Report link

The package velociraptor was developed to take away that pain from end users. Have you tried it?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Kevin

79693886

Date: 2025-07-08 08:13:15
Score: 1
Natty:
Report link

check this one, A fast, lightweight, and production-ready alternative to html-pdf and puppeteer for converting HTML or EJS templates into high-quality PDFs using playwright-core, with full design and CSS support. https://www.npmjs.com/package/ejs-html-to-pdf-lite

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Kiran Debnath

79693885

Date: 2025-07-08 08:12:14
Score: 4
Natty:
Report link

I have a lot of mobile games that need to be signed and buy a p12 certificate,Please, do you have IOS enterprise p12 certificate + Mobileprovisio file? I need to buy it。

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30990434

79693881

Date: 2025-07-08 08:09:13
Score: 2
Natty:
Report link

It should be allowed, but you need to Flush all MemTables before re-open DB if you changed back from OptimisticTransactionDB::Open() to DB::Open, because there is txn info in WAL which DB::Open does not support.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: rockeet

79693877

Date: 2025-07-08 08:06:12
Score: 1
Natty:
Report link

Android 14+ needs this permission and service:

<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC"
    <service 
          android:name="com.asterinet.react.bgactions.RNBackgroundActionsTask"
          android:foregroundServiceType="dataSync"
    />
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: John Mark Roco

79693876

Date: 2025-07-08 08:05:12
Score: 0.5
Natty:
Report link

This is caused by all of the tservers that host a replica of that tablet being leader blacklisted (so we can't move the leaders anywhere).

The cluster balancer currently handles leader blacklisting without considering data moves, since users normally expect leader blacklists to take effect quickly. In this case, we would have to move a tablet off of the leader blacklisted set to another node and then move the leader on to that, which we don't currently support.

We probably won't add support for this in the near future because the usual use case for leader blacklisting is temporarily taking down a node or set of nodes in the same region/zone, in which case the nodes in other regions are able to take the leaders. You could use a data blacklist to move the actual data off the nodes.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: dh YB

79693862

Date: 2025-07-08 07:59:10
Score: 1
Natty:
Report link

I found the problem was with within the project code itself. (I'm not the maintainer of the code base, and it is quite large.)

One of the differences was a git commit hash that was integrated into the binary. When I was verifying that the binaries were equal, I was compiling the code on different commits. Therefore the git commit has was different.

The other difference was the timestamp. This was embedded in the binary because a third-party library was using the `__TIME__` macro.

So if others run into the same issue, looking into similar things might be the solution :)

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: magnusmaehlum

79693853

Date: 2025-07-08 07:52:08
Score: 1
Natty:
Report link

To add the custom menu to a specific page using Elementor:

  1. Create the Menu
    Go to Appearance → Menus in WordPress and create the menu you want to display.

  2. Edit the Page with Elementor
    Open the target page using Elementor (make sure the page layout is set to Elementor Canvas if you're building it from scratch).

  3. Add a Header Section
    Copy and paste your existing header (or create a new one) into the top of the page using Elementor’s widgets.

  4. Insert the Menu
    Drag the Nav Menu widget into the header section, then choose the menu you created from the dropdown under Content → Menu.

  5. Style and Save
    Customize the look as needed and click Update to save the changes.

Now the selected menu will appear on that specific page.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shaukat Hussain

79693840

Date: 2025-07-08 07:43:06
Score: 1.5
Natty:
Report link

you cannot directly import a java contant file into a javascript. java live on the service-side, js runs in the browser(client-side). but you can use jsp or thymeleaf etc.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: su rui

79693839

Date: 2025-07-08 07:43:05
Score: 4.5
Natty:
Report link

This might be useful, a MAUI compatible Stripe payment extension for iOS and Android https://github.com/Generation-One/G1.Stripe.Maui

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: hitchhiker

79693837

Date: 2025-07-08 07:40:04
Score: 5.5
Natty:
Report link

If any one still facing the same issue, Please change this this configuration on the Pipeline

Pipeline -> Options -> Build job authorization scope -> Project Collection

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (0.5):
Posted by: Rajitha Kithuldeniya

79693828

Date: 2025-07-08 07:32:02
Score: 0.5
Natty:
Report link

It sounds like you're dealing with a frustrating and potentially serious issue — malicious JavaScript injection in your Shopify store’s <head> tag that only appears in responsive mode. Here's the key: these kinds of injections often come from third-party Shopify apps or malicious browser extensions. Since you're only seeing the code in responsive mode, it might be coming from device-targeted conditional logic embedded by an app or injected script through global.js or preload.js.

Here’s what you can do:

1. Audit your installed apps – Disable any third-party apps (especially recently installed ones) one by one to identify the culprit.

2. Check theme.liquid and layout files – Look for any suspicious external script loads (especially ones conditionally rendered based on viewport or device).

3. Use Shopify theme inspect CLI tool – It helps identify third-party scripts and their origin in your theme.

4. Temporarily replace global.js and preload.js – Replace them with dummy files and see if the injection stops. If it does, you’ve found the origin.

5. Inspect Chrome extensions – If the code only appears when you test locally, a rogue browser extension could be interfering. Try Incognito mode.

6. You’re on the right track using breakpoints — now use DevTools' Call Stack during the script injection event to trace which script or function is firing it.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: camilajohnson

79693818

Date: 2025-07-08 07:23:55
Score: 7.5
Natty:
Report link

I am also facing a similar issue in which I am trying to mesh a rectangular 2D surface with a n elliptical hole in it and I want the mesh to be uniform quadrilateral mesh which is straight along y axis but along x axis the mesh should be like a stream flow around the ellipse. enter image description here MESH I NEED

enter image description here enter image description here MESH I AM GETTING

I will really appreciate any kind of advice or .geo file.

Reasons:
  • Blacklisted phrase (0.5): I NEED
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Me too answer (2.5): I am also facing a similar issue
  • Low reputation (1):
Posted by: Richa Ahirwar

79693817

Date: 2025-07-08 07:23:54
Score: 0.5
Natty:
Report link

I've been facing the same issue so what I did is the following manual steps because an updated repository for ubuntu doesn't exist anymore and the snap version is also only updated irregular.

wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
chmod +x dotnet-install.sh
# you can choose your path here as the last parameter I just kept in my home directory
./dotnet-install.sh --channel 9.0 --install-dir ./dotnet-sdk

Then I created a symbolic link.

sudo ln -s /home/<myuser>/dotnet-sdk/dotnet /usr/bin/dotnet

Before following those steps, you might need to purge all dotnet related apt installation.

sudo apt purge dotnet* --auto-remove
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • High reputation (-1):
Posted by: alsami

79693812

Date: 2025-07-08 07:20:53
Score: 0.5
Natty:
Report link

You should use this overload where the behaviour is implemented by default.

BasicTextField(
    state = rememberTextFieldState(),
    lineLimits = TextFieldLineLimits.SingleLine,
)

Works for all TextField composables.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lúcifer

79693811

Date: 2025-07-08 07:19:53
Score: 3
Natty:
Report link

you can found your errors in the end of page "https://docs.novu.co/platform/integrations/push/fcm". Click to question to find why error occur

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vu Zuq

79693807

Date: 2025-07-08 07:15:52
Score: 0.5
Natty:
Report link

Another approach that is nice and concise:

x = torch.where(x == 2, torch.nan, x)

Or

x = torch.where(x != 2, x, torch.nan)

Copied from the question at: https://discuss.pytorch.org/t/filtered-mean-and-std-from-a-tensor/147258

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Chris

79693806

Date: 2025-07-08 07:15:52
Score: 3
Natty:
Report link

I encountered the same issue. While executing a command through a Python script, I realized that I was attempting to run commands on nodes that do not actually exist. You might want to try manually SSHing into the node from which you’re running the script; however, that approach did not work for me.

Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Vipul Sharda

79693805

Date: 2025-07-08 07:14:51
Score: 0.5
Natty:
Report link

You could use tomllib to parse the file/text if you have access to it.

Or if the python package is already installed you can simply use importlib to get them:

from importlib import metadata

metadata.metadata("my_package_name").get_all("Project-URL")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: scr

79693803

Date: 2025-07-08 07:13:50
Score: 4
Natty:
Report link

There is a possibility that git is automatically initialized within your react project directory. Which means a .git folder is created, maybe that is the reason it cannot do drag and drop. This issue can be fixed by either delete the .git and again initialize using git init then you can add and commit your directory content. After that you should set the branch and add the remote repository using git remote add origin <repository-url> .
If there is any error i made or if there is any other useful method of doing so please let me know. Today is my first day in this platform and i would absolutely love to learn new things.
Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2.5): please let me know
  • RegEx Blacklisted phrase (1): i made or if there is any other useful method of doing so please
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Saptarshi Ghosh

79693802

Date: 2025-07-08 07:13:50
Score: 1
Natty:
Report link

JEXL examples: ${__jexl3(42 + 0.${__Random(6, 8)})} ${__jexl3(20 + 0.${__Random(2, 4)})} ${__jexl3(${__Random(1, 100)} + 0.${__Random(0, 9)}${__Random(0, 9)})}

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Guram Savinov

79693800

Date: 2025-07-08 07:12:50
Score: 0.5
Natty:
Report link

This is late, but the answers I've seen so far assume an oversimplistic input of platformio.ini

First, you want to let platformio itself parse that file, THEN let it hand it to you in a machine-readable format. You can do this as a text or as JSON, which is then trivial to parse with 'jq'.

`
$ pio project config  | grep "^env"

env
env:demo
env:m5demo
env:m5plusdemo
env:m5stackdemo
`

Or via jq

` $  pio project config --json-output | jq '.[][0]' | head

"platformio"
"base"
"remote_flags"
"dev_adafruit_feather"
"dev_esp32"
"dev_esp32-s3"
"dev_heltec_wifi"
"dev_heltec_wifi_v2"
"dev_heltec_wifi_v3" `

NOW you have regularized data that you can parse into an array with readarray and friends.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Robert L

79693790

Date: 2025-07-08 07:06:49
Score: 1
Natty:
Report link

`DB::GetApproximateSizes` should be the nearest what you need, there is not a `DB::GetApproximateNum` as exactly what you need.

But RocksDB's perf & compression is poor for your workload, you can try ToplingDB, a rocksdb fork which replace MemTable, SST, ... with more efficient one, esp its SST using a kind of index NestLoudsTrie which is searchable compression algo, typically 5x compression ratio while directly (point)search & scan on compressed form with 1,000,000+ QPS.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: rockeet

79693779

Date: 2025-07-08 07:00:46
Score: 1
Natty:
Report link

This issue is commonly encountered in Doris 2.1.x versions, particularly when using older versions of the MySQL Connector/NET driver.

The root cause is that Connector/NET 8.0.26 does not support the utf8mb3 character set, which Doris uses by default in some internal configurations. This results in the error:

Character set 'utf8mb3' is not supported by .NET Framework

✅ Solution Upgrade your MySQL Connector/NET driver to version 8.0.32 or later. This version includes support for the utf8mb3 character set and resolves the compatibility issue.

After upgrading the driver, restart Power BI and try connecting again. The issue should be resolved.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Michael

79693773

Date: 2025-07-08 06:56:45
Score: 2.5
Natty:
Report link

Found the issue, the directory it was looking at was not present in the project repository.
Just added a new repository from the option (IP Catalog → Add Repository) and selected the correct repository from where I had downloaded the IP core in the first place.

enter image description hereNew IP Catalog repo list with the repo added.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Giridhar Nagamangala

79693768

Date: 2025-07-08 06:52:44
Score: 3
Natty:
Report link

Any solution that doesn't get its list from the output of make -p or similar, i.e. tries to parse the targets in the Makefile(s) itself, is going to miss and/or show extra targets. sed, grep, awk, etc., without a pipe from make -p will not be accurate.

Additionally, any solution which requires gnu extensions to sed or grep will likely fail on Mac OS.

Here's my solution for a list target/help target that works on Mac OS (tested on Sonoma and Sequoia with the make that ships with Mac OS, GNU Make 3.81, built for i386-apple-darwin11.3.0) and Linux (tested on AlmaLinux 9.6, GNU Make 4.3, Built for x86_64-redhat-linux-gnu). It's cobbled together from four or five different answers I've found on SO, various mailing lists, and AI answers, and tweaked for my particular style of help (two hashes after the target list).

It supports cascading/included Makefiles, Makefiles not called Makefile, target definitions with multiple targets in them (e.g.: foo bar: baz ## create either foo or bar from baz), removes hidden targets (.hidden: hidden-file.txt ## don't show this hidden target) and all of the builtin-targets (e.g. .PHONY), removes targets that are if or ifdeffed out (e.g.: ifdef INCLUDE_ME\nmore-stuff: my-stuff ## build more-stuff from my-stuff if INCLUDE_ME is defined\nendif), sorts and de-dups, gives you the user-friendly command to use (basename of the command called, e.g. make, not /Library/Developer/CommandLineTools/usr/bin/make), and will cook waffles for you while you wait. Assuming you have that recipe in your Makefile.

It uses xargs with grep to ensure that only the targets that are valid are shown in the output. It also does not show any target that is missing the ## comment goes here in the target definition. So if you haven't commented a target, it won't get shown with this.

Also if you have a compound target where one of the targets is hidden (e.g.: target .hidden-target: ## make this target), neither will be shown in the help list.

If you just want the list of targets without the help messages, remove everything after the { print $$1 }' . No need to pipe to xargs grep and search for commented targets. Note: if you make this change and have a compound target where one is hidden (e.g.: target .hidden-target: ## normal and hidden targets here), the one not hidden will be shown as a valid target.

.PHONY: help
help: ## Show this help message
    @echo "$(notdir $(MAKE)) targets:"
    @LC_ALL=C $(MAKE) -qp -f $(firstword $(MAKEFILE_LIST)) : 2> /dev/null | awk -v RS= -F: '$$1 ~ /^[^#%. ]+$$/ { print $$1 }' | xargs -I % grep -E '^%(:| [a-zA-Z_ -]+:).*?## .*$$' $(MAKEFILE_LIST) | sort -u | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1.5): Any solution
  • Blacklisted phrase (1.5): any solution
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Joseph Cheek

79693760

Date: 2025-07-08 06:45:42
Score: 1.5
Natty:
Report link

problem is that terminal used doesnot support color scheme used by cqlsh

on cli use

--no-color  

https://cassandra.apache.org/doc/latest/cassandra/managing/tools/cqlsh.html#command-line-options

or specify in

~/.cassandra/cqlshrc

[ui]
color = false

https://cassandra.apache.org/doc/latest/cassandra/managing/tools/cqlsh.html#cqlshrc

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
Posted by: ManishSingh

79693756

Date: 2025-07-08 06:40:41
Score: 1.5
Natty:
Report link

The issue was that i've mounted node_modules from a different environment. I removed the volume mount and ran npm ci in the container and it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Error

79693751

Date: 2025-07-08 06:34:39
Score: 8.5
Natty:
Report link

Could you give some example data?

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you give some
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: wasabi09

79693743

Date: 2025-07-08 06:30:38
Score: 2
Natty:
Report link

Check the following things:-

  1. Add the jar file in the reference libraries.

  2. Add the java extension pack.

  3. Try to use "com.mysql.cj.jdbc.Driver" interchangablly with "com.mysql.jdbc.Driver".

  4. Try to run the code provided on the above of main() method.

Hope this answer would have solved your problem.😊

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Anuprash Gautam

79693742

Date: 2025-07-08 06:28:37
Score: 4
Natty:
Report link

god , I got a simple way xlfixer ,just need one step !

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: dyfan

79693741

Date: 2025-07-08 06:28:37
Score: 2
Natty:
Report link

Deleting below folders fixed my issue

close the editor and open the project in your explorer (menu option in unity hub -> show in explorer)

delete below folders if it exists

Library, obj, temp

for me, i only had library folder, deleting it and opening the editor again solved the issue...

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Paneerselvam M

79693737

Date: 2025-07-08 06:24:36
Score: 3.5
Natty:
Report link
.c-title::after {
     content: "";
     width: 100%;
     height: .2em;
     
     /* background-color: var(--c-title-underline-color); */
     background: red;
     
     position: absolute;
     bottom: -2px;
     left: 0;
     
   }


why we use bottom and left and not use right and top?
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30989769

79693734

Date: 2025-07-08 06:23:36
Score: 1.5
Natty:
Report link

I see you have problems on a real device too but I bumped into the same issue but only for Simulators and I've found out that RevenueCat has the problem with the iOS 18.4, 18.4.1, and 18.5 simulators.

The workarounds are:

1 - Test on Physical Device

2 - Use StoreKit Configuration Files

Create a StoreKit Configuration file in Xcode. Use local testing instead of App Store Connect sandbox. Configure your products directly in the configuration file

3 - Use iOS 18.3 Simulator

Their issue described:

https://www.revenuecat.com/docs/known-store-issues/storekit/ios-18-4-simulator-fails-to-load-products?utm_source=chatgpt.com

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yordan Poydovski

79693729

Date: 2025-07-08 06:13:34
Score: 0.5
Natty:
Report link

You can use a compiler like TeaVm to convert your java code to WASM file, which then you can import and use.

Refer → https://teavm.org/

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: jesvin palatty

79693718

Date: 2025-07-08 06:02:31
Score: 2.5
Natty:
Report link

I think your issue might be due to using .find method for toggling the lists as it may lead to irregularities since multiple elements have similar classnames' you could try the same using .child or .first method for child lists

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: wasabi09

79693711

Date: 2025-07-08 05:54:29
Score: 1.5
Natty:
Report link

actually if you using Samsung text to speech it's would never reach.... (its not the same engine!)

status == TextToSpeech.SUCCESS
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: yogi bali

79693708

Date: 2025-07-08 05:48:28
Score: 1.5
Natty:
Report link

A more robust / complete example:

https://github.com/judfs/so-answer-cmake-java/

include(UseJava)

set(top_package com)
set(java_src 
    com/example/Hello.java
)
set(java_main com/example/Hello)
set(jar_name example-hello)
set(jar_name_sources ${jar_name}-sources)
set(sources_jar ${jar_name_sources}.jar)

add_jar(example-java
    SOURCES ${java_src}
    OUTPUT_NAME ${jar_name}
    ENTRY_POINT ${java_main}
)

install_jar(example-java DESTINATION share/java)


# Make a sources jar.
add_custom_command(
    OUTPUT 
        "${sources_jar}"
    COMMAND 
        # -- Long options are not supported on all java distributions.
        # -- ${Java_JAR_EXECUTABLE} --create --file "${sources_jar}" -C ${CMAKE_CURRENT_SOURCE_DIR} ${top_package}
        ${Java_JAR_EXECUTABLE} cf "${CMAKE_CURRENT_BINARY_DIR}/${sources_jar}" ${top_package}
    WORKING_DIRECTORY
        "${CMAKE_CURRENT_SOURCE_DIR}"
    DEPENDS 
        ${java_src}
    VERBATIM
    COMMENT 
        "Creating sources jar"
)

add_custom_target(example-java-src
    DEPENDS "${sources_jar}"
)
add_dependencies(example-java example-java-src)

install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${sources_jar}" DESTINATION share/java)

I'm not a cmake expert so this might still not be perfect. Please suggest more idiomatic usage.

This incantation of jar has been tested with cross platform CI in a bigger project. There's several other variations that fail in some edge cases.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please suggest
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: plswork04

79693705

Date: 2025-07-08 05:43:26
Score: 1.5
Natty:
Report link

In the project settings in Unity, you only specify the dependencies to third party packages. To update the version of the specified packages, simply go to the Package Manager, find the Appylar package in the list to the left and click on it. After that, to the right, you can see if there are any newer versions of the package to update to.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Archer

79693701

Date: 2025-07-08 05:39:25
Score: 8
Natty:
Report link

This is what the result should look like. But sorry, this is not working for me, becauce I can`t install PhantomJS. Could there be another solution?

Reasons:
  • RegEx Blacklisted phrase (3): not working for me
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Claudia Niebisch

79693696

Date: 2025-07-08 05:32:22
Score: 8
Natty:
Report link

is it fixed @halfer? I am having same issue.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having same issue
  • Contains question mark (0.5):
  • User mentioned (1): @halfer
  • Single line (0.5):
  • Starts with a question (0.5): is it fix
  • Low reputation (1):
Posted by: Satrujit Behera

79693690

Date: 2025-07-08 05:18:19
Score: 1.5
Natty:
Report link

You can write like this

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.html$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-l
    RewriteRule . /index.html [L]
</IfModule>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30989307

79693689

Date: 2025-07-08 05:17:19
Score: 2
Natty:
Report link

It works if you put your price ID as follows:
Not sure why but happy to hear response to this.

    line_items: [{ price: PRICE_ID }],
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Sarthak Garg

79693684

Date: 2025-07-08 05:12:18
Score: 4
Natty:
Report link

maybe you can try our method, here is the github repo link:
https://github.com/tjzvbokbnft/ELITE-Embedding-Less-retrieval-with-Iterative-Text-Exploration

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: sway kao

79693683

Date: 2025-07-08 05:11:17
Score: 2.5
Natty:
Report link

Do you want to change the scope to include the following.

"https://outlook.office.com/SMTP.Send"

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nilanka d

79693679

Date: 2025-07-08 05:05:16
Score: 3
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: DSCO

79693662

Date: 2025-07-08 04:41:10
Score: 2
Natty:
Report link

Assertion is not to be used unless you get into trouble. Why assert something you certain? If not certain, make it certain instead of mark assertion to hope it certain or guarantee it certain. It is not a guarantee, it is a debug aid. Guarantee is by design, and by unit tests.

for never happen code, use exception. Because u need it even in production. Using assertion for never happen code is probably wrong tool.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Chris Tsang

79693661

Date: 2025-07-08 04:41:10
Score: 4.5
Natty: 5
Report link

can someone please help in explaining why virt_to_phys cant be used in case of SMMU to get the IOVA address, as in SMMU enabled system physical address are not exposed , so can we use virt_to_phys in place of dma_map_single to get iova address.

Note:- I dont want to invalidate/flush the cache operation, system is cache coherent.

Reasons:
  • RegEx Blacklisted phrase (3): please help in
  • No code block (0.5):
  • Starts with a question (0.5): can someone please help in
  • Low reputation (0.5):
Posted by: devender

79693656

Date: 2025-07-08 04:34:08
Score: 1.5
Natty:
Report link

"As long as you manage to get your changes across correctly, you can use whatever method you like."

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Lugh

79693653

Date: 2025-07-08 04:29:06
Score: 0.5
Natty:
Report link

Can we use mutableStateListOf

val myStateList = remember { mutableStateListOf(1, 2, 3) }

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): Can we use
  • High reputation (-1):
Posted by: J.K

79693637

Date: 2025-07-08 04:10:02
Score: 1.5
Natty:
Report link

this problem "Gradle exit code 1" comes when we connect to the mobile otherwise the flutter app works fine on the computer! and it seems that no one in the whole world could fix the problem! all answers are just talk and not working.

People who wrote flutter should find the answer for their mistakes because it is a stupid bug somewhere!

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: اسماعيل الكاظمي

79693629

Date: 2025-07-08 03:45:57
Score: 1.5
Natty:
Report link

Probably not a suitable solution for most people, but switching the server to Jetty fixed the problem.

Inspired by the discussion on this question also having problems with Tomcat and HTTP/2, I tried using Jetty instead. I used a default configuration, enabled HTTP/2 and tested it with Safari and Chrome and the uploads from both were all as expected.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Clint

79693627

Date: 2025-07-08 03:41:56
Score: 2
Natty:
Report link

They both use CJS to load query-string, but with pnpm, it ends up installing query-string v9.x (which is ESM-only), causing issues. I temporarily solved it by overriding the version to v7.1.3 (which is still CJS-compatible) and installing it with pnpm, and that worked. Still, I felt that version resolution was quite a hassle…

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yuta

79693623

Date: 2025-07-08 03:36:54
Score: 1
Natty:
Report link

It's more like cache issue.

--> Exclude logged-in users from cache

--> Purge all caches

--> If it’s still broken

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Mahesh Patel

79693620

Date: 2025-07-08 03:33:53
Score: 3
Natty:
Report link
conda install -c conda-forge julia
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sean_cc

79693603

Date: 2025-07-08 02:49:45
Score: 2.5
Natty:
Report link

Another potential cause is that the MQ server has reached its maximum number of allowed connections, resulting in new clients being unable to connect and receiving error 2009 (MQRC_CONNECTION_BROKEN). This is typically observed as the server actively closing the connection immediately after it is established

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chason Guo

79693599

Date: 2025-07-08 02:43:44
Score: 2
Natty:
Report link

Struggling with the same and sorry to say the solution above doesn't work. I had a beautiful script in my package.json set up to sync the secrets to cloudflare to allow for auto deployments.

"sync-secrets": "bunx wrangler secret bulk .env.production"

But that's just not how this works. I suspect those variables are accessible via $env/dynamic/private, which is shitty bc they aren't available at build-time and the server has to fetch them every time you use them (which is probably optimized in workers but a shitty condition anywhere else).

Idk what happens if you keep your vars in a .dev.vars file, if they get pushed to both sections, because adding one by one via the UI is not something I'm gonna do. The issue with .dev.vars is there doesn't seem to be any way to pick those up automatically with vite (which is ridiculous) so you can't develop locally, or again, anywhere else.

So the solution seems to be?? maintaining .env files and having a pre-commit script copying them to .dev.vars??? Idk how we came to this. I love cloudflare but bow, .dev.vars, really?

build failed because missing var

clearly set environment variable

build variables

Reasons:
  • Blacklisted phrase (1): ???
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: dasfacc

79693596

Date: 2025-07-08 02:33:42
Score: 2.5
Natty:
Report link

In that case, you will need to "resume track" of the Production release then head to the dashboard, you will see status changes need to review under "Update status", hit send for review, wait couple minutes/hours then refresh the page.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gill

79693583

Date: 2025-07-08 01:54:34
Score: 2
Natty:
Report link

This won't be an issue that needs solving from when Moodle 5.0 is released, as one will be able to use questions from the question banks of other courses. So questions won't need to be stored outside of individual course instances (at the higher level category) to be accessed in future versions of a course or in other courses.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Alex Michael

79693572

Date: 2025-07-08 01:30:29
Score: 3
Natty:
Report link

The unhelpful parameters removed are exactly the parameters you need. Use -nb 1 to disable the binary black and white conversion step.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tnelsond