79781363

Date: 2025-10-02 23:46:04
Score: 0.5
Natty:
Report link

Then you should first built an installer
Approach:
The installer doesn't need to use you're env since it only downloads your executable and resources while being lightweight at the same time
- on launch the installer checks directory if they is a old version it just proceed to upgrade it without redownloading it all over (you'll need to index changes between versions so the installer only download files it needs)
- but if nothing is present in directory it start a new installation from the most recent upgrade
the tradeoffs are indexing changes per upgrades and maintaining a server from which you're installer can download from

The installer becomes the only things a users needs to upgrade you're app and their can upgrade to a newer installer later or use the same to upgrade app so it works out well and users won't have to copy anything just download and run

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

79781356

Date: 2025-10-02 23:22:59
Score: 1
Natty:
Report link

Just use pip list | grep <package_name>

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

79781348

Date: 2025-10-02 23:02:55
Score: 0.5
Natty:
Report link

How I got both the video and audio working in Amazon KVS:

gst-launch-1.0 -v rtspsrc location="rtsp://user:[email protected]/live0" short-header=TRUE name=src src. ! queue ! rtph264depay ! h264parse ! kvssink name=sink stream-name="camera_100" access-key="key" secret-key="secret" aws-region="region" src. ! queue ! rtpmp4gdepay ! aacparse ! sink.

Raspberry Pi 5, Debian GNU/Linux 12 (bookworm)

Kernel: Linux 6.12.47+rpt-rpi-2712 (arm64)

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): How I
  • Low reputation (0.5):
Posted by: yunusual

79781347

Date: 2025-10-02 22:52:53
Score: 0.5
Natty:
Report link

All AI model are not 100% deterministic. So you can't exactly define why and what. Thinking model and other are a way to understand this non-deterministic nature.

For your tools, try to provide custom wrapper or build your own tool on top of existing tool like GoogleSearch. With this you can have control to know what, what and how a Tools is used.

If you use Google ADK (build on top of Google GenAI SDK), you have https://google.github.io/adk-docs/callbacks/types-of-callbacks/#tool-execution-callbacks to control and log these responses

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

79781343

Date: 2025-10-02 22:49:53
Score: 1.5
Natty:
Report link

Addition to @GangChen answers

Option 3: Google Search is simply as tool provided. Create you own tool from ground-up and you control what information to be processed or not.

Option 4: Similar to Option 3 but less more + a bit technical. Write a function wrapper(decorater) on top of Google Search tools and use the decorated-google-search tool.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @GangChen
Posted by: sam

79781335

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

My recommendation is use model name as you find in the documentations (.e.g gemini-2.0-flash-lite)

Why? Pricing differs for each model and Model clarity essential during debugging & model evaluation purposes.

Suggestion Don't hard-code the model names. For your app, define a external CLI variables and fetch it using os.getenv

For Google Cloud, check google-cloud-retired-models.

Reasons:
  • Blacklisted phrase (0.5): Why?
  • Has code block (-0.5):
  • Contains question mark (0.5):
Posted by: sam

79781334

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

The issue was with the model.mustache file. I need to wrap the entire file with {{#models}} and {{model}}.

If you omit the outer {{#models}} and {{#model}} blocks, {{vars}} and x-tags will not resolve.

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

79781333

Date: 2025-10-02 22:31:49
Score: 0.5
Natty:
Report link

I had a similar issue and after a few hours, I figured out that Next.js kept redirecting the URL from no slash to trailing slash back to no slash and so on. Try adding a trailing slash in the URL you are using and a leading slash so it's an absolute URL and not a relative one.

Reasons:
  • Whitelisted phrase (-2): I figured out
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Martin_D24

79781303

Date: 2025-10-02 21:35:37
Score: 1
Natty:
Report link

this can be fixed by adding a meta tag that tells safari to rid of this

here is how i did this

<meta name="theme-color" content="#000">

add this in your head tag and it will set the color to the relevant color (im sure there is a way to automate this with js if you have the time)

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

79781295

Date: 2025-10-02 21:19:33
Score: 3
Natty:
Report link

In my case everything was working just fine but I missed there were two interactions I just ignored the whole time.

enter image description here

I was expecting E to trigger automatically but the default expects me to press it for half a second.

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

79781289

Date: 2025-10-02 21:12:31
Score: 2
Natty:
Report link

this doesn't seem like a good way to ensure security if it keeps the account owners out of their account. I am at the point where I will not use a website that insist on Google authentication app. I tried it and locked myself out of my own account. My devices are not old, but they are from different brands and these brands do not work with each other.

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

79781285

Date: 2025-10-02 21:01:29
Score: 1.5
Natty:
Report link

The solution I came up with for this type of problem (it was only used internally) was just published as a public npm module, feel free to check it out, maybe it's useful to you: https://www.npmjs.com/package/@glowingblue-dev/shadow-css

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: exside

79781262

Date: 2025-10-02 20:10:19
Score: 2.5
Natty:
Report link

Late reply but you should return the new data in the response for the POST request. You dont need to fetch fresh data separately. The idea is that every request should tell a story, if you post to create something then the response should tell you what happened.

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

79781259

Date: 2025-10-02 20:05:18
Score: 0.5
Natty:
Report link

I was looking at some sample code here: https://github.com/pythonnet/pythonnet/issues/623

It looks like you need to take the global interpreter lock before you call such stuff:

using (Py.GIL())
{
    // do the work inside here and it all works
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Bryce Wagner

79781258

Date: 2025-10-02 20:03:17
Score: 0.5
Natty:
Report link

I was able to fix this issue by adding the following options to the vmArgs in .../vscode/launch.json

"vmArgs": [
    "-Dsun.stdout.encoding=UTF-8",
    "-Dsun.stderr.encoding=UTF-8",
    "-Dstdout.encoding=UTF-8",
    "-Dstderr.encoding=UTF-8",
]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Leonardo Lopes

79781253

Date: 2025-10-02 19:57:16
Score: 2.5
Natty:
Report link

i got the same error using sdac it was that i created a field in TmsQuery and the query select a temp table and i't does't receive the type of the column and it raise an AV, so you need to pass all the types of all columns.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gustavo Luís Majid Gueroni

79781234

Date: 2025-10-02 19:18:07
Score: 2
Natty:
Report link

In my case the problem was that I forgot to add the needed
<link rel="stylesheet" href="blablabla"/>

<script src="cdn.blablabla.bla"><script/>
,which are required to connect the library.

So it was somehow working even without the library properly connected, but had the same problem as yours.

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

79781230

Date: 2025-10-02 19:15:06
Score: 2
Natty:
Report link

I think I may have found the culprit.

https://learn.microsoft.com/en-us/azure/cosmos-db/mongodb/vcore/limits

The relevant bit:

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

79781228

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

Recently i used the splideJS for one of my NextJs projects and faced the same issue (ChatGPT was also not that helpful)

They have a separate react-splide package but it did not work for me
These are my exact steps

Install both splide and auto scroll extension

npm install @splidejs/splide @splidejs/splide-extension-auto-scroll

Import the splice to the component
(Without the css the slides would not appear)

import { Splide } from '@splidejs/splide';
import { AutoScroll } from '@splidejs/splide-extension-auto-scroll';
import '@splidejs/splide/css';

Mount the splide code in useEffect

  useEffect(() => {

    const splide = new Splide('.splide', {
      type: 'loop',
      drag: 'free',
      focus: 'center',
      perPage: 3,
      arrows: true,
      pagination:true,
      autoScroll: {
        speed: 1,
        pauseOnHover: true,
        pauseOnFocus: true,
        rewind: true,
      },
    });

    splide.mount({ AutoScroll });

    return () => {
      splide.destroy();
    };
  }, []);

Finally add the splide items to the component

    <div className="splide">
      <div className="splide__track">
        <ul className="splide__list">

          <li className="splide__slide">
            <img src="1.jpg" alt="Image 1" />
          </li>
          <li className="splide__slide">
            <img src="2.jpg" alt="Image 1" />
          </li>
          <li className="splide__slide">
            <img src="4.jpg" alt="Image 1" />
          </li>
          <li className="splide__slide">
            <img src="1.jpg" alt="Image 1" />
          </li>
        </ul>
      </div>
    </div>

As i noticed class names and element structure should be as it is.
Feel free to correct me if I am wrong

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): did not work
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jayangaVliyanage

79781227

Date: 2025-10-02 19:09:04
Score: 2
Natty:
Report link

It's because your saving stuff all at the same time and Core Data can't handle it.

You need a Task action with sequence, save one after the other.

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

79781225

Date: 2025-10-02 19:08:04
Score: 2
Natty:
Report link

It's because your saving stuff all at the same time and Core Data can't handle it.

You need a Task action with sequence, save one after the other.

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

79781217

Date: 2025-10-02 18:56:01
Score: 2.5
Natty:
Report link

TO allow a role to read from the information_schema and get results about a table 3 things have to happen:

  1. grant usage on the database to the role

  2. grant usage on the schema the table is in to the role.

  3. grant some access to the table to the role. Normally, this could be "SELECT" but that would give read access to all production tables. However, granting REFERENCES to the table will also work, I think. the main purpose of REFERENCES is to allow a role to set up a reference - a FK relationship to another table ( think referencing INVOICE_NUMBER in INVOICE_HEADER from INVOICE_DETAILS to be sure the parent table has the data) The REFERENCE does not allow the role to CRUD any of the data other than "background" reference. REFERENCE seems better for PRODUCTION data than SELECT.

    Any thoughts or caveats welcome

Reasons:
  • Blacklisted phrase (1.5): Any thoughts
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: James Brooks

79781215

Date: 2025-10-02 18:54:00
Score: 4.5
Natty: 3.5
Report link

Shievfigwdjshwoxgsbeksbwfufsvdd

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

79781209

Date: 2025-10-02 18:47:59
Score: 3
Natty:
Report link

Uncheck relative time in user preferences:

Click on your profile icon on the top left, then preferences, then scroll down.

enter image description here

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

79781207

Date: 2025-10-02 18:43:58
Score: 1
Natty:
Report link

Either you use the -q option as you already found out, or you can put

startup_message off

into your ~/.screenrc or globally in your /etc/screenrc file.

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

79781202

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

The problem was with which cimgui files I included.
I originally only included "${CIMGUI_DIR}/*.c" because I saw the cimgui.h file, thinking there's a matching C file, since C++ files have .hpp headers...

Turns out, it's cimgui.cpp, so obviously, the file wasn't linked properly.
Changing my imports to the following fixed my linking errors:

file(GLOB CIMGUI_C_FILES
    "${IMGUI_DIR}/*.cpp" # .c -> .cpp
    "${IMGUI_BACKENDS}/imgui_impl_glfw.cpp"
    "${IMGUI_BACKENDS}/imgui_impl_opengl3.cpp"
)
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Z-100

79781199

Date: 2025-10-02 18:26:53
Score: 1.5
Natty:
Report link

I've been able to consistently recreate queries using OR operators in where clause, that rely on multiple table joins as part of the or condition, to be orders of magnitude slower than the same query rewritten as a union all query. The difference was in at least 40 mins the query running with the OR operator, vs less than a minute using the UNION ALL clause. In all the examples the underlying tables were several hundreds of millions of rows in cardinality (charge transactions in healthcare encounter related tables). When examining the execution plans of boths queries, the UNION ALL version looked more complex with many more parrallel tasks but was the faster one, and although the OR version looked simpler with less parallel tasks it was the worse performing one. The benefits of the Spark Engine are realized when your data tasks can be parallelized as much as possible, due to data skipping of the parquet files underneath delta tables.

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

79781193

Date: 2025-10-02 18:23:52
Score: 1
Natty:
Report link

I think the issue is Python version. I was having the same error while using Python 3.15 version so I downgraded to 3.8 and it works.

Also, as per the Astra DB documentation Python 3.4, 3.5, 3.6, 3.7, and 3.8 are supported

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

79781191

Date: 2025-10-02 18:20:51
Score: 1.5
Natty:
Report link

Compose is not an imperative system like the old view system, it's declarative and as a rule you would not need to ever get the padding, if it was some how mutable, you would calculate it in the ui state, then pass it to the composition.

There is one caveat, in that you might need to do that during layout of a component.
In that case you want intrinsic measurements. Look up intrinsic measurements and layout in the compose documentation. The need to do this should be fairly rare though.

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

79781174

Date: 2025-10-02 17:46:44
Score: 1.5
Natty:
Report link

useState hides the value behind a setter because React must track updates and re-render. useRef just gives you a persistent object with .current, since React doesn’t track it and changes don’t trigger renders. They look different on purpose — to make it clear that state is reactive, refs are not.

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

79781164

Date: 2025-10-02 17:26:26
Score: 3
Natty:
Report link

MAIN DISINI BERHADIAH MENARIK DAN BONUS

JO777

Cari aja di google

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

79781162

Date: 2025-10-02 17:25:25
Score: 0.5
Natty:
Report link
pg_basebackup: initiating base backup, waiting for checkpoint to complete
pg_basebackup: checkpoint completed
pg_basebackup: write-ahead log start point: 19/D000028 on timeline 1
pg_basebackup: starting background WAL receiver
pg_basebackup: created temporary replication slot "pg_basebackup_969731"
  8156/8859814 kB (0%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/301655)
 46967/8859814 kB (0%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.2)
 83447/8859814 kB (0%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.2)
120951/8859814 kB (1%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.2)
156983/8859814 kB (1%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.2)
193591/8859814 kB (2%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.2)
231159/8859814 kB (2%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.2)
267255/8859814 kB (3%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.2)
303351/8859814 kB (3%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.2)
340407/8859814 kB (3%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.2)
376951/8859814 kB (4%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.2)
414071/8859814 kB (4%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.2)
449911/8859814 kB (5%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.2)
485969/8859814 kB (5%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/304181)
523329/8859814 kB (5%), 0/2 tablespaces (...18tbs/PG_15_202209061/16386/1249)
559105/8859814 kB (6%), 0/2 tablespaces (...18tbs/PG_15_202209061/16386/1249)
594881/8859814 kB (6%), 0/2 tablespaces (...18tbs/PG_15_202209061/16386/1249)
630593/8859814 kB (7%), 0/2 tablespaces (...18tbs/PG_15_202209061/16386/1249)
666305/8859814 kB (7%), 0/2 tablespaces (...18tbs/PG_15_202209061/16386/1249)
703154/8859814 kB (7%), 0/2 tablespaces (...18tbs/PG_15_202209061/16386/2664)
739702/8859814 kB (8%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
775990/8859814 kB (8%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
813430/8859814 kB (9%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
849462/8859814 kB (9%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
886710/8859814 kB (10%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
924278/8859814 kB (10%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
961590/8859814 kB (10%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
997430/8859814 kB (11%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1034678/8859814 kB (11%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1071862/8859814 kB (12%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1107574/8859814 kB (12%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1143670/8859814 kB (12%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1178230/8859814 kB (13%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1214070/8859814 kB (13%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1251318/8859814 kB (14%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1288374/8859814 kB (14%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1325238/8859814 kB (14%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1359542/8859814 kB (15%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1389238/8859814 kB (15%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1418870/8859814 kB (16%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1448438/8859814 kB (16%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1478070/8859814 kB (16%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1507766/8859814 kB (17%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1537270/8859814 kB (17%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1566902/8859814 kB (17%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1596598/8859814 kB (18%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1626294/8859814 kB (18%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1655798/8859814 kB (18%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1685110/8859814 kB (19%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1714870/8859814 kB (19%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1744566/8859814 kB (19%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1774326/8859814 kB (20%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188255)
1804396/8859814 kB (20%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/177467)
1835244/8859814 kB (20%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/177467)
1865004/8859814 kB (21%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/177467)
1891882/8859814 kB (21%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/185572)
1921962/8859814 kB (21%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/185572)
1951850/8859814 kB (22%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/185572)
1981866/8859814 kB (22%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/185572)
2012202/8859814 kB (22%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/185572)
2041386/8859814 kB (23%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/185572)
2071018/8859814 kB (23%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/185572)
2100778/8859814 kB (23%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/185572)
2130474/8859814 kB (24%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/185572)
2160106/8859814 kB (24%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/185572)
2189866/8859814 kB (24%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/185572)
2220835/8859814 kB (25%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/168642)
2250531/8859814 kB (25%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/168642)
2280056/8859814 kB (25%), 0/2 tablespaces (...18tbs/PG_15_202209061/16386/2659)
2309836/8859814 kB (26%), 0/2 tablespaces (...PG_15_202209061/16386/345939_fsm)
2340332/8859814 kB (26%), 0/2 tablespaces (...s/PG_15_202209061/16386/93927_vm)
2370516/8859814 kB (26%), 0/2 tablespaces (...8tbs/PG_15_202209061/16386/70336)
2400236/8859814 kB (27%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/168677)
2430115/8859814 kB (27%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/352794)
2460362/8859814 kB (27%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188252)
2490122/8859814 kB (28%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188252)
2519818/8859814 kB (28%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188252)
2550410/8859814 kB (28%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188252)
2580170/8859814 kB (29%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188252)
2609930/8859814 kB (29%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188252)
2639498/8859814 kB (29%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188252)
2669398/8859814 kB (30%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/160655)
2699030/8859814 kB (30%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/160655)
2729430/8859814 kB (30%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/160655)
2759126/8859814 kB (31%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/160655)
2789910/8859814 kB (31%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/160655)
2819862/8859814 kB (31%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/160655)
2849697/8859814 kB (32%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/147383)
2879677/8859814 kB (32%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/189370)
2909791/8859814 kB (32%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/185532)
2939991/8859814 kB (33%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/354676)
2969148/8859814 kB (33%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/352800)
2998666/8859814 kB (33%), 0/2 tablespaces (...18tbs/PG_15_202209061/16386/2658)
3028362/8859814 kB (34%), 0/2 tablespaces (...18tbs/PG_15_202209061/16386/2658)
3058475/8859814 kB (34%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/184472)
3089451/8859814 kB (34%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/184472)
3119817/8859814 kB (35%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/359568)
3149735/8859814 kB (35%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/173327)
3180089/8859814 kB (35%), 0/2 tablespaces (...8tbs/PG_15_202209061/16386/21076)
3210638/8859814 kB (36%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/188396)
3241531/8859814 kB (36%), 0/2 tablespaces (...18tbs/PG_15_202209061/16386/2840)
3271683/8859814 kB (36%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/359126)
3301584/8859814 kB (37%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/180377)
3331673/8859814 kB (37%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/363501)
3361361/8859814 kB (37%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/180637)
3391468/8859814 kB (38%), 0/2 tablespaces (...tbs/PG_15_202209061/16386/347624)
3421480/8859814 kB (38%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3452264/8859814 kB (38%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3483432/8859814 kB (39%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3514408/8859814 kB (39%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3544104/8859814 kB (40%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3572584/8859814 kB (40%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3603560/8859814 kB (40%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3633192/8859814 kB (41%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3658600/8859814 kB (41%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3688488/8859814 kB (41%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3718184/8859814 kB (41%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3747944/8859814 kB (42%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3777768/8859814 kB (42%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3807336/8859814 kB (42%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3838248/8859814 kB (43%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3867880/8859814 kB (43%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3897640/8859814 kB (43%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3927208/8859814 kB (44%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3956712/8859814 kB (44%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
3986280/8859814 kB (44%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
4017384/8859814 kB (45%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
4048360/8859814 kB (45%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
4077800/8859814 kB (46%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
4107304/8859814 kB (46%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
4138152/8859814 kB (46%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
4168616/8859814 kB (47%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
4198248/8859814 kB (47%), 0/2 tablespaces (...s/PG_15_202209061/16386/188255.1)
pg_basebackup: error: could not read COPY data: lost synchronization with server: got message type "
pg_basebackup: removing contents of data directory "/pgdb/dbcluster/area18"
pg_basebackup: changes to tablespace directories will not be undone
-------------------------
i Counldn't figure out the Issues here.  I want to add one more thing is that the database is from the Temenos Transact(T24) Banking Application
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mahalaxmi Life

79781159

Date: 2025-10-02 17:23:25
Score: 0.5
Natty:
Report link

Thanks to @yurzui, the problem was with the:

spyOn(fakeVerificationSvc, "sendVerificationCode");

This prevents invoking the original method. To spy on the method and run it the .and.callThrough() must be used:

// IMPORTANT !!! => .and.callThrough();
spyOn(fakeVerificationSvc, "sendVerificationCode").and.callThrough();
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • User mentioned (1): @yurzui
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: AlexB

79781155

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

When compiling in Clipper/Harbor, you need to set the directive to include the correct file in your program.

In your case, the line should be:

#include "<whateverlibraryfileitis.ch"

Reasons:
  • Whitelisted phrase (-1): In your case
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: JohnP

79781134

Date: 2025-10-02 16:44:16
Score: 3.5
Natty:
Report link

One thing to add to this discussion. If your RandomFunction() is asynchronous, then the compiler will expect an await usage. Some people seem to use "_ = RandomFunction()" when they could use "await RandomFunction()". The compiler, I assume, replaces "_" with something like "temp-var = await RandomFunction();". It is also, as has been pointed out, marked as uninteresting.

So, the point seems to be to get the compiler to stop barking while saving typing. Maybe there is more to it than this?

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

79781129

Date: 2025-10-02 16:28:13
Score: 2
Natty:
Report link

You may need to wrap the dates with # symbols, see this discussion. For example, in the rendered query, #11/01/2016#

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

79781119

Date: 2025-10-02 16:13:10
Score: 2
Natty:
Report link

use this because that way you're actually telling the system from where to import
thanks to Abdulazeez Salihu for providing the info

from website.template import create_app
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Basicaly Idiot

79781115

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

I figured out the issue. The parameter, in this case, needed to be a single value, so I needed to do a LOD, which I what I ended up doing. The exact LOD I used was:

{ FIXED : DATE(MIN([Gift Date]))}

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-2): I figured out
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: juan alonso

79781091

Date: 2025-10-02 15:50:04
Score: 2
Natty:
Report link

I had this problem, the reason was that vs code was installed via FLATPACK(No, never do that), that is, paths and access rights would be limited. I reinstalled the solution via the terminal

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

79781062

Date: 2025-10-02 15:22:57
Score: 1
Natty:
Report link

how to calculate the scale size of sprite as per above info so that sprite look good

If your sprite is rendered by a Sprite Renderer component, and you know the pixel dimensions at which it "looks good", there's a nice trick you can use to "calculate the scale size" corresponding to those dimensions.

enter image description here

Change the Draw Mode to Sliced in the inspector. Then change the Scale to x: 1, y: 1, z: 1. Then input the size that you like under "Size".

Now when you change the Draw Mode to Simple, the Scale will automatically become the way you want it.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): how to
  • Low reputation (1):
Posted by: TOM

79781055

Date: 2025-10-02 15:13:55
Score: 1.5
Natty:
Report link

The reason also can be an old Python version on the target node. You can check which Python version the target host should have on the support matrix page

Version Control Node Python Target Python / PowerShell
2.19 Python 3.11 - 3.13 Python 3.8 - 3.13

PowerShell 5.1
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ararat

79781051

Date: 2025-10-02 15:10:54
Score: 4
Natty:
Report link

Change the System.IO.Ports nugget package to 8.0.0, as it is suggested by this similar issue in Microsoft forum: https://learn.microsoft.com/en-us/answers/questions/1621393/system-io-ports-only-availble-on-windows-but-im-us#:~:text=I%20changed%20the%20system.io.ports%20package%20to%20version%208.0.0

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

79781047

Date: 2025-10-02 15:05:52
Score: 1
Natty:
Report link

It is perfectly normal to have your API's URL in the front end code, it would not work otherwise.

However you should aways make sure that your api is only accesable by authorised users, you can do this by setting up a form of authentication, here is just one aricle i found that explains it, you can easily find other methods if you google api authentication.

The best answer is very dependant on your web app and backend but i would not go live unless you have something like that in place! Something else to consider is make sure your api's won't be exploited. If you use some sort of SQL watch out for SQL injections , etc. Make sure your API return doesn't contain data that the code does not need because that might expose infrastructure that might be exploited!

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

79781027

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

what do you think about the following example (running in spark-shell)?

scala> spark.range(1).select(current_timestamp().as("ts"), to_utc_timestamp(current_timestamp(), current_timezone()).as("ts_utc")).show(false)
+--------------------------+--------------------------+
|ts                        |ts_utc                    |
+--------------------------+--------------------------+
|2025-10-02 15:41:42.104336|2025-10-02 14:41:42.104336|
+--------------------------+--------------------------+
scala>

Pyspark should have the same functions.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): what do you
  • Low reputation (0.5):
Posted by: gyökkettő

79781024

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

You were looking at old documentation (you link is of Entities @0.17), but the current version used in U6.2 is @1.3.1.4 (or 1.4.0-pre.4 if you go experimental). In the package docs link you'll find there's a version dropdown menu which takes you to the documentation of a newer version. Select the aforementioned version and you'll see the current package docs.

As for the package DOTS Editor, it's not needed and it's really old (2021 old). It basically tries to pull in a very early version of Entities. I looked into its functionality and it is basically integrated into Entities now (e.g. baking GameObjects into Entities).

At any rate, just remove the DOTS Editor and perhaps reinstall Entities 1.3.14 and you'll be fine.

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

79781015

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

The expo-router library greatly disappointed me with its narrow abstraction and lack of support for nested components within the app directory. In Next.js projects, I implement '_extra_' directories alongside pages.

At the moment, it still has a long way to go to match the flexibility of Next.js's file routing. Its only advantage for me is its ability to automate deep linking.

Rollback to React Navigation...

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

79781013

Date: 2025-10-02 14:37:45
Score: 1
Natty:
Report link

As per the FAQs in the Google Maps API documentation, since the map you provided appears to be in India and you are attempting to display railway tracks or directions, I believe the issue you are encountering is due to the Indian Railway Catering and Tourism Corporation not being supported for transit directions.

There is a specific question in the documentation that asks: “In which countries are transit directions available?” The answer is:

"The Routes API supports all Google Transit partners, except the Indian Railway Catering and Tourism Corporation and those in Japan."

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

79781009

Date: 2025-10-02 14:32:44
Score: 1.5
Natty:
Report link

You have to login with a Microsoft account to enable sync, when logged in using github account, checking the synchronization settings (Tools > Options > Environment > Account) showed "Not logged into any account".

To fix this, Click on the picture of your account in the upper right corner > Add another account > Microsoft account

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

79781008

Date: 2025-10-02 14:28:43
Score: 4
Natty:
Report link

Thanks to a comment, discovered that the button was missing a position within the page, that's why it wasn't appearing.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gabriel Braga

79781006

Date: 2025-10-02 14:26:42
Score: 2
Natty:
Report link

MQL returns hierarchical JSON, SPARQL uses SELECT/WHERE; translation requires manually mapping MQL structure and Freebase properties to SPARQL.

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

79781003

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

Solved by adding saving the last position:

private Vector2 lastPos;

private void FixedUpdate()
{
    Vector2 v = rb.linearVelocity;
    Vector2 pos = rb.position;

    if (fixation.up && v.y > 0)
    {
        v.y = 0;
        pos.y = lastPos.y;
    }
    if (fixation.down && v.y < 0)
    {
        v.y = 0;
        pos.y = lastPos.y;
    }
    if (fixation.left && v.x < 0)
    {
        v.x = 0;
        pos.x = lastPos.x;
    }
    if (fixation.right && v.x > 0)
    {
        v.x = 0;
        pos.x = lastPos.x;
    }

    rb.linearVelocity = v;
    rb.position = pos;

    lastPos = rb.position;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: PinBIb

79780998

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

Yes, but you need to stay on the first line only. You can use -- to start your comment. You cannot use accents like "à".

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

79780964

Date: 2025-10-02 13:33:30
Score: 0.5
Natty:
Report link

What I did was a simple stupid fix that I didn't knew would ever fix this issue but hey it works so I can't complain. I have found that when adding a .coordinateSpace this fixed the issue in all screens affected by this bug the following code was my fix for this issue.

ScrollView(showIndicators: false) { ContentView() } .coordinateSpace(name: "scrollViewCoordinateSpaceName")

So I hope this can help some people out if you have any more questions feel free to ask happy coding to y'all :)

Reasons:
  • Whitelisted phrase (-1): hope this can help
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): What I
  • Low reputation (1):
Posted by: Ilyes Djari

79780962

Date: 2025-10-02 13:31:29
Score: 1.5
Natty:
Report link

When randomness is involved in output of a method, instead of checking values, you can validate the structure of the output. For your example, the validation method would check that:

  1. 3 lines are returned
  2. 1st line contains exactly 5 numbers which all are from 1 to 6
  3. 2nd line is total of each 5 numbers from previous line
  4. 3rd line is 2nd line divided by 5
Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: RCDevs Security

79780939

Date: 2025-10-02 13:01:22
Score: 2.5
Natty:
Report link

Both the "Autoupdate imported tables on model startup" option and the "Update tables data" button run the "importFromExternalDB()" function from ModelDatabase API (https://anylogic.help/api/com/anylogic/engine/database/ModelDatabase.html#importfromexternaldb). You can also use this function to force data updates at runtime. For a step-by-step guide, check out the Help article: https://anylogic.help/anylogic/connectivity/import.html#access

Usage example: https://www.anylogic.com/blog/importing-data-from-external-database-step-by-step-guide/?sphrase_id=7961888

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

79780934

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

I have been able to avoid timeouts by using port 587 instead 465 (source of the idea: https://github.com/chatwoot/chatwoot/issues/7869#issuecomment-1921519824). Turns out my provider supports port 587, even though they officially advertise 465 and for some reason 587 works.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Martin Modrák

79780927

Date: 2025-10-02 12:53:20
Score: 2.5
Natty:
Report link

open on http://localhost/pgadmin4 - it works fine for ubuntu.

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

79780926

Date: 2025-10-02 12:53:20
Score: 3
Natty:
Report link

in CNPG check the entries in pg-config.yml, you have to allow IP address or best is create new pod and test everything from there

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

79780924

Date: 2025-10-02 12:48:19
Score: 1
Natty:
Report link

This might have happened due to using "using namespace std" in multiple header files(.hpp). Ran into this issue and got rid of those lines from all my .hpp's and left one in my .cpp . Don't know why but there must be some kind of conflict happening that causes the compiler to throw this error, you could try this if you don't have a need for them in your headers

Reasons:
  • Whitelisted phrase (-1): try this
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gabriel

79780922

Date: 2025-10-02 12:46:19
Score: 0.5
Natty:
Report link
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>YouTube Single Play</title>
  <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
  <script src="https://www.youtube.com/iframe_api"></script>
</head>
<body>

<iframe src="https://www.youtube.com/embed/FKWwdQu6_ok?enablejsapi=1" frameborder="0" allowfullscreen id="video1" width="400" height="225"></iframe>
<iframe src="https://www.youtube.com/embed/FKWwdQu6_ok?enablejsapi=1" frameborder="0" allowfullscreen id="video2" width="400" height="225"></iframe>
<iframe src="https://www.youtube.com/embed/FKWwdQu6_ok?enablejsapi=1" frameborder="0" allowfullscreen id="video3" width="400" height="225"></iframe>

<script>
  var players = {};
  var currentlyPlaying = null;

  function onYouTubeIframeAPIReady() {
    $('#video1, #video2, #video3').each(function() {
      var id = $(this).attr('id');
      players[id] = new YT.Player(id, {
        events: {
          'onStateChange': function(event) {
            if(event.data == YT.PlayerState.PLAYING){
              // Pause other videos
              $.each(players, function(key, player){
                if(key !== id && player.getPlayerState() == YT.PlayerState.PLAYING){
                  player.pauseVideo();
                }
              });
            }
          }
        }
      });
    });
  }
</script>

</body>
</html>
Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Netizens Designer

79780904

Date: 2025-10-02 12:19:12
Score: 1.5
Natty:
Report link

According to an Apple Engineer, the change in behavior is caused by Swift Evolution change, namely SE-0444 Member import visibility.

See his official Answer here: https://developer.apple.com/forums/thread/802686?answerId=860857022#860857022

SOLUTION is to import Combine where a class conforming to Protocol ObservableObject is declared.

Reasons:
  • Whitelisted phrase (-1): SOLUTION is
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Gatti27

79780903

Date: 2025-10-02 12:18:12
Score: 3
Natty:
Report link

how are you?

I had a similar problem using this new version of Airflow. I scheduled the dag, but it wasn't executed in the worker and always remained in the queue.

Maybe adding this variable to your compose might help.

AIRFLOW__CORE__EXECUTION_API_SERVER_URL: 'http://airflow-apiserver:8080/execution/'

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): how are you
  • Low reputation (1):
Posted by: Gabriel Andrade

79780896

Date: 2025-10-02 12:09:09
Score: 2.5
Natty:
Report link

pip -Vis a quick way to check which Python environment pip is associated with.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is a
  • Low reputation (0.5):
Posted by: Anurag Ratna

79780891

Date: 2025-10-02 12:04:08
Score: 1.5
Natty:
Report link

Try:

Row(verticalAlignment = Alignment.CenterVertically) {
    Column() {
        Text("Hello World")
    }
    Column() {
        Text("first")
        Text("Hello World")
        Text("last")
    }
}

Output:

Output

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

79780878

Date: 2025-10-02 11:53:05
Score: 1
Natty:
Report link

For some reason iOS 26 requires explicit size for titleView. Add width and height constraints to aTitleView and it should appear on screen.

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

79780869

Date: 2025-10-02 11:36:01
Score: 0.5
Natty:
Report link

The bug it's setGalleryImg(`img${e.target.id}`);

That sets the state to the literal string "img1" / "img2"… not to the imported image module (img1, img2, etc.). As a result, React tries to load a URL literally called img1, which doesn’t exist, so the image “disappears”.

Use the useEffect to log your useState

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Pedro Henrique Cndido Ferreira

79780861

Date: 2025-10-02 11:27:59
Score: 2
Natty:
Report link

This rule for conditional formatting works in my sample sheet. This doesn't require VBA code.

=VLOOKUP(LEFT(E2,SEARCH(" ",E2)-1),$I$2:$J$8,2,0)*0.75<G2

conditional format pivot table

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

79780857

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

you can’t fully prevent browsers from offering to save passwords, but you can strongly discourage it in your login form with the correct HTML attributes and form setup.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dušan Djuriš

79780855

Date: 2025-10-02 11:22:58
Score: 0.5
Natty:
Report link

Isn't this whole thing being made needlessly complex?

What is the correct way to provide that callback with the latest state?

The trick is to store the variable outside React and take the value from that, perform whatever needed on that value, and then update the React variable for triggering in useEffect() etc. https://playcode.io/2567999

import React, {useEffect} from 'react';

// Maintain a copy of the variable outside React
var _count = 0

export function App(title) {
  const [count, setCount] = React.useState(0);

  useEffect(() => {
    intervalTimer = setInterval(() => {

      console.log(`React count=${count}`)
      console.log(`Non React count=${_count}`)

      // Latest value is always available in _count outside React
      // Perform whatever needed on that value
      _count += 1

      // Store in the React variable for rerender / useEffect retrigger etc
      setCount(_count);
    }, 3000);
  }, []);

  return (
    <div>
      Active count {count} <br />
    </div>
  );
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Isn't this who
  • Low reputation (0.5):
Posted by: zehawk

79780852

Date: 2025-10-02 11:18:57
Score: 1.5
Natty:
Report link

Unfortunately, borderRadius is only supported for 2D charts in Highcharts, not when you’re using 3D columns (options3d). In 3D mode, Highcharts draws custom SVG shapes (cuboids), so the built-in borderRadius option doesn’t apply.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Dominik Chudy

79780847

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

When creating your Pivot Table select "Add this data to the Data Model". pivot table

After creating the Pivot Table make sure that in Pivot Table Options "Show items with no data on rows" isn't selected. pivot table1

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: user22566114

79780844

Date: 2025-10-02 11:03:53
Score: 2.5
Natty:
Report link

hamming code work even if the two string have'nt the same length, most of your code are false, sorry...

(sorry for my language, i'm french...)

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

79780840

Date: 2025-10-02 10:57:51
Score: 1
Natty:
Report link

Found a way to make Azure SQL connections using private IP work:

Set the jdbc url to "jdbc:sqlserver://<private_ip>:1433;databaseName=<yourdatabase>;trustServerCertificate=true".

Set the SQL DB username to "<db_user>@<your_azure_sql_server>.database.windows.net".

It needs the SQL server name appended to the user name with an @ to let Azure SQL accept the connection.

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

79780837

Date: 2025-10-02 10:55:51
Score: 1
Natty:
Report link

There are a few issues with your code.

Firstly, the lifecycle event is

connectedCallback

not

connectedCallBack

and second, don't use regular quotes when you have line breaks.

use template literals instead. So the backticks (` `) instead of regular quotes (' ').

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

79780822

Date: 2025-10-02 10:43:48
Score: 1.5
Natty:
Report link

Here is a link that basically explains different methods of querying a database from a Spring Boot application. The last example ("Dynamic Queries Using Specifications") is very much like TypeORM I used in a NestJS application.

How Spring JPA Works and Writing Custom Queries

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

79780818

Date: 2025-10-02 10:36:46
Score: 3
Natty:
Report link

Try out mapatlas.xyz they also have an extensive geocoder that you could use. They also have a big free tier and give out grants to promesing projects!

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

79780817

Date: 2025-10-02 10:35:45
Score: 2.5
Natty:
Report link

Use
AppInfo.Current.ShowSettingsUI();

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (0.5):
Posted by: Libor B.

79780814

Date: 2025-10-02 10:30:44
Score: 1.5
Natty:
Report link

i think this way is true (:

i think this way is true (:

i think this way is true (:

i think this way is true (:

i think this way is true (:

<h1>hello world </h1>

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

79780812

Date: 2025-10-02 10:29:44
Score: 1.5
Natty:
Report link

This behaviour is actually documented in https://github.com/HangfireIO/Hangfire.InMemory?tab=readme-ov-file#maximum-expiration-time

Specifying the InMemoryStorageOptions fixed the problem. In my case:

builder.Services.AddHangfire(configuration => configuration
    .SetDataCompatibilityLevel(CompatibilityLevel.Version_180)
    .UseSimpleAssemblyNameTypeSerializer()
    .UseRecommendedSerializerSettings()
    .UseInMemoryStorage(new InMemoryStorageOptions { MaxExpirationTime = null })
    .WithJobExpirationTimeout(TimeSpan.FromDays(60))
);
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user27465760

79780809

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

Any service marked injectable that you want to import into another module make sure its in the exports array of its own module. Hope that helps

Reasons:
  • Whitelisted phrase (-1): Hope that helps
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: LumbusterTick

79780807

Date: 2025-10-02 10:23:42
Score: 1.5
Natty:
Report link

There is no running away from it , either upgrade to higher tier than M0 or run a Mongodb cluster with three replica sets using docker :https://github.com/crizstian/mongo-replica-with-docker .Also add a limit to avoid scanning too many results. Try using "keyword" for symbol.

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

79780804

Date: 2025-10-02 10:17:40
Score: 1.5
Natty:
Report link

My bad here. The patches were correctly applied but to a different branch to where I was expecting them. I was expecting them to appear on the devtool branch instead they were applied on the rpi-6.6.y branch which is the correct version my yocto config target. So, yeah I think I still need a better understanding of devtool.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Luca Faggion

79780799

Date: 2025-10-02 10:13:39
Score: 2.5
Natty:
Report link

Some Indy files were missing in the original release of Delphi 13.

They have been included in the 1st patch, mentioned here: https://blogs.embarcadero.com/rad-studio-13-september-patch-available/

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

79780795

Date: 2025-10-02 10:10:39
Score: 3.5
Natty:
Report link

Thanks for sharing such a detailed MRE!

I think the issue might be in using StaticRouter. Try and use MemoryRouter instead as it is the standard for extensions.

import { MemoryRouter as Router, Routes, Route, Link } from "react-router-dom";
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): Thanks for sharing
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: AliF

79780794

Date: 2025-10-02 10:10:39
Score: 1.5
Natty:
Report link

The system can’t start the graphical interface

-> press Ctrl + Alt + F2

-> login with your username & password.

and reinstall the Graphic drivers:

sudo apt-get update

sudo apt-get install --reinstall nvidia-driver- # for NVIDIA

sudo apt-get install --reinstall xserver-xorg-video-intel # for Intel

then reboot

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

79780772

Date: 2025-10-02 09:41:31
Score: 0.5
Natty:
Report link

The short answer then is: no, the backing memory being pinned or unpinned doesn't matter for unsafeFreeze or unsafeThaw usage patterns.

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

79780755

Date: 2025-10-02 09:17:25
Score: 2.5
Natty:
Report link

You need to select the database connection you'd like to use to run the script.

On the main toolbar, click the menu item highlighted below.

DBeaver menu bar with select data source menu item highlighted

In the dialog box that opens, double click the database connection you'd like to use.

select data source dialog box

Verified to work with DBeaver Version 25.2.1.202509211659, release date 2025-09-22.

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

79780744

Date: 2025-10-02 08:59:22
Score: 0.5
Natty:
Report link

Solved.

I submitted the problem to Copilot, Gemini, and Stack Overflow AI, and none of them were able to find the problem and fix it.

All I had to do was change the first two rules in onEnterRules to this:

...
{
  "beforeText": "^((?!\\/\\/).)*\\s*\\$[a-zA-Z0-9_]+\\([a-zA-Z0-9%_]+,$",
  "action": { "indent": "indent" }
},
{
  "beforeText": "^((?!\\/\\/).)*\\s*.*,$",
  "action": { "indent": "none" }
},
...

Basically, I added the end-of-line character $ to beforeText, and everything started working as expected again.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Terr Lacont

79780742

Date: 2025-10-02 08:51:20
Score: 2
Natty:
Report link

You can do this on your Text

Modifier.graphicsLayer {
    rotationZ = 90f
}
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dastan Beksultanov

79780738

Date: 2025-10-02 08:44:19
Score: 1.5
Natty:
Report link

Thank you everyone for your helpful feedback. I found the issue which was the section on datatable(rv$mtcars[1:min,1:3]. If the "min" variable is larger than the total number of rows after transposing, the DT rows will disappear entirely. I thought I had accounted for this through the line min<-min(paste(length(colnames(rv$data))), paste(length(rownames(rv$data)))) but I believe that by using "paste", this number was incorrectly calculated and the actual minimum was not correct. By removing "paste" from the calculation, the number was calculated correctly. I was not able to replicate this with mtcars so I don't know the exact cause. But at least the issue is solved.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ooverbee

79780735

Date: 2025-10-02 08:37:17
Score: 0.5
Natty:
Report link

In case your error handling is strict you might want to add a try construct around your mysqli_connect command:

try {
    $conn = new mysqli($server, $user, $pw, $db);
   /* do something ... */
} catch (mysqli_sql_exception $e) {
    echo "Connection failed: " . $e->getMessage();
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user2587656

79780727

Date: 2025-10-02 08:26:14
Score: 2
Natty:
Report link

Nevermind, I forgot the convert the Timestamp column into a datetime format via pd.to_datetime() , which is why it was so slow.

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

79780720

Date: 2025-10-02 08:15:12
Score: 0.5
Natty:
Report link

You cannot find problem without crash report. If you cannot connect to you computer then use some Crash reporting library eg: Firebase Crash Reports or Crashlytics.

Android App Crashing Before onCreate

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Oleksii Kyslytsyn

79780716

Date: 2025-10-02 08:12:11
Score: 2
Natty:
Report link

It happened the same for me, my problem was that I had an unresolved merge conflict. I've pressed on 'Abort' and then I could use again Fetch/Pull UI buttons.

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

79780712

Date: 2025-10-02 08:07:09
Score: 6.5 🚩
Natty: 5
Report link

I'm new on this platform and this conversation is a time ago, but I'm still struggling with that question. After I use the functionality database delete, I can still found the Database when I look into the device explorer (using Android Studio). What do I wrong? Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1.5): I'm new
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Christof M

79780692

Date: 2025-10-02 07:34:01
Score: 2
Natty:
Report link

I think the only "sure" solution is to rewrite the control as C++ for 64bit, but it would be one heck of work.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: tsgiannis

79780690

Date: 2025-10-02 07:31:00
Score: 1.5
Natty:
Report link

An easy way to find unmanaged resources is to set up a tag policy, e.g. "managed-by":"terraform" and add that tag to all resources in your terraform manifests. Then manually created resources won't have that tag and you'll find them in the list of non-compliant resources. That assumes, that your users don't manually add that tag to trick you, of course.
Here's how to set up a tag policy in Azure and via the azurerm terraform provider.

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

79780689

Date: 2025-10-02 07:27:00
Score: 0.5
Natty:
Report link

That's expected, JBoss already provide the javax.transaction API as part of Java EE, so it will be provided to your application as well as the one you have added to your application. That's why it is a bad practice to add JavaEE jars in your application. It should be in the provided scope of maven.

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

79780687

Date: 2025-10-02 07:23:59
Score: 2
Natty:
Report link

Just set the height of the div in css. Becuase yo floated the icon, it no longer acts to expand the div. You must put some css on your div like style="height:25px"

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

79780681

Date: 2025-10-02 07:14:56
Score: 1
Natty:
Report link

Root causes::

CommonJS interop: react-microsoft-clarity is published as CommonJS. With Vite (ESM-first), named imports like import { clarity } from 'react-microsoft-clarity' won’t work. You’ll see “Named export 'clarity' not found.”

SSR/top-level execution: Calling clarity.init at module top-level (e.g., in app/root.tsx) runs during SSR/build or in environments where window isn’t defined, causing “window is not defined.”

Recommended fixes::

Only initialize Clarity in the browser, after mount (inside useEffect).
Dynamically import the package to avoid CJS named export issues and to ensure code only runs client-side.
Use only Vite’s import.meta.env.VITE_* for client-accessible env vars.

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