79773737

Date: 2025-09-24 13:08:14
Score: 1.5
Natty:
Report link

I started getting this error after accidentally setting my cache folder configuration instead of getting it.

` yarn config set cache-folder` (Dont do this!)

If you make that one character typo the config gets set to a bool somehow but then all subsequent commands that read it including other calls to set or unset that would correct it fail with the above error.

Not yet figured out how to fix it!

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

79773736

Date: 2025-09-24 13:05:13
Score: 1
Natty:
Report link

The script won't work because the .activate doesn't have a parenthesis. Use the method .activate() instead.

Reference: activate()

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

79773735

Date: 2025-09-24 13:05:13
Score: 1
Natty:
Report link

Your android device does not do audio to text conversion itself, it has to connect to a third party service to do this. SpeechRecognizer is for spoken audio not a recording. For that the most promising api is google's speech to text. This uses google's own cloud service to translate audio to text. There is an explancation and a link to a tutorial on this page.

https://cloud.google.com/speech-to-text#transcribe-audio

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

79773721

Date: 2025-09-24 12:47:09
Score: 2.5
Natty:
Report link

Yeah, you just need to update the MX records in GoDaddy to point to Office 365. Right now, they’re likely set for cPanel, so that's why inbound emails aren't working. Once you switch them to the Office 365 mail servers, everything should be good!

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

79773719

Date: 2025-09-24 12:46:09
Score: 3
Natty:
Report link

i was currently configuring the docker for cypress to run parallel test but there was an error i faced and that was of cy.origin enter image description here which was very shocking as cypress is deprecating the CROS handling as it used to do befor cypress 13.0 and it is suggesting to use cy.origin for even sub domain but on the other hand docker is not able to configure it and it is throwing error

Reasons:
  • Blacklisted phrase (1): enter image description here
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hrithik

79773717

Date: 2025-09-24 12:42:08
Score: 1.5
Natty:
Report link

Apparently, after a bunch of trial and error we figured out that code above is correct but one needs to have it running against python 3.11+. Older versions won't allow such dynamic definition of literals. I am not a real proper software developer so I can't comment on root reasons for that, but once we just tried the approach from my initial question in the new environment with latest python version it just worked.

Reasons:
  • RegEx Blacklisted phrase (1): can't comment
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Maksim Khaitovich

79773712

Date: 2025-09-24 12:37:07
Score: 1
Natty:
Report link

We Tried Playing Cricket With Just AI Coaching – This Happened

Okay so here’s the deal: we decided to play a proper cricket match but ditched the human coach and went all in with AI. It sounded like a joke at first but trust me the results were both hilarious and kind of scary. From batting tips whispered by an app to AI shouting field placements louder than our captain, we’re breaking down the full messy ride.

The Idea That Started As A Dare

Someone in the group said: “Bro if AI can tell you stock tips and exam answers why not cricket shots?” and boom that’s how it began. We downloaded this AI training tool, connected it with a smartwatch and suddenly it was like having a robotic Rahul Dravid in your pocket. Not the calm version though – this one kept buzzing every time we messed up a drive.

Batting With AI On Our Shoulder

Imagine you’re standing on the pitch. Bowler running in. And your wrist buzzes just before the ball arrives: “Play late cut”. Bruh. Half the time it was right but when it was wrong the ball already passed before we even blinked. One of us legit tried a reverse sweep because AI said so and the ball smacked his helmet. Crowd of five friends laughed for 10 minutes straight.

Bowling Got Even Funnier

The AI kept recommending line and length based on “probability of dismissal”. Sounds cool right Except it told our medium pacer to keep bouncing a guy who barely reached 5’6. He ducked every ball and we just wasted overs. Later the app screamed “perfect yorker” and finally we got a wicket but honestly that was luck not tech.

The Fielding Disaster

Now this was comedy gold. AI mapped a “perfect field placement” using some algorithm. Problem is we didn’t have 11 players. Only 7 showed up. So yeah square leg, third man and mid on were completely empty. Opponent just tapped the ball where nobody stood and AI kept recalculating like a frustrated GPS.

What We Learned (Sort Of)

By the end the scoreboard didn’t matter because half of us were rolling on the ground laughing at AI screaming instructions nobody followed. Look it gave some decent suggestions but cricket isn’t math alone. It’s instinct. It’s pressure. It’s sledging. AI doesn’t get that… not yet anyway.

Final Thoughts

Would we try it againAbsolutely. Because it was ridi culous fun. Did it prove AI can replace a coach? Not even close. But here’s the weird bit – the app made us think about technique in a way we normally ignore. Maybe the future is humans plus AI not humans versus AI. For now though, we’ll stick with our old coach who doesn’t buzz our wrist before every ball.

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

79773710

Date: 2025-09-24 12:30:05
Score: 1
Natty:
Report link

If you want to extend java.util.logging.Logger you must create public constructor which call parent constructor with super.

public MyLogger(String name, String resourceBundleName) {
  super(name, resourceBundleName);
}

After that just use it to create MyLogger with it like

private final MyLogger log =
    new MyLogger(
        MyService.class.getPackageName() + "." + MyService.class.getName(), null);
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Yehor

79773700

Date: 2025-09-24 12:22:03
Score: 1.5
Natty:
Report link

Okay, I found the problem. Google does not accept the barcode. Alternative:

'barcode' => [
        'message' => $customerNumber,
        'format' => 'PKBarcodeFormatQR',
        'messageEncoding' => 'UTF-8'
]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Kamil

79773699

Date: 2025-09-24 12:21:03
Score: 2
Natty:
Report link

Either compile everything with setuptools or run make + tell setuptools where your library lives (libraries).

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

79773698

Date: 2025-09-24 12:21:03
Score: 1
Natty:
Report link

My problem solved by adding proguard file and below lines.

-keep class com.stripe.android.pushProvisioning.** { *; }
-keep class com.reactnativestripesdk.pushprovisioning.** { *; }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hafeezullah Shoja

79773694

Date: 2025-09-24 12:17:02
Score: 4
Natty: 4
Report link

sorry i don't have an answer. but i am working on a similar issue.

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

79773692

Date: 2025-09-24 12:14:00
Score: 1.5
Natty:
Report link

You can’t directly save a single number with Play Games Services — the Saved Games API works with byte arrays. To store your coin count, just serialize the number to a string or bytes (e.g., "12345" → UTF8 bytes) and write it to the saved game. When loading, read the bytes back, decode them to a string, then parse into an integer.

So the process is:

Convert your coin count → byte[]

Save it with CommitUpdate()

On load, read byte[] → string → int

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

79773689

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

You need to include the dependency in your module build gradle

dependencies {
    implementation ("com.google.gms:google-services:4.4.3")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MunterMan

79773688

Date: 2025-09-24 12:06:59
Score: 0.5
Natty:
Report link

I deleted my node_modules folder and ran a fresh npm install. It then loaded correctly.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: James Lawruk

79773686

Date: 2025-09-24 12:04:58
Score: 1.5
Natty:
Report link

Escaping '.' solved the problem

<?php
    $text1 = "eggs";
    $l = 'e.g.';
    $ll = str_replace(".", "\.", $l);
    $text2 = preg_replace(["/\b{$ll}\b/", ], ["<b>{$ll}</b>", ], $text1);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Виктор Виктор

79773685

Date: 2025-09-24 12:04:58
Score: 0.5
Natty:
Report link

In an anonymous code block, a DO loop, it's not possible to open a cursor. This is only possible through functions or procedures. However, a FOR loop within an anonymous code block will use a cursor internally, so you could rewrite the query that way.

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

79773682

Date: 2025-09-24 12:03:58
Score: 1.5
Natty:
Report link

In my case, the extra whitespace above the keyboard was caused by the device_preview package. The space disappeared when I disabled it

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

79773673

Date: 2025-09-24 11:55:56
Score: 2
Natty:
Report link

I assume your issue is caused by (at least) one of the libraries you are using. Use android studio build -> Analyze apk -> to give a list of all libraries that do not support 16kb. Update or replace them with compatible ones. If you are using native NDK then that will be a harder problem to solve.

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

79773668

Date: 2025-09-24 11:45:54
Score: 1.5
Natty:
Report link

Thank you, solution of @Sovoboys works for me.

Here is my variant:

allow(Resolv).to receive(:getaddresses).and_return(['8.8.8.8'])
stub_request(:get, /http:\/\/.+/).to_return(body: file, status: 200)
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): works for me
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Sovoboys
  • Low reputation (1):
Posted by: Yaroslav Yenkala

79773667

Date: 2025-09-24 11:41:53
Score: 0.5
Natty:
Report link

you want a mutation for this, not a query.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: TkDodo

79773664

Date: 2025-09-24 11:39:52
Score: 0.5
Natty:
Report link

Looks like this was a bug in AG Grid that's been fixed in versions > 33.3

From the AG Grid repo:

AG-14716 - for customers using module federation, there may be many instances of this module, but we want to ensure that there is only one instance of the container to injection map per window otherwise unmounting any grid instance will clear all styles from the page resulting in unstyled grids

https://github.com/ag-grid/ag-grid/blob/a2d9c713b583467b7e5ca193f8b996c9cfbdbc26/packages/ag-grid-community/src/agStack/theming/inject.ts#L96-L107

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

79773662

Date: 2025-09-24 11:37:52
Score: 1
Natty:
Report link

In my case I needed to pass the props to the li item for this to work. (MUI ver. 7.1.1 )
Ex;

renderOption={(props, option, state) => {                                                                   
    return (<li {...props}><div>{option.title}</div></li>);
}
Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: GoaKoala

79773656

Date: 2025-09-24 11:32:50
Score: 0.5
Natty:
Report link

As an alternative to the other solutions, you can add the path where the builtin parsers are located to the runtimepath (rtp). In my case /usr/lib/nvim:

require("lazy").setup({
  ...
  performance = { rtp = { paths = { "/usr/lib/nvim" } } },
  ...
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sergio Llorente

79773646

Date: 2025-09-24 11:20:48
Score: 2.5
Natty:
Report link

You may have accidentally touched the header of the pom.xml in the project tag. Confirm that it is correct and closed properly. Make sure there are no spaces within its values and that the values are correct. Compare it with another project.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Daniel Hernández

79773645

Date: 2025-09-24 11:18:47
Score: 3.5
Natty:
Report link

But this doesnt work when there are multiple tabs or sessions open ? each tab or session has their own context? Am i right? Each of them keep opening new windows rather than focusing existing one.

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: mvcmania

79773639

Date: 2025-09-24 11:15:46
Score: 3
Natty:
Report link

You can check if your data contains floating point numbers, specially Nan, which by I resolve this problem.

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

79773636

Date: 2025-09-24 11:13:45
Score: 0.5
Natty:
Report link

Do not use the Box to wrap your TableOfContentsTree.

<PageRender
    {...config}
    paperOptions={{
     paperSize: 'a4',
    }}
    header={() => <header>header goes here</header>}
    footer={() => <footer>footer goes here</footer>}
>
     <TableOfContentsTree tree={sections} />
 </PageRender>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: natashap

79773635

Date: 2025-09-24 11:11:45
Score: 2
Natty:
Report link

Had the same issue yesterday using Angular 18. I tried upgrading to angular 19, stabilizing packages to older versions in a working environment. Still the same.

Today, I did (again), with the original problematic configuration. I compared the "npm ls" from yestarday and today. I had exactly the same output. Then, by running these commands (git bash on windows):

And it's got to work again. Not that I changed the way to do. But it has "magically" worked. ^^"

I wonder if somehow, a patch, hidden in an previously existing version, has been made in the last hours.

Regards

Reasons:
  • Blacklisted phrase (1): Regards
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: AL Ko

79773630

Date: 2025-09-24 10:58:42
Score: 6
Natty: 7
Report link

do i need to use an SFTP client ? I would like to not use any client when uploading the data that is my propriety. Is there any way to drag and drop files into var/www folder like in a normal google cloud bucket?

Reasons:
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (1): Is there any
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Amadeusz Kesicki

79773629

Date: 2025-09-24 10:57:41
Score: 4
Natty:
Report link

Understanding JavaScript Promises: A Comprehensive Guide

The issue you're experiencing is a classic asynchronous JavaScript problem. Let me explain how promises work and provide solutions using both traditional promise syntax and modern async/await.

## What Are Promises?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user31552691

79773627

Date: 2025-09-24 10:56:40
Score: 4.5
Natty: 4.5
Report link

For me added http://localhost on console.google and also added the no-referrer-when-downgrade https://developers.google.com/identity/gsi/web/guides/get-google-api-clientid and worked. Thank you.

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

79773616

Date: 2025-09-24 10:48:38
Score: 2.5
Natty:
Report link
(details_id = 15 AND personel_id = 5) OR (details_id = 16 AND personel_id = 5) OR (details_id = 17 AND personel_id = 5)

this will work :) 
don't ask why :(
Reasons:
  • Blacklisted phrase (1): :(
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arpad Pap

79773610

Date: 2025-09-24 10:43:36
Score: 2
Natty:
Report link

The issue was due to behavior of the specific version of Airdatepicker.
The maintainers have since updated the package with a new version, so this issue shouldn't arise anymore when using shinyWidgets >= v0.8.7 .

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

79773592

Date: 2025-09-24 10:30:33
Score: 4
Natty: 5
Report link

Yes, David and Simon are right! Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Matt K

79773591

Date: 2025-09-24 10:30:33
Score: 1
Natty:
Report link

The ReadListener itself doesn't perform the database query. It delegates the work to a Data Provider. The slow performance you observed is because the data provider, during the hydration phase, is likely executing multiple additional queries (the N+1 problem) to load related associations. This happens after the initial main query, leading to the high time spent in the listener.

The ReadListener's role is simply to orchestrate this process and make the retrieved data available to the rest of the framework. The heavy lifting—and the source of your performance problem—lies with the underlying data provider implementation and how it fetches the data.

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

79773588

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

This question about resources to practice for loops in R really resonated with me because it shows how even experienced users sometimes struggle with concepts that seem basic on the surface but can get tricky in real-world scenarios. The user’s honesty about defaulting to Stack Overflow or AI tools is something many of us can relate to, and it underlines the need for structured practice materials with step-by-step solutions. I think this is similar to how I felt when first setting up automation on my own devices—whether debugging a piece of R code or customizing performance settings on the Samsung Galaxy S24 Ultra, you realize that small steps of hands-on learning are what actually build confidence. This post reminded me that sometimes the best resources aren’t just documentation, but curated exercises that bridge the gap between theory and practice.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: David Hennry

79773587

Date: 2025-09-24 10:29:33
Score: 1.5
Natty:
Report link

Try to install the latest Microsoft Visual 2015-2022 C++ Redistributable.

I had this problem on fresh Windows 10 and Android Studio was one of few apps installed. I gave up trying to solve the problem, but one day the emulator occasionally started. I suppose installing MSVC required by another app helped.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: КуЪ

79773584

Date: 2025-09-24 10:25:32
Score: 2
Natty:
Report link

Have a look at https://unicode-explorer.com/c/096C and https://unicode-explorer.com/c/516D and notice how the categories of these two are different ("Nd / Number, decimal digit" vs "Lo / Letter, other").

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

79773578

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

It looks like the problem was that I didn't add this section in my aks terraform template:

  monitor_metrics {
    annotations_allowed = var.metric_annotations_allowlist
    labels_allowed      = var.metric_labels_allowlist
  }

Now I can see the aks cluster in the azure monitor workspace.

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

79773577

Date: 2025-09-24 10:23:31
Score: 2
Natty:
Report link

1<html>

2 <head>

3 <meta charset="utf-8">

4 <title>

5 Lição 2

6</title>

7<body>

<form name="Forml" id="Forml" method="post" action="">

<input type="text" name="executa" id="executa"/> 9

<input type="submit" name="Submit" value="Executar"/> 10

</form> 11

<?php 12

$Cont=17 14

if (isset($_POST["Executa"])) 16

13

15

17日

18

19

20

Sexecuta $_POST["executa"];

21日

22

23

24

25

26

while ($Cont <= Sexecuta)

echo O valor atual do contador é Cont <br>";

$Cont++;

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

79773566

Date: 2025-09-24 10:12:28
Score: 2
Natty:
Report link

From the Microsoft docs:
"Prerendering is enabled by default for interactive components."
"If any state is created asynchronously, the UI may flicker as the prerendered UI is replaced when the component is rerendered."

As mentioned, PersistentComponentState is the key to avoid this. (take a look here)

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

79773555

Date: 2025-09-24 10:02:26
Score: 1
Natty:
Report link

For me the issue was that I was running Peewee in wsl and installed the pip package there. So the script would run well when I called this tutorial script through the terminal.

But when i pressed the Run button in vs code it would not work and ask SQlitedatabase not found etc.

So I also installed it in windows with pip install peewee. Now both methods work perfect! Hope this helps someone.

Reasons:
  • Blacklisted phrase (1): this tutorial
  • Whitelisted phrase (-1): Hope this helps
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: MalcolmXYZ

79773553

Date: 2025-09-24 10:00:25
Score: 1
Natty:
Report link

You can build a chatbot on your own text data without an API by using retrieval + a local LLM. The common approach is RAG (Retrieval-Augmented Generation):

1. Embed your text using a model like `all-mpnet-base-v2`.

2. Store embeddings in FAISS or Chroma so you can search relevant chunks quickly.

3. On each query, find the top-matching chunks and feed them into a local instruction-tuned model (e.g. Falcon, Mistral, LLaMA from HuggingFace `transformers`).

You can then pass the retrieved text into a local LLM pipeline from HuggingFace to generate the final answer. For images, caption them with BLIP/CLIP so the paths are also searchable.

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

79773552

Date: 2025-09-24 10:00:25
Score: 1
Natty:
Report link

As the specification's source code on Github contains similar flaws I strongly believe it is just a typo and thus checked the original jsr-352 specification (Batch Applications for the Java Platform 1.0). It says:

Wildcards of "*" and "?" may be used. "*" matches zero or more characters. "?" matches exactly one character.

Thus I strongly believe the same wildcards still apply in Jakarta Batch 2.1.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: queeg

79773549

Date: 2025-09-24 09:58:24
Score: 1.5
Natty:
Report link

Was struggling today with the same issue. Link in comment to OP didnt work, but I managed to fix my case myself and here is how I did it for anyone seeking:
1. In my settings for VSCode extension of Maven path to mvn has been as "{DISK}:/{MavenFolder}/bin"
2. I edited it to "{DISK}:/{MavenFolder}/bin/mvn" and everything works fine!

PS: Dont forget to download and unpack maven from official site somewhere

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

79773547

Date: 2025-09-24 09:55:24
Score: 2
Natty:
Report link

I’ve used the second approach in production, and it worked fine without any code changes. The Play Console takes care of showing the prompt on launch.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tuấn Sang

79773545

Date: 2025-09-24 09:54:23
Score: 1
Natty:
Report link

The reason to get back 1 for certain years is that if there are only 52 weeks in a year, then "dec-28" may counted to the first week of the next year. It is easy to get rid of that problem:

weeks <- function(year) {
  
 y<- lubridate::isoweek(paste0(year, "-12-31"))
y[y==1] <- 52
return(y
  
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: GY S

79773539

Date: 2025-09-24 09:50:22
Score: 0.5
Natty:
Report link

If the purpose of you locking is to prevent double INSERT, JPA is already doing it for you. You can just use .save() as below and it will do an update if the object has already been persisted.

repository.save(object);

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

79773524

Date: 2025-09-24 09:37:18
Score: 1
Natty:
Report link

Change it to categorical and the data type to whole number and ensure the sort axis is by year ascending.

enter image description here

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

79773521

Date: 2025-09-24 09:33:17
Score: 1
Natty:
Report link
Dim Panel1 As new Panel()
For i As Integer = 1 to 100
    btn = New Button()
    ' Set Button properties or call a method to do so.
    Panel1.Controls.Add(btn)  ' Add Button to the container.
    AddHandler btn.Click, AddressOf Me.Button_Click   ' Again from the answer by Reed.
Next
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sahin Skekh

79773516

Date: 2025-09-24 09:30:16
Score: 2.5
Natty:
Report link

dialogs only reliably appear when your Flutter window is active. If you want to reach the user while hidden, you’ll need macOS notifications + a queue to show the dialog once visible again.

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

79773498

Date: 2025-09-24 09:15:11
Score: 2
Natty:
Report link

The Brevo PHP lib is now available via composer require getbrevo/brevo-php. This simplifies things and solves my problem.

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

79773480

Date: 2025-09-24 08:48:04
Score: 2
Natty:
Report link
  1. Install the extension

  2. Disable it right away

  3. Open the workspace where you want the extension to be enabled

  4. On the extension page, click on a drop-down on "Enable" button, select "Enable (Workspace)"

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

79773478

Date: 2025-09-24 08:47:04
Score: 2.5
Natty:
Report link

I also had the same problem, so I decided to crate a python program that creates those within automatically. Here is the program:

import os
import sys

def process_directory(root_path, parent_within=None):
    package_name = os.path.basename(root_path)
    
    # Construir el nombre completo del paquete
    if parent_within:
        full_within = f"{parent_within}.{package_name}"
    else:
        full_within = package_name

    # Crear/reescribir package.mo
    package_mo_path = os.path.join(root_path, "package.mo")
    with open(package_mo_path, "w", encoding="utf-8") as f:
        if parent_within:
            f.write(f"within {parent_within};\n")
        else:
            f.write("within;\n")
        f.write(f"package {package_name}\n")
        f.write(f"end {package_name};\n")

    # Procesar todos los archivos .mo en esta carpeta (excepto package.mo)
    for filename in os.listdir(root_path):
        file_path = os.path.join(root_path, filename)
        if os.path.isfile(file_path) and filename.endswith(".mo") and filename != "package.mo":
            with open(file_path, "r", encoding="utf-8") as f:
                lines = f.readlines()

            # Quitar "within ..." si está en la primera línea
            if lines and lines[0].strip().startswith("within "):
                lines = lines[1:]

            # Añadir la línea correcta
            new_lines = [f"within {full_within};\n"] + lines

            with open(file_path, "w", encoding="utf-8") as f:
                f.writelines(new_lines)

    # Recorrer subcarpetas
    for subdir in os.listdir(root_path):
        subdir_path = os.path.join(root_path, subdir)
        if os.path.isdir(subdir_path):
            process_directory(subdir_path, full_within)


if __name__ == "__main__":
    if len(sys.argv) < 2:
        print("❌ Uso: PackageCreater.py <ruta_carpeta>")
        sys.exit(1)

    root_folder = sys.argv[1]

    if not os.path.isdir(root_folder):
        print(f"❌ La ruta no existe o no es una carpeta: {root_folder}")
    else:
        process_directory(root_folder)
        print(f"✔ Estructura Modelica actualizada en: {root_folder}")
Reasons:
  • Blacklisted phrase (1): está
  • Blacklisted phrase (2): Crear
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: alvis

79773469

Date: 2025-09-24 08:43:03
Score: 1
Natty:
Report link

use LD linker flag:

target_link_libraries(${BIN_NAME} -Wl,-Bstatic tcmalloc_minimal -Wl,Bdynamic)

You have to put -Wl,Bdynamic in the end, otherwise it will try to link everything statically (e.g. libc, libstdc++ ...).

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

79773466

Date: 2025-09-24 08:43:03
Score: 5.5
Natty: 5.5
Report link

Any reason why we need to temporarily clear vma->vm_pgoff?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: tamseel shams

79773453

Date: 2025-09-24 08:30:59
Score: 1.5
Natty:
Report link

I have asked the same question on Terragrunt GitHub repo issues gruntwork-io/terragrunt#4867

The issue comes from the fact that ec2 module uses a data source to get the subnet using its id. So it needs a real subnet id, not a mocked one.

Could we have a note on that question that this is being answered here so that there's a single source of truth for this?

The root cause of the error that you're getting is from the AWS provider, because you're trying to create a security group, and the data source is looking up the subnet with a mocked value. The AWS provider doesn't know that you're mocking the ID of the subnet, so you need to either disable creation of the security group, or use a different module that doesn't attempt to use that data source (or provision the VPC first).
https://github.com/terraform-aws-modules/terraform-aws-ec2-instance/blob/master/main.tf#L734

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

79773451

Date: 2025-09-24 08:29:59
Score: 1
Natty:
Report link

I found out my issue is due to my file structure and I forgot to update my `Dockerfile` to correct path for tutorial 2 (huge blunder).

My file structure

my-file-structure

Dockerfile before update:

FROM node:24.5.0

WORKDIR /app

# Wrong path!
COPY ./1-node-js-rest-server/package.json package.json
COPY ./1-node-js-rest-server/package-lock.json package-lock.json

RUN npm install

# Wrong path!
COPY ./1-node-js-rest-server/server.js .

CMD ["node","server.js"]

Dockerfile after update:

FROM node:24.5.0

WORKDIR /app

# Fixed path!
COPY ./2-database-and-compose/package.json package.json
COPY ./2-database-and-compose/package-lock.json package-lock.json

RUN npm install

# Fixed path!
COPY ./2-database-and-compose/server.js .

CMD ["node","server.js"]

After rebuilding my image, now everything works correctly.

Mongodb container data persists as expected, even after I had restarted it. mongodb databases

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

79773437

Date: 2025-09-24 08:12:53
Score: 8.5 🚩
Natty: 5.5
Report link

I have simelar issues on my site, and in particular, coupons which are generated by a loyalty plugin.. were you able to find something?

Reasons:
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pascal Tolenaar

79773435

Date: 2025-09-24 08:11:53
Score: 2
Natty:
Report link

I have used Skillioz.ai, and I find it very easy to use for recruiters while delivering faster results. The platform helps recruiters and organisations streamline the hiring process — from uploading resumes and parsing CVs to matching candidates with jobs, evaluating applicants, and tracking them effectively. It uses intelligent matching that goes beyond simple keywords, considering factors such as skill relevance, experience, and role fit.

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

79773430

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

Comprehensive Guide to Python Data Types

While the existing answers focus on type checking methods like isinstance() and type(), I'd like to provide a comprehensive overview of Python's main data types with practical examples and proper type checking techniques for each.

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

79773429

Date: 2025-09-24 08:05:51
Score: 0.5
Natty:
Report link

Need to set the width on columns.

The issue is that in FastReport the actual width of a cell is not taken from the cell’s Width property or from the TableObject.Width, but from the column it belongs to.
If don’t set the width on the columns, the engine uses its own values....

tableObject.Columns[0].Width = 5;
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: stef

79773427

Date: 2025-09-24 08:01:50
Score: 3.5
Natty:
Report link

Kill the already running port by process id and start again

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

79773424

Date: 2025-09-24 07:58:49
Score: 1
Natty:
Report link

It worked for me I'm using node version 20

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hanan

79773415

Date: 2025-09-24 07:50:47
Score: 2.5
Natty:
Report link

If you use Include Controller with a Test Fragment, JMeter may run longer since each inclusion loads and processes the fragment separately, increasing execution overhead and resource usage.

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

79773413

Date: 2025-09-24 07:49:46
Score: 1.5
Natty:
Report link

I’ve built a website where, on the first load of the home page, a banner appears along with background music that autoplays. When I scroll up, the banner slides away and the sound mutes, which works perfectly.

However, I’ve noticed that if I reload the page, the audio no longer autoplays. After a lot of research, I’ve concluded that it’s almost impossible to make audio autoplay on subsequent reloads of the same page due to browser restrictions, but it can autoplay the first time the page loads.

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

79773409

Date: 2025-09-24 07:46:45
Score: 1
Natty:
Report link
Private Sub Workbook_NewSheet(ByVal Sh As Object)
    If TypeName(Sh) = "Worksheet" Then
        Sh.Cells.ColumnWidth = 35
        Sh.Range("A1") = "Sheet added " & Now()
    End If
End Sub
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sahin Skekh

79773403

Date: 2025-09-24 07:38:44
Score: 1
Natty:
Report link
const mockExit = jest.spyOn(process, 'exit').mockImplementation(() => {
    throw new Error('Boom!')
  })
  expect(myFunc(condition)).rejects.toThrow('Boom!')
  expect(mockExit).toHaveBeenCalledWith(ERROR_CODE)
  mockExit.mockRestore()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Serg

79773399

Date: 2025-09-24 07:36:43
Score: 1.5
Natty:
Report link

Late to the party, but just wanted to add this one:

$(() => { ... })

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

79773398

Date: 2025-09-24 07:35:42
Score: 1.5
Natty:
Report link
  1. Check if there is another file named db.py somewhere else in your project or Python environment that might be causing a conflict.

  2. In your export.py, add these lines to see which db.py file Python is actually importing

  3. import db

    print(db._file_)

  4. Make sure there are no circular imports — for example, db.py should not import export.py or anything that imports export.py.

  5. Restart your Streamlit app and your editor to clear any caches or old imports.

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

79773396

Date: 2025-09-24 07:34:41
Score: 1.5
Natty:
Report link

<script src="https://cdnjs.cloudflare.com/ajax/libs/react/18.3.1/umd/react.production.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/18.3.1/umd/react-dom.production.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/3.5.4/vue.global.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.5.1/knockout-latest.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.9.0/d3.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.8.3/angular.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Express parcel delivery

79773383

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

Since C++20, we now have access to std::string::starts_with.

If you intend on checking if std::string str1 starts with std::string str2, you can do the following:

if(str1.starts_with(str2))
{
  // code to execute if 
  // str1 does start with str2
}

For this specific case, it will perform better compared to std::string::find.

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

79773375

Date: 2025-09-24 07:20:37
Score: 1
Natty:
Report link

It happened to me when I accidently press the run-in debug button in android studio and then cancelled the operation very fast. Then afterwards, running the app normally generated this error.
So, what I did is, I simply restarted my system, and then opened the android studio again, and build/run the app, the app built/ran normally.

As the accepted answer suggested to stop the gradle, the gradle seems to run in the background doing some work and holding resources.

There for either you restart your system or stop the gradle with command, both will solve the problem.

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

79773373

Date: 2025-09-24 07:19:37
Score: 2.5
Natty:
Report link

try dragonwell jdk wisp2 coroutines

https://github.com/dragonwell-project/dragonwell8/wiki/Wisp-Documentation

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Scott 混合理论

79773363

Date: 2025-09-24 07:04:33
Score: 2
Natty:
Report link
  1. If you encounter errors, check that:

    • The MIDI file exists and is not corrupted.

    • music21 is properly installed (pip show music21).

    • The file path in data_fn is correct.

  2. To visualize the MIDI file’s notation, replace show("text") with show() (requires MuseScore).

  3. To play the MIDI file, use midi_data.show('midi') (requires a MIDI player).

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

79773359

Date: 2025-09-24 07:01:32
Score: 3
Natty:
Report link

Make me 10 inch tablet for fit in screen shot show me front in center on screen 16:9 or 9: 16 aspect ratio with each side between 1,080 px and 7,680 px

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

79773354

Date: 2025-09-24 06:53:30
Score: 0.5
Natty:
Report link

Check the native procedure DBMS_SCHEDULER.EVALUATE_CALENDAR_STRING, that does what you need. The documentation has an example.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Koen Lostrie

79773348

Date: 2025-09-24 06:49:29
Score: 2
Natty:
Report link

This problem often happens in Spring Data JPA when there is a mismatch between entity field names and repository method names, or when the @Entity mapping doesn’t fully align with the database table. In Oracle, column naming is case-sensitive in certain contexts, so even a small mismatch can lead to null results. Also, remember that findById() in newer Spring Boot versions returns an Optional, so you may need to call .orElse(null) depending on your implementation.

For structured and well-organized examples, I always recommend looking at resources that present information in a clear, categorized way. One such example is Birthday Wish Friends, which, although focused on greetings, shows how clean formatting and proper structuring make content easy to follow. Applying a similar approach in your JPA repositories and entities can save you time and make debugging much simpler.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Entity
  • Low reputation (1):
Posted by: Henry

79773328

Date: 2025-09-24 06:32:24
Score: 1
Natty:
Report link

According to bitbucket team, clikcing on "Sync Now" will merge the target (proto in your case) branch on your feature branch. Thread: https://community.atlassian.com/forums/Bitbucket-questions/What-does-quot-231-commits-behind-quot-develop-quot-Sync-now/qaq-p/2396036

Reasons:
  • Whitelisted phrase (-1): in your case
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ravi

79773326

Date: 2025-09-24 06:32:24
Score: 0.5
Natty:
Report link

You can disable the WebDAV module directly in your web.config by adding the following inside the <system.webServer> section:

<system.webServer>
  <modules>
    <remove name="WebDAVModule" />
  </modules>
</system.webServer>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Aamir Dalal

79773323

Date: 2025-09-24 06:28:23
Score: 1.5
Natty:
Report link

Problem is the order, you should write like this:

android:1="xx"
android:2="xx"
android:3="xx"
android:4="xx"
tools:replace="1, 2, 3, 4"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abram Zhu

79773322

Date: 2025-09-24 06:28:23
Score: 3.5
Natty:
Report link

DELETE FROM PushNotification WHERE EmployeeId = 197

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

79773321

Date: 2025-09-24 06:27:23
Score: 1
Natty:
Report link

Session handling across timeframes can get tricky in Pine Script — syncing to a base timeframe and using timestamp checks instead of just session. isnew might help.

Had a similar issue in another app (Honista APK). The new version broke session flow, but the old version worked perfectly. Sometimes going back is the fix.

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

79773320

Date: 2025-09-24 06:27:23
Score: 0.5
Natty:
Report link
That error is not about your Python code — it’s a permissions / API enablement issue in Google Cloud. Even if you are “Admin” in the project, Vertex AI needs the right APIs and service accounts enabled before a custom training job can run.

 Things to check
    1.  Enable the Vertex AI API
Go to Google Cloud Console → APIs & Services → Library and ensure:
    •   Vertex AI API (aiplatform.googleapis.com) is enabled.
    •   Cloud Storage API is also enabled (training jobs use GCS for staging).
    2.  Check the service account used for training
    •   By default, Vertex AI custom training runs under the Compute Engine default service account or a custom one you specify.
    •   That service account needs roles like:
    •   Vertex AI Administrator (roles/aiplatform.admin)
    •   Storage Admin (roles/storage.admin) or at least Storage Object Admin on your GCS bucket.
Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ishwar Desai

79773308

Date: 2025-09-24 06:09:19
Score: 3
Natty:
Report link

Do you have a file inside android/app/src/main/res/xml/network_security_config.xml?
If not try once.

network_security_config.xml

<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
  <domain-config cleartextTrafficPermitted="true">
    <domain includeSubdomains="true">10.0.0.193</domain>
  </domain-config>
</network-security-config>


and then reference in AndroidManifest.xml

<application
    android:usesCleartextTraffic="true"
    android:networkSecurityConfig="@xml/network_security_config"
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have a
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Hrach

79773304

Date: 2025-09-24 06:03:18
Score: 2.5
Natty:
Report link

This might help someone in the future.

Known Workarounds

Move the members with [LoggerMessageAttribute] to a class library that does not contain a .XAML file and a reference to one of the packages that trigger the failure.

Source/Issue: https://github.com/dotnet/wpf/issues/9589

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

79773301

Date: 2025-09-24 05:55:16
Score: 3
Natty:
Report link

HARBI MEGA 2025

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: mabaraka

79773299

Date: 2025-09-24 05:48:14
Score: 1
Natty:
Report link

It seems like the memfs package is required webpack-dev-middleware, but somehow it's not installed automatically. This issue will be resolved by manually installing webpack-dev-server.

npm install webpack-dev-middleware --save-dev
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ibnu Mustofa

79773296

Date: 2025-09-24 05:45:14
Score: 0.5
Natty:
Report link

When you denote the application tag like above, you depend on the leniency of the parser - correcly close with </application>, not another, empty <application/> tag.

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

79773293

Date: 2025-09-24 05:31:10
Score: 4
Natty: 4.5
Report link

Thanks y4cj4sul3 . Like you mentioned, the problem came from the comment.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 조피스

79773284

Date: 2025-09-24 05:16:07
Score: 2
Natty:
Report link

\\s+ this regular expression works when u want to skip one or more white spaces in the string
Consider you wanna store all the words in an array
u can write like this

String[] words = string.split("\\s+");

This will give all the words in the String, neglecting one or more white spaces in the string itself.

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

79773277

Date: 2025-09-24 05:04:03
Score: 1
Natty:
Report link

I found the solution right now. Go to Starlink app on your phone connected. Then Settings>Filter and select at least the "malware" level. That's it!

Reasons:
  • Whitelisted phrase (-2): I found the solution
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pasquale

79773269

Date: 2025-09-24 04:53:00
Score: 1.5
Natty:
Report link
icmp6[icmp6type] == icmp6-routeradvert
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Konstantin Glukhov

79773261

Date: 2025-09-24 04:34:56
Score: 3
Natty:
Report link

This has been resolved.

The business_management permission now allows you to manage Facebook pages even if you don't have a business account role linked to the app.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: 赤木英司

79773253

Date: 2025-09-24 04:14:52
Score: 1
Natty:
Report link

sqlcmd can’t always resolve (localdb)\MSSQLLocalDB because LocalDB uses a dynamic pipe name. From your output:

np:\\.\pipe\LOCALDB#8DB1A806\tsql\query

Try connecting with the full pipe path:

sqlcmd -S "np:\\.\pipe\LOCALDB#8DB1A806\tsql\query" -E

If that works, the issue is usually:

  1. Old sqlcmd version – update to the latest SQL Server Command Line Utilities (2022).

  2. Wrong executable in PATH – run where sqlcmd to check.

SSMS resolves LocalDB automatically, but older sqlcmd often does not.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): can
  • Low reputation (1):
Posted by: Ajin Aniyan

79773251

Date: 2025-09-24 04:06:50
Score: 5.5
Natty: 5.5
Report link

so , change the app icon is only option for that ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: vani jain

79773241

Date: 2025-09-24 03:45:45
Score: 1.5
Natty:
Report link

Splitting the tail from the arrow and controlling the curve via points yields better results.

Matplotlib's FancyArrowPatch implementation is interface-oriented rather than coordinate-based (as seen in the source code, it selects rendering positions for quadratic Bézier curve drawing). By imitating its approach, quadratic Bézier curves can be drawn at the coordinate level.

For the arrowhead, I referenced the approach from https://github.com/matplotlib/matplotlib/issues/17284, which offers greater control. I selected the -|> arrow style over Simple because it provides better visual results when line widths are small.

My blog post discusses this topic in greater detail: https://omnisyr.github.io/post/%3B%3B%3BeNon-Solid%20Curves%20with%20Arrows%20in%20Matplotlib%3B%3B%3Be%3B%3B%3BcMatplotlib-zhong-dai-jian-tou-de-fei-shi-qu-xian-%3B%3B%3Bc.html

import math

import matplotlib.patches as patches
import matplotlib.pyplot as plt
import matplotlib.transforms as transforms
import numpy as np

def add_arrow(from_, to_, rad=0.3, control_=None, color='#515151',
              line='--', head_length=0.6, size=0.04, detail=False):
    """
    :param from_:Starting point
    :param to_:Target endpoint
    :param rad:Curve radius
    :param control_:Control points;
                    if None, calculated based on the curvature of the curve.
    :param color:Drawing colors
    :param line:Curve Style
    :param head_length:Arrow size
    :param size:Mask Size
    :param detail:Select whether to draw details,
                  and manually adjust the mask size by drawing details.
    """
    if control_ is None:
        x1, y1 = np.array(from_)
        x2, y2 = np.array(to_)
        dx, dy = x2 - x1, y2 - y1
        x12, y12 = (x1 + x2) / 2., (y1 + y2) / 2.
        cx, cy = x12 + rad * dy, y12 - rad * dx
        control_ = (cx, cy)
    vertices = [from_, control_, to_]
    codes = [patches.Path.MOVETO, patches.Path.CURVE3, patches.Path.CURVE3]
    path = patches.Path(vertices, codes)
    patch = patches.PathPatch(path, facecolor='none', edgecolor=color,
                              linestyle=line, linewidth=1, zorder=-2)
    ax.add_patch(patch)
    direction = -1 if control_[0] < to_[0] else 1
    mask_c = 'red' if detail else 'white'
    mask = patches.FancyBboxPatch(
        (to_[0], to_[1] - size / 2), direction * size, size, boxstyle="square, pad=0",
        ec=mask_c, fc=mask_c, zorder=-1, linewidth=1)
    de = math.degrees(math.atan((control_[1] - to_[1]) / (control_[0] - to_[0])))
    tf = transforms.Affine2D().rotate_deg_around(to_[0], to_[1], de) + ax.transData
    mask.set_transform(tf)
    ax.add_patch(mask)
    ax.annotate("", to_, xytext=control_, arrowprops=dict(
        linewidth=0,
        arrowstyle="-|>, head_width=%f, head_length=%f" % (head_length / 2, head_length),
        shrinkA=0, shrinkB=0, facecolor=color, linestyle="solid", mutation_scale=10
    ))
    if not detail:
        return
    ax.scatter(control_[0], control_[1], c=color, marker='x', s=12, linewidths=0.8)
    ax.scatter(from_[0], from_[1], c=color, marker='x', s=12, linewidths=0.8)
    ax.scatter(to_[0], to_[1], c=color, marker='x', s=12, linewidths=0.8)
    ax.plot((control_[0], from_[0]), (control_[1], from_[1]),
            color=color, linewidth=.5, linestyle=':')
    ax.plot((control_[0], to_[0]), (control_[1], to_[1]),
            color=color, linewidth=.5, linestyle=':')

def draw_eg():
    debug = False
    add_arrow((0.1, 0.1), (1.5, 1.6), rad=0.1, color=colors[1], detail=debug)
    add_arrow((0.4, 1.7), (1.4, 0.7), rad=0.8, color=colors[2], detail=debug)
    add_arrow((1.9, 1.9), (1.2, 0.1), rad=-0.2, color=colors[3], detail=debug)
    add_arrow((1.7, 0.7), (0.3, 1.8), rad=0.5, color=colors[4], detail=debug)
    plt.savefig('arrow_example%s.png' % ('_detail' if debug else ''), dpi=600)

fig, ax = plt.subplots(1, 1, figsize=(4, 4))
ax.set_xlim(0, 2)
ax.set_ylim(0, 2)
colors = ['#515151', '#CC9900', '#B177DE', '#37AD6B', '#1A6FDF']
draw_eg()

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: OmnisyR

79773237

Date: 2025-09-24 03:42:42
Score: 7.5 🚩
Natty: 5
Report link

Is there a solution for this requirement as I am trying the same now there is no AWS in build functionality to auto fetch when new secrets updated.

Reasons:
  • Blacklisted phrase (1): I am trying the same
  • Blacklisted phrase (3): Is there a solution
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is there a solution for this
  • Low reputation (1):
Posted by: Saravanan B

79773236

Date: 2025-09-24 03:42:42
Score: 2.5
Natty:
Report link

Sounds like you’re in a GIF pickle! I feel your pain with the bandwidth woes. Maybe try converting those GIFs to frames first? It could save you some headaches. Check this out for converting GIFs if you're curious: <a href="https://giftoframes.com" target="_blank">Gif To Frames</a>
https://removeduplicatesexcel.net

https://mlaformatheader.com/

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: basu lee