79651620

Date: 2025-06-03 16:55:25
Score: 0.5
Natty:
Report link

The short answer is no — you can’t run Excel VBA macros directly from Node.js, and libraries like xlsx won’t help with that either.

The main reason? Two different systems/mechanics

VBA is Excel’s territory: Macros are interpreted and executed by Excel itself. There’s no standalone VBA runtime you can tap into from Node.js.

Node.js lives outside that world: It can read and write Excel files at the data level, but it can’t talk to Excel as a running application or trigger internal macro execution.

An npm package like 'xlsx' doesn’t bridge that gap: they are great for manipulating spreadsheets — cells, styles, structure — and can even preserve embedded VBA code (the raw VBA code, should it exist), but they don’t run it. That part stays inert unless Excel opens the file and runs it, which cannot be triggered by node.js.

You would need something that can actually launch Excel, like PowerShell. I hope that helps.

Reasons:
  • Whitelisted phrase (-1): hope that helps
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Michael Mba

79651617

Date: 2025-06-03 16:53:25
Score: 1.5
Natty:
Report link

As best I can tell the state being reset is just the error and data properties. It doesn't say more (like anything about caching behavior or whatever else). But whether clearing these properties will be useful depends on your app, not react-query's internal state. i.e. if you're using either property being non-nullish as an indicator that some event has occurred - like using the properties in a dependency array - you might want to reset them before firing another mutation.

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

79651612

Date: 2025-06-03 16:47:23
Score: 1.5
Natty:
Report link

I am going accept the answer from @EdMorton as best here, the main reason is that it allows me to:

deserial() {
        declare function_to_call="$1"
        declare -n assoc_array_ref="$2"

        while IFS= read -r -d '' line; do
            assoc_array_ref+=( $line )
        done < <($function_to_call)
}

and then simply call deserial func Y - this populates the associative array Y with what was returned from function func universally.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @EdMorton
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Albert Camu

79651609

Date: 2025-06-03 16:45:23
Score: 0.5
Natty:
Report link

Use the Kotlin wrapper method — it's clean, safe, and doesn't require changes from the library provider.

Alternative Hack (If Kotlin wrapper isn't an option)

You could technically use reflection in Java to instantiate and access the class, but this approach is messy, error-prone, and discouraged unless there's absolutely no other option. Reflection bypasses compile-time checks, meaning you lose type safety, IDE support, and readability — which makes the code much harder to debug, maintain, and scale. It's more of a last-resort workaround than a proper solution.

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

79651605

Date: 2025-06-03 16:40:21
Score: 0.5
Natty:
Report link

Actually yes :) I

know it is late but for others interested in this, one can write:

SELECT "{{COLUMN_NAME}}"
FROM MY_TABLE
WHERE "{{COLUMN_NAME}}" > 0

Where COLUMN_NAME is a text parameter or of other nature. This will work as long as the provided value is a column name.

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

79651599

Date: 2025-06-03 16:38:20
Score: 3.5
Natty:
Report link

Relevant example for web using Google's Material Icons font:
https://www.w3schools.com/icons/tryit.asp?filename=tryicons_google-voicemail

Alternatively (not great), there's the tape icon: 🖭 / U+1F5AD / Tape Cartrige

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

79651593

Date: 2025-06-03 16:33:19
Score: 2
Natty:
Report link

I got this error when I tried to add all subnets to the endpoint via Pulumi (IaC)

Apparently, you can't create more than 1 interface per AZ.

If you tried it with Console UI it does not provide you such an opportunity.

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

79651590

Date: 2025-06-03 16:31:18
Score: 1.5
Natty:
Report link

I had the same problem, I couldn't add or find my bank until I selected another country. In my case I couldn't find ING in the Netherlands, but when I selected Belgium and searched ING, I went back to searching ING in the Netherlands and I was able to find it and add my bank account (with the same info that I tried when it didn't work)

Reasons:
  • Whitelisted phrase (-1): I had the same
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lucas Masclee

79651589

Date: 2025-06-03 16:31:18
Score: 5
Natty:
Report link

I was wondering if the use of trim function in conditional formatting would mitigate its impact on sheet performance.

Reasons:
  • Blacklisted phrase (2): was wondering
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: André Camapum

79651588

Date: 2025-06-03 16:30:17
Score: 4.5
Natty:
Report link

I could take a look. Please post the ids of the workitems for which you didn't receive notification. Note that we give up quickly if the callback URL is unavailable. We retry 5, 15, 30 seconds later and then give up.

Reasons:
  • RegEx Blacklisted phrase (2.5): Please post
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Albert Szilvasy

79651586

Date: 2025-06-03 16:25:16
Score: 1
Natty:
Report link

1- try Close Visual Studio completely and Delete these cache folders:

%LocalAppData%\Microsoft\VisualStudio\<Version>\ComponentModelCache
%LocalAppData%\Microsoft\SQL Server Data Tools

2- then (Replace <Version> with your VS version, e.g., 17.0 for VS 2022)

3- after that Reopen VS and retry publishing

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

79651568

Date: 2025-06-03 16:13:13
Score: 3.5
Natty:
Report link

I think I found the answer to my question. So if my goal is to create node embeddings using the random walk algorithm. I could potentially only store the node_ids as projected graph. Then while creating the random walk for each start node, proceed to collect all the node_ids, then make a cypher query to retrieve their properties and labels separately. By this approach, I reduce the memory footprint, but end up loosing up on time, by making one additional query per walk. Would this be a viable solution?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Karthick Durai

79651566

Date: 2025-06-03 16:12:12
Score: 5
Natty:
Report link

This should be fixed in update 7. https://blogs.embarcadero.com/embarcadero-interbase-2020-update-7-released/

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

79651544

Date: 2025-06-03 15:53:05
Score: 2.5
Natty:
Report link

It seems a threading issue with your polling loop. All API objects must be created by the main thread or threads created by the main thread. Accessing API objects from other system threads such as Worker Thread, System Timer might produce undesirable result.

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

79651538

Date: 2025-06-03 15:48:04
Score: 1.5
Natty:
Report link

Just a note for others: setting UIPrefersShowingLanguageSettings and CFBundleDevelopmentRegion in the Info.plist doesn’t reliably show the "App Language" option in Settings on iOS 16. This behavior seems more consistent on iOS 17 and later.

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

79651535

Date: 2025-06-03 15:46:03
Score: 2.5
Natty:
Report link

You are a lifesaver...
I was importing my old project and thinking about (exactly same) problem the whole day and could not get why that happened.
Just look at THIS LETTERS xD ((

my_personal_nightmare_png

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

79651527

Date: 2025-06-03 15:39:01
Score: 0.5
Natty:
Report link

Changed the code to make the Auto Focus:

    <ActionButton id="MudButtonSearch"
              AutoFocus="false"
              ButtonType="ButtonType.Submit"
              Disabled="@(!context.Validate() || model.ProviderNumber == null)"
            Search
    </ActionButton>

// ----

private bool autoFocus = false;

private async Task<IEnumerable<string>> SearchProviderNumbers(string providerNumber, CancellationToken token)
{
    var result = (IEnumerable<string>) dtoConfig.ProviderNumbersSearchData
            v.Where(x => x.StartsWith(providerNumber, StringComparison.InvariantCultureIgnoreCase)).ToList();
    
    if (result.Count() == 0)
    {
        autoFocus = true;
    }
}

The new code executed, but the results were the same.

I don't think changing makes any difference and that this request cannot be satisfied.

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

79651523

Date: 2025-06-03 15:35:00
Score: 1.5
Natty:
Report link

Thank you @jonsharpe!

Using an updater function to set the state fixes it.

const [items, setItems] = useState<Item[]>([])

const createItem = useCallback(async (item: Item) => {
    info("posting new Item");

    fetch(`${API_SERVER}/CreateItem`, {"POST", body: item})
        .then(response => setItems(items => [...items, response]));
}, [items]);

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • User mentioned (1): @jonsharpe
  • Self-answer (0.5):
Posted by: Brian

79651514

Date: 2025-06-03 15:26:57
Score: 0.5
Natty:
Report link

Another alternative, which may coincidentally be the servers timezone, and if you have the proper permissions...

select setting from pg_settings where name ='log_timezone';

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

79651495

Date: 2025-06-03 15:16:54
Score: 2
Natty:
Report link

I also met same issue. Every process didn't work.

Just my case, I'm completely not sure, but not use the replace function in the VS Code, but copy and paste the path one by one, even the same sentence, it could found the file. just for

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

79651494

Date: 2025-06-03 15:16:54
Score: 2
Natty:
Report link

In fact, logback has InvocationGate, it prevent files from rolling too quickly:
- write the entries for exceeding the size limit
- wait 60 seconds
- rewrite a new entry
Theses steps have successfully triggered the rolling

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

79651490

Date: 2025-06-03 15:13:54
Score: 1.5
Natty:
Report link

No, SSMS cannot run directly on VMware Fusion running on Apple Silicon Macs because:

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

79651487

Date: 2025-06-03 15:11:53
Score: 3
Natty:
Report link

There's now a combined VC C++ 2015-2022 redistributable available which will support old and new versions of wkhtmltopdf.exe

As previously mentioned you'll want the x86 version rather than x64:

https://aka.ms/vs/17/release/vc_redist.x86.exe

Full details

https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170#visual-studio-2015-2017-2019-and-2022

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

79651483

Date: 2025-06-03 15:10:52
Score: 0.5
Natty:
Report link

could you please try again with the https for Origin = https://dev.getExample.com

Make sure it's NOThttp://dev.getExample.com.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Shayan Ahmad

79651478

Date: 2025-06-03 15:06:51
Score: 1.5
Natty:
Report link

There is a workaround for this:

Go to Tools =>Projects and Solutions => Web Projects

Then uncheck "Stop debugger when browser window is closed, close browser when debugging stops".

But this will keep open that web page of your project.

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

79651477

Date: 2025-06-03 15:05:51
Score: 0.5
Natty:
Report link

I initially copied logo.png to the wrong location. To fix this, I locate the correct path of the default image inside my Docker container and use it as a reference.

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

79651474

Date: 2025-06-03 15:04:51
Score: 2.5
Natty:
Report link

What worked for me was installing psycopg2 like this:

pip install psycopg2-binary

As this answer suggests: https://stackoverflow.com/a/58984045/11677302

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: videomugre

79651473

Date: 2025-06-03 15:03:50
Score: 0.5
Natty:
Report link

Looks like this is explicitly not supported by PyPI: https://docs.pypi.org/trusted-publishers/troubleshooting/

Reusable workflows cannot currently be used as the workflow in a Trusted Publisher. This is a practical limitation, and is being tracked in warehouse#11096.

Time to refactor our GitHub actions I guess.

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

79651461

Date: 2025-06-03 14:55:47
Score: 4
Natty: 5.5
Report link

How do I clear specific site data in Chrome?

Delete specific cookies

  1. On your computer, open Chrome.

  2. At the top right, select More Settings .

  3. Select Privacy and security. Third-party cookies.

  4. Select See all site data and permissions.

  5. At the top right, search for the website's name.

  6. To the right of the site, select Delete .

  7. To confirm, select Delete.

Reasons:
  • Blacklisted phrase (1): How do I
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): How do I
  • Low reputation (1):
Posted by: user30709790

79651460

Date: 2025-06-03 14:55:47
Score: 5.5
Natty: 5.5
Report link

Has anyone managed to get this to work using v4?

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

79651451

Date: 2025-06-03 14:52:46
Score: 0.5
Natty:
Report link

<?xml version="1.0" encoding="utf-8"?><Keyboard xmlns:android="http://schemas.android.com/apk/res/android"

android:keyWidth="10%p"

android:horizontalGap="0px"

android:verticalGap="0px"

android:keyHeight="60dp">

<!-- First row -->

<Row>

\<Key android:codes="-1" android:keyLabel="Ⲁ" /\>

\<Key android:codes="-1" android:keyLabel="Ⲉ" /\>

\<Key android:codes="-1" android:keyLabel="Į" /\>

\<Key android:codes="-1" android:keyLabel="O" /\>

\<Key android:codes="-1" android:keyLabel="Ꞗ" /\>

\<Key android:codes="-1" android:keyLabel="V" /\>

\<Key android:codes="-1" android:keyLabel="G" /\>

\<Key android:codes="-1" android:keyLabel="Ɠ" /\>

\<Key android:codes="-1" android:keyLabel="Đ" /\>

\<Key android:codes="-1" android:keyLabel="X" /\>

</Row>

<!-- Second row -->

<Row>

\<Key android:codes="-1" android:keyLabel="Ⲍ" /\>

\<Key android:codes="-1" android:keyLabel="ꓙ" /\>

\<Key android:codes="-1" android:keyLabel="Ƥ" /\>

\<Key android:codes="-1" android:keyLabel="𐍆" /\>

\<Key android:codes="-1" android:keyLabel="Ӈ" /\>

\<Key android:codes="-1" android:keyLabel="𐌺" /\>

\<Key android:codes="-1" android:keyLabel="Ɫ" /\>

\<Key android:codes="-1" android:keyLabel="Ұ" /\>

\<Key android:codes="-1" android:keyLabel="𐌼" /\>

\<Key android:codes="-1" android:keyLabel="ꓚ" /\>

</Row>

<!-- Third row -->

<Row>

\<Key android:codes="-1" android:keyLabel="Ꙅ" /\>

\<Key android:codes="-1" android:keyLabel="Õ" /\>

\<Key android:codes="-1" android:keyLabel="Ŋ" /\>

\<Key android:codes="-1" android:keyLabel="Ɍ" /\>

\<Key android:codes="-1" android:keyLabel="𐍃" /\>

\<Key android:codes="-1" android:keyLabel="Ⲧ" /\>

\<Key android:codes="-1" android:keyLabel="Ư" /\>

\<Key android:codes="-1" android:keyLabel="Q" /\>

\<Key android:codes="-5" android:keyLabel="⌫" /\> \<!-- Backspace --\>

</Row>

<!-- Fourth row -->

<Row android:rowEdgeFlags="bottom">

\<Key android:codes="-2" android:keyLabel="🌐" /\> \<!-- Language switch --\>

\<Key android:codes="32" android:keyLabel="␣" android:keyWidth="40%p" /\> \<!-- Space --\>

\<Key android:codes="10" android:keyLabel="⏎" android:keyWidth="20%p" /\> \<!-- Enter --\>

</Row>

</Keyboard>

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Mehnud

79651448

Date: 2025-06-03 14:50:46
Score: 2
Natty:
Report link

header 1 header 2
cell 1 cell 2
cell 3 cell 4

999999 diamond

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

79651447

Date: 2025-06-03 14:50:46
Score: 3
Natty:
Report link

Are you sure the db object is actually not null/undefined? Try using another function instead of transaction and see if it shows you the same error or, alternatively, try doing a console.log() of the db.

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

79651445

Date: 2025-06-03 14:49:45
Score: 0.5
Natty:
Report link

Jacob Kaplan's book A Criminologist's Guide to R has a section on downloading different file types. As for .txt files in ASCII (which my file type was), he writes "hopefully you'll never encounter" this "very old file format system" (p. 51). To read it into R, he created the asciiSetupReader package. I installed that package and used it on my ASCII .txt file. It still didn't work. So I downloaded the NIBRS file in SPSS format and tried read_sav() (from the haven package). This still didn't work. So I used the asciiSetupReader function read_ascii_setup() with the SPSS file:

NIBRS2014_1 <- read_ascii_setup("C:/Users/steve/OneDrive/Desktop/RaceEconProfiling/NIBRS/ICPSR_36421_SPSS_2014/DS0002/36421-0002-Data.txt" , "C:/Users/steve/OneDrive/Desktop/RaceEconProfiling/NIBRS/ICPSR_36421_SPSS_2014/DS0002/36421-0002-Setup.sps")

This worked!

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

79651440

Date: 2025-06-03 14:48:45
Score: 4
Natty: 5
Report link

Thank you! I think I was just tired and was missing something so obvious.

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

79651436

Date: 2025-06-03 14:45:44
Score: 1
Natty:
Report link

Something to try:
Make sure you have enable_partition_pruning set to on. I believe documentation states that is the default, but I found it not set before.

https://www.postgresql.org/docs/current/ddl-partitioning.html#DDL-PARTITION-PRUNING

See how it compares for you:

-- see if EXPLAIN is different when pruning is ON
SET enable_partition_pruning = on;
EXPLAIN analyse select * from "IpLocation" where "IpFrom"<=1503395841 and "IpTo">=1503395841 limit 1;

-- compare when pruning is OFF
SET enable_partition_pruning = off;
EXPLAIN analyse select * from "IpLocation" where "IpFrom"<=1503395841 and "IpTo">=1503395841 limit 1;
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Justin Taylor

79651430

Date: 2025-06-03 14:40:43
Score: 0.5
Natty:
Report link
  1. Select or Double-click the word you want to edit. This highlights all its occurrences via Smart Highlighting.

  2. Go to the menu:
    Edit > Multi-Select All

    • Here, you will see options like Match Whole Word Only and Match Case & Whole Word.

    • Choose the appropriate option to select all occurrences of the word as actual selections (multi-cursors), not just highlights1.

  3. Now, all occurrences are selected as editable cursors. You can type to replace or edit all of them simultaneously.

Bonus tip: assign a keyboard shortcut to the menu action. This way you can multi-edit all occurrences of selected text with just a press of a shortcut (just like in sublime)

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

79651423

Date: 2025-06-03 14:37:42
Score: 0.5
Natty:
Report link

I'm using an older version of MUI in a legacy project and the Select seems to have way less props when compared to the TextField.

For example, the "helperText" doesn't exist in the Select and needs to be added manually as a new component, whereas it's native on the TextField.

Another example would be the color of the error, the Select has a slightly lighter red and doesn't actually make the question label red... Talking about labels, that's manually done in the Select as well using the "InputLabel" component.

Though the Select, by making you do everything manually, gives you more control over how the components render on the screen whereas the TextField with select=true gives you all these features out of the box and gives you cleaner code.

In my personal opinion, use the TextField unless you need to render things weirdly/differently. Though you could do that in the TextField by passing inputprops, helpertextprops, inputlabelprops, etc, it's way more cumbersome IMO.

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

79651409

Date: 2025-06-03 14:24:38
Score: 2.5
Natty:
Report link

I'm using colored Emojis when printing to the debug console using plain print statements.

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

79651401

Date: 2025-06-03 14:19:36
Score: 1.5
Natty:
Report link

is not correct

"types": "./dist/index.d.ts"

is not correct

and

you have to use

"types": "./dist/index.js"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Saeid Sepehrikia

79651398

Date: 2025-06-03 14:17:36
Score: 3.5
Natty:
Report link

Resolved by setting password (DROPBEAR_SVR_PASSWORD_AUTH=1) instead of key (DROPBEAR_SVR_PUBKEY_AUTH=1)

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

79651397

Date: 2025-06-03 14:17:36
Score: 1
Natty:
Report link

After looking at the source code it looks like git bisect reset is simply running checkout on the contents of .git/BISECT_START. So I ended up adding an alias for the following command, which does just that: git checkout $(cat $(git rev-parse --show-toplevel)/.git/BISECT_START).

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: ontanj

79651387

Date: 2025-06-03 14:11:34
Score: 3.5
Natty:
Report link

If internal_ref is a string in your database you have to put '' to him.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lautaro montaña

79651385

Date: 2025-06-03 14:11:33
Score: 12
Natty: 7
Report link

did you manage to fix this? If so could you please share what you changed as we currently have this issue.

Thanks!
Sarah

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): could you please share what you
  • RegEx Blacklisted phrase (3): did you manage to fix this
  • RegEx Blacklisted phrase (1.5): fix this?
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: Sarah

79651383

Date: 2025-06-03 14:09:32
Score: 2.5
Natty:
Report link

No, you can't change the value of EXPO_PUBLIC_API_URL after building the APK, because Expo embeds the .env values at build time. To change it post-build, you need to rebuild the APK with new .env values.

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

79651378

Date: 2025-06-03 14:05:31
Score: 2
Natty:
Report link

to show another window modally you ```present``` the dialog window and call the method ```set_transient_for``` passing the parent window.

```

let d = DialogWindow::new():

d.set_transient_for(Some(parent_window));

d.present();

```

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

79651375

Date: 2025-06-03 14:02:30
Score: 0.5
Natty:
Report link

You're absolutely right - the issue is that volume_mounts isn't included in the template_fields of KubernetesPodOperator, so Airflow doesn't apply templating to it at all.

I've run into this exact same problem before. Here are a few approaches that actually work:

Monkey patch the template_fields (quick and dirty)

from airflow.providers.cncf.kubernetes.operators.pod import KubernetesPodOperator

# Add volume_mounts to template_fields
KubernetesPodOperator.template_fields = KubernetesPodOperator.template_fields + ('volume_mounts',)

@dag(
    dag_id=PIPELINE_NAME,
    schedule=None,
    params={
        "command": "",
        "image": "python:3.13-slim",
        "shared_data_mount_path": "/mnt/data/"
    }
)
def run_arbitary_command_pipeline():
    # ... your existing code ...
    
    run_command = KubernetesPodOperator(
        task_id="run_arbitrary_command",
        cmds=["sh", "-c", "{{ params.command }}"],
        image="{{ params.image }}",
        volumes=[k8s.V1Volume(name=pvc_name, persistent_volume_claim=k8s.V1PersistentVolumeClaimVolumeSource(claim_name=pvc_name))],
        # Use dict instead of V1VolumeMount object for templating to work
        volume_mounts=[{
            'name': pvc_name,
            'mount_path': "{{ params.shared_data_mount_path }}"
        }],
    )

Custom operator (cleaner approach)

class TemplatedKubernetesPodOperator(KubernetesPodOperator):
    template_fields = KubernetesPodOperator.template_fields + ('volume_mounts',)

# Then use TemplatedKubernetesPodOperator instead of KubernetesPodOperator

The key insight here is that you need to use dictionary format for volume_mounts when templating is involved, not the k8s.V1VolumeMount objects. Airflow will convert the dicts to proper Kubernetes objects after template rendering.

I personally prefer Option 1 for one-off cases since it's simpler, but if you're going to reuse this pattern across multiple DAGs, definitely go with the custom operator approach.

Also make sure you're defining your params in the @dag decorator with the params argument, not as function parameters - that's another common gotcha

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @dag
  • Low reputation (1):
Posted by: Wolf Dev

79651349

Date: 2025-06-03 13:44:24
Score: 1.5
Natty:
Report link

Try using region instead of initialRegion as prop in your MapView. This will render the children of your MapView on changes of the region-state.

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

79651347

Date: 2025-06-03 13:43:24
Score: 0.5
Natty:
Report link

You have to choose a resampling method with nearest-neighbor interpolation. In pillow use something like

w, h         = bw_image.size
scale_factor = 16
img_scaled   = bw_image.resize((w * scale_factor, h * scale_factor), resample=Image.NEAREST)

where scale_factor is your integer scaling factor. Result:

Scaled with nearest neighbor

When using matplotlib you can also only scale for display, i.e.

import matplotlib.pyplot as plt
plt.imshow(bw_data, cmap='gray', interpolation='nearest')
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: André

79651342

Date: 2025-06-03 13:39:23
Score: 1
Natty:
Report link

You can disable performance.rtp.reset configuration option.

   lazy.setup({
      ...
      performance = {
         rtp = {
            reset = false,
         },
      },
   })
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Anton Abrosimov

79651330

Date: 2025-06-03 13:28:20
Score: 0.5
Natty:
Report link

Consider adding index on transactions(status, id, amount) to reduce SELECTion time required.
This should minimize COMPLETE ROW READS.

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

79651319

Date: 2025-06-03 13:21:18
Score: 1.5
Natty:
Report link

Make sure to use the full URL in your browser, such as: fetch('http://localhost:3000/your-json-file-name')

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

79651318

Date: 2025-06-03 13:20:17
Score: 2.5
Natty:
Report link

You should use optional chaining https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Optional_chaining

const value = obj.foo?.[key]?. || false;
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: miiimooo

79651316

Date: 2025-06-03 13:20:17
Score: 1.5
Natty:
Report link

When using export *, if multiple source modules export the same name, that name is excluded from the re-exports.

This is explicitly defined in the ECMAScript spec.

Why This Design? This approach avoids implicit and unpredictable shadowing.

Some examples:

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: Clément DELORD

79651308

Date: 2025-06-03 13:17:16
Score: 3
Natty:
Report link

In my case, I am using NGROK, which is causing an issue. Reverting it to the default server domain fixes the problem.

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

79651302

Date: 2025-06-03 13:14:15
Score: 1.5
Natty:
Report link

Similar to one other dplyr one above.

A.B.flood %>% 
    select(names(.)[!colSums(.)==0])
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jtclaypool

79651299

Date: 2025-06-03 13:13:14
Score: 2
Natty:
Report link
>>> 'hello'[::-1]
'olleh'
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
Posted by: Jan Willem

79651293

Date: 2025-06-03 13:09:13
Score: 3
Natty:
Report link

why you do not use a button with an img inside , like so:

<button class="start-button" (click)="startSequence()" aria-label="Start Sequence">

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): why you
  • Low reputation (1):
Posted by: Sara Yahya

79651289

Date: 2025-06-03 13:09:13
Score: 2
Natty:
Report link

Wormhole relies on a set of distributed nodes that monitor the state on several blockchains, referred to as the Guardian Network. To add support to a new chain, Guardians vote on governance proposals that originate inside the Guardian Network and are then submitted to ecosystem contracts. To learn more, please reach out here: https://wormhole.com/contact

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

79651279

Date: 2025-06-03 13:02:10
Score: 11
Natty: 7
Report link

We have the exakt same issue with our Docker Desktop.
Did you find any solution to this problem?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did you find any solution to this problem
  • RegEx Blacklisted phrase (2): any solution to this problem?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Tobias Oeckermann

79651271

Date: 2025-06-03 12:59:09
Score: 3
Natty:
Report link

Yes, burning mode can be used on spoke chains. Ensure, that your token supports the following functions in burning mode (https://wormhole.com/docs/build/transfers/native-token-transfers/deployment-process/deploy-to-evm/#burn-and-mint-mode) and has the ability to set the token minter to the NTT manager (https://wormhole.com/docs/build/transfers/native-token-transfers/deployment-process/deploy-to-evm/#set-token-minter-to-ntt-manager).
Respectively for Solana the token mint authority needs to be transferred (https://wormhole.com/docs/build/transfers/native-token-transfers/deployment-process/deploy-to-solana/#set-mint-authority)

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

79651268

Date: 2025-06-03 12:57:09
Score: 4.5
Natty:
Report link

Hi mikuszefski

What does the following output mean? If I want to evaluate intensity, central wavelength and width of each peak from the fit, how can I do that?

[9.39456104e-03 6.55864388e+01 5.73522507e-02 5.46727721e+00
 1.21329586e+02 2.97187567e-01 2.12738107e+00 1.76823266e+02
 1.57244131e-01 4.55424037e+00 3.51556692e+02 3.08959955e-01
 4.39114581e+00 4.02954496e+02 9.02677035e-01 2.27647259e+00
 4.53994668e+02 3.74379310e-01 4.02432791e+00 6.15694190e+02
 4.51943494e-01 4.06522919e+00 6.63307635e+02 1.05793098e+00
 2.32168786e+00 7.10644233e+02 4.33194434e-01 4.17050014e+00
 8.61276198e+02 1.79240633e-01 4.26617114e+00 9.06211127e+02
 5.03070470e-01 2.10563379e+00 9.50973864e+02 1.78487912e-01
 4.01254815e+00]
Reasons:
  • Blacklisted phrase (0.5): how can I
  • Blacklisted phrase (1): can I do
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Su Ghosh

79651267

Date: 2025-06-03 12:57:08
Score: 1
Natty:
Report link

I think the problem was, that the boost library was built using 64 bit time value. (struct timespec)

And when compiling my application against this library it was built using 32 bit time value.

Unfortunately I can not tell 100% what / where exactly it happened, but I imagine a 64 bit value was assigned to a 32 bit value which led to a negative value as timespec.tv_usec parameter for pthread_cond_timedwait.

Using _TIME_BITS=32 when compiling boost respectively _TIME_BITS=64 when compiling the application solves the problem.

FYI: According to gnu.org _FILE_OFFSET_BITS has to be set if _TIME_BITS is used.

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

79651260

Date: 2025-06-03 12:53:07
Score: 3.5
Natty:
Report link

i propose to use https://www.npmjs.com/package/ngx-multi-select-input is a new package simple to use

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

79651254

Date: 2025-06-03 12:48:01
Score: 12.5 🚩
Natty:
Report link

I investigated this error on the internet.

Possible parallels with your case:

What can we take from this for your scheduled task scenario?


PowerShell terminal process terminated exit code 4294901760 #41708

2018-1-16

OS Version: Windows Server 2012 R2 Standard


My Terminal Console not working in Visual Studio Code

2020-9-24

When I open my terminal console, it is disappearing with a pop-up message as shown below:

The terminal process "C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe" terminated with exit code: 4294901760.


Vs code terminal issue

2021-5-22

When I tried to run java code in visual studio code, the terminal is throwing an error

PowerShell terminated with exit code:4294901760

I have searched all queries but nothing is relatable.


Powershell terminating with exit code 4294901760 [closed]

2021-8-28

Powershell keeps exiting with the message:

"C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe" terminated with exit code: 4294901760.


PowerShell turning off when opened with exit code 4294901760

2021-10-24

"C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe" terminated with exit code: 4294901760"

Please Help


Why is Visual Studio Code run not working?

2021-10-26

when I run python file in terminal I get this:

The terminal process:

C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe" terminated with exit code: 4294901760.

Does anybody know why this is happening? If so could you please tell me how to fix it, I'm completely new to coding, and I've just been watching some tutorials on YouTube..


Reasons:
  • Blacklisted phrase (1): anybody know
  • Blacklisted phrase (1.5): tell me how to
  • RegEx Blacklisted phrase (2): Does anybody know
  • RegEx Blacklisted phrase (2.5): could you please tell me how
  • RegEx Blacklisted phrase (3): Please Help
  • RegEx Blacklisted phrase (2): working?
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: João Mac

79651246

Date: 2025-06-03 12:44:59
Score: 1
Natty:
Report link

you should provide the compiler the include path of "picohttp.hpp" with -I.

g++ main.cpp -I /aaa/bbb/ ./build/libpicohttp.a -o main

replace /aaa/bbb/ with the path of picohttp

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

79651241

Date: 2025-06-03 12:40:58
Score: 2
Natty:
Report link

After a solid month of investigation into this issue, I've found the answer! The Application Request Routing (ARR) was not properly installed on the server. ARR was installed and I could configure it in IIS as suggested in the Jira documentation, but IIS didn't actually do the routing.

I uninstalled ARR and reinstalled it and the URL Rewrite works perfectly.

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

79651238

Date: 2025-06-03 12:37:57
Score: 0.5
Natty:
Report link

to get pre post stock price of NVDA every 30 seconds

import requests  
import re
import time
from bs4 import BeautifulSoup
headers = {
        'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'
    }

while 1:
    url = "https://finance.yahoo.com/quote/NVDA/"
    x = requests.get(url, headers=headers)

    soup = BeautifulSoup(x.content, 'html.parser')

    yy=(soup.prettify())

    pattern = r"yf-ipw1h0\">\s+(\d+.\d+)"

    result= re.search((pattern),yy)
    x=(result.group(1))
    print (x)
    time.sleep(30)
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: joeH

79651237

Date: 2025-06-03 12:37:56
Score: 7 🚩
Natty: 5.5
Report link

Is it possible to send raw video using tcpserversink -> tcpclientsrc ?

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: Danijel Kapetanovic

79651228

Date: 2025-06-03 12:27:53
Score: 1
Natty:
Report link

If anyone is wanting a modern solution, please add the following to your MainWindow():

    OverlappedPresenter presenter = OverlappedPresenter.Create();
    presenter.PreferredMinimumWidth = 300;
    presenter.PreferredMinimumHeight = 400;
    this.AppWindow.SetPresenter(presenter);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Austin

79651227

Date: 2025-06-03 12:27:53
Score: 1.5
Natty:
Report link

You can only use @AliasFor for attributes of meta-annotations — that is, annotations that are actually present on your annotation class.

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

79651223

Date: 2025-06-03 12:25:52
Score: 11 🚩
Natty: 6.5
Report link

Did you found a solution? I think i have the same problem but in some different way

Reasons:
  • Blacklisted phrase (1): i have the same problem
  • RegEx Blacklisted phrase (3): Did you found a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: MrKapkan

79651220

Date: 2025-06-03 12:23:51
Score: 1
Natty:
Report link

Yes, the WAVE Chrome extension can be used to inspect HTML files on a local desktop server.

Simply click the WAVE extension icon when your webpage is open in Chrome on either localhost or 127.0.0.1.

It will scan the page and highlight accessibility issues directly in your browser.

This keeps your stuff secret and functions even without an internet connection.

However, local or localhost files cannot be accessed by the WAVE online tool (wave.webaim.org).

It only works with publicly available URLs.

You would need to use technologies like ngrok to expose your local server if you wanted to test a local site using the online tool.

For local development, the Chrome extension is the most convenient and effective option.

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

79651213

Date: 2025-06-03 12:13:47
Score: 0.5
Natty:
Report link

There is no visible error in your post. Try to go to the:

C:\Users\HP\AppData\Local\npm-cache\_logs\2025-06-03T11_45_56_574Z-debug-0.log

and look up for the error there. Also you can try to use:

npx create vite@latest my-app

'npx' instead of 'npm'

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dávid M.

79651210

Date: 2025-06-03 12:10:47
Score: 2.5
Natty:
Report link

We have implemented this extension: Tags and Custom Fields Boom for Google Calendar extension

It will assist you in an easy, friendly manner to add all the info and details of your event to your calendar event in an organized way through custom fields. Many other features coming soon.

Install it directly through the link: https://chromewebstore.google.com/detail/tags-and-custom-fields-bo/hlopkmaehodajggidebkjcbfodnlfeml

And here's a tutorial video: https://youtu.be/ucRcxFYJhaQ?si=2U0tJAz7QgYyLgSx

Reasons:
  • Blacklisted phrase (1): youtu.be
  • No code block (0.5):
  • Low reputation (1):
Posted by: Amir Azer

79651207

Date: 2025-06-03 12:09:45
Score: 8.5 🚩
Natty:
Report link

We have exact problem for about month. We also have noticed that the share fuction, have return to some biznes profiles, but in others there is still problem, any solutions?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solutions?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: kamtyf

79651200

Date: 2025-06-03 12:08:45
Score: 3
Natty:
Report link

You can try formatting your columns or range of cells before entering any data. Pre-format all columns as General or as Number before entering data.

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

79651189

Date: 2025-06-03 12:02:43
Score: 1
Natty:
Report link

In 2025 use this:

configurations.all {
    exclude(group = "com.google.android.gms", module = "play-services-safetynet")
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Huzaifa Khan

79651184

Date: 2025-06-03 12:00:42
Score: 2
Natty:
Report link

When I got this issue it was due to bad data in a Decimal column. It had 100.0 and not 100.00

In the select statement I used - TRANSFORM(ndepnrate, '@R 999.99') AS ndepnrate

This not only passed the data but fixed the data before it was passed over to SQL.

Every other table accepted select * from tableName and passed over to SQL using SqlBulkCopy

Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: nick brown

79651181

Date: 2025-06-03 11:55:41
Score: 1
Natty:
Report link

Okay i solved the problem - i checked service account email in google drive console and just shared whole folder in google drive for this account.

Reasons:
  • Whitelisted phrase (-2): i solved
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jakub Hopciaś

79651175

Date: 2025-06-03 11:50:40
Score: 3
Natty:
Report link

Thanks for the discussion on external loops for memory management.

For my use case of running the Python script fresh every minute on a VPS, I'm leaning towards using a cron job.

It seems more robust for a persistent "every minute" task on a server compared to a manual Bash while loop because:

cron handles server reboots and session disconnections automatically.

It's the standard Linux tool for scheduled tasks.

It's efficient for this kind of periodic execution.

My Python script would then just perform one "global cycle" and exit, with cron handling the "every minute" relaunch. For example:

* * * * * /usr/bin/python3 /path/to/my_script.py >> /path/to/log.txt 2>&1

This ensures a complete memory reset for each run. Am I on the right track for this specific VPS "every minute" scenario, or are there strong reasons to prefer a continuously running Bash loop with nohup/tmux?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: teamPT

79651167

Date: 2025-06-03 11:45:38
Score: 2.5
Natty:
Report link

A lot of WHOIS queries don’t work properly anymore since RDAP became the standard for many TLDs. If you're struggling with that, check out whoisjson.com it handles RDAP really well and returns clean JSON.

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

79651155

Date: 2025-06-03 11:41:37
Score: 2
Natty:
Report link

No, you cannot fine-tune Codex models like code-davinvi-002 using the OpenAI API. Fine-tuning is currently only supported for models such as gpt-3.5-turbo.

For coding tasks, OpenAI recommends using GPT-4 or GPT-3.5 with system instructions or examples (few-shot learning) instead.

Here OpenAI codex guide- https://oragetechnologies.com/openai-codex/

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

79651151

Date: 2025-06-03 11:37:36
Score: 1
Natty:
Report link

The MSE value is: 0.0004. That means the model predicts very well.

This isn't necessarily true. Typically, you divide the dataset into training and testing subsets, and evaluate the model's accuracy on the test set to get a more reliable measure of performance.

The problem now is that when predicting a combination that it didn't learn from the data set

Statistical models like neural networks aren't designed to predict on data points that differ from the training data distribution .

To make this system work, you'd need to transform the inputs into meaningful features. I would recommend you read more about how machine learning models work before proceeding.

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

79651148

Date: 2025-06-03 11:35:35
Score: 0.5
Natty:
Report link

I had spent manytime, trying to find a better method for downsampling arrays. Let's suppose, I have an array of points, or pixels, having an initial size. And I want to downsample it, to a final size count, and a reduction factor ks. The first thing, that I tried, was the numpy slicing, using a step equal to ks.

count = size // ks
points = np.empty(dtype=np.float32, shape=(count * ks, )) 
## Initialize the points array as necessary... 
res = points[::ks] 

But if the result array, already has a fixed shape, this could get an error. So the array must be resized, don't use reshape, because this also gets error.

res = np.empty(dtype=np.float32, shape=(count, )) 
res[:] = np.resize(points[::ks], (count, )) 

This is quite a simple method, and seems to be pretty fast for bigger arays. The problem with this resize, is that, it can fill the array with NaN values.

Another method would be also, to make an interpollation over the numpy array. As far I had tried, the zoom method from the scipy package would be suitable.

from scipy import ndimage
fact = (1/ks, 1.00)
res[:] = np.resize(ndimage.zoom(points, zoom=fact, order=1), (count, ))

It can be noticed, that I didn't use a simple scalar factor ks, but a tuple. Using a simple scalar factor, an image will result compressed, or stretched. But with proper scaling factors on different axes, it preserves its' aspect. It also depends, of the arrays' shape, which may differ from case to case. The order parameter sets an interpolation method being used at subsampling.

Note, that I also used the resize method, to avoid other dimensional errors. It is enough just a difference of 1 in the count size, to get another error. The shape of an array, can't be simply set, by changing the size property. Or the array must be a numpy.ndarray, in order to access the size property.

#res.shape = (sx//fact, sy//fact)
res = np.resize(res, (sx//fact, sy//fact)) 

As other people said, can be a problem with interpolation over array blocks. This is because, different parts of the image, could be mixed in an average. I had even tried, to roll, or shift the array, with just some smaller steps. But when shifting an array, the last values are filled before the first ones. And if the values was previously sorted, these would not come in right order. The resulting image may look, as an overlapping of some irregular rectangles. The idea was also, to use a numpy mean, over 1, or more sorted array blocks.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Adrian

79651137

Date: 2025-06-03 11:29:32
Score: 7 🚩
Natty: 6
Report link

got any solution brother? i am also getting same, i doubt READ_EXTERNAL_STORAGE this might be the culprit

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solution brother?
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Md Adnan Sami

79651136

Date: 2025-06-03 11:28:32
Score: 1.5
Natty:
Report link

This looks like an Xcode 16.3, 16.4 thread checker issue, as when disconnected from XCode, the crash doesn't happen

enter image description here

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

79651135

Date: 2025-06-03 11:28:32
Score: 1
Natty:
Report link

If anyone is wanting a modern solution, please add the following to your MainWindow():

    OverlappedPresenter presenter = OverlappedPresenter.Create();
    presenter.PreferredMinimumWidth = 300;
    presenter.PreferredMinimumHeight = 400;
    this.AppWindow.SetPresenter(presenter);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Austin

79651133

Date: 2025-06-03 11:26:31
Score: 2
Natty:
Report link

The problem was caused by a change in the security policies of our ISP: they blacklisted the IP address of accounts.spotify.com because many of their servers were targeted with multiple connections to unusual TCP ports coming from that IP.

Not a code problem.

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

79651131

Date: 2025-06-03 11:24:30
Score: 1
Natty:
Report link

Tried multiple solutions from this thread but none of them worked for me

The solution that worked for me was to wipe the emulator data and it started working fine

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Manan jain

79651125

Date: 2025-06-03 11:19:28
Score: 1.5
Natty:
Report link

$xml.OuterXml | Out-File test.xml

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

79651119

Date: 2025-06-03 11:17:28
Score: 5.5
Natty: 6
Report link

Thank you https://stackoverflow.com/users/3596943/fredrik-borgstrom
for helping, it helps exactly.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sumit Kumar

79651114

Date: 2025-06-03 11:15:27
Score: 0.5
Natty:
Report link

The issue was clear by looking at nova's logs: tail -f /var/log/kolla/nova/*

2025-06-02 18:36:33.352 7 CRITICAL nova [None req-59c6740a-b87e-4d78-a513-be72a64f8bf3 - - - - - -] Unhandled error: nova.exception.SchedulerHostFilterNotFound: Scheduler Host Filter AvailabilityZoneFilter could not be found.

I was configuring nova-scheduler with a filter that doesn't exist anymore

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

79651113

Date: 2025-06-03 11:14:26
Score: 0.5
Natty:
Report link

If your dominant frequency is near zero, you have a constant bias in your data. Try to high-pass filter it with a very low cut-off frequency such that the data is equally distributed around 0. In other words, the mean should be near zero, or you will always see the dominant frequency to be near zero Hz.

If you also want to reduce noise, use a bandpass filter, again with a very low lower frequency. MEMS accelerometer already come with internal filters to avoid artefacts at half of the sampling frequency, but they still produce quite some noise even though the signal is oversampled internally.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Peter Kämpf

79651107

Date: 2025-06-03 11:10:25
Score: 2
Natty:
Report link

The issue is that the first call to /api/v1/external/login returns intent, not intent_id along with instances your user belongs to.

I have reproduced the error by sending intent_id instead of intent to /api/v1/issue-token-intent. So just by correcting this, you should be good.

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

79651105

Date: 2025-06-03 11:09:25
Score: 2
Natty:
Report link

What exactly is your problem? That you have to verify your recaptcha thingy when you access your site? or what do you mean with laravel error?

So all i know is that somethimes, this page disappears after a few hours or days as Hostinger "trusts" your site...

You can visit your own site from different devices and networks to see if its region/Ip-Specific.

If this does not work at all and still the same after hours, just contact the Hostinger support.

Also make sure your domain points correctly to Hostiner and your SSL is valid

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: ChichiKugel

79651104

Date: 2025-06-03 11:08:24
Score: 0.5
Natty:
Report link

The solution that worked for me.

  1. Ensure the Properties dialog is open.

  2. Select any element within the report body.

  3. Press TAB to go to the next element. Press TAB again until you reach 'Page Footer' (you will see the respective title in the Properties dialog).

  4. Adjust the height of the footer.

enter image description here

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Sergey

79651101

Date: 2025-06-03 11:06:24
Score: 1
Natty:
Report link
  1. Sure, let's break down how you can make a VoIP call using Java, in a way that's easy to understand.

Making a VoIP Call with Java: The Simple Way

Imagine you want your Java application to "dial" a phone number over the internet. You're not actually making your computer behave like a physical phone and directly connecting to a phone line. Instead, you're using services that handle all that complex "phone stuff" for you.

Think of it like sending a message to a smart assistant and saying, "Hey, please call this number for me."

The Easiest Path: Cloud Communication APIs

This is by far the most popular and straightforward method. Companies like Twilio, Sinch, or Plivo offer what are called "Programmable Voice APIs."


The Expert Path: Building Your Own SIP Client

This is more for folks who want deep control or are building a specialized VoIP application.

  1. Use Programmable Voice APIs (e.g., Twilio): Easiest, most common method; your Java code sends requests to a cloud service.

  2. SIP Libraries (e.g., JAIN-SIP, Mizu VoIP): For direct SIP control, but more complex, often needing a self-managed PBX like Asterisk.

  3. Requires Provider Account: You'll always need an account with a VoIP service or API provider.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ariyan Khan

79651090

Date: 2025-06-03 10:59:21
Score: 1
Natty:
Report link

Late to the party, but as the Answer was relying on Visual Studio, I want to update with the results of my attempts to get it running without any IDEs installed on the windows machine:

  1. Go to the nuget.config file (located on in %APPDATA%\NuGet\NuGet.Config)

  2. Change to the local location of all required Package Files and remove the reference to the Web repo.

  3. The trailing Backslash was essential

  4. Save

  5. Enjoy Life

My nuget.config file:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="nuGet" value="c:\OfflineDependies\" />
  </packageSources>
</configuration>

possible improvements: Seems like there is a possibility to chnage the nuget settings on a project level. Bit I didn't dig in to follow that route.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Robert Reiher

79651084

Date: 2025-06-03 10:51:20
Score: 2
Natty:
Report link

SOLVED!

The avenue I was wandering down was the "it has to be a VSCode issue..." HOWEVER, upon doing a task in laravae for a client, I noticed that the problem tab WAS reporting code syntax errors... SO I then shifted my focus to "It has to be a problem with the .jar file..."

Long story short - turns out that the JRE was not installed on my version of macOS (Sequoia 15.4.1 )... Unfortunately homebrew doesnt seem to allow the download, so you have to download and install the JRE directly from the java website (making sure you install the ARM version of it if you are on a M3 Mac).

NOTE: you can test if this is the reason CFLInt doesnt work for you by hitting terminal and running the command: java -version

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: codemonkey