79679625

Date: 2025-06-25 20:33:32
Score: 1
Natty:
Report link
for (int i = 6; i>0; i--){
        cout<<space;
        for (int j = i-1; j >=0; j--){
            cout << star << " ";   
        }
        space += " ";
        cout << endl;
    }
this works if you're trying to create a triangle that tapers downwards
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Enoch Sitsofe Nkrumah

79679624

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

I suggest changing the name to The type or namespace name could not be found

From your comment, I see that this is because the assembly did not load correctly.

This is an answer for anyone else having this problem - restarting Unity and your code editor should help, if not, check if you see miscellaneous files next to your file name (where the assembly name should be) - if it does - there are many ways to solve the miscellaneous files problem online

Reasons:
  • No code block (0.5):
Posted by: amitklein

79679617

Date: 2025-06-25 20:17:28
Score: 1
Natty:
Report link

Three things are involved here. The tmh files are created by the WPP process (part of Tracing), and it appears WPP won't run if the C build doesn't complete (compile and/or link errors). Lastly, you will need include statements like #include "SourceFile.tmh" in your code. If a .C file includes both an A.h and A.tmh, then A.h should be first. If the C code finally builds, then WPP should run and create all the .tmh files. The next build should be clean, with no complains on missing .tmh files.

The WPP settings are located inside the project's properties dialog. A Visual Studio driver project will have a "Wpp Tracing" entry on the left. Go to that page, and make sure "Run Wpp Tracing" is turned on ("Yes").

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

79679602

Date: 2025-06-25 20:00:24
Score: 3.5
Natty:
Report link

if you check obj type of the four digit number that is input e.g. print(type(number)) you will find it is a string. Which should help you find the issues with your code.

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

79679601

Date: 2025-06-25 20:00:24
Score: 0.5
Natty:
Report link

If someone is still facing this, add to the esbuild config:

  exclude:
      - 'jsdom'
      - 'canvas'
  external:
    - 'jsdom'
    - 'canvas'

It needs to be both to work! Workaround discussed here:

https://github.com/evanw/esbuild/issues/1311

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Fabio Corrêa

79679588

Date: 2025-06-25 19:48:20
Score: 3
Natty:
Report link

Have you tried defining the table as it is and then using :last-child?

table.rti.app5 tbody td:last-child {
  text-align: center !important;
}

Do you have any more information you can share as to what you have tried, what more of your CSS looks like and where / how it is used

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Jay

79679582

Date: 2025-06-25 19:44:19
Score: 0.5
Natty:
Report link

You can find the pip config location by running pip config list -v

browse for

C:\ProgramData\pip\pip.ini

C:\Users\<user>\pip\pip.ini

remove nvidia url and set below config

no-cache-dir = true
index-url = https://pypi.org/simple

trusted-host =
               pypi.org/simple
** post which restart the terminal
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Wasi

79679561

Date: 2025-06-25 19:24:14
Score: 0.5
Natty:
Report link
extension Data {
    func base64URLEncode() -> String {
        let base64 = self.base64EncodedString()
        let base64URL = base64
            .replacingOccurrences(of: "+", with: "-")
            .replacingOccurrences(of: "/", with: "_")
            .replacingOccurrences(of: "=", with: "")
        return base64URL
    }
}
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Bash

79679560

Date: 2025-06-25 19:22:14
Score: 0.5
Natty:
Report link

After adding lines that were described here I still received an error.

I dig somewhere that in fact you need to delete some of them.

For me it was failing when I had a config:

  "compilerOptions": {
    ....
    "module": "es2022",
    "lib": [
      "esnext",
      "esnext.asynciterable"
    ],
    "allowSyntheticDefaultImports": true
  },

I need to remove lines:

"esnext.asynciterable"
"allowSyntheticDefaultImports": true

Then command added back the missing items and succed.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: pawel wujczyk

79679559

Date: 2025-06-25 19:22:14
Score: 1.5
Natty:
Report link

The reason you see that is because you're running it in an interactive shell.

Try this

npx -y pnpm install --silent

This pre-confirms the question.

Reasons:
  • Whitelisted phrase (-1): Try this
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Alec269

79679555

Date: 2025-06-25 19:17:12
Score: 2.5
Natty:
Report link
options.addArguments("--force-device-scale-factor=0.65");  // Apply 65% zoom in headless
           
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Benish Selvin

79679541

Date: 2025-06-25 19:05:09
Score: 5
Natty:
Report link

I'm still facing this issue and haven't found a working solution yet.

Every time I run my Flutter app on iOS Simulator, I get the following error:

Error initializing DevFS:
DevFSException(Service disconnected, _createDevFS: (-32000) Service connection disposed, null)

Steps I've tried so far:

Still getting the same error.

Full crash report shows a segmentation fault (SIGSEGV) around UIImageView/intrinsicContentSize which may suggest a corrupted image or native issue.

If anyone has encountered this or found a workaround, I’d really appreciate any tips or directions

Reasons:
  • Blacklisted phrase (1): any tips
  • RegEx Blacklisted phrase (1): I get the following error
  • Long answer (-1):
  • No code block (0.5):
  • Me too answer (2.5): getting the same error
  • Low reputation (1):
Posted by: Tarik

79679533

Date: 2025-06-25 19:00:07
Score: 1
Natty:
Report link

As far as I understand and use in projects,

- Service layer deals with business logic and might returns business entities
- Controller layer might deal with what it gets and outputs to the outer world (DTOs)

Like imagine a scenario where:
- A service might need to talk to another service, why they should deal with DTOs?
- You may have different api versions and controllers that would (may do some extra work) but also return different response shape based on new or different DTOs, so would it be wise to refactor (or even touch) service layer in that case to adapt to this change?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: amdev

79679531

Date: 2025-06-25 18:59:07
Score: 1.5
Natty:
Report link

YOU CAN APPROVE YOUR OWN PRs. here is how:

go to the go into the repo -> setting -> rules -> rulesets -> create a new ruleset, and set Bypass list, and then add your roles: Repository admin, or what role you want.

-if you have not set yourself as the admin, then at the repo ROOT -> Organization Roles -> Role Assignments, then assign yourself admin, or whatever else

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

79679528

Date: 2025-06-25 18:54:05
Score: 1.5
Natty:
Report link

As of iOS 17, the current way to set the badge number is by calling:

import UserNotifications
let newBadgeCount = 5
UNUserNotificationCenter.current().setBadgeCount(newBadgeCount)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: neon443

79679527

Date: 2025-06-25 18:54:05
Score: 1.5
Natty:
Report link

On one of my tables, setting columnMenu='legacy' stopped it from hiding on hover but not sure why. version 32.3.7

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

79679517

Date: 2025-06-25 18:40:02
Score: 1.5
Natty:
Report link

Looking at your code, I can see the issue. The problem is in your backend uploadImage function. You're checking for request.body.file but when using multer with file uploads, the file information is stored in request.file (singular), not request.body.file.
Your backend controller is looking in the wrong place for the file info.

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

79679515

Date: 2025-06-25 18:40:02
Score: 3
Natty:
Report link

This was a Firefox bug that has now been fixed as of Firefox 140. The code in the original question now works as expected across browsers.

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

79679509

Date: 2025-06-25 18:33:00
Score: 2
Natty:
Report link

Certain vscode extensions do stuff like that. Usually uninstalling and reinstalling the extension works. If that doesn't work disable every other extension. If you can't disable an extension uninstall it. Then check if your extension that was causing the issue is working or not. If that doesn't work then your vscode installation is either broken or your Windows OS has some issues. Stuff like this has happened to me before twice, though not with a Debugger.

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

79679508

Date: 2025-06-25 18:32:00
Score: 1.5
Natty:
Report link

Maybe my answer doesn’t cover all your questions, but here’s what I’ve found.

The go list command shows which packages will be built( build list). When you run go list -m all, it shows the modules really loaded during the execution —check the official reference for details on how it works.

Finally, go download fetches every dependency declared in your go.mod and it applies to all dependencies of the main module; see the Go documentation for more information.

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

79679501

Date: 2025-06-25 18:24:59
Score: 1.5
Natty:
Report link

Not sure what was going on but I would do File > Open Folder and the contents of the folder would not load in solution explorer. I've gone through all the steps in this thread and only this one worked but it wasn't very clear.

Angad Kumar put me on the right path, but wasn't 100% based since the instructions were not perfect.

I deleted everything found in %appdata%\Microsoft\VisualStudio and that resolved the issue.

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

79679496

Date: 2025-06-25 18:16:57
Score: 3
Natty:
Report link

The same code is treid to run with the help of gemini and am able to compare the code with out any differences between manual run and Gemini run and with exact replica can run the code on Gemini without issues.

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

79679486

Date: 2025-06-25 18:10:56
Score: 2
Natty:
Report link

@Retryable annotation has a "recover" parameter that can be used to define the exact recovery method regardless of the exception class or method signature.
example:

@Retryable(retryFor = {HttpServerErrorException.class, ResourceAccessException.class}, recover="myRecover")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Retryable
  • Low reputation (1):
Posted by: Johnny Farraj

79679481

Date: 2025-06-25 18:04:54
Score: 0.5
Natty:
Report link

As I mentioned in the comments, Apple took exactly 30m to finish the process. Most probably they added some cool off time.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Lal Krishna

79679468

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

Looking to refresh your space without spending a fortune? Tips DrHomey shares smart, budget-friendly ideas to decorate your home with style and personality. From repurposing old items and adding indoor plants to using lighting, wall art, and DIY crafts, these decorating tips help create a cozy, functional atmosphere. Whether it’s your living room, bedroom, or garden area, DrHomey’s advice focuses on simple upgrades that make a big impact. Perfect for renters, homeowners, and anyone wanting a home that feels uniquely theirs.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: johnjohny

79679446

Date: 2025-06-25 17:36:46
Score: 0.5
Natty:
Report link

This feature depends on the Analyze model-driven apps and Microsoft Dataverse telemetry with Application Insights feature.

The instructions describe how to enable exporting data to Application Insights. See Export data to Application Insights

Step 6 says:

Select the Azure subscription, resource group, and Application Insights environment that you're exporting data to. Select Next.

You must have contributor, writer, or admin rights to the Application Insights environment. Typically, one production environment or tenant maps to one Application Insights environment.

You should verify this is set up correctly and that you have the appropriate rights to the Application Insights environment.

You should not have to set the organization.telemetryinstrumentationkey column. That column is valid for update but not valid for read. It should never return the key value. This is by design. But it makes it hard to verify whether the key value is stored.

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

79679444

Date: 2025-06-25 17:34:45
Score: 1
Natty:
Report link
const transporter = nodemailer.createTransport({
  host: "smtp.gmail.com",
  port: 587, // 🔁 Use 587 instead of 465
  secure: false, // 🔁 false for STARTTLS
  auth: {
    user: process.env.EMAIL_USER,
    pass: process.env.EMAIL_PASS,
  },
});

I have use this ,and solved my problem

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

79679435

Date: 2025-06-25 17:27:43
Score: 5
Natty: 4
Report link

6767557676467557756657656$%%%-$-&8:'*&"

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: jjjjj

79679427

Date: 2025-06-25 17:19:41
Score: 0.5
Natty:
Report link

ssh is a text only solution (a terminal emulator with encryption). Plain terminal sessions can't do GUI...

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is a
  • High reputation (-1):
Posted by: Dennis

79679424

Date: 2025-06-25 17:17:40
Score: 3
Natty:
Report link

Just use Pylytic, an alternative to built-in eval() for evaluating complex mathematical expressions

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

79679407

Date: 2025-06-25 17:07:37
Score: 3.5
Natty:
Report link

i found an article that explains the processes and lists a tool called MacSymbolicator that makes this way easier: https://www.avanderlee.com/xcode/symbolicate-crash-logs-reports/

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

79679396

Date: 2025-06-25 16:53:34
Score: 3
Natty:
Report link
header 1 header 2
cell 1 cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Khalid El Kabouri

79679395

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

The problem was with my validating webhook where for Delete call I was taking req.Object.Raw instead of req.OldObject.Raw.

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

79679385

Date: 2025-06-25 16:42:32
Score: 2.5
Natty:
Report link

The Goodwill Outlet, often referred to as "The Bins," is a chaotic, exhilarating, and sometimes overwhelming treasure hunt where merchandise is sold by the pound rather than at fixed prices. Unlike

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

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