79787947

Date: 2025-10-11 10:17:10
Score: 2.5
Natty:
Report link

Have you tried following the steps described here?
https://pages.community.sap.com/topics/crystal-reports/visual-studio

If you still need further assistance, I’d be happy to help.

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Alparslan ŞEN

79787936

Date: 2025-10-11 09:43:02
Score: 0.5
Natty:
Report link

13 years later, still functional. :)

$(".btn").on("click", function (e) {
    console.log(e.target.id)
})
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: AI Shakil

79787934

Date: 2025-10-11 09:42:01
Score: 1.5
Natty:
Report link

<meta property="og:locale" content="ar_AR" />

<meta property="og:type" content="<b:if cond='data:view.isSingleItem'>article<b:else/>website</b:if>" />

<meta property="og:title" content="<data:blog.title/>" />

<meta property="og:description" content="<b:if cond='data:view.isSingleItem'><data:post.snippet/><b:else/><data:blog.metaDescription/></b:if>" />

<meta property="og:url" content="<data:view.url.canonical/>" />

<meta property="og:site_name" content="<data:blog.title/>" />

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Fatima Ahmed1

79787930

Date: 2025-10-11 09:24:57
Score: 1
Natty:
Report link

I am not entirely sure what is causing the issue but seems to be related to the server setup.

I tried creating a fresh server in VBox with a fresh install of Ubuntu. The issue still presisted.

However, when I installed XAMPP on my Windows host machine and run the code from there, the issue is not there.

The only thing I can think of that might have caused it could be an incompatible PHP version because XAMPP PHP version is 8.2.12 and Ubuntu's version is 8.3.6.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: RisingSun

79787928

Date: 2025-10-11 09:16:55
Score: 1
Natty:
Report link

The main difference between these noations is the part of code execution they describe like upper bound, lower bound or tight bound.

Big O gives an upper limit on how fast the time can grow or we can simply say that it gives the highest limit that the execution of this code can never take more time than this in any of the case or with any input size.

Big-Ω gives the lower bound or it describes the best possible growth rate or we can say that it tells us that the algorithm will take atleast this much time in all the cases now matter how big or how small the size of input is. it is the best case because when on a given input the algorithm takes minimum time the execution is faster.

Big-Θ is used when both upper and lower bounds are the same. it means that the algorithms growth rate is tightly bound on both the sides.

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

79787906

Date: 2025-10-11 08:37:46
Score: 2.5
Natty:
Report link

It seems like a bug in cmake https://gitlab.kitware.com/cmake/cmake/-/issues/24163 . When using `PRIVATE`, outer scope will not link torch lib and thus will not trigger the problem.

Updating to newest version of cmake will solve it.

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

79787902

Date: 2025-10-11 08:27:43
Score: 2.5
Natty:
Report link

When the MCP server expects as input depends on what tool is selected, for example in the image below, RUBE_SEARCH_TOOL is selected, the input for this will be different to when other tools are selected. So select you MCP node, and make sure you've selected the tool appropriate for you.enter image description here

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When the
  • Low reputation (0.5):
Posted by: Vishal

79787901

Date: 2025-10-11 08:27:43
Score: 1
Natty:
Report link

Fixing the multiple spaces case that are not stripped in the second post...

void strip_extra_spaces(char *str) {
  int i, x;

  for(i = x = 0; str[i]; ++i) {
      if(!isspace(str[x]) && !isspace(str[i]))
          str[x++] = str[i];
  }

  str[x] = '\0';
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Manuel Alonso Tajuelo

79787897

Date: 2025-10-11 08:11:40
Score: 0.5
Natty:
Report link

You can use some online tools to check it

  1. parse vless/vmess URL to see if it is valid

  2. test the connection by online proxy tester

try google it by "online proxy checker", or directly use the online tools https://getfreeproxy.com/tools/proxy-protocol-parser and https://getfreeproxy.com/tools/proxy-checker .

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

79787896

Date: 2025-10-11 08:10:39
Score: 1.5
Natty:
Report link

Add workflow_run to the GitHub Actions .yml, the Coding Agent ignores workflow_call or workflow_dispatch

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

79787890

Date: 2025-10-11 08:00:37
Score: 2
Natty:
Report link

Upon searching and trying several solutions - > arch -x86_64 pod install --repo-update this command worked. Seemingly it happened due to M1 build.

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

79787886

Date: 2025-10-11 07:54:35
Score: 2
Natty:
Report link

The function codes for reading holding registers and reading input registers are different. You cannot read multiple registers of both kind using the same kind. Please check the function codes for reading both of these types. You will have to send two different commands - one to read multiple holding registers and one to read multiple input registers.

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

79787881

Date: 2025-10-11 07:46:33
Score: 2.5
Natty:
Report link

So what I get to know from documentation is, you can't upload images on Firebase unless a user is logged in/authenticated. If you want anonymous users to upload images without authentication, then you have to change the rules.

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

79787874

Date: 2025-10-11 07:29:30
Score: 3
Natty:
Report link

Attaching a global key to the local widget surrounding GestureDetector, and using that key to map and fetch point offset solved the issue.

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

79787871

Date: 2025-10-11 07:27:29
Score: 2.5
Natty:
Report link

Found that multiple instances of my screen(widget) were being pushed into the navigation stack. Scroll controllers should be one for one view, we cannot share controllers through multiple rendered instances at the same time.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Amani Saaduddin

79787867

Date: 2025-10-11 07:22:27
Score: 3.5
Natty:
Report link

https://dart.dev/null-safety/faq#the-iterablefirstwhere-method-no-longer-accepts-orelse---null
Import package:collection and use the extension method firstWhereOrNull instead of firstWhere.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Amani Saaduddin

79787865

Date: 2025-10-11 07:20:27
Score: 1.5
Natty:
Report link

There exists a method on Navigator class to check if a route can be popped:

  if (Navigator.canPop(context)) {
      Navigator.pop(context);
  }

Reference Article

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Amani Saaduddin

79787860

Date: 2025-10-11 07:10:25
Score: 4
Natty: 4.5
Report link

scenario is needing polymorphic relation.

Laravel Reference: https://laravel.com/docs/12.x/eloquent-relationships#one-to-many-polymorphic-relatio

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

79787849

Date: 2025-10-11 06:32:16
Score: 3
Natty:
Report link

Did you check the Area2D's collision layer and mask if they match with the first enemy's Area2D?

Maybe they weren't set yet so that the player can't be detected, which then ignores the animations you mentioned.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Zen

79787846

Date: 2025-10-11 06:27:15
Score: 0.5
Natty:
Report link

Here's another idea that avoids using verbs in the url, by treating the reset token like a resource:

POST /accounts/password/reset-token  // creates a new reset token (sent over email)
POST /accounts/password              // resets the password using the reset token
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Coco Liliace

79787823

Date: 2025-10-11 05:32:02
Score: 3.5
Natty:
Report link

Use the Show Missing Files tool in Visual Studio — when you build the project, it will display any files that are not included in the project in the Error List window.

enter image description here

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

79787820

Date: 2025-10-11 05:21:00
Score: 2
Natty:
Report link

Use docker.

Container all systems in you repo you can.

Add to docker.ignore: docs directory, indexed docs directory, api (because api in the docker deploying and proceed all your containers.

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

79787816

Date: 2025-10-11 05:16:59
Score: 1
Natty:
Report link

Each of these data structures is designed for a different purpose and therefore has different performance characteristics.

Arrays -

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

79787812

Date: 2025-10-11 04:55:55
Score: 2
Natty:
Report link

UI Design Draft usually means a preliminary or rough version of a user interface design like an early sketch or wireframe showing the basic layout and flow. It’s not exactly the same as UI, which is the complete, polished interface users interact with. So think of a design draft as a first step in creating the final UI, helping designers explore ideas before finalizing details.

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

79787811

Date: 2025-10-11 04:45:53
Score: 0.5
Natty:
Report link
const std = @import("std");
const print = std.debug.print;

pub fn main() void {
    const number_or_error: anyerror!i32 = error.ArgNotFound;
    print("\nOption 1\nType: {}\nValue: {}", 
        .{
             @TypeOf(number_or_error), 
             number_or_error
         }
    );
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: iot_builder

79787788

Date: 2025-10-11 03:26:38
Score: 0.5
Natty:
Report link

Also, where you have

if( j < start )
{
    quickSort( numbers, start, j );
}

the condition should be

if( start < j )

and just below that, where you have

if( i < start )
{
    quickSort( numbers, i, end);
}

the condition should be

if( i < end )
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: The Lost Petrol

79787787

Date: 2025-10-11 03:23:37
Score: 3.5
Natty:
Report link

I was wondering the same thing! Turns out how that options works has changed. It no longer filters when just typing. Now you have to use a search keyboard shortcut first then start typing. If "Filter on Type" is enabled then it will start filtering.

You can find the default keyboard shortcut for your platform here: https://code.visualstudio.com/updates/v1_89#_find-in-trees-keybinding

Reasons:
  • Blacklisted phrase (2): was wondering
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Callum Gare

79787783

Date: 2025-10-11 02:46:30
Score: 1
Natty:
Report link

Uninstall the Microsoft Visual C++ 2015-2022 redistributable and the PostgreSQL with installation failed and try install again.

Has worked for me to upgrade PostgreSQL 17 to 18.

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

79787775

Date: 2025-10-11 02:21:25
Score: 2.5
Natty:
Report link

there isn’t a “remote switch” in the Firebase Console that forces the outer email-sign-in link to use your custom domain without updating how the link is generated. After the Dynamic Links migration, Auth uses your Hosting domain by default (e.g. PROJECT_ID.firebaseapp.com) for mobile flows unless you explicitly tell it otherwise.

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

79787771

Date: 2025-10-11 02:10:23
Score: 3
Natty:
Report link

Oajwobeje no dbeibr Jr RN bright Jen is jtnib iotjtni irjiebbrieb s to go to the year y and the police have Justin and the police

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

79787766

Date: 2025-10-11 01:50:19
Score: 0.5
Natty:
Report link

In Python the from A import C syntax looks for the module/file A, grabs C, and puts it into your namespace. What exactly A is is complicated and can very a lot; basically, it can be the name of a module/folder/file in either Python's module library or in the same directory as the script.

For example, if you ran this:

from my_module import add, subtract

This is what Python would do:

So you can do this:

from my_module import add, subtract
add(1, 2)

When you do A.B, Python is targeting B, which is inside A. For example if you had this file structure:

| my_module [folder]
| -- __init__.py
| -- functions.py [contains add]
| -- other.py

If you ran from my_module.functions import add, Python is first locating my_module, then looking for functions, and then grabs add. The __init__.py file tells Python that this is a module folder and gets run at import time. That file is not essential in Python 3.x, but it is recommended. (There are also other ways to do this, such as setup.py and packaging it with a distributor, but __init__.py is the most modern and recommended way.)

With the setup above, if you tried to do this:

from my_module import add

...you'd get an ImportError because add is not directly inside the my_module folder.

You can go even further and do this:

from my_module import add as renamed_add
renamed_add(1, 3)

(This will install add exactly the same, but it's imported as renamed_add instead.


As for how do install qpid_messaging and qpid, I recognize them vaguely, but I haven't done anything with them personally. you can try running pip install qpid and pip install qpid_messaging in your terminal, if qpid is in the PyPI. If that throws an error or hangs forever, you can maybe look on GitHub or Apache's website for it. When you find it, put it in your site-packages folder. To find the location of your site-packages folder:

import site
print(site.getsitepackages())

(You can do that in an REPL if you don't want to save a file just for that.)

Reasons:
  • Blacklisted phrase (1): how do i
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: EgamerCreations

79787756

Date: 2025-10-11 00:48:08
Score: 2
Natty:
Report link

Managed to configure successfully with allowed_headers

TLDR

Make sure your otel-config whitelists all access control request headers under allowed_headers, such as Authorization (yes, if your request contains this header, it will fail if not specifically whitelisted).

receivers:
  otlp:
    protocols:
      http:
        endpoint: "0.0.0.0:5318"
        cors:
          allowed_origins:
            - https://*.my-domain.com
          # Important, make sure you whitelists all "unsafe" headers
          allowed_headers:
            - Authorization
            - X-Requested-With
            - Accept
            - Accept-Language
            - Content-Language
            - Content-Type
            - Range
          max_age: 86400

First failed attempt

Hey OP, I came across the same issue and thought it couldn't be resolved, getting the same error

Access to resource at 'http://localhost:4318/v1/traces' from origin 'http://localhost:3000' has been blocked by CORS policy: 

Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.

Here's the snippet of my first config.yaml

receivers:
  otlp/public_apps:
    protocols:
      http:
        endpoint: "0.0.0.0:5318"
        cors:
          allowed_origins:
            - https://*.my-domain.com
          max_age: 86400
        auth:
          authenticator: bearertokenauth/public

Here's the curl that I am using to test my otel-collector, note that this is generated by chrome. I read more about preflight request here. I managed to get a 204 status code, but I received no CORS headers, which led to the same subsequent error as you.

curl -I 'https://localhost:5318/v1/logs' \
  -X 'OPTIONS' \
  -H 'accept: */*' \
  -H 'accept-language: en-GB,en-US;q=0.9,en;q=0.8' \
  -H 'access-control-request-headers: authorization,content-type' \
  -H 'access-control-request-method: POST' \
  -H 'origin: https://my-cross-origin.com' \
  -H 'priority: u=1, i' \
  -H 'referer: https://my-cross-origin.com/' \
  -H 'sec-fetch-dest: empty' \
  -H 'sec-fetch-mode: cors' \
  -H 'sec-fetch-site: cross-site'
// no headers were returned
HTTP/2 204

Second attempt with allowed_headers

  -H 'access-control-request-headers: authorization,content-type' \

This line shows the required headers, and surprisingly, authorization is not a safe header!

We then whitelisted authorization specifically:

receivers:
  otlp:
    protocols:
      http:
        endpoint: "0.0.0.0:5318"
        cors:
          allowed_origins:
            - https://*.my-domain.com
          # Important, make sure you whitelists all "unsafe" headers
          allowed_headers:
            - Authorization
            - X-Requested-With
            - Accept
            - Accept-Language
            - Content-Language
            - Content-Type
            - Range
          max_age: 86400

After doing so (and including a few others), the same curl worked where the response status is 204 and all cors headers are present.

curl -I 'https://localhost:5318/v1/logs' \ ... // truncated
HTTP/2 204
date: Tue, 07 Oct 2025 11:01:40 GMT

access-control-allow-credentials: true
access-control-allow-headers: authorization,content-type
access-control-allow-methods: POST
access-control-allow-origin: https://my-domain.com
access-control-max-age: 86400
vary: Origin, Access-Control-Request-Method, Access-Control-Request-Headers

Conclusion

We debugged the same issue when many LLMs are available, and a lot of them give the same "it cannot be done on otelcol-contrib" answer.

However, since it's a very common use case in the industry, we don't think the otelcol-contrib maintainers would have overlooked this issue and decided to debug further.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): getting the same error
  • Low reputation (1):
Posted by: Bobby Cai

79787754

Date: 2025-10-11 00:42:07
Score: 2.5
Natty:
Report link

pls try to change the cross-filter direction to Both

enter image description here

enter image description here

enter image description here

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

79787752

Date: 2025-10-11 00:36:06
Score: 0.5
Natty:
Report link

I have also seen this error message happen at companies that have their own github repositories, but the developer is still trying to connect to "regular" github. For example, the company I work at (The Gap) has its own repository, which is here: github.gapinc.com. I am able to execute "ssh -T [email protected]" successfully and receive the message "You've successfully authenticated, but there's no ssh access." But I will always get "Permission denied (publickey)" if I try to execute "ssh -T [email protected]", because I shouldn't be using github.com. I should be using github.gapinc.com.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Steve Stilson

79787751

Date: 2025-10-11 00:36:06
Score: 1
Natty:
Report link

You can now just select your App Service in Azure, and then select Log Stream from the left menu:

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

79787746

Date: 2025-10-10 23:57:58
Score: 1.5
Natty:
Report link

Such modifications are also possible.

public override bool Equals(object? obj)
{
    if (obj == null) return false;
    ParsedAddress toCompare = (ParsedAddress)obj;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: motosann

79787741

Date: 2025-10-10 23:45:56
Score: 0.5
Natty:
Report link

It seems like a hacky solution as there should be an R Markdown fix, but here is what I landed on that worked to solve this issue. Note that Source Sans Pro and 16px are simply the defaults in quarto, so the html tag is matching those quarto defaults.

::: {#axm-real}
<p align="left" style="font-family: 'Source Sans Pro', sans-serif; font-size: 16px;">
text of axioms listed here
</p>
:::
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: dj_a

79787730

Date: 2025-10-10 23:13:49
Score: 5
Natty:
Report link

I also made a real-time spectrum analyzer – here’s the description of how it works:

https://sylwekkominek.github.io/SpectrumAnalyzer/

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: sylwekkominek

79787720

Date: 2025-10-10 22:41:43
Score: 0.5
Natty:
Report link

Actually I got this error pretty strange way. It seems to be pyinstaller interprets the closed lines that are not supposed to be taken into account. For example to understand whether the class I wrote was working well I added a line, on which a local image was imported. I'd actually closed that line with # afterwards but the exe I generated by pyinstaller didnt ignore that line and tried to import that image and throwed this error.

I deleted the related closed line and generated the exe again and bingo. The issue is gone.

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

79787719

Date: 2025-10-10 22:40:42
Score: 2.5
Natty:
Report link

In systemd v256+, you can do this using systemd-cat. E.g.

echo 'my message' | systemd-cat --namespace=my-namespace

See https://www.freedesktop.org/software/systemd/man/latest/systemd-cat.html for more details.

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

79787718

Date: 2025-10-10 22:39:42
Score: 2
Natty:
Report link

Unfortunately, the default logs do not store for events triggered through the Google Sheet itself.

Rather, you need to attach it to a Google Cloud project to view these kinds of logs.

To do this, please follow these instructions:

  1. Create a Google Cloud Project: https://console.cloud.google.com/welcome

  2. Set up the OAuth Screen: https://console.cloud.google.com/auth/overview

  3. Add yourself as a Test User: https://console.cloud.google.com/auth/audience (scroll down)

  4. Copy your Project ID: See the Homepage of your Project or see this link.

  5. Go back to your Google Sheet Script

  6. Go to Settings: https://script.google.com/home/projects/\[SOME_LONG_STRING\]/settings

  7. Add your Project ID under "Google Cloud Platform (GCP) project"

  8. Try running a function in Google Sheet Script -> this will trigger the OAuth screen

  9. See your logs here: https://console.cloud.google.com/logs/query

Source: https://stackoverflow.com/a/79770014/5771750

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): see this link
  • Long answer (-0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Chris Happy

79787717

Date: 2025-10-10 22:35:41
Score: 2.5
Natty:
Report link

Just simple, use comand line windows (cmd)

makecab file1.txt file2.txt file3.dll file4.exe finalfine.cab

**vote up**

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

79787704

Date: 2025-10-10 21:56:33
Score: 4.5
Natty: 5
Report link

My previous answer was deleted by ?...

And how can we do that in 3D ??

I don't see any DampedSpringJoint3D in Godot ?... Especially if we want to work with JOLT Physics. Is there any possiblity to do the same thing ?

it is so close to the first question, 2D to 3D, just a generalization of the question. According to me, it isn't worth pollute your website with another quastion as it is a logical extension 2D to 3D. Really it is the "same" question. I didn't see that you deleted my answer. What a pity, really, you show a psychorigidity unbelievable. You could make an answer and inform that it should be in another question, but for 2D -> 3D, your delete is pitiful. I am engineer and also associate professor in an engineering school, and if I was so psychorigid I imagine that students would be disappointed.

Reasons:
  • Blacklisted phrase (1): another question
  • Blacklisted phrase (1): how can we
  • Blacklisted phrase (1): Is there any
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: luigi

79787701

Date: 2025-10-10 21:52:32
Score: 2.5
Natty:
Report link

You can also try https://varlock.dev for an alternative to dotenv that will also give you validation and type safety. This will help ensure that env vars are all valid before anything else happens.

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

79787697

Date: 2025-10-10 21:36:28
Score: 0.5
Natty:
Report link

About what you askedو I think I can help!

I’ve had the same issue myself, and dealing with all those ads was super annoying. Eventually, I found a browser extension that removes all iframes from the webpage you're viewing, which really helped!

The extension is called Auto Iframes Remover, and it works on all major browsers like Edge, Chrome, and Firefox.

If you want to learn more or download it, just visit this website and grab the version that suits your browser:

https://wildwestwiki.com/childsPlayExtensions/auto-iframes-remover

Chrome and Edge Extension:

https://chrome.google.com/webstore/detail/auto-iframes-remover/fhenkighldilmobhdgopkhejbaainnfm

Firefox Addon:

https://addons.mozilla.org/en-US/firefox/addon/auto-iframes-remover/

If this extension works for you and turns out to be just what you needed, please drop me a comment and let me know! I'd love to hear how it goes 😊

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

79787695

Date: 2025-10-10 21:33:27
Score: 1
Natty:
Report link
SELECT 
   world.name,
   ROUND(100000*confirmed/population,2), rank() over (order by 100000*confirmed/population)
  FROM covid JOIN world ON covid.name=world.name
WHERE whn = '2020-04-20' AND population > 10000000
ORDER BY population DESC
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ajit Mankar

79787694

Date: 2025-10-10 21:31:26
Score: 4
Natty:
Report link

This is about removed features:

Dict quota; Dirsize quota These drivers are removed. You should use Quota Driver: Count instead along with quota-clone plugin.

Note that switching to quota count can cause all users' indexes to update, so reserve time for this.

Does this mean I can't use what I described in the question?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Vacuum

79787688

Date: 2025-10-10 21:08:22
Score: 2.5
Natty:
Report link

for node mariadb

multipleStatements: false

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Charles Candy

79787687

Date: 2025-10-10 21:08:22
Score: 1
Natty:
Report link

To trim image using Imagick() with 20% fuzziness use

$image->trimImage(0.20 * $image::getQuantum());

or

$image->trimImage(0.20 * Imagick::getQuantum());

https://phpimagick.com/Imagick/trimImage

And in case of Gmagick()

$max_quantum = 65535;
switch ($image->getQuantumDepth()['quantumDepthLong']) {
    case  8: $max_quantum = 255; break;
    case 16: $max_quantum = 65535; break;
    case 32: $max_quantum = 4294967295; break;
}
$image->trimImage(0.20 * $max_quantum);
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: DidThis

79787674

Date: 2025-10-10 20:48:13
Score: 6.5 🚩
Natty:
Report link

I have a similar issue. My script logs in but will not synch the directories?

Here is what I have so far as my script.

#Building A Report Move Script

#Open Session
@echo on

"C:\Program Files (x86)\WinSCP\WinSCP.com" ^
  /log="C:\writable\path\to\log\WinSCP.log" /ini=nul ^
  /command ^
    "open sftp://SBCadmin:[email protected]/ -hostkey=""ssh-ed25519 255 otNIccAuAOKu5/+6IGTXGzcuIcw4Kf1PO/OJA7OLUWI""" ^
    "synchronize local "D:\SFTPRoot\BldgA" "/home/niagara/stations/LincolnPlaza_Bldg_A/shared/AutoCx"" ^
    "exit"

set WINSCP_RESULT=%ERRORLEVEL%
if %WINSCP_RESULT% equ 0 (
  echo Success
) else (
  echo Error
)
exit /b %WINSCP_RESULT%

Any ideas with the synch line?

Thanks....

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Any ideas
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have a similar issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Stephen

79787670

Date: 2025-10-10 20:43:12
Score: 1.5
Natty:
Report link

Asymptotic notations basically describe how an algorithm’s running time grows with input size.

O (Big O) - Upper bound - for the worst case.

Example: Bubble Sort → O(n²).

Ω (Big Omega) - Lower bound - for the best case.

Example: Bubble Sort → Ω(n).

Θ (Big Theta) - Tight bound - when both upper and lower are same.

Example: Merge Sort → Θ(n log n).

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

79787661

Date: 2025-10-10 20:18:07
Score: 1
Natty:
Report link

Docker Compose

If experienced when stopping container(s):

docker-compose down --remove-orphans

otherwise:

docker-compose up --remove-orphans
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ian Shiundu

79787660

Date: 2025-10-10 20:16:07
Score: 1
Natty:
Report link

i stacked using

from sklearn.ensemble import HistGradientBoostingRegressor, GradientBoostingRegressor, StackingRegressor

from sklearn.linear_model import RidgeCV

stack = StackingRegressor(
    estimators=[
        ('hgb', hgb),
        ('gbr', gbr)
    ],
    final_estimator=RidgeCV(),
    n_jobs=-1
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: KMushfiqur

79787652

Date: 2025-10-10 19:54:02
Score: 0.5
Natty:
Report link

First, are A, B, and C subsystems?

If not, Simulink requires that every output variable in a MATLAB Function block have a fixed dimension.
If the variable V in Block C is not completely assigned or assigned values of different sizes in different conditions, Simulink cannot determine its dimension at compile time.
Hence the error

For instance:

function V = fcn(U)
if U > 0
    V = [1; 2; 3];  
else
    V = 0;         
end

In the code above, the output size of V changes depending on the condition.

To solve:
Clearly declare the size of V So it remains constant:

function V = fcn(U)
V = zeros(3,1);     % fix size at 3x1
if U > 0
    V = [1; 2; 3];
else
    V = [0; 0; 0];
end

Another way is that you can enable visual- signal in MATLAB settings

Open the MATLAB Function Block → Edit Data → check Variable size, set upper bound

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

79787646

Date: 2025-10-10 19:39:59
Score: 1
Natty:
Report link

As an alternative to @pixel-process's answer, you could develop your package somewhere on your normal Python path, giving the parent directory the name of your package, and then use absolute imports. E.g., in test.py you could then say from pkg_name.utils_dataset.px_chol import CLASS_NAME.

The advantage to using absolute rather than relative imports is, as PEP 8 says,

They are usually more readable and tend to be better behaved (or at least give better error messages) if the import system is incorrectly configured.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @pixel-process's
  • Low reputation (1):
Posted by: PT-Hrothgar

79787644

Date: 2025-10-10 19:38:59
Score: 2
Natty:
Report link

Unfortunately the nature of stateful navigation is that the state is maintained. If you don't want your state maintained you'll need to use a normal ShellRoute with no state and rely on finer manipulation such as overriding didPush, didPushNext, didPop, didPopNext, and didChangeDependencies as well as the obvious initState.

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

79787638

Date: 2025-10-10 19:27:56
Score: 6 🚩
Natty:
Report link

Thanks for your question. The PowerPoint JavaScript API currently doesn’t support hiding or showing slides. If you'd like to suggest this feature, please post in the M365 Developer Platform community.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): please post
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jonah Karpman

79787637

Date: 2025-10-10 19:27:56
Score: 1
Natty:
Report link

For the grid to work properly you need to add the directive
@rendermode InteractiveServer

For the sort to work you need to adjust the database query if you're getting your data from database.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: pdube

79787633

Date: 2025-10-10 19:09:52
Score: 1.5
Natty:
Report link

from ..utils_dataset.px_chol import CLASS_NAME should work for an import like this. Adding .. will use the parent directory of test.py for the import.

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

79787621

Date: 2025-10-10 18:39:46
Score: 1
Natty:
Report link

These three data structures are mainly different in how they store and access the data:

  1. Linked list

2. Binary tree (especially binary search tree – BST)

3. Hash Table

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

79787619

Date: 2025-10-10 18:36:45
Score: 0.5
Natty:
Report link

The equivalent of which.max and which.min is argmax and argmin respectively.

y = [1, 4, 3, 2]
argmax(y)
> 2

https://docs.julialang.org/en/v1/base/collections/#Base.argmax

In earlier versions there were the indmax and indmin functions, but they have been deprecated and removed in the meanwhile. It seems they were removed with Julia 0.7 and 1.0 released in August 2018.

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

79787612

Date: 2025-10-10 18:25:43
Score: 2.5
Natty:
Report link

Use -w0

echo -n "hello" | nc -4u -w0 localhost 8000

From @simon-unsworth 's answer below.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • User mentioned (1): @simon-unsworth
  • Low reputation (0.5):
Posted by: brookbot

79787593

Date: 2025-10-10 17:46:33
Score: 0.5
Natty:
Report link

Dijkstra's finds the shortest path from x to y by calculating, and using, the shortest path to all nodes z, that are adjacent to y and closer to x than y is: it is the minimum of dist(z) + weight(z,y) for all such z.

An optimal substructure defines an ordering, and an ordering also defines an optimal substructure, so a great many algorithms, have an optimal substructure, e.g. summing the values in an array via partial sum of the elements before it, but are not traditionally classified as dynamic programming algorithms.

CLRS:
Shortest-paths algorithms typically rely on the property that a shortest path between two vertices contains other shortest paths within it. (The Edmonds-Karp maximum-flow algorithm in Chapter 26 also relies on this property.) This optimal substructure property is a hallmark of the applicability of both dynamic programming (Chapter 15) and the greedy method (Chapter 16). https://www.cs.cmu.edu/afs/cs/academic/class/15451-s04/www/Lectures/shortestPaths.pdf

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

79787583

Date: 2025-10-10 17:29:29
Score: 2.5
Natty:
Report link

I believe you need a file in each directory "_init_.py" to tell python to see that as a package for you to call.

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

79787580

Date: 2025-10-10 17:27:28
Score: 1
Natty:
Report link

You can set options using the set method

var element = document.getElementById('element-to-print');
var opt = {...};
html2pdf().set(opt).from(element).save();

this options object takes a lot of configs. You can set the styles from here. Refer to the docs to see what options you can provide.

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

79787578

Date: 2025-10-10 17:22:27
Score: 2
Natty:
Report link

I know this is an old thread, but this is a common query and this page came up in my google search.

This is an alternate, practical, simple method that does not account for negative numbers or trailing zeros.

For Cell B2:

=LEN(TEXT(B2,"0.########E+00"))-5

To add negative numbers:

=IF(B2<0,LEN(TEXT(B2,"0.########E+00"))-6,LEN(TEXT(B2,"0.########E+00"))-5)

Add more #'s for more precision.

Reasons:
  • No code block (0.5):
  • Filler text (0.5): ########
  • Filler text (0): ########
  • Filler text (0): ########
  • Low reputation (1):
Posted by: MattS

79787566

Date: 2025-10-10 17:05:23
Score: 1
Natty:
Report link

If anybody else reaches this place, especially for the Remote VSCode server enthusiasts, I found out how stupid I was and why Intellisense was not working at all.

I checked the .cache folder. Because the remote machine was very low on disk space for the home directories, I created a symlink to a local SSD for a similar .cache folder. The problem was, I deleted the .cache folder from the SSD (for refreshing the Intellisense database that no longer worked properly) and the symlink remained dangling and could not create any new data inside.

Took me no more then 3 months to figure that out. So yeah, check for file descriptor access limits, symlink, or simply disk space where the cache is stored.

Kept only the C/C++ Extension Pack extension. Having also C/C++ extension seemed to conflict with the other one so for now, seems clean.

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

79787565

Date: 2025-10-10 17:03:22
Score: 2
Natty:
Report link

Steps for insertion in AVL trees -

  1. Insert the new node as in a normal binary search tree (BST).

  2. Move back up the tree and calculate the balance factor for each node:
    balance factor = height of left subtree - height of right subtree.

  3. If the balance factor becomes greater than 1 or less than -1 (means balance factor should be -1, 0, +1), the tree is unbalanced and needs rotation.
    There are four types of rotation which include -

    • Left left (LL) rotation - when a node is inserted in the left subtree of the left child.

    • Right right (RR) rotation - when a node is inserted into the right subtree of the right child.

    • Left right (LR) rotation - when a node is inserted into the right subtree of the left child.

    • Right left (RL) rotation - when a node is inserted in the left subtree of the right child.

      For example, this is a balanced AVL tree -

      enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: muskan

79787561

Date: 2025-10-10 17:02:22
Score: 2
Natty:
Report link

CockroachDB depends on clock synchronization for its consistency guarantees so running NTP or another service is necessary to keep clock skew in check and the cluster healthy.

Recommended configurations and tutorials can be found here.

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

79787556

Date: 2025-10-10 16:59:20
Score: 8.5 🚩
Natty: 5.5
Report link

I have this exact same problem. Did you ever figure it out?

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever figure it out
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Max Ildari

79787554

Date: 2025-10-10 16:56:19
Score: 1.5
Natty:
Report link

@Maddy Here's a solution I have wherein you can intercept the request API that you are particularly expecting where the code is after user login from the auth step.

Scenario: build percent-encoded auth URL with PKCE S256
    
    #....this will be your code to generate the authURL which you already have above...

    # --- Start browser and navigate to auth URL ---
    Given driver authUrl

    # --- Perform login on Keycloak page ---
    And waitFor("input#username")
    And input("input#username", username)
    And input("input#password", password)

    # This is where you can intercept the API so once you click submit it will capture the request.
    * def mock = driver.intercept({ patterns: [{ urlPattern: '*/redirect*' }], mock: 'mock.feature' })
    And click("input#kc-login, button#kc-login, input[name=login], button[type=submit]")


#---- on a separate feature file you will create mock.feature that will store the #requestPath and requestParams on the intecepted API ---
#Here's my mock.feature file looks like:

@ignore
Feature:

Background:
* def savedRequests = []

Scenario: pathMatches('<substitute this with your API pattern>')
* savedRequests.push({ path: requestPath, params: requestParams })
* print 'saved:', savedRequests
* print savedRequests[0].params.code
* def response = <html><body><h2>Code captured</h2></body></html>
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Maddy
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Gelo

79787553

Date: 2025-10-10 16:56:19
Score: 0.5
Natty:
Report link

Use oauth2Login, not formLogin

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: ch4mp

79787544

Date: 2025-10-10 16:51:18
Score: 1
Natty:
Report link

One another possibility that might cause this is manual updated .git/hooks/pre-commit file that is fetching from an older default branch which does not exists in the remote at all.

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

79787522

Date: 2025-10-10 16:18:12
Score: 2.5
Natty:
Report link

You need to add a space after each comma and it would simply work.
Eventually, you may check your local numbers configuration to see if it describes the comma as thousands or fraction separator to understand why your original statement did not work.

SELECT * FROM SOMESCHEMA.SOMETABLE
WHERE ID IN (123, 456);
Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Lyubomir

79787517

Date: 2025-10-10 16:11:10
Score: 3
Natty:
Report link

Just do this and you have no problem whatsoever.

@echo off

for /f %%s in (version.txt) do set VERSION=%%s

echo %VERSION%

Or this:

for /f "usebackq" %%s in (`type version.txt`) do set VERSION=%%s

echo %VERSION%

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @echo
  • Low reputation (1):
Posted by: Ben Mar

79787514

Date: 2025-10-10 16:06:09
Score: 2
Natty:
Report link

After doing a lot of research, I realized that the issue has to do with the use of LSTM.

LSTM and RNN are critized for begin bad precisely at predicting future values of a sequence and often used for predicting intermediate values in voice recognition or sentiment analysis.

Futher research showed me that, for forecasting, it is recommended to use Seq2Seq models like an LSTM encoder-to-decoder or attention based models that don't rely on autoregression.

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

79787512

Date: 2025-10-10 16:00:08
Score: 2
Natty:
Report link

this worked for me. had to refresh twice. thank you so much.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Whitelisted phrase (-1): this worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rushbh

79787508

Date: 2025-10-10 15:54:06
Score: 1
Natty:
Report link

GitHub's built-in branch protection rules do not allow for per-branch configuration of merge strategies.

But, you can enforce a "linear history" for specific branches. This has the effect of requiring either squash and merge or rebase and merge, disallowing traditional merge commits.

For master:

For develop:


This only disallows traditional merge commits. You'd still need to trust your team to select the correct option when merging into master.

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

79787504

Date: 2025-10-10 15:51:05
Score: 0.5
Natty:
Report link

Since version 6, you can now use the function chart.setTheme(isDarkMode ? 'dark' : 'default');.

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

79787500

Date: 2025-10-10 15:40:03
Score: 2.5
Natty:
Report link

What worked for me was to install the C++ build tools from Visual Studio. I was installing it on a new device, and this resolved the issue.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Erik Peralta

79787488

Date: 2025-10-10 15:26:59
Score: 0.5
Natty:
Report link

The answer by Alohci is mostly correct, but here is some clarification that I needed when working through this.

If you want to add overflow: hidden on the body tag, but you want the scrollbar gutter to be applied, all you need to do is to apply scrollbar-gutter to the html tag.

.html {
   scrollbar-gutter: stable;
}

.body {
   overflow: hidden;
}

(Alohci's answer had overflow: hidden on the html tag and that's not necessary, or applies to what the OP was asking.)

In our case, we are setting the overflow: hidden to the body tag via JavaScript when an event is triggered.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Eric

79787485

Date: 2025-10-10 15:22:58
Score: 0.5
Natty:
Report link
Thank you very much for your comments, they were very helpful. Just to add to this, in my case, I use a GitLab pipeline, so these files also need to be considered. Here's my example:
native-build-dev:
stage: native-build-dev
tags:
- native-build
image: maven:3.9.6-eclipse-temurin-21
script:

- echo "Compiling..."
- mvn -U -s settings.xml clean package -Dnative -Dquarkus.native.remote-container-build=true -Dquarkus.native.builder-image=quay.io/quarkus/ubi9 -quarkus-mandrel-builder-image:jdk-21 -Dquarkus.profile=dev
- ls -la target/
artifacts:
paths:
- target/*.jar
- target/*-runner
- target/*.so
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Xavier Gress

79787481

Date: 2025-10-10 15:14:56
Score: 0.5
Natty:
Report link

Solved the Issue, apperently it wasn't a programming related issue but a voltage issue I had in my system.
This code worked using the Pico2W and the LiquidCrystalI2C lib.

#include <Arduino.h>
#include <Wire.h>
#include <LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27, 20, 4);

void setup()
{
  lcd.init();                      // initialize the lcd 
  lcd.backlight();
  Serial.begin(9600);
}

void loop()
{
  Serial.println("Testing LCD");
  lcd.clear();
  lcd.setCursor(0, 0);
  lcd.print("Testing LCD");
  delay(2000);
  lcd.clear();
  lcd.setCursor(0, 1);
  lcd.print("Abrakadabra");
  delay(2000);
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Marius Blees

79787473

Date: 2025-10-10 14:59:53
Score: 1
Natty:
Report link

docker compose down && docker compose up -d

Simple solution for new versions of Docker

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: Sadidul Islam

79787464

Date: 2025-10-10 14:47:50
Score: 2.5
Natty:
Report link

Thanks to @mplungjan I was able to fix the issue by adding a timeout

setTimeout(() => {
    history.pushState(
      { guard: true, html: pageContent.innerHTML },
      null,
      window.location.href
    );
    console.debug("Guard state reinserted");
  }, 0);
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @mplungjan
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: z3po

79787456

Date: 2025-10-10 14:40:48
Score: 1.5
Natty:
Report link

Typo, should be serial_number not serial_numbers

See  Marko E comment who spotted this :)

Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Joly

79787453

Date: 2025-10-10 14:38:48
Score: 3
Natty:
Report link

I guess this has not been added yet despite the instructions. I was able to see that in their working example, they do not use this process and instead make a fetch POST request that accomplishes the same.

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

79787452

Date: 2025-10-10 14:38:48
Score: 0.5
Natty:
Report link

I notice the same thing, there might be a bug in Safari.

The selected response provides a very clunky way of updating the permission state, which is valid but not optimal.

Optimally the change event fires and the assigned listeners trigger (if it would work as expected). But if a separate optimal way of figuring out permissions is wanted (like Nightwalker's answer attempted to propose) you would just await the getUserMedia promise, and if it resolves with no errors, then permission is granted.

No need for intervals or any weird hacky solutions.

If the user denies, the getUserMedia request will throw with a DOMException name of NotAllowedError (some browsers may handle it with a different error, but you can infer it by testing in a catch/log).

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

79787447

Date: 2025-10-10 14:31:46
Score: 2
Natty:
Report link

You could just use a free AI model's API and connect it through flask as a backend so no one can see your API key. Try Cohere. If you want your AI model locally installed which means users of your website would directly interact with your server, try llama.

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

79787437

Date: 2025-10-10 14:20:43
Score: 1
Natty:
Report link

With GROUPBY the formula in cell D1 looks like this:

=GROUPBY(B:B,A:A,SUM,3,0)

result table

GROUPBY function reference

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

79787420

Date: 2025-10-10 14:03:39
Score: 0.5
Natty:
Report link

Years later but if anyone else is looking, tou can get the version from the .msi with this:

        private String GetVersionFromMsi(string FilePath)
        {
            //var FilePath = @"C:\Users\self\path\to\your\installFile.msi";
            var view = ((dynamic)Activator.CreateInstance(Type.GetTypeFromProgID("WindowsInstaller.Installer")))
                .OpenDatabase(FilePath, 0)
                .OpenView("SELECT Value FROM Property WHERE Property = 'ProductVersion'");
            view.Execute();
            string version = view.Fetch().StringData(1);
            return version;
        }

From https://stackoverflow.com/a/76829255/7303640

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Amy

79787419

Date: 2025-10-10 14:03:39
Score: 0.5
Natty:
Report link

There will be two issues in the code which might be causing the filter problem , below fixes solve the problem

  1. "enforceFocus" needs to be part of Dialog box, so that its need to be editable on Dialog window

  2. Another issue can be with DataGrid implementation where getRowId needs to be unique for each field.
    example as
    getRowId={(row) => row.lineNumber +row.errorDescription}

Reasons:
  • No code block (0.5):
Posted by: Sandeep Jain

79787416

Date: 2025-10-10 14:02:38
Score: 0.5
Natty:
Report link

@cimentadaj
You've answered your own question on the "echo t doesn't get executed"
that's it, the echo t is skipped and the false part is, then, executed

Thisk this way: We have to see && as then and || as else

Only one of them is executed after the IF ( [[ ]] ) evaluation

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

79787388

Date: 2025-10-10 13:30:31
Score: 3
Natty:
Report link

go to git bash terminal and run for example

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mehdi Musavand

79787380

Date: 2025-10-10 13:24:29
Score: 2
Natty:
Report link

No such function in IntelliJ as of now. But there is an open source app that I use for this. You can configure how your F-keys behave per app. So you can set them as F1-F12 in IntelliJ and keep them as media control everywhere else. https://github.com/Pyroh/Fluor

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

79787367

Date: 2025-10-10 13:09:25
Score: 4
Natty: 4.5
Report link

You now can just use <DataGrid d:ItemsSource="{d:SampleData}"/>

https://learn.microsoft.com/en-us/visualstudio/xaml-tools/xaml-design-time-sample-data?view=vs-2022

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

79787363

Date: 2025-10-10 13:00:23
Score: 2
Natty:
Report link

Works just fine:

baseContext.resources.configuration.setLocale(Locale.GERMAN)
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (0.5):
Posted by: kalinjul

79787359

Date: 2025-10-10 12:52:21
Score: 3.5
Natty:
Report link

I have't solution for my issue. But I does custom field and changed my update form with tis way. Why Backpack have't simply solutions for relations? All Laravel bulds with relations. Very strange situation!

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alex Cool

79787356

Date: 2025-10-10 12:46:20
Score: 1
Natty:
Report link

I have figured it out ... I've just added pointless data that I can ignore elsewhere in a normal SQL SELECT column, and kept the data that I need in the secondary column.

Here is the 'ALTER' statement:

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER VIEW [dbo].[INF_GetWebOrder_JsonNoBillNoLines] AS
SELECT 
  dbassyOrderio.OrderNo AS 'OrderyNumNum',
  JSON_OBJECT(
    /*StaticDataStart*/
    'currencyCode': 'GBP',
    /*StaticDataEnd*/
    'phoneNumber':dbassyOrderio.Telephone,
    'email':dbassyLoggyLogins.Email
   ABSENT ON NULL) AS 'OrderishData'
FROM
    db_Orders AS dbassyOrderio
INNER JOIN 
    db_Logins AS dbassyLoggyLogins ON dbassyOrderio.LoginId = dbassyLoggyLogins.Id
GO

PERFECT!

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: influentialeliot

79787341

Date: 2025-10-10 12:30:16
Score: 2
Natty:
Report link

There is a feature request about it:

Support for the C++ decimal floating-point types (for "decimal floating point arithmetic")
https://bugreports.qt.io/browse/QTBUG-33026

where you can vote.

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