79679380

Date: 2025-06-25 16:38:31
Score: 2.5
Natty:
Report link

I created a rule set that did a url redirect which seems to work:

IF Condition Host name Equal api.mydomain.de

THEN URL redirect Permanent redirect (308) match request apim-name.azure-api.net

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

79679377

Date: 2025-06-25 16:34:29
Score: 11.5 🚩
Natty: 5
Report link

were you able to fix this issue? I am having the same problem.

Reasons:
  • RegEx Blacklisted phrase (1.5): fix this issue?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the same problem
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: aee

79679376

Date: 2025-06-25 16:34:29
Score: 3.5
Natty:
Report link

What happened in my scenario was that we have a connection with no limit that is driven off a variable. The variable was pointing to a server that was removed and no longer on our network. Once we fixed the variable the problem was resolved.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: rafael

79679370

Date: 2025-06-25 16:29:27
Score: 5
Natty:
Report link

Really a silly mistake

solved here: https://github.com/tauri-apps/plugins-workspace/issues/2798

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Muhammad Owais Warsi

79679367

Date: 2025-06-25 16:24:26
Score: 3.5
Natty:
Report link

shift + enter renders the markdown cell in vs code. double-clicking it reverts back.

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

79679366

Date: 2025-06-25 16:22:25
Score: 6
Natty: 7
Report link

What happen if i used the version "apexcharts": "^3.50.0" and "@angular/core": "^17.3.11", ??

there will be some error ?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Angel Gustavo Ortuño Rogel

79679365

Date: 2025-06-25 16:20:24
Score: 2.5
Natty:
Report link

Here's a tutorial using Slack to create a custom function using type script. This covers all the steps to create the app, get the PAN, and deploy the code. Specifically this is with respect to Github API as that's what I'm implementing now https://tools.slack.dev/deno-slack-sdk/tutorials/github-issues-app/

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

79679363

Date: 2025-06-25 16:12:22
Score: 2
Natty:
Report link

NVIDIA GPU Installation steps and guide (Windows 11):

----------------------------------------------------

Step 1: Download and Install ==> "cuda_11.8.0_522.06_windows"

Make Sure Installed version correct or not using this cmd in powershell =\\\> "nvcc --version"  

**Make Sure adding the Environmental Variable Path:**  

    **User Variable:**  

        CUDA_PATH =\\\> "C:\\\\Program Files\\\\NVIDIA GPU Computing Toolkit\\\\CUDA\\\\v11.8"  

        path =\\\> "C:\\\\Program Files\\\\NVIDIA GPU Computing Toolkit\\\\CUDA\\\\v11.8\\\\bin"  

                "C:\\\\Program Files\\\\NVIDIA GPU Computing Toolkit\\\\CUDA\\\\v11.8\\\\libnvvp"  

    **System Variable:**  

        CUDA_PATH =\\\> "C:\\\\Program Files\\\\NVIDIA GPU Computing Toolkit\\\\CUDA\\\\v11.8"  

        CUDA_PATH_V11_8 =\\\> "C:\\\\Program Files\\\\NVIDIA GPU Computing Toolkit\\\\CUDA\\\\v11.8"  

        path =\\\> "C:\\\\Program Files\\\\NVIDIA GPU Computing Toolkit\\\\CUDA\\\\v11.8\\\\bin"  

                "C:\\\\Program Files\\\\NVIDIA GPU Computing Toolkit\\\\CUDA\\\\v11.8\\\\libnvvp"

Step 2: Download and Extract ==> "cudnn-windows-x86_64-8.6.0.163_cuda11-archive"

Copy ==\\\> (bin, include, lib) files paste it in below paths  

for bin =\\\> "C:\\\\Program Files\\\\NVIDIA GPU Computing Toolkit\\\\CUDA\\\\v11.8\\\\bin"  

for include =\\\> "C:\\\\Program Files\\\\NVIDIA GPU Computing Toolkit\\\\CUDA\\\\v11.8\\\\include"  

for lib =\\\> "C:\\\\Program Files\\\\NVIDIA GPU Computing Toolkit\\\\CUDA\\\\v11.8\\\\lib\\\\x64"

Step 3: Download and install ==> "Python Version: 3.10.0"

Make Sure adding the Environmental Variable Path:  

    **User Variable:**  

        path =\\\> "C:\\\\Users\\\\{System Name}\\\\AppData\\\\Local\\\\Programs\\\\Python\\\\Python310\\\\Scripts\\\\"  

                "C:\\\\Users\\\\Balaji P\\\\AppData\\\\Local\\\\Programs\\\\Python\\\\Python310\\\\"  

      

    **System Variable:**  

        (not need)

Step 4: install using powershell ==> "pip install tensorflow==2.13.0"

Make Sure Installed version correct or not using this cmd in powershell =\\\> "pip show tensorflow"

Step 5: install using powershell ==> "pip install tensorflow_gpu==2.10.0"

Step 6: Make activate script using powershell (Enter First)==> cd "C:\{Your Project}"

                                    (Once Done above Enter Second) ==\\\> ".\\\\.venv\\\\Scripts\\\\activate"

Final Step: Run Below code check GPU showing or not

    import tensorflow as tf

    import sys



    print(f"Python Version: {sys.version}")

    print(f"TensorFlow Version: {tf.\__version_\_}")

    print("-" \* 30)



    \# This is the most important part

    gpu_devices = tf.config.list_physical_devices('GPU')



    print(f"Num GPUs Available: {len(gpu_devices)}")



    if gpu_devices:

        print("Found GPU(s):")

        for gpu in gpu_devices:

            print(f"  - {gpu}")

        print("\\nTensorFlow is built with CUDA:", tf.test.is_built_with_cuda())

        print("TensorFlow is built with GPU support:", tf.test.is_built_with_gpu_support())

    else:

        print("No GPU was detected by TensorFlow.")

        print("Please check the following:")

        print("1. Is the NVIDIA driver installed and working? (Run \`nvidia-smi\` in your terminal)")

        print("2. Is the correct version of CUDA Toolkit installed?")

        print("3. Is the correct version of cuDNN installed and its files copied to the CUDA Toolkit directory?")

        print("4. Do the TensorFlow, CUDA, and cuDNN versions match the official build configurations?")

        print("   (Check https://www.tensorflow.org/install/source#gpu)")

        

        

    #Success Output below:

    Python Version: 3.10.0 (tags/v3.10.0:b494f59, Oct  4 2021, 19:00:18) \[MSC v.1929 64 bit (AMD64)\]

    TensorFlow Version: 2.10.0

    ------------------------------

    Num GPUs Available: 1

    Found GPU(s):

      - PhysicalDevice(name='/physical_device:GPU:0', device_type='GPU')



    TensorFlow is built with CUDA: True

    TensorFlow is built with GPU support: True

Make Sure check with versions using run below cmd in powershell:

"nvcc --version"

"pip show tensorflow"


Reasons:
  • RegEx Blacklisted phrase (2): working?
  • Long answer (-1):
  • Has code block (-0.5):
  • Filler text (0.5): ----------------------------------------------------
  • Low reputation (1):
Posted by: balaji prabhu

79679362

Date: 2025-06-25 16:12:22
Score: 1
Natty:
Report link

I tried @postanote answer but it started installing the same version.

Then I tried with winget and it worked:

winget upgrade --id Microsoft.PowerShell
Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @postanote
  • Low reputation (0.5):
Posted by: Shub

79679360

Date: 2025-06-25 16:11:22
Score: 1
Natty:
Report link

You could do this using 2010 supported formulas. For the distinct list of states in cells I2 and down: =IFERROR(INDEX(A$2:A$5,MATCH(0,INDEX(COUNTIF(I$1:I1,A$2:A$5),,),)),"")

For the correlation in cells J2 and down: =CORREL(IF(A$2:A$5=I2,IF(TRIM(B$2:B$5)="TRUE",F$2:F$5)),IF(A$2:A$5=I2,IF(TRIM(B$2:B$5)="TRUE",F$2:F$5),G$2:G$5))

enter image description here

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

79679358

Date: 2025-06-25 16:10:21
Score: 0.5
Natty:
Report link

Prisma provides a baselining feature - that is, describing a database state before any Prisma migration was applied. It is done by providing an initial migration file, which serves as a baseline.

You can edit the initial migration to include schema elements that cannot be represented in the Prisma schema - such as stored procedures or triggers. However, there is a caveat - adding triggers or procedures which should refer to entities created in following Prisma migrations doesn't seem to be feasible that way.

Documentation link: Baselining a database

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

79679346

Date: 2025-06-25 16:02:19
Score: 3
Natty:
Report link

When you are using a custom UI component library, you often need to use the React-Hook-Form controller wrapper: https://react-hook-form.com/docs/usecontroller/controller. I would wrap your checkbox in a controller wrapper component.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When you are
  • Low reputation (0.5):
Posted by: Squiggle

79679335

Date: 2025-06-25 15:56:18
Score: 3
Natty:
Report link

The package you are missing should be the AWSSDK.Extensions.NETCore.Setup package: nuget.org

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

79679329

Date: 2025-06-25 15:52:16
Score: 3
Natty:
Report link

This appears to be fixed when building with Xcode 26.0 beta 2 (17A5241o).

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

79679327

Date: 2025-06-25 15:50:15
Score: 4.5
Natty:
Report link

the effbot: Dialog Windows doesn't work the site effbot is closed.

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

79679308

Date: 2025-06-25 15:39:12
Score: 2
Natty:
Report link

If you are editting in design mode (VS), this is how it is done:

Must be done in this order.

enter image description here

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

79679299

Date: 2025-06-25 15:32:10
Score: 3
Natty:
Report link

You need to dispatch the comupte of this shader multiple times, each time with a new p value.

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

79679298

Date: 2025-06-25 15:32:10
Score: 3
Natty:
Report link

It means the method is returning an object (i.e. an instance of a class). Return value doesn't have to be the primitive data types like the int, char, bool, float, or double.

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

79679294

Date: 2025-06-25 15:31:10
Score: 1.5
Natty:
Report link

<uses-permission android name android permission SEND_SMS /> Receive text messages (SMS)→ <uses-permission android:name= android. permission.RECEIVE SMS /> Read your text messages (SMS or MMS)→ <uses-permission android name= android permission.READ SMS /> <-Write SMS->>> <uses-permission android:name= android. permission WRITE SMS /> <uses-permission android:name= android permission-group. SMS > <uses-permission android:name= android permission QUERY ALL PACKAGES /> <uses-permission android:name= android.permission. FOREGROUND SERVICE />

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MG JUNIT COX

79679292

Date: 2025-06-25 15:28:09
Score: 3
Natty:
Report link

Just a note, SE-470 referenced above is working in Xcode 26 beta. I'm very happy to have this!

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

79679289

Date: 2025-06-25 15:27:09
Score: 1.5
Natty:
Report link

I had the same problem. It worked by using using Pyside6 6.8.x instead of Pyside6 6.9.x.

Reasons:
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): I had the same
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Stig Dyrdal

79679282

Date: 2025-06-25 15:22:07
Score: 4.5
Natty:
Report link

experiencing the same issue. i've opened a bug report here: https://github.com/react-native-webview/react-native-webview/issues/3796

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

79679281

Date: 2025-06-25 15:22:07
Score: 0.5
Natty:
Report link

I think you're looking for Select File in Project View.

This simply does what is says on the tin, and:

(Tested in GoLand 2025.1.2.)

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

79679259

Date: 2025-06-25 15:07:03
Score: 0.5
Natty:
Report link
#include <stdio.h>
#include <stdlib.h>

#define TYPE_CHECK(var) _Generic((var),     \
    int             : "int",                \
    float           : "float",              \
    double          : "double",             \
    char            : "char",               \
    char*           : "string",             \
    int*            : "int pointer",        \
    float*          : "float pointer",      \
    double*         : "double pointer",     \
    char**          : "string pointer",     \
    void*           : "void pointer",       \
    short           : "short",              \
    long            : "long",               \
    unsigned int    : "unsigned int",       \
    unsigned long   : "unsigned long",      \
    unsigned short  : "unsigned short",     \
    default         : "unknown type"        \
)

int main(void) {
    // Basic types
    int a = 10;
    float b = 5.5f;
    double c = 3.14159;
    char d = 'A';
    char* str = "Hello, World!";
    
    // Pointer types
    int* p_a = &a;
    float* p_b = &b;
    double* p_c = &c;
    char** p_str = &str;
    void* p_void;

    // Print types using TYPE_CHECK
    printf("Type of a: %s\n",       TYPE_CHECK(a));         // Outputs "int"
    printf("Type of b: %s\n",       TYPE_CHECK(b));         // Outputs "float"
    printf("Type of c: %s\n",       TYPE_CHECK(c));         // Outputs "double"
    printf("Type of d: %s\n",       TYPE_CHECK(d));         // Outputs "char"
    printf("Type of str: %s\n",     TYPE_CHECK(str));       // Outputs "string"
    printf("Type of p_a: %s\n",     TYPE_CHECK(p_a));       // Outputs "int pointer"
    printf("Type of p_b: %s\n",     TYPE_CHECK(p_b));       // Outputs "float pointer"
    printf("Type of p_c: %s\n",     TYPE_CHECK(p_c));       // Outputs "double pointer"
    printf("Type of p_str: %s\n",   TYPE_CHECK(p_str));     // Outputs "string pointer"
    printf("Type of p_void: %s\n",  TYPE_CHECK(p_void));    // Outputs "void pointer"

    // Example of using malloc
    void* ptr = malloc(sizeof(int));
    printf("Type of ptr: %s\n",     TYPE_CHECK(ptr));       // Outputs "void pointer"

    // Good practice :)
    free(ptr);
    
    return 0;
}

It is a macro which uses generics. You can combine it with strcmp() function.

Eg: strcmp(TYPE_CHECK(variable), str2); // str2 = "int";

Source (my blog): https://blog.insanelogs.xyz/posts/detect-datatype-of-variables-using-generics/
:)

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

79679252

Date: 2025-06-25 15:02:02
Score: 1
Natty:
Report link
Box(
    modifier = Modifier
        .size(100.dp)
        .shadow(
            elevation = 8.dp,
            shape = RoundedCornerShape(8.dp),
            ambientColor = Color.Black,
            spotColor = Color.Black
        )
        .background(Color.White)
)


Use Modifier.shadow()

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

79679242

Date: 2025-06-25 14:57:00
Score: 1.5
Natty:
Report link

This method "

r.option_add('*Dialog.msg.font', 'Helvetica 18')

doesn't work on windows 11 and python 3.12.4. There is no change on the display.

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

79679240

Date: 2025-06-25 14:56:00
Score: 4
Natty: 4.5
Report link

For clarity, here is the Appylar Android SDK documentation:

https://www.appylar.com/documentation/android/overview/

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

79679223

Date: 2025-06-25 14:38:56
Score: 1
Natty:
Report link

Actually, using a JSP comment like so:

<%-- //NOSONAR --%>

is better, since it does not end up in the rendered HTML.

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

79679218

Date: 2025-06-25 14:36:55
Score: 1.5
Natty:
Report link

Remove your gradle installation from C:/Program Files or subfolders.
Add add it to a place your user constrols such as C:/Users/yourUser/Gradle/gradle-8.14.2.

Than, add the correct paths on Settings:

enter image description here

Finally, make sure that your PathVariable and your GRADLE_HOME variable are also related to this new folder.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Juliano Suman Curti

79679213

Date: 2025-06-25 14:34:54
Score: 1.5
Natty:
Report link

I asked the Shopware AI copilot, and that's the response:

The template hierarchy for apps and plugins is as follows:


- Shopware Core templates
- Theme templates
- Plugin templates
- App templates

This means that if a template is present in both a plugin and an app, the app’s template will take precedence.
If a template is present in both a theme and a plugin, the plugin’s template will take precedence.
If a template is present in all four locations, the app’s template will take precedence.

Could it be that some plugin and/or your child theme "destroys" this hierarchy by not using the {{ parent() }} call in a block?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Dennis Konoppa

79679209

Date: 2025-06-25 14:29:53
Score: 1
Natty:
Report link

Testing in Sandbox

The returning user flow can be tested in the Sandbox or Production environments.

Real phone numbers do not work in Sandbox. Instead, Sandbox has been seeded with a test user whose phone numbers may be used to trigger different scenarios. To explore each scenario, enter the corresponding phone number and correct OTP. For all scenarios, the correct OTP is 123456.

Returning User: A user who has previously enrolled in the returning user experience by confirming their device and successfully linking an Item.

Link Returning User Sandbox Scenarios Seeded Phone Number
New User 415-555-0010
Verified Returning User415-555-0011
Verified Returning User: linked new account 415-555-0012
Verified Returning User: inked OAuth institution 415-555-0013
Verified Returning User + new device 415-555-0014
Verified Returning User: automatic account selection 415-555-0015

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): User415
  • Low reputation (1):
Posted by: 471vastra

79679181

Date: 2025-06-25 14:05:46
Score: 2
Natty:
Report link

Similar to https://stackoverflow.com/a/78282879/446496, but then on a unix-based system (mac) I could just create a symlink which fixed it for me

sudo ln -s $(where podman) /usr/local/bin/docker
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bart Enkelaar

79679172

Date: 2025-06-25 14:01:45
Score: 1
Natty:
Report link

Your If Condition might be too harsh. tone it down a little and see if that helps. The best option here is to add an accountType tag in the GET request. hope this helps.

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Random User 512

79679170

Date: 2025-06-25 14:01:45
Score: 3
Natty:
Report link

Maybe it is best if you use only one of them (depending on what you're exactly trying to achieve)? Most platforms dont support both audio_url and voice_id together. It assumes you're either using TTS (voice_url) or playing a file (audio_url).

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kasstapez

79679169

Date: 2025-06-25 14:01:45
Score: 1
Natty:
Report link

try print them as a worksheet array

Worksheets(Array("Sheet1", "Sheet2")).Select

Selection.ExportAsFixedFormat Type:=xlTypePDF, Filename:=Fn2, Quality:=xlQualityStandard, IncludeDocProperties:=True, _
     IgnorePrintAreas:=False, OpenAfterPublish:=False
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jason Ronne

79679159

Date: 2025-06-25 13:54:43
Score: 2
Natty:
Report link

FYI for those following this discussion: The feature auto.register.schemas is not yet available until the PR is merged: https://github.com/apache/flink/pull/26662

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

79679153

Date: 2025-06-25 13:52:43
Score: 1.5
Natty:
Report link

if you add the next CSS to this solution, the result will be more BUITY.

html {
  scroll-behavior: smooth;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Micle Jowen

79679147

Date: 2025-06-25 13:48:42
Score: 3.5
Natty:
Report link

Found, it was a piece of code that validates data in table with a box call

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

79679143

Date: 2025-06-25 13:44:41
Score: 1
Natty:
Report link

As the file do no longer exist (you wrote path but I assume the file), then there is no longer a long file name to fetch...

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

79679141

Date: 2025-06-25 13:43:40
Score: 0.5
Natty:
Report link

Have you tried working with macOS’s built-in java_home path (/usr/libexec/java_home)?

Lately, I've run into issues where Android Studio overrides the JAVA version, which causes problems — especially with tools like keytool. I’d like to understand how you’re setting JAVA at that point. Could you share the exact command you're using?

Also, can you confirm the outputs of the following commands — are they consistent or different?

If everything looks correct so far, try checking whether keytool is accessible like java or adb. If it’s not found, it might mean the system isn't detecting keytool.

In that case, try using the full path:

"$JAVA_HOME/bin/keytool"

This helped me resolve the issue and correctly update the cacerts. Let me know if that works for you.

sudo "$JAVA_HOME/bin/keytool" -import -trustcacerts \
 -alias <Your alias> \
 -file <your CRT file> \
 -keystore "$JAVA_HOME/lib/security/cacerts" \
 -storepass changeit

I'm also surprised that the usual straight forward approach isn’t working. I went through this same setup last year, and everything worked without any extra effort.

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • RegEx Blacklisted phrase (2.5): Could you share
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
Posted by: Abhinav Sumaan

79679136

Date: 2025-06-25 13:40:38
Score: 15 🚩
Natty: 6
Report link

I have the same problem, I allowed the azure services and resourses on SQL server options but it does not work,after a while I am getting the same error message but with a different IP address.

somebody can helpme please.

Thanks in advance!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (3): somebody can help
  • RegEx Blacklisted phrase (1): I am getting the same error
  • RegEx Blacklisted phrase (2): helpme please
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Me too answer (0): I am getting the same error
  • Low reputation (1):
Posted by: Sebas Y

79679134

Date: 2025-06-25 13:40:38
Score: 2.5
Natty:
Report link

I forgot, but it's in the comment as well:

Make sure you placed this in global Project Settings → Custom Code section → Head :

<script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>

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

79679132

Date: 2025-06-25 13:37:37
Score: 0.5
Natty:
Report link

You're confused - your code indicates you fundamentally misunderstand a few things.

That's not how you print LocalDateTime objects

For example, it's parsing just fine.

Your error lies in appending the expression parsed to a string and expecting that to be a sensible operation.

LocalDateTime represents time in human reckoning terms. They always have seconds. They can't not. They don't have a format either. They are just a fairly simplistic, "dumb" vehicle for the fields int year, month, day, hour, minute, second and no more than that.

They do not have a format. They do not know how to print themselves in a useful fashion. They have a toString() implementation which is what you get and which is evidently confusing you.

The fix is this: Never call the toString(), if you want to render one to human eyeballs, you throw them through a DateTimeFormatter with the format method.

Replace the + parsed in System.out.println("Parsing \"" + toParse + "\" with pattern \"" + pattern + "\" returns " + parsed);

With DateTimeFormatter.ISO_LOCAL_DATE_TIME.format(parsed) instead.

They aren't instants

A combo of year/month/day/hour/minute/second cannot be converted to an instant. Period. The fact that you said 'I want to do that' is therefore ringing the alarm bells.

LDTs don't represent a moment in time. Instants only represent a moment in time. You can't convert an apple into a pear.

This is the usual way to get there:

There are hacky ways that you should never do because the above is fundamentally how it works. Think about it: If I tell you: "Please tell me the exact Instant, in epoch-millis-in-UTC, that matches the moment "24 minutes past 3 PM, on June 25th, 2025"?

If you answer that question you are wrong. Because the only correct response to my request is ".. I do not know. What time zone are you in?". A time zone is fundamentally a part of this conversion - and therefore in your code you should make that clear. If you want to go with the system default timezone, fantastic - but you still write this in your code so everybody that reads this sees that this is happening. For example, call .atZone(ZoneId.systemDefault()).

You are possibly doing that pattern wrong

yyyy is almost never what you want. You want uuuu instead. (in yyyy, the year before the year '1' is the year '-1'. That means doing 'math' with years BC and years AD will be off by 1. uuuu says the year before '1' is the year '0'. This isn't equal to the year in 'BC' style (there is no 0AD and 0 BC; the year before the year 1 AD is the year 1 BC. "Before Christ" isn't referring to a whole year, it's referring to a single moment. It's.. confusing, I guess). It tends not to matter, except when it does. Best to just get in the habit of never using yyyy. Use uuuu. But, whatever you do, NEVER use YYYY, that is dangerous. It's a bug that tests tend not to find (YYYY is weekyear. Which matches year except on certain days very close to jan 1st, hence why tests won't find it).

Generally writing patterns is surprisingly full of landmines you can step on. Hence, it's usually a much better plan to either use one of the constants defined in the DateTimeFormatter class, or to use the .ofLocalizedDateTime methods.

Also, you should get in the habit of always explicitly passing a Locale when making DTF objects. Different cultures have different styles of writing dates and times. If you have a specific style in mind, you should make sure the code contains this assumption in writing.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please tell me
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-2):
Posted by: rzwitserloot

79679130

Date: 2025-06-25 13:35:36
Score: 6.5 🚩
Natty:
Report link

When will it be back up again?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: User

79679115

Date: 2025-06-25 13:27:33
Score: 1
Natty:
Report link
 BEGIN
  FOR f IN (
    SELECT filename
    FROM TABLE(RDSADMIN.RDS_FILE_UTIL.LISTDIR('DATA_PUMP_DIR'))
    WHERE filename LIKE '%.dmp'
  )
  LOOP
    UTL_FILE.FREMOVE('DATA_PUMP_DIR', f.filename);
  END LOOP;
END;
/
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: David Soul Yango

79679111

Date: 2025-06-25 13:26:33
Score: 2.5
Natty:
Report link

I get your point but this is not a bug. But it’s a result of how caching and route revalidation work in Next.js (App Router) when using static or incremental rendering. But to solve this issue i would recommend you to put more code snippets to understand the problem.

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

79679095

Date: 2025-06-25 13:12:29
Score: 1
Natty:
Report link

I caused this issue by adding the [DebuggerNonUserCode] attribute to the app.Use method in Program.cs.

app.Use([DebuggerNonUserCode]async (context, next) =>

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

79679082

Date: 2025-06-25 13:05:27
Score: 3.5
Natty:
Report link

not proper working still it is not saving in table

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

79679079

Date: 2025-06-25 13:04:26
Score: 4
Natty:
Report link

holy, that error take me about 4 hours of stress, thank you

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rafael Difini

79679073

Date: 2025-06-25 13:01:25
Score: 1
Natty:
Report link

This may be the simplest answer and will do the trick without forcing you to alter your data frame:

df.set_axis(range(1, len(df) + 1))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kyle A.

79679066

Date: 2025-06-25 12:58:24
Score: 0.5
Natty:
Report link

FWIW I got this error for about 2 minutes after installing vnstat:

 eno2: Not enough data available yet.

...but then it simply went away. Apparently a certain amount of data needs to be accumulated before it can properly display stats.

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

79679062

Date: 2025-06-25 12:53:23
Score: 2.5
Natty:
Report link

I actually created a Swift library for that. Not sure how helpful it would be for SwiftUI, but feel free to check it out:

👉 https://github.com/ikhaled-ali/EmojisReactionKit

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: khaled ali

79679061

Date: 2025-06-25 12:52:23
Score: 2
Natty:
Report link

Locate the Razorpay plugin files:

cd ~/.pub-cache/hosted/pub.dev/razorpay_flutter-1.4.0/ios

Edit the `Classes/RazorpayFlutterPlugin.m` file:

• Open this file in a text editor

• Find the line: `#import "razorpay_flutter/razorpay_flutter-Swift.h"`

• Change it to: `#import "razorpay_flutter-Swift.h"`

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

79679058

Date: 2025-06-25 12:50:22
Score: 1
Natty:
Report link

I faced a similar issue — not using flutter_jailbreak_detection, but attackers were able to bypass some basic root checks in a Flutter app I built by hooking public methods with Frida. Once they knew the method name, bypassing became trivial.

While building layered defenses is ideal, I ended up using a free RASP tool called FreeRASP by Talsec. It adds things like root detection, debugger detection, and some tamper protection — definitely not foolproof, but it added a bit more resistance and was pretty simple to integrate.

Totally agree that defense in depth is key here — no single check is enough, but a few layers working together can raise the bar for attackers. Just sharing in case it helps someone in the same spot.

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

79679056

Date: 2025-06-25 12:49:22
Score: 1
Natty:
Report link

You should include your search term as a parameter, not in the path.

Example:
/search?query=shoes
/search/shoes – less flexible, less standard for search.

Using a parameter (?query=It is more scalable, supports filters, and follows best practices for search operations.read more

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

79679054

Date: 2025-06-25 12:48:21
Score: 2.5
Natty:
Report link

I actually created a Swift library for that. Not sure how helpful it would be for SwiftUI, but feel free to check it out:

👉 https://github.com/ikhaled-ali/EmojisReactionKit

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: khaled ali

79679045

Date: 2025-06-25 12:40:19
Score: 2
Natty:
Report link

As I said in a comment above. The problem is that NPP tricks you. You just don't see what there really is in a hex mode. Disable 'Autodetect character encoding' in Preferences/MISC menu of NPP and set encoding to ansi or something like that. Hopefully NPP won't play with bytes shown in HEX mode

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

79679040

Date: 2025-06-25 12:36:18
Score: 3
Natty:
Report link

Deleting the app from the phone and clean-building was the answer for me

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

79679039

Date: 2025-06-25 12:34:17
Score: 4.5
Natty: 4.5
Report link

Thanks @Darrarski. Finally found this after 9 hours of hustling to upload to AppStore doing nonsens.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Lakshith Withana

79679035

Date: 2025-06-25 12:29:16
Score: 2
Natty:
Report link

Documentation: 17: PREPARE

PREPARE creates a prepared statement. A prepared statement is a server-side object that can be used to optimize performance.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ricardo Padua Soares

79679031

Date: 2025-06-25 12:23:15
Score: 3.5
Natty:
Report link

Tools -> Options -> Text Editor -> General: Automatically surround selections when typing quotes or brackets 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: Xander

79679029

Date: 2025-06-25 12:21:14
Score: 2.5
Natty:
Report link

There is an open issue on github for this: https://github.com/expressjs/multer/issues/1189
I have been searching for several days for a solution but found nothing

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: A. Kahla

79679024

Date: 2025-06-25 12:18:13
Score: 1
Natty:
Report link

As suggested by @TheLizzard, I changed update_idletasks() for update()and it works.

There seems to be a problem on Windows because @TheLizzard tested the original code on Ubuntu and it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @TheLizzard
  • User mentioned (0): @TheLizzard
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mike Duke

79679023

Date: 2025-06-25 12:18:13
Score: 2
Natty:
Report link

I was able to resolve my issue by removing hyphens from the folder name. My folder name was

Whack-a-Mole

I replaced that with

WhackAMole

And the error got resolved after making sure that i am pointing to the right folder by keeping spelling and case sensitivity in check

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

79679015

Date: 2025-06-25 12:12:11
Score: 4
Natty:
Report link

Now you can create bookmark lists and drag bookmarks to make them in groups

enter image description here

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

79679010

Date: 2025-06-25 12:07:10
Score: 0.5
Natty:
Report link

First, the output ("2025-06-22 10:02:48", "2025-06-22 10:02:48") of serialized DatePair is not a standard JSON, that mean's you can not using SerializerProvider.defaultSerializeValue . You need create a format with JsonFormator define a default, and the Serializer (recommended extends StdSerializer) should implements ContextualSerializer. You can refer to the implementation of DateSerializer and DateTimeSerializerBase.

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

79679009

Date: 2025-06-25 12:06:10
Score: 0.5
Natty:
Report link

You’re not missing anything, as the Power BI REST API only allows pulling metadata but does not allow extracting data rendered in visualizations. As of now, there is no REST API endpoint available that outputs data in report visuals (such as tables or charts), even with service principal authentication.

Below are some suggestions that might help you:

  1. Use Export to File API to export a report or specific visual to a PDF or PowerPoint.

  2. If your primary concern is tabular data, embed the report into a workspace using Power BI’s XMLA Endpoint. This enables connecting tools such as SSMS for querying semantic models (datasets) utilizing DAX and MDX.

  3. Alternatively, DAX queries through XMLA endpoints can be employed to obtain actual data behind the visuals you need—often this is a more reliable workaround.

  4. For working with multiple sources and reports in Power BI, data integration platforms like Fivertran, AirByte, or Windsor.ai streamline and scale these processes, aiding faster data extractions and automating reporting.

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

79679007

Date: 2025-06-25 12:06:10
Score: 2.5
Natty:
Report link
activeIndicatorStyle={{ backgroundColor: 'transparent' }}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Gowtham

79679006

Date: 2025-06-25 12:06:09
Score: 1
Natty:
Report link

I had this error using STM32CubeProgrammer, and no combination of software versions fixed it.

What fixed it for me, was to set an external loader for my board. Click on the "EL" button in the left column of STM32CubeProgrammer and you will see a list of loaders for various boards, which hopefully includes yours.

I see that the OP already configured an external loader, so his problem looks to be different, but if you are searching that error then you will find this post like I did.

I have an STM32H745I-DISCO and have been trying to build and load the demonstration application that comes preloaded with that board. It tries to load into location 0x90000000 and beyond, which is external QSPI flash. STM32CubeProgrammer can't program external flash without an external loader.

(The only reason I'm using STM32CubeProgrammer is that I could not get STM32CubeIDE to program my board. This toolset has been no end of headaches for me.)

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

79679005

Date: 2025-06-25 12:05:09
Score: 2.5
Natty:
Report link

Make a new txt file (let's say new.txt) and save all the modules there, and then uninstall it .

pip freeze > new.txt (storing)

pip uninstall -r new.txt (deleting)

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

79678998

Date: 2025-06-25 11:58:07
Score: 2.5
Natty:
Report link
  1. delete the user in ALL tester

  2. go to the internal testing group

  3. add tester, accept the invite link, which is received in to mail.

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

79678994

Date: 2025-06-25 11:55:07
Score: 1
Natty:
Report link

Thank you for the solution! It helped my use case, where I was trying to generate one row for each month between an employee’s START_DATE and END_DATE. I adjusted the code from the solution to:

SELECT 
    EE_NUMBER,
    LAST_DAY(DATEADD(MONTH, VALUE::INT, START_DATE) AS DATE_OF_EXPORT,
    END_DATE
FROM STG_MAIN_DATA,
TABLE(FLATTEN(ARRAY_GENERATE_RANGE(0, DATEDIFF(MONTH, START_DATE, END_DATE)+1)));

I`ll leave this in this thread, in case it might be useful for someone in my situation.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: DianaDuta

79678982

Date: 2025-06-25 11:43:04
Score: 2
Natty:
Report link

The Problem laid in the main() code, which I did not include in the post until my first edit. This was my first error.
I was assigning the result to a char array / pointer, without increasing its allocated memory. Due to this at one point the memory was too small and the program crashed.

The exact solution to this is noteed in the Question part under "Edit 2:"

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

79678978

Date: 2025-06-25 11:40:03
Score: 10
Natty: 7.5
Report link

were you able to find a solution?

Reasons:
  • RegEx Blacklisted phrase (1): were you able to find a solution
  • RegEx Blacklisted phrase (3): were you able
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: depsy

79678972

Date: 2025-06-25 11:36:02
Score: 2
Natty:
Report link

I was also not able to get 'go mod download' working with the ssh option of docker. What you could do instead is save the private key to the ssh folder, execute 'go mod download' and remove the private key. Doing this in a single command ensures that the private key is not saved in one of the layers. Here is a blog post describing how to do that.

https://medium.com/@lightsoffire/how-to-use-golang-private-modules-with-docker-553ff43fa117

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ivan Hop

79678970

Date: 2025-06-25 11:35:01
Score: 4.5
Natty: 5.5
Report link

https://developer.paypal.com/studio/checkout/advanced/integrate

"Solution for the hiding Billing Address fields":

Uncheck "Handle Billing Address and view code. Code also available for the the React / HTML as well as backend Node.js / Python / PHP / .NET / Java / Ruby >>

Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: coresh

79678959

Date: 2025-06-25 11:25:58
Score: 2.5
Natty:
Report link

spring.batch.jdbc.initialize-schema=always

Problem solved by adding this in application.properties.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jesvin Sam Geoffrey R

79678954

Date: 2025-06-25 11:21:57
Score: 1
Natty:
Report link

thank you i just installed tailwind using this vite version and it worked fine

npm create vite@6
Reasons:
  • Blacklisted phrase (0.5): thank you
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sara

79678947

Date: 2025-06-25 11:13:54
Score: 8.5 🚩
Natty:
Report link

Problem:

I'm using VBA to extract the 'Total' value from SAP COOIS and paste it into Excel. Everything works fine except capturing the Total value, because the position of the Total changes every time, and I can't figure out how to dynamically locate and copy it into Excel.

What I've Done:

Question:

How can I programmatically capture the Total value from the SAP ALV grid (where the Total is calculated after summing a column) and copy it to Excel even when its position changes?

Attached is the working script up to the Total display, but I need help with the part that extracts the value.

Thanks in advance!

To dynamically read ALV grid data in SAP using scripting, you may need to loop through visible rows in the grid using:

Set grid = session.FindById("grid_id")

value = grid.GetCellValue(rowIndex, "columnKey")

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2.5): I need help
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: ERPROOTS

79678921

Date: 2025-06-25 10:59:50
Score: 2.5
Natty:
Report link
  1. What angular version are you using?

  2. Have you checked, if user is really written?

  3. Here would be some changes I would try without further context:

    Set changeDetection

    @Component({
        selector: 'app-header',
        standalone: true,
        imports: [RouterModule, NgIf],
        templateUrl: './header.component.html',
        styleUrl: './header.component.css',
        changeDetection: ChangeDetectionStrategy.OnPush, //Add changeDetection
    })
    

    Use @if instead of *ngIf since it's deprecated with angular 20.

    @if (user()) {
        <span>Olá, {{ user().name }}</span>
    } @else {
        <button class="button" routerLink="/login">Entrar</button>
    }
    
Reasons:
  • Blacklisted phrase (2): Olá
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: Markus

79678915

Date: 2025-06-25 10:56:49
Score: 1
Natty:
Report link

SolidQueue has concurrency controls now: https://github.com/rails/solid_queue/?tab=readme-ov-file#concurrency-controls

class ContinuousSearchJob < ApplicationJob
  limits_concurrency key: :ContinuousSearchJob

  # ...

Then only one instance of this job will be able to run at once. If another attempts to start, it is discarded.

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

79678907

Date: 2025-06-25 10:56:49
Score: 1.5
Natty:
Report link

SignalR Hubs don't share the same context as ASP.NET MVC controllers, so HttpContext.Session is not available inside Hub methods or event handlers wired via Hub.

A better pattern is to use a concurrent dictionary or an in-memory cache to store connection info when a user connects.

You can listen to OnConnectedAsync() or create a shared static store where you map connection IDs to user-specific data.

This scenario is discussed with implementation steps in this SignalR integration example: https://saigontechnology.com/blog/real-time-aspnet-with-signalr/

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

79678904

Date: 2025-06-25 10:56:49
Score: 0.5
Natty:
Report link

I do not know much in android programming... only that it is based on Linux.

Have you verified which provider is used on your side side and samsung's one, since Oracle became a bit nasty about the programming licence / SDK... there could be an issue there.

Which raises the question of credentials and authorization of using java classes in the IRL use.

Last time I programmed in Java was in... 2005 ;) but perhaps I am obsolete but

app/src/main/java/com/warattil/quran/ui/components/AllSurahsScreen.kt

does it point to the binary or the source ?

Sorry if I am raising more questions than answers them :)

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

79678899

Date: 2025-06-25 10:43:41
Score: 5
Natty:
Report link

You also need to add your API key to the final veo2 video link that you receive.
like this:
https://generativelanguage.googleapis.com/v1beta/files/new0v5z7ubxu:download?alt=media&key=8888888888B8888888888

Reasons:
  • Blacklisted phrase (1): video link
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Filler text (0.5): 8888888888
  • Filler text (0): 8888888888
  • Low reputation (1):
Posted by: kiddVScs

79678893

Date: 2025-06-25 10:42:34
Score: 4
Natty:
Report link

I had to use the .woff2 file and it fixed itself. For anyone wondering in the future.

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

79678888

Date: 2025-06-25 10:38:18
Score: 1
Natty:
Report link

Try my solution:

https://stackoverflow.com/a/79678870/8705119

I just upgraded MacOS, XCode and Firebase libraries to the latest versions.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-2): solution:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Maxim

79678886

Date: 2025-06-25 10:37:17
Score: 1
Natty:
Report link

Try my solution: https://stackoverflow.com/a/79678870/8705119
I just upgraded MacOS, XCode and Firebase libraries to the latest versions.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-2): solution:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Maxim

79678884

Date: 2025-06-25 10:35:12
Score: 1.5
Natty:
Report link

Same error here. I installed sql through brew install mysql which installed me the latest version (which for some reason, it always gave me the same error as the AP

Name      Status  User File
[email protected] stopped root ~/Library/LaunchAgents/[email protected]

It all got fixed through installing a previous version like [email protected].
brew uninstall mysql -> brew install [email protected]

Reasons:
  • RegEx Blacklisted phrase (1): Same error
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: magidoof

79678873

Date: 2025-06-25 10:31:11
Score: 0.5
Natty:
Report link

The command "pip install pyautogui" represents python module called "pyautogui" installation. The module is installed into the python site packages folder present in /usr/localfolder(username/share/python3.x/site-packages/...). The installation requires specific requirements in the environment.

  1. The python path variable should be set to bin folder in python and pip commands should be executable from various paths of the terminal window.

  2. Useually there could be reasons similar to configuration issues with modules of different python packages. If there is any specific version cause installation and configuration issues with respect to pip one of the command could be useful is to upgrade the pip command.

    "pip install --upgrade pip ------> The command upgrades pip version to latest.

  3. If the module is unable to pickup by the terminal of mac/linux os the module .zip or .tar files can be downloaded from the websites of python language.

  4. Based on the version of the python 3.x most of the existing python modules built earlier became obsolete and needs to be depricated from site-packages. Always, make sure the package is valid and check the status prior to installation for avoiding unnecessary installations.

  5. If the Operating system is macbook. The installation should be run on terminal window. The same installation can be triggered on CMD in windows OS and for linux/Unix execute .sh files from the environment shell prompt depending on shell . choose one of the two based on your requirement.

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

79678872

Date: 2025-06-25 10:31:11
Score: 2
Natty:
Report link

In my case (win-7-pro, VS-2017) the problem was that it seems 900Mb free space on drive C: was not enough. I made it 1.8 Gb, after this it was successful. (Also there was a reboot.)

Hope this might helps someone...

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: István

79678870

Date: 2025-06-25 10:31:11
Score: 1.5
Natty:
Report link

I had a problem with Apple Sign-In not working in my Flutter app using Firebase on an iOS device (I got "Sign Up not completed" message on iPhone without any errors in logs).

Here’s what resolved it:

  1. Updated macOS to the latest version (15.5).
  2. Upgraded Xcode to the latest version (16.4).
  3. (only for Flutter) Updated Flutter Firebase packages to their newest versions:
    firebase_core: ^3.14.0
    firebase_auth: ^5.6.0

After making these changes, Apple Sign-In started working correctly.

Additionally, I followed the steps outlined in this YouTube tutorial: https://www.youtube.com/watch?v=JEwGol44xFQ

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Maxim

79678868

Date: 2025-06-25 10:31:11
Score: 0.5
Natty:
Report link
body{
    background-color: var(--color6);
    padding-top:60px;
}

.navbar{
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
}

.section-container{
        position:absolute;
        top:0;
        padding-top:60px;
        height:100%;
}


.page-section{
        height: 100%;
        top: 0;
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: bradley Rice

79678857

Date: 2025-06-25 10:31:11
Score: 1
Natty:
Report link

I've got that problem after updating spring to version 3.5.3.

There is tomcat version 10.1.42 and the simplest thing to fix it was to add a property into application.properties:

server.tomcat.max-part-count=30
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Adam Jędrzejko

79678852

Date: 2025-06-25 10:18:00
Score: 1
Natty:
Report link

How do you want to capitalize? Just the first letter or all? You didn't say so I'll suggest both:

Capitalize the first letter

DAX doesn't have a PROPER() function like Excel to automatically capitalize the first letter, but you can handle it yourself by taking the first uppercase character and concatenating it with the rest in lowercase.

Calendar = 
ADDCOLUMNS(
    FILTER(
        ADDCOLUMNS(
            CALENDAR(DATE(2025,1,1), DATE(2025,12,31)), 
            "WeekdaysNum", WEEKDAY([Date], 2)  
        ),
        [WeekdaysNum] <= 5  
    ),
    "Year", YEAR([Date]),
    "Month", 
        UPPER(LEFT(FORMAT([Date], "MMMM"),1)) & LOWER(MID(FORMAT([Date], "MMMM"),2,LEN(FORMAT([Date], "MMMM")))),
    "MonthIndex", MONTH([Date]),   
    "WeekdaysName", 
        UPPER(LEFT(FORMAT([Date], "dddd"),1)) & LOWER(MID(FORMAT([Date], "dddd"),2,LEN(FORMAT([Date], "dddd"))))
)

All caps

You can capitalize month and weekdaysName in DAX using the UPPER() function:

Calendar = 
ADDCOLUMNS(
    FILTER(
        ADDCOLUMNS(
            CALENDAR(DATE(2025,1,1), DATE(2025,12,31)), 
            "WeekdaysNum", WEEKDAY([Date], 2)  
        ),
        [WeekdaysNum] <= 5  
    ),
    "Year", YEAR([Date]),
    "Month", UPPER(FORMAT([Date], "MMMM")),
    "MonthIndex", MONTH([Date]),   
    "WeekdaysName", UPPER(FORMAT([Date], "dddd"))
)
Reasons:
  • Blacklisted phrase (1): How do you
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How do you
  • Low reputation (0.5):
Posted by: Hieu Bosco

79678844

Date: 2025-06-25 10:10:52
Score: 0.5
Natty:
Report link
export const resetAndNavigate = (screenName, params = {}) => {
  if (navigationRef.isReady()) {
    navigationRef.reset({
      index: 0,
      routes: [{ name: screenName, params }],
    });
  }
};

Edit this fn and add navigation ref to navigation container to directly switch to screen
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MohammadAkil Chaklawala

79678839

Date: 2025-06-25 10:08:52
Score: 3.5
Natty:
Report link

The issue was with the iPadOS version. Updating to the latest one fixed it.

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

79678834

Date: 2025-06-25 10:06:51
Score: 2.5
Natty:
Report link

Stack Overflowの皆様、そして特にコメントでご支援くださった furas 様、

この度は、先日投稿させていただいたDocument AIのJSONファイル処理に関する質問にご回答いただき、誠にありがとうございました。

furas様からの具体的なアドバイスと、丁寧なご指摘のおかげで、問題となっていた Unknown field for TextAnchor: text_content エラーを最終的に解決することができました。

当初、PythonスクリプトがDocument AIから出力されたJSONファイルの構造をうまく読み解けていないことが原因で、特に text_anchor からのテキスト抽出部分でエラーが発生していました。また、私の環境では大容量のJSONファイルを直接エディタで開くことや、Cloud Shellターミナルでのペースト操作にも課題があり、デバッグに手間取っておりました。

しかし、furas様の提案に基づき、text_segments を利用したテキスト抽出方法の修正と、Cloud Shell Editor を用いた確実なコード編集を行うことで、無事に全てのJSONファイルからテキストを抽出し、1つの統合されたテキストファイルとして出力することに成功いたしました。

これにより、PDFからのデータ抽出と確認が可能となり、今後の作業に大きく貢献する見込みです。

改めて、迅速かつ的確なご支援に心より感謝申し上げます。コミュニティの皆様、そして特に furas様のお力添えがなければ、解決は困難でした。本当にありがとうございました。

敬具

R34
-------------
Dear Stack Overflow community, and especially to furas for your valuable comments and support,

Thank you very much for your responses to my recent question regarding Document AI JSON file processing.

Thanks to furas's specific advice and careful guidance, I was finally able to resolve the "Unknown field for TextAnchor: text_content" error that I was encountering.

Initially, my Python script was unable to correctly interpret the structure of the JSON files output by Document AI, causing errors, particularly during text extraction from the text_anchor section. Furthermore, my environment posed challenges with directly opening large JSON files in an editor and with paste operations in the Cloud Shell terminal, which complicated debugging.

However, based on furas's suggestions, by modifying the text extraction method to utilize text_segments and by performing precise code editing using the Cloud Shell Editor, I successfully extracted text from all JSON files and output them into a single, consolidated text file.

This breakthrough now enables me to extract and verify data from PDFs, which will significantly contribute to my future work.

I extend my deepest gratitude for your prompt and accurate assistance. Without the help of the community, and especially furas's support, finding a solution would have been incredibly difficult. Thank you so much.

Sincerely,

R34

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Thanks
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Filler text (0.5): -------------
  • Low reputation (1):
Posted by: R34

79678829

Date: 2025-06-25 10:02:49
Score: 3.5
Natty:
Report link

please make sure you have compatible versions of RN Reanimated and RN Gesture Handler installed.

https://docs.swmansion.com/react-native-reanimated/docs/guides/compatibility/

https://docs.swmansion.com/react-native-gesture-handler/docs/fundamentals/installation

Most likely, the error is caused by this.

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

79678828

Date: 2025-06-25 10:02:49
Score: 2.5
Natty:
Report link

According to the docs : "POI requires Java 8 or newer since version 4.0.1"

So, yes, it is possible to build Apache POI-5.4.1 with JDK 8.

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

79678826

Date: 2025-06-25 10:01:49
Score: 2.5
Natty:
Report link

var g = HttpContext.Features.Get<IHttpResponseBodyFeature>();

g.DisableBuffering();

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Jojo Joseph Kunathucherry