79750718

Date: 2025-08-29 19:40:52
Score: 0.5
Natty:
Report link

What you are trynna do is when you drag the container on the right it will get wider and the .aside will get narrower. However you gave .aside a fix width value of 500px which stops it from shrinking.

You need to change your stylesheet of .aside into:

.aside {
background: #aaa;
height: 100%;
min-width: 320px;
flex-grow: 1;
}

So that the flex layout can shrink its width to give the container space to grow

Meanwhile you passed an empty array into dependency of useLayoutEffect hook which will only execute once before the browser paints the screen when the container.current is null

add dependency to the useLayoutEffect:

useLayoutEffect(() => {...}, [container.current]); 

this way it will execute when the container ref is bound with the element

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What you are
  • Low reputation (1):
Posted by: musketeerdt

79750713

Date: 2025-08-29 19:31:50
Score: 4.5
Natty: 4.5
Report link

https://dev.to/gaurbprajapati/root-cause-analysis-outofmemoryerror-in-forked-jvm-due-to-testng-suiterunner-memory-retention-1gid

Refer this will solve your problem

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

79750706

Date: 2025-08-29 19:18:46
Score: 5
Natty: 5
Report link

Wayback Machine Save Page Now 2 API:

https://docs.google.com/document/d/1Nsv52MvSjbLb2PCpHlat0gkzw0EvtSgpKHu4mk0MnrA/edit

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: oqd189y1hgwdjas

79750702

Date: 2025-08-29 19:16:44
Score: 0.5
Natty:
Report link

I remember it was quite short code to read mouse position in C in DOS. Mouse was connected by serial RS232 interface. I used this technique in DOS in Turbo C with BGI interface.

https://ic.unicamp.br/~ducatte/mc404/Lampiao/docs/dosints.pdf

I dont have this code anymore but look this link above I think I used interrupt 33 but it was almost 30 years ago. (INT 33h)

here is example code

#include <dos.h> // Or a similar header for interrupt functions

void main() {
    int mouse_installed;
    int x, y, buttons;

    // Initialize the mouse driver
    _AX = 0;
    geninterrupt(0x33); // Call INT 33h

    mouse_installed = _AX; // Check the return value in AX

    if (mouse_installed) {
        // Turn the mouse on
        _AX = 1;
        geninterrupt(0x33);

        // Get the mouse position and button status
        _AX = 3;
        geninterrupt(0x33);
        buttons = _BX; // Get button info
        x = _CX;      // Get X-coordinate
        y = _DX;      // Get Y-coordinate

        printf("Mouse is installed. Cursor at %d,%d, button %d\n", x, y, buttons);

        // Turn the mouse off (optional)
        _AX = 2;
        geninterrupt(0x33);
    } else {
        printf("Mouse driver not found.\n");
    }
}
Reasons:
  • Blacklisted phrase (1): this link
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Radoslaw Jocz

79750700

Date: 2025-08-29 19:15:44
Score: 4
Natty: 4
Report link

i wish i can choose an image that isnt so... uuuugggllyyy.....

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

79750693

Date: 2025-08-29 19:03:40
Score: 2
Natty:
Report link

Multithreading is inherent to web development. I suggest you download Django and start developing some web applications. This will provide you with some basic experience to multithreaded program development.

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

79750691

Date: 2025-08-29 19:03:40
Score: 2.5
Natty:
Report link

1- Exit Android Studio

2- Clear C:\Users\M\.gradle\wrapper\dists\caches\x.x (x.x: Gradle version)

3- Rerun Android Studio and build/ run the app.

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

79750688

Date: 2025-08-29 19:00:39
Score: 2.5
Natty:
Report link

Wouldn't something like this work? Just check for empty strings?

def read_loop():
    while True:
        chunk = r_stream.readline()
        if not chunk: # Empty string = pipe closed
            break
        if chunk:
            print('got chunk', repr(chunk))
            got_chunks.append(chunk)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: 0ro2

79750677

Date: 2025-08-29 18:50:36
Score: 3.5
Natty:
Report link

enter image description here

I solved this problem by this graph.

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-2): I solved
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: pskh2004

79750676

Date: 2025-08-29 18:50:35
Score: 4
Natty:
Report link

I agree with you that doSomethingMocked should only run once. I copied your code and ran the unit test, but the test passed in my environment:

unit test passed

I guess it's the issue with jest configuration?

here is my demo repo

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: musketeerdt

79750675

Date: 2025-08-29 18:49:35
Score: 0.5
Natty:
Report link

import React from "react";

import { View, Text, Linking, Button, ScrollView } from "react-native";

import { WebView } from "react-native-webview";

import { createBottomTabNavigator } from "@react-navigation/bottom-tabs";

import { NavigationContainer } from "@react-navigation/native";

function HomeScreen() {

return (

\<ScrollView\>

  \<Text style={{ fontSize: 22, textAlign: "center", margin: 10 }}\>

    🎥 माझं YouTube Channel

  \</Text\>

  \<View style={{ height: 300, margin: 10 }}\>

    \<WebView

      source={{ uri: "https://www.youtube.com/@PranavVharkate" }}

    /\>

  \</View\>

\</ScrollView\>

);

}

function SocialScreen() {

return (

\<View style={{ flex: 1, justifyContent: "center", alignItems: "center" }}\>

  \<Text style={{ fontSize: 20, marginBottom: 20 }}\>🌐 माझे सोशल लिंक\</Text\> https://youtube.com/@pranavvharkate?si=hTu85mvCYp0hujl5

  \<Button title="Facebook उघडा" onPress={() =\> Linking.openURL("https://facebook.com/तुझाLink")} /\> https://www.facebook.com/profile.php?id=100091967667636&mibextid=ZbWKwL

  \<Button title="Instagram उघडा" onPress={() =\> Linking.openURL("https://instagram.com/तुझाLink")} /\> https://www.instagram.com/pranavvharkate2?igsh=MW5hdjRsdHh1eDhsdA==

\</View\>

);

}

function CommunityScreen() {

return (

\<View style={{ flex: 1, justifyContent: "center", alignItems: "center" }}\>

  \<Text style={{ fontSize: 20 }}\>👥 Community Page (Demo)\</Text\>

  \<Text\>येथे नंतर Firebase जोडून posts टाकता येतील.\</Text\>

\</View\>

);

}

const Tab = createBottomTabNavigator();

export default function App() {

return (

\<NavigationContainer\>

  \<Tab.Navigator\>

    \<Tab.Screen name="Home" component={HomeScreen} /\>

    \<Tab.Screen name="Social" component={SocialScreen} /\>

    \<Tab.Screen name="Community" component={CommunityScreen} /\>

  \</Tab.Navigator\>

\</NavigationContainer\>

);

}

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

79750665

Date: 2025-08-29 18:39:33
Score: 1.5
Natty:
Report link

I am also trying to build a postgres mcp server and provide table metadata based on user natural query to load the resources at runtime like tools and get a specific tables metadata and use it before writing the sql query.
I think we can just for the meantime put that functionality too as a tool where it takes schema and table name and reads a schema_table.json for extra context.

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

79750661

Date: 2025-08-29 18:35:31
Score: 2
Natty:
Report link

Until now, you have to do that way, but there is a pull request "Add character casing to TextBox control" will do that for you, but it still didn't merge with avalonia yet

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

79750650

Date: 2025-08-29 18:18:28
Score: 2
Natty:
Report link

homebrew emacs is fast enough...

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

79750649

Date: 2025-08-29 18:18:28
Score: 3
Natty:
Report link

enter image description hereThere was a new powerpc reference added recently (simple design and all)
For Anyone who hates official manual from the ibm website ..

Index:
https://fenixfox-studios.com/manual/powerpc/index.html
Registers:
https://fenixfox-studios.com/manual/powerpc/registers.html
Syntax:
https://fenixfox-studios.com/manual/powerpc/syntax.html

Instruction like:
add - https://fenixfox-studios.com/manual/powerpc/instructions/add.html
mflr - https://fenixfox-studios.com/manual/powerpc/instructions/mflr.html

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

79750625

Date: 2025-08-29 18:01:23
Score: 3
Natty:
Report link

<iframe sandbox="allow-scripts allow-popups allow-popups-to-escape-sandbox allow-same-origin" src="https://art19.com/shows/the-stack-overflow-podcast/episodes/1ad2e1d3-71f2-43bf-8704-1006b9704859/embed?theme=light-custom" style="width: 100%; height: 200px; border: 0 none;" scrolling="no"></iframe>

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

79750623

Date: 2025-08-29 18:01:23
Score: 2.5
Natty:
Report link

sorry I am landing late .... 😁🙈

replace capital A by lowercase a in "declare -a"

it work (for me) ✌🏼

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

79750613

Date: 2025-08-29 17:46:19
Score: 2
Natty:
Report link

It looks like Flutter wants you to move the value "0" that you are using in your code to a member variable, and reference it using the member variable you created. The compiler is trying to prevent you from hard-coding numeric values.

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

79750605

Date: 2025-08-29 17:33:15
Score: 2
Natty:
Report link

In my case,

Xcode > Settings > Accounts

removing my current account with “-” and logging in again solved the problem.

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

79750593

Date: 2025-08-29 17:21:10
Score: 2.5
Natty:
Report link

Try to put compileSdk like this: compileSdk = flutter.compileSdkVersion Or as the error says, try to put compileSdkVersion = flutter.compileSdkVersion (or hardcoded value) if you are using older version of Flutter.

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

79750592

Date: 2025-08-29 17:21:10
Score: 2
Natty:
Report link

I had the same issue and I was able to fix it upon adding UTF-8 formatting option while parsing the JSON

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

79750576

Date: 2025-08-29 17:02:04
Score: 8.5
Natty: 5.5
Report link

Hey were you ever able to figure out how to do this?

Reasons:
  • RegEx Blacklisted phrase (3): were you ever
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: PSH

79750574

Date: 2025-08-29 16:59:03
Score: 2
Natty:
Report link

You can leverage the query implementation to Coffee Bean Library. This library will translate GraphQL queries into SQL queries on the fly. Can be customized and does not require any vendor coupling. I am the author.

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

79750568

Date: 2025-08-29 16:54:01
Score: 1
Natty:
Report link

I was messing around because the font I use for my website is thicker, this works perfectly.

Same idea as the borders CSS.

u{text-decoration: underline 2px;}
<p>
Not underlined text <br>
<u>Underlined text</u><br>
<u>qwertyuiopasdfghjklzxcvbnm</u>
</p>

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

79750561

Date: 2025-08-29 16:51:01
Score: 3
Natty:
Report link

I had a similar issue, I updated filename from postcss.config.js -> postcss.config.mjs

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

79750557

Date: 2025-08-29 16:49:00
Score: 3
Natty:
Report link

Adding Working directory as $(ProjectPath) worked for me

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mayfair29

79750529

Date: 2025-08-29 16:03:50
Score: 4.5
Natty: 4
Report link

You can refer to the following KB article
https://community.snowflake.com/s/article/Snowflake-JDBC-throws-error-while-fetching-large-data-JDBC-driver-internal-error-Timeout-waiting-for-the-download-of-chunk0?utm_source=chatgpt.com

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

79750515

Date: 2025-08-29 15:54:47
Score: 1.5
Natty:
Report link

I have two projects using different versions of an Okta library (cuz there've been 5 revs since I implemented the previous one), and the mismatched versions stashed somewhere ended up causing this issue. Using the same version in the other project fixed the issue. I've never had this issue before with any other nuGet packages and running this, that, or the other version.

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

79750513

Date: 2025-08-29 15:51:46
Score: 1.5
Natty:
Report link

Yeah, this is a common issue when you mix RAG and chat memory. The retriever keeps adding the same info every turn, and the memory just stores it blindly so you end up with repeated chunks bloating the prompt.

Quick fix: either dedupe the content before adding it, or use something like mem0 or flumes ai that tracks memory as structured facts and avoids repeating stuff across turns.

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

79750504

Date: 2025-08-29 15:39:43
Score: 2.5
Natty:
Report link

-----BEGIN PGP MESSAGE-----

0v8AAABJAY86Lka0Nnre6q9F7/9raOI/XetXWsGjOpeqXCtL7evUvWJVV/oN4IGkDCLdlhzMT7tX

WJVfKGu9/29lXc2GRB8hi0HxxF/mBA==

=WYHR

-----END PGP MESSAGE

-----

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

79750484

Date: 2025-08-29 15:17:37
Score: 1
Natty:
Report link

Looks like you are always setting count to 1

    const response = await fetch('/add-crusher-columns', {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json'
      },
      body: JSON.stringify({ count: 1 }) 
    });
  
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: evanhu96

79750481

Date: 2025-08-29 15:12:36
Score: 0.5
Natty:
Report link

Here many years later to point out that as of 2022, Perforce provides Stream components (https://help.perforce.com/helix-core/server-apps/p4v/current/Content/P4V/stream-components.html), which seem to be able to achieve this.

In short, on the Components section of the Advanced tab of a client stream's property page (assuming you're using P4V), you'd specify a line like:

readonly dirX //streams/X

where stream X can itself contain other components etc. These components can be made writeable, as well as point to specific changelists in the source stream and not just the head. They look pretty similar to git modules, although I haven't yet had the chance to use them myself, so cannot comment much further.

Reasons:
  • RegEx Blacklisted phrase (1): cannot comment
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: n00bmind

79750476

Date: 2025-08-29 15:10:35
Score: 3.5
Natty:
Report link

create bat file:

@echo off

set "no_proxy=127.0.0.1,localhost"

set "NO_PROXY=127.0.0.1,localhost"

start "" "C:\Program Files\pgAdmin 4\pgAdmin4.exe"

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @echo
  • Low reputation (1):
Posted by: qinghua yang

79750471

Date: 2025-08-29 15:08:34
Score: 7
Natty: 4
Report link

I am working on an astrology application with the following directory structure. I am running a test in it- .\run_pytest_explicit.ps1; I am getting may errors in it-1. ModuleNotFoundError: No module named 'app.main'.2.No module named 'M2_HouseCalculation' 3.ModuleNotFoundError: No module named 'src'4.ModuleNotFoundError: No module named 'app.core.time_location_service'5. 6. ModuleNotFoundError: No module named 'app.pipeline.julian_day'7. ModuleNotFoundError: No module named 'app.pipeline.time_utils' ; Please tell me in beginner friendly way how to solve them? astro-backend

├── src/

│ ├── _init_.py # optional, usually src is not a package root

│ ├── app/

│ │ ├── _init_.py # marks app as package

│ │ ├── app.py # your main FastAPI app entrypoint

│ │ ├── core/

│ │ │ ├── _init_.py

│ │ │ └── ... # core utilities, helpers

│ │ ├── services/

│ │ │ ├── _init_.py

│ │ │ └── ... # app-wide service logic

│ │ ├── routes/

│ │ │ ├── _init_.py

│ │ │ └── ... # route definitions (optional)

│ │ └── ai_service/

│ │ ├── _init_.py

│ │ └── main.py # AI microservice router

│ ├── modules/

│ │ ├── _init_.py

│ │ ├── module3/

│ │ │ ├── _init_.py

│ │ │ ├── service.py

│ │ │ └── ai_service/

│ │ │ ├── _init_.py

│ │ │ └── main.py # AI microservice alternative location

│ │ └── other_modules/

│ └── tests/

│ ├── _init_.py # marks tests as package

│ └── ... # all test files and folders

├── .venv/ # your pre-existing virtual environment folder

├── PYTHONPATH_Set.ps1 # your PowerShell script to run tests

└── other project files...

Reasons:
  • Blacklisted phrase (1): how to solve
  • RegEx Blacklisted phrase (2.5): Please tell me
  • RegEx Blacklisted phrase (1.5): how to solve them?
  • RegEx Blacklisted phrase (1): I am getting may error
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Anil Sharma

79750462

Date: 2025-08-29 15:03:33
Score: 1
Natty:
Report link

It seems that is a bug, either in Qt Creator (not generating the correct escaped sequence) or in PySide (pyside6-uic doesn't generate the correct escaped sequence for QCoreApplication.translate() or QCoreApplication.translate() doesn't accept 16bit escape sequences).

A bug that seems to be related (QTBUG-122975, as pointed by @musicamante in the discussion) seems to be open since 2024.

As a workaround, for the time being, if your app doesn't need translation, you can deselect the translatable property in the QAbstractButton properties.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @musicamante
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Joel Santos Rico

79750456

Date: 2025-08-29 14:59:32
Score: 1
Natty:
Report link
stage("One of the parallel Stage") {
    script {
        if ( condition ) {
            ...
        } else {
            catchError(buildResult: 'SUCCESS', stageResult: 'NOT_BUILT') {
                error("Stage skipped: conditions not met")
            }
        }
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Neguentropy

79750453

Date: 2025-08-29 14:59:32
Score: 1
Natty:
Report link

In our case we deleted the apps in both slots and re-deployed.
Before that we tried an number of cleanup operations in Azure using the Kudo debug console without any progress. The warning message turned up when we activated the staging slot in our TEST environment, we don't use the staging slot in our DEV and there we didn't get the message. We have had this warning message for 4 days, so to us it looks like it hadn't gone away on its own.

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

79750444

Date: 2025-08-29 14:52:30
Score: 1
Natty:
Report link

I'm unsure if it is the expected behavior, but as of Apache Superset 5.0.0, you can create a virtual dataset by specifying the table_name to any value (a dataset with that name should not exist) and setting the desired sql query.

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

79750430

Date: 2025-08-29 14:39:27
Score: 0.5
Natty:
Report link

Solved. There might be a more elegant way, but this worked:


DECLARE @ID Table (ID int);
INSERT INTO Table1 (FIELD1, FIELD2, FIELD3) 
output Inserted.IDFIELD INTO @ID
Select 1,2,3
    where not exists (SELECT 'x' FROM Table1 T1 WHERE T1.FIELD1 = 1 AND T1.FIELD2 = 2;
INSERT INTO Table2 (Other1_theID, Other2, Other3) 
(Select ID,'A','B'from @ID
    where not exists (SELECT 'x' FROM Table2 T2 WHERE T2.Other2 = 'A' AND T2.Other3 = 'B')) UNION ALL
(Select ID,'C','D'from @ID
    where not exists (SELET2 'x' FROM Table2 T2 WHERE T2.Other2 = 'C' AND T2.Other3 = 'D')) UNION ALL
(Select ID,'E','F'from @ID
    where not exists (SELET2 'x' FROM Table2 T2 WHERE T2.Other2 = 'E' AND T2.Other3 = 'F'))

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

79750409

Date: 2025-08-29 14:28:24
Score: 0.5
Natty:
Report link

.payload on ActiveNotification is only set for notifications that your app showed via flutter_local_notifications.show(..., payload: '...').
It does not read the APNs/FCM payload of a remote push that iOS displayed for you. So for a push coming from FCM/APNs, activeNotifications[i].payload will be null.

Why? In the plugin, payload is a convenience string that the plugin stores inside the iOS userInfo when it creates the notification. Remote pushes shown by the OS don’t go through the plugin, so there’s nothing to map into that field.

What to do instead

Option A (recommended): carry data via FCM data and read it with firebase_messaging.

{
  "notification": { "title": "title", "body": "body" },
  "data": {
    "screen": "chat",
    "id": "12345"     // your custom fields
  },
  "apns": {
    "payload": { "aps": { "content-available": 1 } }
  }
}
FirebaseMessaging.onMessageOpenedApp.listen((RemoteMessage m) {
  final data = m.data; // {"screen":"chat","id":"12345"}
  // navigate using this data
});

final initial = await FirebaseMessaging.instance.getInitialMessage();
if (initial != null) { /* use initial.data */ }

Option B: Convert the remote push into a local notification and attach a payload.

await flutterLocalNotificationsPlugin.show(
  1001,
  m.notification?.title,
  m.notification?.body,
  const NotificationDetails(
    iOS: DarwinNotificationDetails(),
    android: AndroidNotificationDetails('default', 'Default'),
  ),
  payload: jsonEncode(m.data),  // <— this is what ActiveNotification.payload reads
);

Now getActiveNotifications() will return an ActiveNotification whose .payload contains your JSON string.

Gotcha to avoid: Adding a payload key inside apns.payload doesn’t populate the plugin’s .payload—that’s a different concept. Use RemoteMessage.data or explicitly set the payload when you create a local notification.


Bottom line: For FCM/APNs pushes, read your custom info from RemoteMessage.data (and onMessageOpenedApp/getInitialMessage). If you need .payload from ActiveNotification, you must show the notification locally and pass payload: yourself.

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

79750407

Date: 2025-08-29 14:27:24
Score: 2
Natty:
Report link

Experience shows that this happens when there are too many non-versioned files.

Unchecking "Show Unversioned Files" helped me.
You can also use “add to ignore list” to exclude directories that should not be captured with git.

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

79750403

Date: 2025-08-29 14:22:22
Score: 4
Natty: 4
Report link

OR would have worked too -- logically speaking: NOT (A) AND NOT (B) = NOT (A OR B)

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

79750402

Date: 2025-08-29 14:22:22
Score: 1
Natty:
Report link

Oh, I've figured out the problem. It turns out that changing a variable solved my problem.

From this:

  var decoded;
  for (const key of objectKeys) {
    if (originalText.includes(key)) {
      continue;
    } else {
      decoded = result.replaceAll(key, replaceObject[key])
    }
  }

To this:

  var decoded = result;
  for (const key of objectKeys) {
    if (originalText.includes(key)) {
      continue;
    } else {
      decoded = decoded.replaceAll(key, replaceObject[key])
    }
  }
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Wong_Urip

79750400

Date: 2025-08-29 14:22:22
Score: 3.5
Natty:
Report link

Thank you so much, this worked perfectly for me! It also resolves problems with the design view of WindowBuilder.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: vh-1

79750398

Date: 2025-08-29 14:21:22
Score: 1
Natty:
Report link

This is due to Iconify Intellisense. There is already an Issue open with exactly this question in the Github repo.

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

79750397

Date: 2025-08-29 14:19:21
Score: 2.5
Natty:
Report link

In monorepo this error can happen when there is multiple vite versions, you need to install the same version, source: https://github.com/vitest-dev/vitest/issues/4048

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

79750395

Date: 2025-08-29 14:19:21
Score: 1
Natty:
Report link

When you’re talking about a 20 GB log file, you’ll definitely want to lean on S3’s multipart upload API. That’s what it’s built for: breaking a large file into smaller chunks (up to 10,000 parts), uploading them in parallel, and then having S3 stitch them back together on the backend. If any part fails, you can just retry that one chunk instead of the whole file.

Since the consuming application doesn’t want to deal with pre-signed URLs and can’t drop the file into a shared location, one pattern I’ve used is to expose an API endpoint in front of your service that acts as a broker:

That gives you a central place to send back success/failure notifications:

The trade-off is that your API tier is now in the data path, so you’ll need to size it appropriately (20 GB uploads aren’t small), and you’ll want to handle timeouts, retries, and maybe some form of flow control. But functionally, this avoids presigned URLs, avoids shared locations, and still gives you control over how/when to notify both sides of the result.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • No code block (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: Anil Tiwari

79750391

Date: 2025-08-29 14:18:20
Score: 6.5
Natty: 5.5
Report link

self.addEventListener('fetch')

doesn`t call. NEVER !

WHY ???

Reasons:
  • Blacklisted phrase (1): ???
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Vladimir Mamulov

79750387

Date: 2025-08-29 14:17:20
Score: 1.5
Natty:
Report link

Just have received this email after I couldnt log in anymore.

enter image description here

After that I have resetted my password account and it still didnt let me login.

But I was finally able to enter like this:

  1. Login as Root at https://signin.aws.amazon.com/

  2. When asking for 2FA / MFA then click on the bottom "Trouble signing in?"

  3. Then click on Re-sync with AWS Servers

  4. Then put in two 2FA codes after waiting for 30s apprx.

  5. Finally enter again

Done ✅

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

79750377

Date: 2025-08-29 14:04:16
Score: 12.5
Natty: 6
Report link

i face the same issue, exactly as you described it. Have you found a fix ?

Reasons:
  • RegEx Blacklisted phrase (1.5): fix ?
  • RegEx Blacklisted phrase (2.5): Have you found a fix
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i face the same issue
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bapt

79750371

Date: 2025-08-29 13:59:15
Score: 1.5
Natty:
Report link

If your API is running correctly and returning a status code of 200, the basic solution is to send a message from your number to the WhatsApp number first where you expect to receive messages. Once you’ve done this initial message exchange, you will start receiving messages from WhatsApp

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

79750361

Date: 2025-08-29 13:52:13
Score: 1
Natty:
Report link

To call a stored procedure first create a Procedure which is like this:

Create Procedure CallStoredProcedure(parameters)
Language Database
External Name "Your_Stored_Procedure_Name"

Then just call this procedure with the required parameter

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

79750351

Date: 2025-08-29 13:44:11
Score: 1
Natty:
Report link

With the help of Anthropic I have found the issue. In the first kernel I was defining the swap space DenseXY while in the second the 3D matrix was declared DenseZY. I did not think this could make any difference except for how many cache misses I would have maybe encountered. Actually if I change all the declarations to DenseXY it compiles and runs.

By the way, for the sake of good order, I also understood that the density of the stride is opposite to what my intuition brought me to:

Stride3D.DenseXY:

Memory order: X → Y → Z (X changes fastest, Z changes slowest) For array[z][y][x]: consecutive X elements are adjacent in memory Memory layout: [0,0,0], [0,0,1], [0,0,2], ..., [0,1,0], [0,1,1], ..., [1,0,0]

Stride3D.DenseZY:

Memory order: Z → Y → X (Z changes fastest, X changes slowest) For array[x][y][z]: consecutive Z elements are adjacent in memory Memory layout: [0,0,0], [1,0,0], [2,0,0], ..., [0,1,0], [1,1,0], ..., [0,0,1]

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

79750350

Date: 2025-08-29 13:43:11
Score: 4
Natty:
Report link

This is an old post but I've had the same problem just now (using Squish for Windows toolkit).

Was caused by squish not using QA automation. This fixed it:

https://qatools.knowledgebase.qt.io/squish/windows/howto/automating-modern-ui-windows-store-apps/

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

79750347

Date: 2025-08-29 13:42:10
Score: 4
Natty: 4
Report link

I use :g/hello/s//world/g but I have been using vi forever. :/

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

79750345

Date: 2025-08-29 13:40:09
Score: 1.5
Natty:
Report link

I cannot reproduce your issue. If I setup a project, according to your description it works just fine.

I created a default project Next.js 15 project:

npx create-next-app@latest

Added an MP3 to public/audio/sample.mp3

Replaced the page.tsx with:

"use client";

const playDeleteSound = async () => {
  try {
    const audio = new Audio("/audio/sample.mp3");
    await audio.play();
  } catch (error) {
    console.log("Audio playback error:", error);
  }
};

export default function Home() {
  return (
    <div className="flex items-center justify-center min-h-screen bg-gray-100">
      <button
        onClick={playDeleteSound}
        className="px-6 py-3 rounded-2xl bg-blue-600 text-white text-lg font-semibold shadow-md hover:bg-blue-700 transition"
      >
        ▶ Play Sound
      </button>
    </div>
  );
}

It shows a play button, when I click that, it starts playing the file.

enter image description here

Full project code: https://github.com/Borewit/serve-mp3-with-nextjs

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Probably link only (1):
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
Posted by: Borewit

79750338

Date: 2025-08-29 13:34:07
Score: 4
Natty:
Report link

Using Boost 1.89.0 solved the issue.

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

79750330

Date: 2025-08-29 13:27:06
Score: 1
Natty:
Report link

had the same problem and I see that still does not have an answer. If someone has the same error in leave-one out:

Error in round(x, digits) : non-numerical argument to mathematical function

Update your package - I used meta package v.8.1.0, updated to v.8.2.0, now works fine.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Paweł Łajczak

79750328

Date: 2025-08-29 13:26:05
Score: 3
Natty:
Report link

You just need to do $('#mySelect').empty();.

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

79750323

Date: 2025-08-29 13:21:03
Score: 1
Natty:
Report link

You can go like this:

import { Op } from 'sequelize'
where: { id: { [Op.in]: [1,2,3,4]} }
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alireza Bijantabar

79750321

Date: 2025-08-29 13:21:03
Score: 1.5
Natty:
Report link

I found an answer on this https://www.qnx.com/developers/docs/6.5.0SP1.update/com.qnx.doc.neutrino_lib_ref/s/spawnv.html site, where it says

P_NOWAIT — execute the parent program concurrently with the new child process.
P_NOWAITO — execute the parent program concurrently with the new child process. You can't use wait() to obtain the exit code. 

but i'm not sure if this applies to windows (cause it doesn't have wait(), only WaitForSingleObject()) and if by using P_NOWAIT I am obliged to call wait() on the pid

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

79750316

Date: 2025-08-29 13:14:02
Score: 3
Natty:
Report link

I have found a workaround for this.

enter image description here

A custom meter (System.Diagnostics.Metrics.Meter) is visible "MyTest" and from it a System.Diagnostics.Metrics.Counter named "asas" has been created with Meter.CreateCounter()
But: i dont think its intended to work so this might get patched.

enter image description here

enter image description here

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

79750310

Date: 2025-08-29 13:09:00
Score: 0.5
Natty:
Report link

i have solved this problem

using Ctrl+Shift+P → TypeScript: Restart TS Server

because my nodemodules are not read properly by typesript server

Reasons:
  • Whitelisted phrase (-2): i have solved
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Prashant

79750306

Date: 2025-08-29 13:04:59
Score: 1
Natty:
Report link

@Marks's solution works if the panel never opens, but if it sometimes opens that can be annoying since it's a toggle. As far as I can tell there's no action to open the panel, but I cobbled something together with closePanel, togglePanel, and compound tasks:

{
    "label": "close Panel",
    "command": "${command:workbench.action.closePanel}",
    "type": "shell",
    "problemMatcher": [],
},
{
    "label": "open Panel",
    "command": "${command:workbench.action.togglePanel}",
    "type": "shell",
    "problemMatcher": [],
    "dependsOn": [
        "close Panel"
    ],
    "runOptions": {
        "runOn": "folderOpen"
    }
},

Not the prettiest, but it gets the job done.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Marks's
  • Low reputation (1):
Posted by: Christophe AGUETTAZ

79750301

Date: 2025-08-29 12:59:58
Score: 1.5
Natty:
Report link

Thank you, @tino for your solution! I had to make a minor adjustment as well in order for it to work on my end (Django 5.1.1).

Instead of the callback function that was originally proposed here was my minor tweak:

def skip_static_requests(record):
    if record.args.__len__() and str(record.args[0]).startswith("GET /static/"):
        return False
    return True

Sometimes, the record.args[0] was not a string and was therefore running into problems with calling the startswith method.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • User mentioned (1): @tino
  • Low reputation (0.5):
Posted by: davjfish

79750298

Date: 2025-08-29 12:51:57
Score: 1
Natty:
Report link

It is simple:

Right-click on the terminal bar and you will see this:

enter image description here

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

79750296

Date: 2025-08-29 12:49:56
Score: 3
Natty:
Report link

I'm unable to find this option and I don't have GitLens installed.

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

79750291

Date: 2025-08-29 12:43:55
Score: 2.5
Natty:
Report link

react-datepicker alone doesn’t mimic native segmented typing, but you can achieve it with customInput + a mask library like react-input-mask

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

79750288

Date: 2025-08-29 12:40:54
Score: 3
Natty:
Report link

Sorry for the question.

Overlooked that there is already a PR questioning for enterprise accout support.

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

79750287

Date: 2025-08-29 12:40:54
Score: 2.5
Natty:
Report link

Use this for reference: https://github.com/AUTOMATIC1111/stable-diffusion-webui

You put your model file in models->stable-diffusion folder run through the ui.

For more information, use the above link.

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

79750284

Date: 2025-08-29 12:38:53
Score: 2.5
Natty:
Report link

Keep in mind that setting environment variables apply to all the agents on the host as a system capability, while using the API creates a USER capability that is local to that specific agent. This is useful if you have multiple agents on a single host.

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

79750283

Date: 2025-08-29 12:36:53
Score: 3.5
Natty:
Report link

For details on **Yoosee for Windows**, check out Yoosee Windows

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

79750277

Date: 2025-08-29 12:31:51
Score: 3.5
Natty:
Report link

This site returns a valid HTTP status code for any request type:
https://httpstatus.io/mocking-data

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

79750242

Date: 2025-08-29 11:53:42
Score: 2
Natty:
Report link

For me , I downgraded the electron version to make it compatible with nan of the node version and it worked. I used electron 30x

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

79750238

Date: 2025-08-29 11:50:41
Score: 0.5
Natty:
Report link

It turns out the error message was too long (95000 chars).
Not sure where the boundary is, 5000 chars still works ok.
I would have expected different behaviour so I guess this is a bug.

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

79750230

Date: 2025-08-29 11:43:39
Score: 1
Natty:
Report link

This problem is impossible to solve for given rules and a random numbers shuffle. To better visualize it in your head, imagine that your traveling point is a head of a snake in the snake game (but snake always grows, so it's tail stays at the start)

At some point you may enclose yourself, and you can only spiral inwards until you crash into your own body. The same thing happens here. If visited cells form closed area and your traveling point is is inside of it, you can't escape out of this area (because you can visit cell only once). So after some number of moves it will reach cell where every neighbour of it was already visited

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

79750220

Date: 2025-08-29 11:33:37
Score: 1
Natty:
Report link
def is_even():
    x = input("Enter number: ")
    x = int(x)
    if x % 2 == 0:
        return f" {x}  is an even number"
    else:
        return f" {x} is  an odd number"
print(is_even())
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: mohamad chavoshi

79750204

Date: 2025-08-29 11:18:33
Score: 0.5
Natty:
Report link
Public Function FileTxtWr(ByVal sFile As String, _
                          ByRef sRow() As String) As Boolean

Dim sUTF As String
Dim iChn As Integer
Dim i As Integer

    sUTF = Chr$(239) & Chr$(187) & Chr$(191)
    sRow(1) = sUTF & sRow(1)
    iChn = FreeFile
On Local Error GoTo EH
    Open sFile For Output Shared As iChn
On Local Error GoTo 0
    For i = 1 To UBound(sRow)
        Print #iChn, sRow(i)
    Next i
    Close iChn
    FileTxtWr = True
Exit Function
    
EH:
    FileTxtWr = False
    
End Function
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Pezzati Carlo Maria

79750195

Date: 2025-08-29 11:12:31
Score: 1
Natty:
Report link

For now, I'm just going with option 2 and silencing "reportExplicitAny" project-wide until I find a better solution. In my pyproject.toml:

[tool.basedpyright]
reportExplicitAny = "none"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Frank William Hammond

79750190

Date: 2025-08-29 11:10:30
Score: 1.5
Natty:
Report link

Working with FilamentPHP repeaters can definitely get tricky when reactivity starts overriding field values. I’ve faced similar issues where fields reset unexpectedly, and it can be frustrating to debug. Sometimes separating calculations into a dedicated function or handling them after all inputs are set helps a bit. It reminded me of the rotmg dps calculator I once used, where real-time updates needed to balance accuracy without breaking existing inputs — kind of the same challenge here with keeping values stable while calculations run.

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

79750183

Date: 2025-08-29 11:04:29
Score: 1
Natty:
Report link

Reposting the answer from @GeorgeFields, because it solved the issue for me:

"...It ended up being a Gradle Daemon that had been running before I started Docker.
...So, I just did gradle --stop and then then next time it worked."

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @GeorgeFields
  • Low reputation (1):
Posted by: Mario Soller

79750181

Date: 2025-08-29 11:03:28
Score: 0.5
Natty:
Report link

Here is a small class which does exactly that from CrazySqueak's answer. So please upvote his answer not mine!

import threading

class AdvTimer():
    def __init__(self, interval, callback):
        self.interval = interval
        self.callback = callback

    def restart(self):
        self.timer.cancel()
        self.start()

    def start(self):
        self.timer = threading.Timer(self.interval, self.callback)
        self.timer.start()
Reasons:
  • Blacklisted phrase (0.5): upvote
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Thilo Cestonaro

79750145

Date: 2025-08-29 10:36:22
Score: 1.5
Natty:
Report link

That sounds like a tough situation to deal with, especially since managing multiple access tokens for the same institute can get really messy for both you and the users. Having to split products like investments and loans into separate configs feels like a workaround rather than a proper solution. I read something on investiit. com that touched on similar integration challenges, and it seems like the key is finding the balance between user experience and Plaid’s current limitations. Hopefully, Plaid adds more flexibility soon.

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

79750143

Date: 2025-08-29 10:35:22
Score: 1
Natty:
Report link

Bruce Roberts - The C Language, appearing in Byte Vol. 8 No. 8, August 1983, emphasis added:

Why is C so popular? The primary reason is that it allows programmers to easily transport programs from one computer or operating system to another while taking advantage of the specific features of the microprocessor in use. And C is at home with systems from 8-bit microcomputers to the Cray-1, the world's fastest computer. As a result, C has been called a "portable assembly language," but it also includes many of the advanced structured-programming features found in languages like Pascal.

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

79750140

Date: 2025-08-29 10:34:22
Score: 1
Natty:
Report link

If you want to get a zip code OR the full street name, you may want to use something like

((\d\d\d \d\d)|([A-Z,"Å","Ä","Ö"][a-zA-Z0-9,"Å","Ä","Ö","å","ä","ö"]{0,25}$))

Note that in [A-Z,"Å","Ä","Ö"], I've removed the number so when typing a full street, it cannot start with a number

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

79750138

Date: 2025-08-29 10:33:21
Score: 2
Natty:
Report link

I had same error on Mac for desktop application. Fix was:

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

79750137

Date: 2025-08-29 10:33:21
Score: 2.5
Natty:
Report link

json properties must be in camelCase instead of PascalCase. This is the default naming convention in web development

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

79750132

Date: 2025-08-29 10:26:19
Score: 5.5
Natty:
Report link

I found the steps outlined here: https://google.github.io/adk-docs/deploy/agent-engine/

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vidya Ravindran

79750126

Date: 2025-08-29 10:23:19
Score: 1
Natty:
Report link

You can achieve this by wrapping your dropdown inside a div and applying a max-height to div.

.ddDivWrap{
    max-height: 180px;        
    overflow-y: auto;         
    width: 450px;     
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sharad-aghara

79750118

Date: 2025-08-29 10:14:16
Score: 0.5
Natty:
Report link

I’ve also developed an application similar to yours, but using the FuncAnimation class with blit=False, and I don’t experience any flickering. Have you tried using FuncAnimation in the end?"

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: bardulia

79750109

Date: 2025-08-29 10:04:14
Score: 1
Natty:
Report link

You can configure Newtonsoft.Json in Hangfire to ignore reference loops:

services.AddHangfire(cfg => cfg.UseSerializerSettings(new JsonSerializerSettings() 
{
    ReferenceLoopHandling = ReferenceLoopHandling.Ignore 
}));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bath Mat

79750098

Date: 2025-08-29 09:54:12
Score: 0.5
Natty:
Report link

%timegenerated:::date-pgsql% does exactly the job.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Stéphane Millien

79750096

Date: 2025-08-29 09:50:10
Score: 2
Natty:
Report link

I found the root cause: it wasn’t an issue with my code, but with the Angular Google Maps wrapper.

The (mapDblclick) event was not being forwarded correctly for AdvancedMarkerElement. After I opened an issue on the Angular Components GitHub (https://github.com/angular/components/issues/31801), the team fixed it.

So if you’re hitting the same problem, just update to the latest version of @angular/google-maps and double-click events on map-advanced-marker will work as expected.

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

79750088

Date: 2025-08-29 09:46:09
Score: 4
Natty: 5.5
Report link

所以只需要把 yaml 文件中的 required: true 属性去掉就可以了。

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: array xiangxiang

79750084

Date: 2025-08-29 09:44:08
Score: 3.5
Natty:
Report link

you should not use ref.read in the build method

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

79750082

Date: 2025-08-29 09:44:08
Score: 3
Natty:
Report link

This scenario is currently not supported in Azure HDInsight. The Team is actively working on it. You might see some updates by mid sept.

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

79750080

Date: 2025-08-29 09:41:08
Score: 0.5
Natty:
Report link

You can loop the array and use a basic if-statement

array =  [3, 6, -1, 8, 2, -1]
for i in range(len(array )):
    if array[i] != -1:
       array[i] =  array[i] + 2
  
print(array)

Result:

[5, 8, -1, 10, 4, -1]

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

79750079

Date: 2025-08-29 09:39:07
Score: 2
Natty:
Report link

It is not clear what the .zip file contains but there is no option to upload .zip packages to Azure Automation. You can only upload .whl files which are the equivalent of PowerShell modules. Note that Azure Automation has moved to runtime environments so create runtime environment for Python 3.10 and for that environment you can add packages.

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

79750067

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

Alternatively this can be done with Power Query M code as well. This works with legacy Excel such as Excel 2013.

let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    NumwithEndTiera = Table.SelectRows( Source, each [State] ="end" and [EndTier]="a"),
    #"Merged Queries" = Table.NestedJoin(Source,{"Num"},NumwithEndTiera ,{"Num"},"Table1",JoinKind.LeftOuter),
    #"Expanded {0}" = Table.ExpandTableColumn(#"Merged Queries", "Table1", {"Num"}, {"Num.1"}),
    #"Filtered Rows" = Table.SelectRows(#"Expanded {0}", each ([Num.1] <> null)),
    #"Removed Columns" = Table.SelectRows(Table.RemoveColumns(#"Filtered Rows",{"Num.1"}), each [Tier]<>"a"),
    #"Removed Columns1" = Table.RowCount(Table.Distinct(Table.RemoveColumns(#"Removed Columns",{"State", "Tier", "EndTier"})))
in
    #"Removed Columns1"

getandtransform

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

79750063

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

As mentioned by @jqurious, this is a known issue for both DataFrame.write_parquet and LazyFrame.sink_parquet. I did a terrible job of searching for it.

Here is the issue tracker:

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @jqurious
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: FBruzzesi