79585905

Date: 2025-04-22 07:34:16
Score: 1
Natty:
Report link

To add on to above answer. Do ensure to remove dependency from entire dependency tree-

For Maven use - >

 mvn dependency:tree

Search for- org.eclipse.angus:angus-activation in result and identify parent of findings to use for exclusion from direct dependencies in your pom.xml

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

79585900

Date: 2025-04-22 07:33:16
Score: 3
Natty:
Report link

I guess those column numbers are wrong.

if the range is B3:E5, they are 2, 3, 4, 5.

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

79585898

Date: 2025-04-22 07:32:15
Score: 1
Natty:
Report link

In a testing scenario, a common issue arises when using mocking frameworks like Mockito to mock Spring Filters/Interceptors. If the filter.proceed() method isn't invoked or returns null, the subsequent web response logic isn't executed, resulting in an empty response body.

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

79585892

Date: 2025-04-22 07:29:15
Score: 2.5
Natty:
Report link

It looks like it actually may be possible using a feature introduced in Windows 10 Version 1803. Check out this article:

https://devblogs.microsoft.com/oldnewthing/20240201-00/?p=109346

I have not tried it myself.

Reasons:
  • Blacklisted phrase (1): this article
  • Low length (1):
  • No code block (0.5):
Posted by: Steve

79585884

Date: 2025-04-22 07:23:13
Score: 2.5
Natty:
Report link

I just had a similar issue. It turned out I was debugging a unit test, while in release mode and not debug mode. As a result a portion of the local variables wasn't shown in the local variables nor accessible by watch.

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

79585883

Date: 2025-04-22 07:23:13
Score: 0.5
Natty:
Report link

To display the pilot name, number of flights as "Number of Flights", and total pay as "Compensation", you can use a query that joins relevant flight and pilot tables, groups by pilot, and uses aggregation functions. The result helps track performance and earnings, especially useful for analyzing Flight Delay Compensation. Integrating tools like DelayDollars can further simplify managing pilot payments related to delayed flights, ensuring accurate and fair compensation based on the number and nature of their assignments.

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

79585882

Date: 2025-04-22 07:23:13
Score: 1
Natty:
Report link

Have you check the scaling factor? For mg/dL it will be 10.0 and for mmol/L is 18.0...

double getGlucoseValue(int fstByte, int sndByte) {
  return (((256 * fstByte) + (sndByte)) & 0x0FFF) / scaling_factor;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Emiliano

79585875

Date: 2025-04-22 07:18:12
Score: 0.5
Natty:
Report link

The issue was in the EncoderLayer where the residual calculations were done wrong. The correct way of calculating:

    def forward(self, x: torch.Tensor, src_pad_key = None):
        
        residual = x
        x = self.layer_norm1(x)
        
        if src_pad_key is not None: x = self.self_attn(x, src_pad_key = src_pad_key, use_self_attention = True)
        else: x = self.self_attn(x)

        # normalize and apply residual connections
        x += residual

        residual = x
        x = self.layer_norm2(x)
        x = self.mlp(x)
        x += residual

        return x

Another change was that we must always use self attention (instead of pooled attention) as otherwise the calculations won't work with the image encoder. [query = x]

The results look like this:

Cat similarity: tensor([[25.4132]], grad_fn=<MulBackward0>)
Dog similarity: tensor([[21.8544]], grad_fn=<MulBackward0>)
cosine cat/dog: 0.8438754677772522
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Yousef

79585866

Date: 2025-04-22 07:13:10
Score: 2.5
Natty:
Report link

" MapKit for AppKit and UIKit, MapKit JS, and Apple Maps Server API provide a way for you to store and share references to places that matter to your application: the Place ID. A Place ID is an opaque string that semantically represents references to points of interest in the world, rather than particular coordinates or addresses."

https://developer.apple.com/documentation/MapKit/identifying-unique-locations-with-place-ids

https://developer.apple.com/maps/place-id-lookup/

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

79585865

Date: 2025-04-22 07:12:10
Score: 4.5
Natty:
Report link

Looks like the "Use non-modal commit interface" option is no longer available in Webstorm 2025.1 :(
enter image description here

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

79585860

Date: 2025-04-22 07:08:09
Score: 0.5
Natty:
Report link

Ended up finding the issue:
1)First FTP on the fly does not work very well, for some reason password was not accepted with on the fly
2)Bucket-acl-private is incorrect even though I had specific permissions to edit the bucket


    S3_REMOTE=":s3,provider=AWS,access_key_id=$ACCESS_KEY,secret_access_key=$SECRET_KEY:$BUCKET"
    RCLONE_FLAGS="--s3-chunk-size 100M --s3-upload-cutoff 200M --retries 5 --low-level-retries 10 --progress --checksum"

    # Create a temporary named FTP remote
    rclone config create "$FTP_REMOTE_NAME" ftp host="$FTP_HOST" user="$FTP_USER" pass="$FTP_PASS" --obscure

#create a temporary directory to check the md5
    TEMP_DIR="./temp_md5"
    mkdir -p "$TEMP_DIR"

    if [ -z "$FTP_FOLDER" ]; then
        rclone copy "$FTP_REMOTE_NAME:md5.txt" "$TEMP_DIR" --quiet
        rclone copy "$FTP_REMOTE_NAME:$FTP_FILE" "$TEMP_DIR" --quiet
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Anthony Santana

79585855

Date: 2025-04-22 07:06:08
Score: 3
Natty:
Report link

apt install -y package

this would work but that way you have to write it in every command

try

yes | sh file.sh # this way you do not have to confirm on every command

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

79585850

Date: 2025-04-22 07:04:07
Score: 3.5
Natty:
Report link

Disable the RLS on both the referencing table and the refrenced table for now. It will solve this problem temporarily

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

79585843

Date: 2025-04-22 06:58:06
Score: 3.5
Natty:
Report link

The question is answered here:

https://forum.aspose.com/t/how-to-create-a-content-control-sdt-when-you-have-search-text-across-two-bullets/311568/10

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

79585822

Date: 2025-04-22 06:42:02
Score: 1.5
Natty:
Report link

I assume VS can't render in design mode custom types like local:PageBase
It might be due to lot of factors: abstract type, there is no default parametreless constructor, errors during resolving dependencies in design time.. and etc.

Try to change in xaml local:PageBase to base type: Page or UserControl(depends on what is your PageBase impelent) and specify the type in x:Class attribute (it should be non abstract with default constructor which will call InitializeComponents or if it custom control - specify DefaultStyleKey)

I assume after succeeded rebuild - you will see the content in design time.

Reasons:
  • Blacklisted phrase (1): what is your
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Anton

79585820

Date: 2025-04-22 06:42:02
Score: 2
Natty:
Report link

If you want to disable this altogether, you can select disable. This will give you the prompt to overwrite the existing files.

enter image description here

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

79585816

Date: 2025-04-22 06:41:01
Score: 0.5
Natty:
Report link

Below approach is working fine

import org.springframework.core.env.Environment;

public final class RandomConstants {
    public static String JWT_SECRET;
    public RandomConstants(Environment environment) {
        JWT_SECRET = environment.getProperty("your-env");
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Syed

79585802

Date: 2025-04-22 06:24:58
Score: 1
Natty:
Report link

There is a problem with express 5+, it's using path-to-regexp library, and they changed the rules.
Instead of using:

.get('/**', xxxx) / .get('/*', xxxx)


Use this workaround:

.get('/*\w', xxxx)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user13761567

79585801

Date: 2025-04-22 06:22:58
Score: 1.5
Natty:
Report link

Is there any reason you add @types/node inside the prebuild ? (You may not need that. you can remove the prebuild or remove installing @types/node in prebuild)

Remove npm install in build step

"build": "npx prisma generate && next build",

and try this version for the node types

"@types/node": "^20.8.10"
Reasons:
  • Blacklisted phrase (1): Is there any
  • Whitelisted phrase (-1): try this
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there any
  • Low reputation (0.5):
Posted by: Shane Dushyantha

79585796

Date: 2025-04-22 06:19:57
Score: 1
Natty:
Report link

=WEEKNUM(TODAY())=B2 applied to range B2:B5

Result:

enter image description here

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

79585790

Date: 2025-04-22 06:15:56
Score: 0.5
Natty:
Report link

AppPoolIdentity (Default) works because it uses the web server's machine account for delegation.

When you configured constrained delegation in AD, you likely did this for the web server's computer object (not the domain service account). This allows the machine account to "forward" the user's identity to SQL Server.

Your Domain Service Account isn't working because:

Constrained delegation isn’t configured for it – You set delegation for the web server, not the domain account.

Double-hop limitation – When using a domain account, you must explicitly allow it to delegate credentials to SQL Server via:

AD Delegation Settings: Mark the domain service account as "Trusted for Delegation" to the SQL Server’s SPN (MSSQLSvc).

Correct SPN Binding: Ensure the SQL Server’s SPN is properly registered in AD.

Fix:

Configure constrained delegation directly for the domain service account (not the web server) to the SQL Server’s SPN. This tells AD: "This service account is allowed to forward user credentials to SQL Server."

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

79585787

Date: 2025-04-22 06:13:55
Score: 1
Natty:
Report link

The output.css file is generated by Tailwind’s build process (typically via PostCSS or a build script), and generated files like this are usually not committed to version control. Here’s why: 1. Source of Truth: The actual source is your Tailwind config and the input CSS (usually input.css or something similar). output.css is just a compiled artifact. 2. Reproducibility: Anyone working on the project can run the build process locally (npm run build or similar) to regenerate output.css. No need to store it in Git. 3. Avoid Merge Conflicts: Since it’s a large, machine-generated file, any small change can cause massive diffs, which are messy and annoying to resolve during merges. 4. Deployment: On production servers, you’d usually compile static files as part of your deployment pipeline (collectstatic for Django and npm run build or similar for Tailwind).

Typical .gitignore example:

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

79585785

Date: 2025-04-22 06:12:55
Score: 2
Natty:
Report link

This seems to be any issue with permissions granted on your computer, One of the most common ways of getting rid of this problem is to remove and reinstall all dependencies and try to avoid adding any extra or unnecessary dependencies. Second if you are trying to remove node modules then first try manually as node sometimes get locked out of the system so that it does not delete any other important file of the system

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

79585780

Date: 2025-04-22 06:06:54
Score: 2
Natty:
Report link
  1. Load the file into Excel or Googlesheets.

  2. Insert column to the left.

  3. Insert a number range in this new left column.

  4. Copy both columns & paste into Notepad++

  5. Assuming you don't have tabs in your 50k lines of text...

  6. Find and Replace tabs with a single space.

Short of writing a script as others mention, this would be how I'd do it.

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

79585776

Date: 2025-04-22 06:04:53
Score: 3
Natty:
Report link
header 1 header 2
<img src="images/sample.jpg" /> cell 2
cell 3 cell 4
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Edris Anakonda

79585764

Date: 2025-04-22 05:53:51
Score: 2.5
Natty:
Report link

you can follow any one of below

scanf("%d%d",&(*p).real,&(*P).imaginary);

scanf("%d%d",&*p->real, &*P->imaginary);

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

79585758

Date: 2025-04-22 05:47:49
Score: 1.5
Natty:
Report link

Recommended Solution for WireGuard + Xcode 16 Compatibility Issues

After extensive troubleshooting, the only solution that worked was replacing the official WireGuard dependency with this forked and patched version:

https://github.com/groupofstars/wireguard-apple

Why This Works:

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

79585748

Date: 2025-04-22 05:38:47
Score: 0.5
Natty:
Report link

I like the idea of Alex's solution but I seem to fight the IDE on occasion when opening modules (random hangs etc) means I can have difficulty finding the code at that address in practice.

Another method I use is to log the Count variable in the FinalizeUnits method using a non breaking breakpoint.

enter image description here

I can then see what is the last number attempted before things blow up in the output window.

I then run again and change the breakpoint to break and on the condition of Count = <whatever the last count was>

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

79585746

Date: 2025-04-22 05:36:47
Score: 2.5
Natty:
Report link

Vless cannot be used directly as a system proxy. You need to configure a clash or v2ray locally that connect it to your Vless server, and then use the local socks or https proxy as a parameter of the Openai client.

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

79585744

Date: 2025-04-22 05:32:46
Score: 2.5
Natty:
Report link

As you described, the code is not thread-safe, which means you have to use something like a 'lock' to ensure that only one thread runs the piece of code at a time.

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

79585740

Date: 2025-04-22 05:28:45
Score: 4.5
Natty: 4
Report link

backslash is what you're looking for

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

79585737

Date: 2025-04-22 05:25:44
Score: 3
Natty:
Report link

I think the problem is in the Google API...

About an hour ago, the "add new variables" menu in Colab simply disappeared.

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

79585724

Date: 2025-04-22 05:11:41
Score: 0.5
Natty:
Report link

When an Instagram embed on your WordPress site only shows the photo when you're logged in, but not when you're logged out or visiting from a private browser, it's usually due to one of these issues:


🔐 1. Instagram Privacy Settings / Account Restrictions

Solution:
Double-check that:


🌐 2. Embeds Now Require oEmbed API Access (Post-2020)

Instagram and Facebook deprecated unauthenticated oEmbed access in late 2020.

Solutions:


🧪 3. Caching or Lazy Loading Conflicts

Solutions:


🔧 4. Old Embed Format or Raw Code

Fix:


Want to troubleshoot it step by step? Feel free to share your setup (theme, plugins used, embed method), and I can guide you further.

SMM panel in bangladesh, Best SMM panel bd , Best SMM panel in Bangladesh ,

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-2): Solution:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): When an In
  • Low reputation (1):
Posted by: SMM PANEL BD

79585721

Date: 2025-04-22 05:11:41
Score: 2.5
Natty:
Report link

I am working on the same task of automatically creating the project on hitting my file URL I am using PHP for this you can check the below API documentation
XTRF API Documentation

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

79585720

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

You can specify your needed ndk version in build gradle file inside app (android/app/build.gradle)

android {
    // ... other config
    ndkVersion "27.0.12077973"
}

then just do flutter clean and flutter pub get.

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

79585718

Date: 2025-04-22 05:08:40
Score: 4
Natty:
Report link

Solved by wrapping the same formula inside BYROW.

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

79585714

Date: 2025-04-22 05:04:39
Score: 5
Natty: 5
Report link

there is an Vless implementation of Python

https://github.com/Safewoo/xypro

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

79585711

Date: 2025-04-22 04:59:37
Score: 1
Natty:
Report link

i was also gettting the same issue and I was using webpack I used this in webpack to resolve this path issue

 output: {
path: path.resolve(__dirname, 'build'),
filename: 'renderer.js',
// Use different publicPath values for dev and prod
publicPath: isProduction ? './' : '/'

},

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

79585710

Date: 2025-04-22 04:58:37
Score: 4.5
Natty:
Report link

How to update app?
I have published app on unlisted distribution.
i want to upload one more build so how to ulpload.
does it through normal process.

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Hritik Karn

79585697

Date: 2025-04-22 04:35:33
Score: 1
Natty:
Report link

It really depends on the kind of feedback you want to receive from doctorest

using assert in your test is a more compact approach. It works by ensuring that if the condition fails, Python raises an assertionerror. On the other hand, encoding your condition as a logical operator returning true or false will result in lines like true/ false in the output which might be less informative when the condition fails.

There’s no major reason not to use ASSERT as long as youre comfortable with the exception based error reporting and want a more compact test.

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

79585692

Date: 2025-04-22 04:28:31
Score: 1.5
Natty:
Report link

I have a video of me solving a similar problem here, hope this helps!

tinyurl.com/helloworldhelpful

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: penis

79585689

Date: 2025-04-22 04:24:30
Score: 1
Natty:
Report link

My new Angular 17+ app I need this issue again. My app.config is like that:

provideRouter(
  routes,
  withInMemoryScrolling({
    anchorScrolling: 'enabled',
    scrollPositionRestoration: 'enabled',
  }),
),

and routerLink from the button is like that:

<button [routerLink] = "['/c2']" fragment="c2id"> Link </button>

After taht anchor scolling has worked perfectly

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

79585672

Date: 2025-04-22 04:08:27
Score: 3
Natty:
Report link

How to change below code for text file to pdf

filename = "c:\Notes\" & strComputer &".txt"

Set obFSO = CreateObject("Scripting.FileSystemObject")

Set obTextFile = obFSO.OpenTextFile(filename, ForWriting, True)

obTextFile.WriteLine UCase(message)

obTextFile.Close

Set obTextFile = Nothing

Set obFSO = Nothing

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: user30336385

79585667

Date: 2025-04-22 04:01:24
Score: 7.5 🚩
Natty:
Report link

What topics can I ask about here?

Reasons:
  • Blacklisted phrase (1): can I ask
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What to
  • Low reputation (1):
Posted by: Asta Clover

79585658

Date: 2025-04-22 03:48:22
Score: 2
Natty:
Report link

from gtts import gTTS

# Define the text for the ringtone

text = "Woy ada WA, gak usah dibaca"

# Generate the audio file for the text

tts = gTTS(text, lang='id')

file_path = '/mnt/data/woy_ada_wa.mp3'

tts.save(file_path)

file_path

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

79585654

Date: 2025-04-22 03:37:19
Score: 1.5
Natty:
Report link

You can change it directly on the registrar, Azure uses GoDaddy for it.

Azure used to have a button on App Service Domain but not anymore, but you can still login here:
https://dcc.secureserver.net/domains

Do a password recovery for your username and password using your azure email.
It will let you change your nameservers and even transfer your domain.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Gilbert De Leon

79585653

Date: 2025-04-22 03:35:19
Score: 2
Natty:
Report link

Problem can be at MongoDB side as well.
Execute the same query on mongodb client and check its execution time. Check the query plan to validate if index is being used.

Try with below as well, while querying from mondo db client and flink.
eq("_id", 1917986549) // Use number instead of string

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

79585651

Date: 2025-04-22 03:35:19
Score: 1
Natty:
Report link

Potential Causes and Debugging Steps Firewall or Network Restrictions

Ensure there haven't been any recent changes to your network or firewall that might be blocking incoming requests.

Check if the IP addresses of Xero's webhook requests are being filtered.

Rate Limits or Request Blocking by Xero

Xero might have introduced new rate limits or validation requirements.

If your webhook is failing immediately after activation, Xero could be deactivating it due to consecutive failures.

SSL/TLS Certificates or DNS Issues

Confirm that your SSL certificates haven't expired or changed recently.

Run a DNS lookup to check if the webhook’s endpoint is resolving correctly.

Background Job Processing Logic

You mentioned that webhook requests are saved for background processing. Could there be a delay or misconfiguration that prevents the server from acknowledging receipt within Xero’s expected timeframe?

Webhook Request Format or Authentication

Verify if Xero has updated the request payload or authentication method required.

Try setting up a temporary endpoint that simply logs requests to verify what Xero is sending.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: quyet nguyen

79585649

Date: 2025-04-22 03:33:18
Score: 3.5
Natty:
Report link

This has been fixed in Pycharm Community Edition version 2025.1

Release notes:
https://youtrack.jetbrains.com/articles/PY-A-233538361/PyCharm-2025.1-251.23774.444-build-Release-Notes

All 2024 versions have this bug.
2023.2.7 and prior versions are good.

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

79585648

Date: 2025-04-22 03:32:18
Score: 4
Natty: 5.5
Report link

Thank you brother. I almost gave up using Instagram graph API to fetch comments. This worked. btw, do we get the commentor userName in the response? Appreciate your response. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nikhil Sundarappa

79585647

Date: 2025-04-22 03:32:17
Score: 9 🚩
Natty: 6
Report link

How did you find that the card does not support? Is there any methods to detect, thanks.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): Is there any
  • RegEx Blacklisted phrase (3): did you find that the
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How did you find that the
  • Low reputation (1):
Posted by: assemble

79585643

Date: 2025-04-22 03:25:15
Score: 1.5
Natty:
Report link

The performance gain is huge,because it dynamically binds listeners to every child elements through single parent.there are so many edge cases to consider before to use

  1. Delegate too many events on parent can cause inefficency and complex logic
  2. it only works with events like click and does not work with events like onblur,onfocus,mousenter etc.
  3. you need to optimize the condition logic to avoid triggering unnecessary execution
Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ajay A

79585641

Date: 2025-04-22 03:21:14
Score: 3
Natty:
Report link

Do as proposed above. You’re missing the "border" utility class — add "border" along with "border-solid" and "border-black", or the border won’t show up.

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

79585640

Date: 2025-04-22 03:21:14
Score: 3
Natty:
Report link

In case anyone needs, I found a similar post using Jolt transform here which helps: Split array inside JSON with JOLT

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

79585634

Date: 2025-04-22 03:17:13
Score: 0.5
Natty:
Report link

I wanted to add a related use-case here that I didn't see listed above, but this might help someone else. I often need to apply a custom function to many columns where that function itself takes multiple columns of a df, where the exact columns might be a pain to spell out or change subtly depending on the data-frame. So, same problem as OP, but where the function might be user-defined and require multiple columns.

I took the basic idea from Rajib's comment above. I wanted to post it here since, while it might be overkill for some cases, it is useful in others. In that case, you'll need apply, and you'll want to wrap the results in a pd.Series to return them as a normal-looking table.

# Toy data
import numpy as np
import pandas as pd
inc_data = {f"inc_{k}" : np.random.randint(1000, size=1000)
        for k in range(1,21)}
other_data = {f"o_{k}" : np.random.randint(1000, size=1000)
        for k in range(1,21)} # Adding unnecessary cols to simulate real-world dfs
group = {"group" :
     ["a"]*250 + ["b"]*250 + ["c"]*100 + ["d"]*400}
data = {**group, **inc_data, **other_data}
df = pd.DataFrame.from_dict(data)

# Identify needed columns
check = [c for c in df.columns if "inc" in c] # Cols we want to check
need = check + ["o_1"] # Cols we need
ref = "o_1" # Reference column
# Not an actual function I use, but just a sufficiently complicated one
def myfunc(data, x, y, n):
    return data.nlargest(n, x)[y].mean() 
df.groupby('group')[need].apply( # Use apply() to access entire groupby columns
    lambda g : pd.Series( # Use series to return as columns of a summary table
    {c : myfunc(g, c, ref, 5) # Dict comprehension to loop through many cols
    for c in check}
    ))

There might be much more performant ways to do this, but I had a hard time figuring this out. This method doesn't require more pre-defined functions than your custom function, and if the idea is just speeding up a lot of work, this is better than the manual methods of creating a Series detailed here, which has lots of good tips if the functions themselves are very different.

Reasons:
  • RegEx Blacklisted phrase (1): same problem
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: gjmb

79585633

Date: 2025-04-22 03:17:13
Score: 2.5
Natty:
Report link

I'm having the same issue with the mermaid servers since a week ago (or so). I tried running the server locally on docker and it works as expected. For the issue with node names I'm assuming your Jupyter notebook is caching the image for a previously created graph and when you use that old name it just uses the cache hence you don't see an error. Try creating a new notebook (or even better a whole new python environment), and run both codes in there see if you can reproduce the error for both versions.

You can try and run mermaid server locally following these steps. Let me know after you try these, we need to report this to langchain and mermaid team.

  1. Download and run the mermaid container folowing instrutions here.
  2. From your python directory navigate to langchain_core/runnables/graph_mermaid.py/ > _render_mermaid_using_api() and replace https://mermaid.ink in image_url with `http://localhost:3000. Keep the rest of the url intact.
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm having the same issue
  • Low reputation (1):
Posted by: Arash

79585631

Date: 2025-04-22 03:12:12
Score: 4
Natty:
Report link

you need using this, Module Federation 2 has another approach https://module-federation.io/guide/basic/runtime.html#registerremotes

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

79585627

Date: 2025-04-22 03:07:10
Score: 3
Natty:
Report link

After some debugging, found that if I add a signal handler in the HAL, that solves the problem, no longer seeing a crash. Posting it here in case someone else has similar issues

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

79585623

Date: 2025-04-22 02:53:07
Score: 13.5 🚩
Natty: 5.5
Report link

I am facing the same issue. Were you able to solve it?

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve it?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alex Enrique

79585622

Date: 2025-04-22 02:52:06
Score: 4
Natty:
Report link

@Christophe To my understanding, the term "class" in a class diagram represents the principle of object-oriented programming. You cannot simply say that the model must be separated from the implementation. Rather, the model must be precisely transferable to the respective implementation and vice versa. The remaining question is: how do I represent the following implementation in a UML class diagram?

class LeaseAgreement{
    public Person tenant{
        get{
            return tenant;
        }
        set{
            tenant = value;
        }
    }

}

class Person{
    public string name{get{return name;}set{name=value;}}
    public string lastname{get{return lastname;}set{lastname=value;}}
}
Reasons:
  • Blacklisted phrase (1): how do I
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Z.J

79585589

Date: 2025-04-22 02:00:56
Score: 0.5
Natty:
Report link

In my case i used pm2 to start my server and it somehow change relative path or something like that...

Solution for such case:

provide explicitly cwd option to pm2 from config or directly in terminal, for example: pm2 start dist/main.js -- --name example --cwd /var/www/hope-it-will-help/app

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

79585587

Date: 2025-04-22 01:57:55
Score: 2
Natty:
Report link

Only issue with CTAS approach is Table/column constraints. Constraints are not copied and it can cause issues in the target system(s). For example, if you have auto increment column, CTAS will not copy the constraint. To keep the table definition as is, use CREATE TABLE LIKE <source table> and then copy the data using insert/insert overwrite.

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

79585580

Date: 2025-04-22 01:50:54
Score: 3.5
Natty:
Report link

Well as well and have the money for the people act like you have been working for the company that has been working on that has to have the

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

79585568

Date: 2025-04-22 01:39:52
Score: 1.5
Natty:
Report link

I managed to resolve the high CPU usage issue when using WebFlux by configuring the R2DBC connection pool more carefully. Here's what helped in my case:

#in my DB Config class
#The code comments are in Korean

@Bean(name = "arhConnectionFactory")
  public ConnectionFactory arhConnectionFactory() {
    ConnectionFactory conn = ConnectionFactories.get(ConnectionFactoryOptions.builder()
        .option(ConnectionFactoryOptions.DRIVER, "pool") // pool 사용 (proxy로 감싸기 전)
        .option(ConnectionFactoryOptions.PROTOCOL, properties.getDriver()) // mariadb, mssql 등
        .option(ConnectionFactoryOptions.HOST, properties.getHost())
        .option(ConnectionFactoryOptions.PORT, properties.getPort())
        .option(ConnectionFactoryOptions.USER, properties.getUsername())
        .option(ConnectionFactoryOptions.PASSWORD, properties.getPassword())
        .option(ConnectionFactoryOptions.DATABASE, properties.getDatabase())

        // 커넥션 풀 관련 옵션
        .option(Option.valueOf("initialSize"), 1) // 초기 커넥션 수
        .option(Option.valueOf("maxSize"), 2) // 최대 커넥션 수
        .option(Option.valueOf("maxIdleTime"), Duration.ofSeconds(60)) // 유휴 커넥션 유지 시간
        .option(Option.valueOf("maxCreateConnectionTime"), Duration.ofSeconds(5)) // 커넥션 생성 제한 시간
        .option(Option.valueOf("maxAcquireTime"), Duration.ofSeconds(3)) // 커넥션 획득 제한 시간
        .option(Option.valueOf("acquireRetry"), 1) // 커넥션 획득 재시도 횟수
        .option(Option.valueOf("validationQuery"), "SELECT 1") // 유효성 검사 쿼리
        .option(Option.valueOf("backgroundEvictionInterval"), Duration.ofSeconds(120)) // 유휴 커넥션 정리 주기
        .option(Option.valueOf("name"), "arh-r2dbc-pool") // 커넥션 풀 이름
        .build()
    );

    return ProxyConnectionFactory.builder(conn)
        .onAfterQuery(queryInfo -> {
          log.debug("{}", new QueryExecutionInfoFormatter().showQuery().format(queryInfo));
          log.debug("{}", new QueryExecutionInfoFormatter().showBindings().format(queryInfo));
        })
        .build();
  }

BUT,There were two main tasks in my WebFlux server that caused a noticeable increase in CPU usage:

  1. Processing JSON parameters and storing them in the database

  2. Saving multiple files from a Flux<FilePart> into server storage

I was able to solve the first issue (database write logic for JSON data), and CPU usage has improved since then. However, the second issue—saving multiple files to disk—is still causing high CPU load.

Has anyone faced similar problems with Flux and file I/O in WebFlux? I'd appreciate any tips or advice on optimizing file write operations (e.g., writing to disk efficiently in a reactive context).

Reasons:
  • Blacklisted phrase (1): any tips
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: yangjinyoung

79585563

Date: 2025-04-22 01:29:49
Score: 3
Natty:
Report link

Adding border-1 did the trick, thank you @Wongjn on the comments.

page.tsx

export default function Home() {
  return (
    <div>
      <input className="border-1 border-solid border-black rounded-md" type="text" disabled />
    </div>
  );
}
Reasons:
  • Blacklisted phrase (0.5): thank you
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Wongjn
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Samantha Castillo

79585559

Date: 2025-04-22 01:23:48
Score: 3.5
Natty:
Report link

The only changed I need was in the method 'get_current_user' I added an if...else that return 'None' if the user is not logged in, than I added 'get_current_user' for all endpoints and works for all user authenticated or not.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Delivery-TI

79585554

Date: 2025-04-22 01:19:47
Score: 1
Natty:
Report link

the key is to `InstallArtifact`

    const install_tests_bin = b.addInstallArtifact(tests, .{});
    b.step("install-tests", "Install tests to zig-out/bin").dependOn(&install_tests_bin.step);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Felix F Xu

79585547

Date: 2025-04-22 01:08:44
Score: 0.5
Natty:
Report link

You could use the walrus operator in a dictionary value as follows:

count = 10

dictionary1 = {
                1: 'One', 2: 'Two', 3: (count := count + 1)
              }

print(dictionary1[3])

The walrus operator returns the value of the assignment.

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

79585546

Date: 2025-04-22 01:08:44
Score: 1
Natty:
Report link

The problem was I had competing manifests due to using yarn and npm and npx. Steps to fix:

  1. Delete node_modules and package-lock.json (because I have a yarn.lock instead)
  2. Run yarn install

The project is now building and running again locally.

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

79585542

Date: 2025-04-22 01:06:43
Score: 2
Natty:
Report link

pjjonesnz has published a github project to add styles to the Excel export:

https://github.com/pjjonesnz/datatables-buttons-excel-styles

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

79585539

Date: 2025-04-22 01:01:42
Score: 0.5
Natty:
Report link

The credit for this answer goes to @dimich. The problem is a copy of the NeoPixel object is being made and since there is none defined in the class, this results in a memory deallocation of the pixels member.

Specifically, the statement pixel = Adafruit_NeoPixel(1, 25, NEO_GRB + NEO_KHZ800); destroys that 1st instance in which pixels is NULL, which is not a problem. It then creates the new one and allocates the memory for the pixels member, and then makes an automatic copy since there is no copy constructor. Since the data member pixels is dynamically allocated, its pointer is copied. In all, three instances are created. The 2nd instance is then destroyed, which causes the problem.

Because the 3rd instance points to the same section of memory for pixels, when the 2nd instance is destroyed, so is the allocation for that memory. Thus, the memory is free for other uses, and the pointer that was copied is no longer valid.

In order to make it clearer:

Adafruit_NeoPixel pixel; // 1st instance; pixels == NULL
pixel = Adafruit_NeoPixel(1, 25, NEO_GRB + NEO_KHZ800); // pixel contains a copy of the pixels pointer, but not its memory.
// pixel.pixels == 0x555 and Adafruit_NeoPixel(1,...).pixels == 0x555
// after the copy is made 0x555 is freed and the pixel.pixels points to freed memory.

From Brave AI, it says it best:

If you do not define a copy constructor, the compiler-generated default copy constructor will copy the data members directly. However, if the class contains pointers or dynamically allocated resources, a custom copy constructor should be defined to handle deep copying, ensuring that the new object has its own copy of the dynamically allocated resources rather than sharing the same resources as the original object.

Thanks again to @dimich for catching this easy to miss problem.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @dimich
  • User mentioned (0): @dimich
  • Self-answer (0.5):
Posted by: Scott

79585529

Date: 2025-04-22 00:46:39
Score: 0.5
Natty:
Report link

I worked it out! It was rather simple.

launch.bat

@echo off

:: Assumes native_bridge.py and the 'venv' folder are in the same directory as this batch file.

:: Path to venv python relative to this batch file
set VENV_PYTHON="%~dp0venv\Scripts\python.exe"

:: Path to the python script relative to this batch file
set SCRIPT_PATH="%~dp0native_bridge.py"

:: Define log file paths relative to this batch file's location
set STDOUT_LOG="%~dp0native_bridge_stdout.log"
set STDERR_LOG="%~dp0native_bridge_stderr.log"

:: Execute the script using the venv's python, redirecting output
%VENV_PYTHON% %SCRIPT_PATH% > %STDOUT_LOG% 2> %STDERR_LOG%

com.nativebridge.test.json

{
  "name": "com.nativebridge.test",
  "description": "Persistent event bridge",
  "path": "C:\\NativeBridgeTest\\native_host\\launch.bat",
  "type": "stdio",
  "allowed_origins": [
    "chrome-extension://fedjpkbjlhmmnaipkljgbhfofpnmbamc/"
  ]
}

As you can see the manifest is launching launch.bat. Great. My AHK script sends messages down the pipe, they arrive in native_bridge.py but never reach the browser? Why? Because I'm redirecting stdout of native_bridge.py for logging... Well whatever I guess I worked it out. I'll leave this repo public in it's fixed state in case anyone wants to copy it in future.

Reasons:
  • Blacklisted phrase (0.5): Why?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Modf

79585524

Date: 2025-04-22 00:39:37
Score: 5
Natty:
Report link

I am facing the exact same issue

flutter: ClientException with SocketException: The semaphore timeout period has expired.

(OS Error: The semaphore timeout period has expired.

, errno = 121), address = xxxx, port = 59881, uri=http://xxxxxx:2020/bastate

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the exact same issue
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ankita

79585517

Date: 2025-04-22 00:28:34
Score: 11 🚩
Natty:
Report link

I'm facing a similar issue. I am trying to play youtube videos in the background but I couldn't solve the problem. Have you found a solution or a workaround?

Reasons:
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (2.5): Have you found a solution or a workaround
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing a similar issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user21759558

79585511

Date: 2025-04-22 00:18:32
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: Santiago Venegas

79585505

Date: 2025-04-22 00:09:30
Score: 5
Natty:
Report link

Why don't you just copy and past the old /home into the new OS?

I mean, really. Is there a reason of why you can't do something so simple?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Why don't you
  • Low reputation (1):
Posted by: Ta_PegandoFogo

79585501

Date: 2025-04-22 00:02:28
Score: 2
Natty:
Report link

This seems to have been a mistake and was fixed in the 2013 edition: The list now contains mbtowc and wctomb, but not wcstombs.

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

79585492

Date: 2025-04-21 23:51:25
Score: 7.5
Natty: 7.5
Report link

This does not solve the problem with visual studio 2022. Instead of getting error C28251, it causes an error of C2731 "wWinMain" function cannot be overloaded. How do I solve this error?

Reasons:
  • Blacklisted phrase (1): How do I
  • RegEx Blacklisted phrase (1.5): solve this error?
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30335143

79585490

Date: 2025-04-21 23:50:25
Score: 2.5
Natty:
Report link

The approch when you use files.associations is the best way,Just a little observation,to know when configure css to tailwind, press ctrl + shift + p and search 'Open Workspace Settings (JSON)' and paste the code and the error disapper

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

79585482

Date: 2025-04-21 23:39:23
Score: 2
Natty:
Report link

For easier rotation and interaction, I’d recommend checking out Plotly. It’s a solid Python library that lets you create 3D scatter plots you can rotate in real-time, right in the browser. I’ve used similar setups when working with a product visualization platform, and the interactivity makes a big difference, especially when you’re trying to spot patterns or compare dimensions quickly.

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

79585474

Date: 2025-04-21 23:30:20
Score: 1
Natty:
Report link

Found! name vs id outputs on the pool. (It's easy to loose track of when to use which and seeing the error crosseyed, it's easy to miss the repitition of the full project path that was in the error)

The correct code is:

authority = gcp.certificateauthority.Authority(
    "internal-ca-authority",
    certificate_authority_id=f"internal-ca-authority-{stack}",
    pool=pool.name, # <<<---
...
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Paul Forgey

79585465

Date: 2025-04-21 23:19:18
Score: 1
Natty:
Report link
 You didn't define or call it from the body section:

    {
      "type": "TextBlock",
      "text": "<at>john</at>"
    }

or skip the entities definition:

    {
      "type": "TextBlock",
      "text": "<at>[email protected]</at>"
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: pilipeet

79585462

Date: 2025-04-21 23:16:16
Score: 4
Natty:
Report link

Apparently it is not possible.

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

79585461

Date: 2025-04-21 23:14:16
Score: 1
Natty:
Report link

You can simply do it with v.check:

const validValues = ['1', '2', '4'];

const Schema = v.object({
  // ...
  user: v.array(
    v.pipe(
      v.string(),
      v.regex(/^\d+$/, 'Invalid ID format'),
      v.check((item) => validValues.includes(item), 'ID is not allowed')
    )
  )
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: dimk_1

79585450

Date: 2025-04-21 23:07:14
Score: 10.5 🚩
Natty: 5
Report link

I face the same problem, and nothing on internet answers this question. Did you find a solution for this problem?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I face the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Radu Homescu

79585445

Date: 2025-04-21 22:59:11
Score: 2
Natty:
Report link

Not sure if these are the same three dots (as on line 11)

enter image description here

But I disabled them with

  "workbench.colorCustomizations": {
    // other customizations
    "editorHint.foreground": "#00000000",
  },
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Cyril Dubovetsky

79585443

Date: 2025-04-21 22:58:11
Score: 1
Natty:
Report link

Just wanted to share that I submitted an Apple DTS ticket about iOS 18.4 breaking popoverTip/TipKit and they have acknowledged it and confirmed that "it is a known issue for which there is no known workaround at this time."

This is what I had sent them along with an MRE:

There are two issues that I am noticing with my tips in iOS 18.4. These issues were not present prior to updating to iOS 18.4. To be clear, if you run on a iOS 18.2 device, simulator, or in Swift Previews, you do not see these issues.

1. The message Text is truncated. It is not allowed to wrap around anymore.
2. Subsequent tips shown in my TipGroup are presented in a sheet. The tip has no arrow and, interestingly, the text is not truncated here.

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

79585439

Date: 2025-04-21 22:57:11
Score: 1
Natty:
Report link

Yes, this is a known limitation with the Amazon Prime Video app. It often restricts playback of downloaded content from external SD cards on some devices due to DRM (Digital Rights Management) issues. Netflix handles this differently, which is why it works fine.

Try setting the SD card as the default download location from within the Prime Video app settings, and make sure the card is formatted as internal storage (adoptable storage), if your device supports that. Otherwise, you'll likely have to stick with internal storage for Prime downloads.

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

79585437

Date: 2025-04-21 22:53:09
Score: 6 🚩
Natty: 4.5
Report link

I am having a similar problem with custom dimensions. Views change to zero, but I know there is activity based on date and user counts.

Reasons:
  • Blacklisted phrase (1): I am having a similar problem
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am having a similar problem
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Kappaluppa

79585432

Date: 2025-04-21 22:51:08
Score: 3.5
Natty:
Report link

2nd issue was the action property of the form tag, didn't need an action property, think the ide slipped it in. It all works now.

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

79585428

Date: 2025-04-21 22:44:06
Score: 1.5
Natty:
Report link

The error 535, '5.7.8 Username and Password not accepted' means that Gmail isn't accepting your login info.

My suggestion:

  1. Make sure you've turned on 2-Step Verification in your Google account.

  2. Go to your Google account's Security settings and create an App Password — you’ll use this instead of your regular password.

  3. Please double-check that your EMAIL_PASSWORD environment variable has that app password set.

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

79585415

Date: 2025-04-21 22:30:03
Score: 1
Natty:
Report link

Try updating your config to the following:

springdoc:
  default-produces-media-type: "application/json"
  swagger-ui:
    path: /index.html

server:
  port: 8088
  servlet:
    context-path: /api/v1
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: devcom33

79585379

Date: 2025-04-21 21:44:54
Score: 2
Natty:
Report link

1- Clean up old NVIDIA drivers

sudo apt purge '^nvidia'

2- Install the recommended driver automatically

sudo ubuntu-drivers autoinstall

3- Restart the system

sudo reboot
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Vitor Nunes

79585373

Date: 2025-04-21 21:39:53
Score: 3.5
Natty:
Report link

Regretfully....I upgraded to SSMS 20

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

79585360

Date: 2025-04-21 21:32:50
Score: 4
Natty:
Report link

Found the solution in another Question: by using "npm config set script-shell powershell" fixed the problem

Reasons:
  • Blacklisted phrase (1): another Question
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Hugo

79585354

Date: 2025-04-21 21:27:49
Score: 2.5
Natty:
Report link

Update. The Clearbit free logo API will be shut down on 12/1/25. Reference this changelog for alternatives - developers.hubspot.com/changelog/…

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

79585352

Date: 2025-04-21 21:24:49
Score: 2
Natty:
Report link

As of 2025 you can:

1. Download the official Data Wrangler extension;
2. Run your code and have your data frame in memory;
3. Open Jupyter Variables;
4. Choose the data frame;
5. Boom! Voila!

Data frame with Data Wrangler

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

79585351

Date: 2025-04-21 21:22:48
Score: 3
Natty:
Report link

After trying all of the suggestions here, I also needed to delete browsing data, and now the site loads fine.

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

79585337

Date: 2025-04-21 21:02:44
Score: 1
Natty:
Report link
-- Criar o banco de dados
CREATE DATABASE LOJABD;
USE LOJABD;

-- Criar a tabela CLIENTE
CREATE TABLE CLIENTE (
    codigo INT AUTO_INCREMENT PRIMARY KEY,
    nome VARCHAR(100) NOT NULL,
    estado VARCHAR(2) NOT NULL,
    cidade VARCHAR(100) NOT NULL,
    telefone VARCHAR(15) NOT NULL
);

-- Criar a tabela PRODUTO
CREATE TABLE PRODUTO (
    id INT AUTO_INCREMENT PRIMARY KEY,
    nome VARCHAR(100) NOT NULL,
    valor DECIMAL(10,2) NOT NULL,
    quantidade_estoque INT NOT NULL
);

-- Criar a tabela COMPRA
CREATE TABLE COMPRA (
    numero INT PRIMARY KEY,
    data_compra DATE NOT NULL,
    codigo_cliente INT,
    id_produto INT,
    quantidade_comprada INT NOT NULL,
    valor_compra DECIMAL(10,2) NOT NULL,
    FOREIGN KEY (codigo_cliente) REFERENCES CLIENTE(codigo),
    FOREIGN KEY (id_produto) REFERENCES PRODUTO(id)
);
Reasons:
  • Blacklisted phrase (1): de dados
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dill Guimarães

79585331

Date: 2025-04-21 21:00:44
Score: 1
Natty:
Report link

I also kept facing the cache miss issue where it would install and then towards the end just get stuck and i couldn't kill terminal.

But after i updated nodejs version i managed to run npm install again and it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Joshua