79753759

Date: 2025-09-02 16:59:36
Score: 1.5
Natty:
Report link

Measure Killer will do this for you.

https://www.brunner.bi/measurekiller

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

79753751

Date: 2025-09-02 16:46:32
Score: 3
Natty:
Report link

I had this issue and resolved it by uninstalling the Microsoft-supported(!) Python Environments extension. Take a look at its dismal reviews:
https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-python-envs&ssr=false#review-details

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

79753734

Date: 2025-09-02 16:26:27
Score: 1.5
Natty:
Report link

This bug is new to 11.x.x, I unfortunately haven't found a workaround for it yet, but if you downgrade and use a 10.x version, it will work.

I have reported it to the team, though, but I think they could use more people reporting it.

(11.x seems rather rushed; they released it before they released any docs or added it as part of the roadmap.)

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

79753733

Date: 2025-09-02 16:26:27
Score: 0.5
Natty:
Report link

In the latest versions of PHPUnit use attributes:

#[PreserveGlobalState(false)]
#[RunInSeparateProcess]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: dikirill

79753728

Date: 2025-09-02 16:18:25
Score: 0.5
Natty:
Report link

This is a snippet from a test command file I use::

#!/bin/bash
valgrind PROGRAMNAME  2>&1 | sed 's/^==[0-9]*== //' > valgrindOut.txt
echo "valgrind Diff"
diff valgrindOut.txt valgrindOut_forDiff.txt
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: pacmaninbw

79753722

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

On macOS, you may right click the app in Settings > Notifications then select Reset Notifications...

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

79753713

Date: 2025-09-02 16:02:21
Score: 0.5
Natty:
Report link

I believe I now have a solution which works. Thanks to those who commented!

Aces are now adjusted for in draw_card and soft 17s are handled in the dealer drawing.

void draw_card(vector<Card> &deck, vector<Card> &new_deck)
{

    int card_index = (rand() % deck.size());

    int soft_value;
    int hard_value;

    new_deck.push_back(deck[card_index]);

    deck.erase(deck.begin() + card_index);
    for (size_t i = 0; i < new_deck.size(); i++)
    {
        while ((total_value(new_deck) > 21 && new_deck[i].face == 4 && new_deck[i].value == 11))
        {
            new_deck[i].value = 1;
        }

        
    }
}

bool has_high_ace(vector<Card> &deck)
{
    bool ace = false;

    for(size_t i = 0; i < deck.size(); i++)
    {
        if (deck[i].face == 4 && deck[i].value == 11) return true;
        
        else return false;
    }
}


int dealer_drawing(vector<Card> &main_deck, vector<Card> &deck)
{

    int total = total_value(deck);

    while(total <= 16 || (total <= 17 && has_ace && has_high_ace))
    {
        draw_card(main_deck, deck);
        total = total_value(deck);
    }

    return total;
}
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user31400362

79753709

Date: 2025-09-02 16:00:20
Score: 3.5
Natty:
Report link

Thank you very much for the previous answer. It helped me a lot.

I checked that it is enough to set two permissions:

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): helped me a lot
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Andrii Fast

79753700

Date: 2025-09-02 15:55:19
Score: 0.5
Natty:
Report link

Here's the quick and dirty way, in case the API doesn't expose a method that returns the type. (CATIA V5, Inventor, and probably a bunch of other programs do - No idea about ArcObjects.)

Microsoft.VisualBasic.Information.TypeName(doc.SelectedItem)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: JBL

79753693

Date: 2025-09-02 15:50:17
Score: 1
Natty:
Report link

You should not add a shadow to the ::before in this case, add to it's parents. Also I decrease the spread-radius of the shadow.

// styles.css

.App {
  font-family: sans-serif;
  text-align: center;
}

.ReactVirtualized__Grid__innerScrollContainer:first-of-type::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 8px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.BottomLeftGrid_ScrollWrapper:first-of-type,
.ReactVirtualized__Grid:first-of-type {
  box-shadow: 12px 0px 8px -4px rgba(0, 0, 0, 0.25);
}

enter image description here

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

79753692

Date: 2025-09-02 15:49:17
Score: 3
Natty:
Report link

Trying socket.io this lib is better then raw websocket

Try this package for socket.io https://github.com/doquangtan/socket.io-golang

Reasons:
  • Whitelisted phrase (-1): Try this
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: John Dylan

79753691

Date: 2025-09-02 15:46:16
Score: 1.5
Natty:
Report link

You can just run this code to install it,..

py -3 -m pip install gensim

.

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

79753678

Date: 2025-09-02 15:33:13
Score: 3.5
Natty:
Report link

You can't just redirect the output because it's not the command kill that print the message.
It's your bash job controller informing you that a process is terminate in background.

Quick answer, one way handle it is to wait after kill an redirect is stderr :

kill $PID
wait $! 2> /dev/null

You can find more information here : Is there a way to make bash job control quiet?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: apouchet

79753677

Date: 2025-09-02 15:32:12
Score: 0.5
Natty:
Report link

I had the same issue. For me, it worked to do the following:
Open the Integrate Menu window and try to use there the "create Workflow". With this method i have not seen the dialog

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Chavdar

79753667

Date: 2025-09-02 15:24:10
Score: 0.5
Natty:
Report link

For wsl the solution is to add wsl.localhost to allowed hosts.

But when opening a poject I prefer to select one directly from \wsl.localhost\Ubuntu\home\Username\websites and then on the info window where - simply click "Allow".

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: a-k-h

79753663

Date: 2025-09-02 15:17:08
Score: 4
Natty: 4.5
Report link

This open-source npm package can be used to highlight text.
https://www.npmjs.com/package/ng-text-highlight

Live Demo: https://ng-text-highlight.web.app/

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

79753651

Date: 2025-09-02 15:10:06
Score: 0.5
Natty:
Report link

I have a single consumer group

All consumers are already subscribed

I call consumer.subscribe() again on each consumer with the same list of topics

Why?
Why would one do this?
What you're trying to achieve?

what is the reason that it's causing this rebalance

The reason is simple: topic's partition can be consumed by only one consumer from a given consumer group at any time.
Again: topic-partition-consumer group relation to consumer is 1:1

All that also make your move not making any sense.

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

79753632

Date: 2025-09-02 14:54:01
Score: 0.5
Natty:
Report link

using the pandas:

json = {
       "India":"IN",
        "Sri Lanka":"SL"
       }

then convert it to JSon array like:

result = [{"name": k, "code": v} for k, v in json.items()]

good luck

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

79753622

Date: 2025-09-02 14:49:00
Score: 0.5
Natty:
Report link

Hi there finally I have it working, first of all there were several errors in my code the event objects were using the same name (In my working code example only one event object was necessary). also I had to make several other changes as well.

#include <Windows.h>
#include <stdio.h>
#include <stdlib.h> // For malloc, realloc, free
#include <string.h>
#include <wchar.h> // For wcslen and wcscpy
HANDLE g_NewFileItemEvent;
HANDLE g_NoMoreWorkEvent;
WCHAR* filePath;
WIN32_FIND_DATAW fd;
WCHAR subPath[MAX_PATH];
const WCHAR* rootPath = L"D:\\search";
CRITICAL_SECTION g_queueCS;
typedef struct {
    WCHAR** data;      // Pointer to an array of string pointers
    int size;         // Current number of strings in the array
    int capacity;     // Allocated capacity of the array
} StringDynamicArray;
StringDynamicArray myFolders;
StringDynamicArray myFiles;
void initStringDynamicArray(StringDynamicArray* arr, int initialCapacity) {
    arr->data = (WCHAR**)malloc(sizeof(WCHAR*) * initialCapacity);
    if (arr->data == NULL) {
        perror("Failed to allocate initial memory for string array");
        exit(EXIT_FAILURE);
    }
    arr->size = 0;
    arr->capacity = initialCapacity;
}
void pushString(StringDynamicArray* arr, const WCHAR* str) {
    if (arr->size == arr->capacity) {
        arr->capacity *= 2;
        arr->data = (WCHAR**)realloc(arr->data, sizeof(WCHAR*) * arr->capacity);
        if (arr->data == NULL) {
            perror("Failed to reallocate memory for string array");
            exit(EXIT_FAILURE);
        }
    }
    size_t strLen = wcslen(str);
    arr->data[arr->size] = (WCHAR*)malloc((strLen + 1) * sizeof(wchar_t)); // +1 for null terminator
    if (arr->data[arr->size] == NULL) {
        perror("Failed to allocate memory for string");
        exit(EXIT_FAILURE);
    }
    // Use wcscpy_s with the correct buffer size (strLen + 1)
    errno_t err = wcscpy_s(arr->data[arr->size], strLen + 1, str);
    if (err == 0) {
        //wprintf(L"Successfully copied: %ls\n", arr->data[arr->size]);
        arr->size++;
    }
    else {
        wprintf(L"Error copying string. Error code: %d\n", err);
    }
}
WCHAR* popString(StringDynamicArray* arr) {
    if (arr->size == 0) {
        fprintf(stderr, "Error: Cannot pop from an empty array.\n");
        return NULL;
    }
    arr->size--;
    WCHAR* poppedStr = arr->data[arr->size];
    return poppedStr; // Caller is responsible for freeing this memory
}
void freeStringDynamicArray(StringDynamicArray* arr) {
    for (int i = 0; i < arr->size; i++) {
        free(arr->data[i]); // Free individual strings
    }
    free(arr->data); // Free the array of pointers
    arr->data = NULL;
    arr->size = 0;
    arr->capacity = 0;
}
void searchDirectories(const WCHAR* path) {
    WIN32_FIND_DATAW findData;
    HANDLE hFind = INVALID_HANDLE_VALUE;
    WCHAR searchPath[MAX_PATH];
    WCHAR subPath[MAX_PATH];
    //::EnterCriticalSection(&g_queueCS);
    //pushString(&myFolders, (LPCWSTR)path);
    // Construct the search pattern (e.g., "D:\\search\\*")
    swprintf_s(searchPath, MAX_PATH, L"%s\\*", path);
    // Start the search with FindFirstFileW
    hFind = FindFirstFileW(searchPath, &findData);
    if (hFind == INVALID_HANDLE_VALUE) {
        wprintf(L"Error opening directory %s: %d\n", path, GetLastError());
        return;
    }
    // Iterate through all files and directories
    do {
        // Skip the current (".") and parent ("..") directories
        if (wcscmp(findData.cFileName, L".") == 0 || wcscmp(findData.cFileName, L"..") == 0) {
            continue;
        }
        // Construct the full path of the current file or directory
        swprintf_s(subPath, MAX_PATH, L"%s\\%s", path, findData.cFileName);
        // Print the full path
        //wprintf(L"%s\n", subPath);
        // If it's a directory, recursively search it
        if (findData.dwFileAttributes == FILE_ATTRIBUTE_DIRECTORY) {
            wprintf(L"[DIR]: %ws\n", subPath);
            pushString(&myFolders, (LPCWSTR)subPath);
            searchDirectories(subPath);
        }
        
    } while (FindNextFileW(hFind, &findData) != 0);
    //::LeaveCriticalSection(&g_queueCS);
    // Check if the loop ended due to an error
    DWORD error = GetLastError();
    if (error != ERROR_NO_MORE_FILES) {
        wprintf(L"Error during directory search: %d\n", error);
    }
    // Close the search handle
    FindClose(hFind);
}
//IN each directory provided as an argument search for all files in it
void searchFiles(const WCHAR* path) {
    WIN32_FIND_DATAW findData;
    HANDLE hFind = INVALID_HANDLE_VALUE;
    WCHAR searchPath[MAX_PATH];
    WCHAR subPath[MAX_PATH];
    swprintf_s(searchPath, MAX_PATH, L"%s\\*", path);
    // Start the search with FindFirstFileW
    hFind = FindFirstFileW(searchPath, &findData);
    if (hFind == INVALID_HANDLE_VALUE) {
        wprintf(L"Error opening directory %s: %d\n", path, GetLastError());
        return;
    }
    // Iterate through all files and directories
    while (FindNextFileW(hFind, &findData) != 0) {
        // Skip the current (".") and parent ("..") directories
        if (wcscmp(findData.cFileName, L".") == 0 || wcscmp(findData.cFileName, L"..") == 0) {
            continue;
        }
        // Construct the full path of the current file or directory
        swprintf_s(subPath, MAX_PATH, L"%s\\%s", path, findData.cFileName);
        // Print the full path
        //wprintf(L"%s\n", subPath);
        // If it's NOT a directory, write it to the myFiles Struct
        if (findData.dwFileAttributes != FILE_ATTRIBUTE_DIRECTORY) {
            //wprintf(L"[FILE]: %s\n", subPath);
            ::EnterCriticalSection(&g_queueCS);
            //printf("Size: %d\n", myFiles.size);
            pushString(&myFiles, (LPCWSTR)subPath);
            ::LeaveCriticalSection(&g_queueCS);
        }
    }
    printf("File thread: Finished producing items.\n");
    
    // Check if the loop ended due to an error
    DWORD error = GetLastError();
    if (error != ERROR_NO_MORE_FILES) {
        wprintf(L"Error during directory search: %d\n", error);
    }
    // Close the search handle
    FindClose(hFind);
}
BOOL FileMatchesSearch(WCHAR fullPath[], WCHAR targetString[]) {
    size_t fullPathLen = wcslen(fullPath);
    size_t targetStringLen = wcslen(targetString);
    // Check if the full path is long enough to contain the target string
    if (fullPathLen >= targetStringLen) {
        // Get a pointer to the potential start of the target string in fullPath
        WCHAR* endOfPath = fullPath + (fullPathLen - targetStringLen);
        // Compare the substring with the target string
        if (wcscmp(endOfPath, targetString) == 0) {
            //printf("'%ws' exists at the end of the path.\n", targetString);
            printf("File path found: %ws\n", fullPath);
            return TRUE;
        }
        else {
            printf("'%ws' does NOT exist at the end of the path.\n", targetString);
            return FALSE;
        }
    }
    else {
        printf("The path is too short to contain '%ws'.\n", targetString);
        return FALSE;
    }
}
DWORD WINAPI FolderThread(PVOID) {
    searchDirectories(rootPath);
    ::Sleep(20000);
    ::SetEvent(g_NewFileItemEvent);
    return 42;
}
DWORD WINAPI FileThread(LPVOID lpParam) {
    printf("File thread: waiting for Start signal.\n");
    ::WaitForSingleObject(g_NewFileItemEvent, INFINITE);
    const WCHAR* folderPath = (WCHAR*)lpParam;
    wprintf(L"Processing string: %s\n", folderPath);
    printf("File thread: Starting.\n");
    searchFiles(folderPath);
    printf("File thread: Exiting.\n");
    return 42;
}
DWORD WINAPI SearchThread(PVOID) {
    printf("Search thread started. Waiting for manual reset event...\n");
    // Wait for the manual reset event
    WaitForSingleObject(g_NewFileItemEvent, INFINITE);
    printf("Search thread: Event received! Starting to consume items...\n");
    while (myFiles.size !=0) {
        ::EnterCriticalSection(&g_queueCS);
        WCHAR* filePath = NULL;
        if (myFiles.size != 0)
        {
            filePath = popString(&myFiles);
            WCHAR searchPattern[] = L"My_search_item.txt";
            // Allocate a WCHAR array on the stack, including space for the null terminator
            const int MAX_LENGTH = 256; // Or a suitable maximum length
            WCHAR destinationArray[MAX_LENGTH];
            // Copy the string
            wcscpy_s(destinationArray, MAX_LENGTH, filePath);
            if (FileMatchesSearch(destinationArray, searchPattern)) {
                printf("File Found...!!!\n");
            }
        }
        ::LeaveCriticalSection(&g_queueCS);
    }
    printf("Search thread: Thread exiting.\n");
    return 42;
}
int main(){
    ::InitializeCriticalSection(&g_queueCS);
    initStringDynamicArray(&myFolders, 5);
    initStringDynamicArray(&myFiles, 5);
    pushString(&myFolders, rootPath);//Without this Line it won't search in the current folder
    // Create a manual-reset event in a non-signaled state
    g_NewFileItemEvent = ::CreateEvent(
        NULL,               // Default security attributes
        TRUE,               // Manual-reset event
        FALSE,              // Initial state is non-signaled
        L"NewFileItemEvent" // Name of the event (optional)
    );
    //************************Folder thread
    HANDLE hThreadFolder = ::CreateThread(NULL,0, FolderThread, NULL, 0 ,NULL);
    ::WaitForSingleObject(hThreadFolder, INFINITE);
    // Array to store thread handles
    HANDLE* threads = (HANDLE*)malloc(myFolders.size * sizeof(HANDLE));
    if (!threads) {
        wprintf(L"Failed to allocate memory for thread handles\n");
        return 1;
    }
    //**************MULtiple threads to look for files in each folder discovered (One thread per folder)
    // Loop through the data array and create a thread for each index
    for (int i = 0; i < myFolders.size; i++) {
        threads[i] = CreateThread(
            NULL,                   // Default security attributes
            0,                     // Default stack size
            FileThread,        // Thread function
            myFolders.data[i],     // Pass the string at index i
            0,                     // Default creation flags
            NULL                   // No thread ID needed
        );
        if (threads[i] == NULL) {
            wprintf(L"Failed to create thread for index %d\n", i);
            // Handle error (e.g., clean up and exit)
        }
    }
    // Wait for all threads to complete
    WaitForMultipleObjects(myFolders.size, threads, TRUE, INFINITE);
    // ****************************Singe thread to Search for the File by file name 
    HANDLE hThreadSearch = ::CreateThread(NULL, 0, SearchThread, NULL, 0, NULL);
    ::WaitForSingleObject(hThreadSearch, INFINITE);
    // Clean up thread handles
    for (int i = 0; i < myFolders.size; i++) {
        if (threads[i]) {
            CloseHandle(threads[i]);
        }
    }
    free(threads); // Free thread handles array
    ::CloseHandle(hThreadFolder);
    ::CloseHandle(hThreadSearch);
    ::DeleteCriticalSection(&g_queueCS);
    freeStringDynamicArray(&myFolders);
    freeStringDynamicArray(&myFiles);
    return 0;
}
Reasons:
  • Blacklisted phrase (0.5): Hi there
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user6033723

79753602

Date: 2025-09-02 14:34:56
Score: 2.5
Natty:
Report link

Try on actual mobile phone, it will work. As the final intention of testing with mobile simulator is to make it work on actual mobile device, we can ignore this bug if it works fine on actual device.

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

79753599

Date: 2025-09-02 14:31:54
Score: 7.5 🚩
Natty: 5
Report link

I am trying to build a yocto image using kirkstone branch. I am not able to run the QT 6 application as it ask for Qmake version in the QT kit. I have given the cmake tool chain file as in the SDK path , inspite error keep saying missing required feature in kit. Please guide.

Reasons:
  • Blacklisted phrase (1): I am not able to
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (2.5): Please guide
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shivani

79753593

Date: 2025-09-02 14:22:52
Score: 3.5
Natty:
Report link

This is not complex. Convert the XL date output to DT_DBDate and it will map to the SQL Server Date without a problem.

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

79753580

Date: 2025-09-02 14:04:46
Score: 3.5
Natty:
Report link

solved this issue simply by using cloud flare 1.1.1.1 vpn 🙂

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

79753572

Date: 2025-09-02 13:52:43
Score: 0.5
Natty:
Report link

Based on your given observations, you're most likely having CPU throttling in your containers, causing the performance regression. Locally, there's no quota enforcement, so your app can freely use 100% of the available vCPUs across all cores without interruption, as what you can see in your htop monitoring. Meanwhile, Kubernetes uses Linux Completely Fair Scheduler (CFS) that restricts your container’s cgroup CPU usage (that you set at 95% of your node's vCPUs) within short periods of time (default is at 100ms).

Even though the limit you set is high, your multi-threaded workload can exceed the allocated CPU time in these brief intervals, triggering throttling even when the node has spare capacity. This causes threads to pause, increase context switching, and reduce effective CPU utilization, which explains the 3-4x slowdown in Kubernetes compared to your local or EC2 deployments.

Also refer to this article that might be useful to you.

Reasons:
  • Blacklisted phrase (1): this article
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: トトロ

79753566

Date: 2025-09-02 13:50:42
Score: 2.5
Natty:
Report link

Thank you folks for your answers. But, I finally found a solution :D The problem was in how Maps work. "results.first" is read-only, so I have to make copy of it to make it mutable.

I did this: Map<String, dynamic> userMapMutable = Map.of( results.first);
This works now when I want to write true/false in userMapMutable['isAdmin'].
Hope this helps someone in future :D

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): Hope this helps
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: DayGZax

79753547

Date: 2025-09-02 13:21:36
Score: 0.5
Natty:
Report link

From AWS documentation:

An Amazon SQS message has three basic states:

  1. Enqueued (Stored): A message is considered "stored" or "enqueued" after it is sent to a queue by a producer, but not yet received from the queue by a consumer. This is the initial state when a message first arrives in the queue and is waiting to be processed. There is no limit to the number of stored messages.

  2. Pending (In Flight): A message is considered "in flight" or "pending" after it is received from a queue by a consumer, but not yet deleted from the queue. During this state, the message becomes temporarily invisible to other consumers due to the visibility timeout mechanism. This prevents multiple consumers from processing the same message simultaneously. There is a limit to the number of in-flight messages (120,000 for standard queues and FIFO queues).

  3. Dequeued (Deleted): A message is "dequeued" when it is deleted from the queue after successful processing. This is the final state where the message is permanently removed from the queue.

Key Points:

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

79753544

Date: 2025-09-02 13:19:35
Score: 5
Natty:
Report link

I have a step-by-step guide documented in this article with examples: https://abdullaev.dev/elasticsearch-how-to-update-mapping-for-existing-fields/

Reasons:
  • Blacklisted phrase (1): this article
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Azamat Abdullaev

79753540

Date: 2025-09-02 13:16:33
Score: 2.5
Natty:
Report link

thanks @jdweng for pointing me in the right direction. Finally resolved it, issue was related to how requests were being intercepted by loadBootResource

// Create new headers object and explicitly copy all headers
const newHeaders = new Headers();
for (let [key, value] of response.headers.entries()) {
    newHeaders.set(key, value);
}

// Ensure WASM files have correct content-type
if (type === 'dotnetwasm' || defaultUri.includes('.wasm')) {
    newHeaders.set('Content-Type', 'application/wasm');
    debugMode ? console.log(`Ensured WASM content-type for: ${name}`) : console.log();
}
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @jdweng
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: firepro20

79753537

Date: 2025-09-02 13:11:32
Score: 2.5
Natty:
Report link

That's the BrowserRouter's default behavior. If you want different behavior, consider using a different router: https://reactrouter.com/6.30.1/routers/picking-a-router

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

79753536

Date: 2025-09-02 13:11:32
Score: 3
Natty:
Report link

For Windows users, installing codecs via K-Lite_Codec_Pack_1915_Basic.exe might help

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

79753534

Date: 2025-09-02 13:09:31
Score: 3.5
Natty:
Report link

downgraded the hapi client to 6.6.0 and now it works.

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

79753526

Date: 2025-09-02 13:01:29
Score: 1.5
Natty:
Report link

I got the same error Error in UseMethod("posterior") : no applicable method for 'posterior' applied to an object of class "c('LDA_Gibbs', 'LDA', 'Gibbs', 'TopicModel')"

Restarting the R session fixed the problem.

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

79753504

Date: 2025-09-02 12:41:24
Score: 2.5
Natty:
Report link
Thanks my apk file has run sccessfully after change something in my code 
actually, I used clerk authentions 
When  wrap ourapp with <ClerkProvider>, it needs to know which Clerk project to connect to.

That’s what the publishable key does — it tells Clerk’s SDK:

“This is Surya’s Clerk project, authenticate users here.”

my app file (_layout.jsx), 
when I use <ClerkProvider> without passing the publishableKey.

import { Slot, Stack } from "expo-router";
import SafeScreen from "@/components/SafeScreen";
import { ClerkProvider } from "@clerk/clerk-expo";
import { tokenCache } from "@clerk/clerk-expo/token-cache";
import { StatusBar } from "expo-status-bar";

export default function RootLayout() {
  console.log(process.env.EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY);

  return (
    <ClerkProvider
      tokenCache={tokenCache}
      publishableKey={process.env.EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY}>
      <SafeScreen>
        <Slot />
      </SafeScreen>
      <StatusBar style="dark" />
    </ClerkProvider>
  );
}
after that I have made changes in my eas.json file 

{
  "cli": {
    "version": ">= 16.18.0",
    "appVersionSource": "remote"
  },

  "build": {
    "development": {
      "android": {
        "buildType": "apk"
      },
      "developmentClient": true
    },
    "preview": {
      "android": {
        "buildType": "apk"
      },
      "distribution": "internal"
    },
    "production": {}
  }
}

I given below my apk file
https://expo.dev/accounts/surya_04/projects/Expense-tracker/builds/3c08a69e-ae7d-440e-a3a7-7e66b0c8f241

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Surya

79753502

Date: 2025-09-02 12:38:22
Score: 4
Natty: 4.5
Report link

Try this package for socket.io https://github.com/doquangtan/socket.io-golang

Reasons:
  • Whitelisted phrase (-1): Try this
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: John Dylan

79753498

Date: 2025-09-02 12:35:21
Score: 2
Natty:
Report link

Knowing como se calcula el IVA en México is essential for both businesses and consumers. By applying the correct rate, understanding exemptions, and keeping track of deductible IVA, companies can ensure compliance and maintain financial health. Although the process may seem technical at first, following a step-by-step approach makes it easy to manage. Staying informed about changes in tax laws will also help businesses operate smoothly in Mexico’s evolving economy.

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

79753495

Date: 2025-09-02 12:34:21
Score: 2
Natty:
Report link

Using Xcode 16.4, there is no "Platforms" anymore. Simply open Settings -> Components and use the '+' button on the bottom left to add additional platforms.

enter image description here

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

79753492

Date: 2025-09-02 12:33:21
Score: 0.5
Natty:
Report link

Using git cherry-pick keeps the original author of the commit that's cherry-picked.

Example:

git cherry-pick <commit-hash-to-be-reapplied>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: bobasti

79753484

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

For example, you can display the nvidia-smi tool in a new terminal window so you can monitor the GPU power draw. Either command will spawn the new terminal window and the original shell will continue running uninterrupted.

$ xterm -wf -T "[nvidia-smi] GPU power consumption" -e "watch -n 1 nvidia-smi" &

or

$ gnome-terminal --command="watch -n 1 nvidia-smi"

Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: bob

79753471

Date: 2025-09-02 12:13:15
Score: 2
Natty:
Report link

This is fake security. Even if it was good security, the fact that it doesn't work with the simulator and that I can't programaticly disconnect the app and sign in with apple on account deletion are major flaws.

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

79753465

Date: 2025-09-02 12:05:13
Score: 1.5
Natty:
Report link

Solution :

delete /node_modules and package-lock.json

rm -rf node_modules
rm package-lock.json
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Astergo

79753452

Date: 2025-09-02 11:48:09
Score: 4
Natty: 4
Report link

Is it polling other registers? Try with other register addresses. Maybe you entered the wrong register addresses and/or register definitions (length) etc.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: Muhammed Omer

79753451

Date: 2025-09-02 11:46:09
Score: 0.5
Natty:
Report link

Thanks to the commenters (especially Ted Lyngmo, Ali Nazzal, and jabaa) for their diagnostic help. Their suggestions helped me isolate the problem and find the final solution.

The Root Cause

The core issue was that the MinGW compiler's directory (C:\msys64\mingw64\bin) was not added to the Windows PATH environment variable.

This created a confusing situation with the following symptoms:

  1. The g++ command worked perfectly in the VS Code integrated terminal (which likely adds the compiler to its own PATH for the session).

  2. The command failed with missing DLL errors when run in a standalone Windows Command Prompt (which uses the system's global PATH).

  3. The command failed silently with exit code 1 when run by the VS Code task runner, as the task runner was also using the system's global PATH and couldn't find the necessary DLLs for g++.exe.

The Solution

The problem was solved permanently by adding the MinGW bin directory to the Windows system PATH variable:

  1. Searched for and opened "Edit the system environment variables" in the Windows Start Menu.

  2. Clicked on the "Environment Variables..." button.

  3. Under "System variables", selected the Path variable and clicked "Edit...".

  4. Clicked "New" and added the following path:

    C:\msys64\mingw64\bin
    
    
  5. Clicked "OK" on all windows to save the changes and rebooted the computer.

After rebooting, the VS Code build task now works correctly.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: 안영민

79753449

Date: 2025-09-02 11:45:08
Score: 4
Natty: 5
Report link

can we make some configuration in the routes or the parser

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can we
  • Low reputation (1):
Posted by: Rohit

79753439

Date: 2025-09-02 11:33:05
Score: 2
Natty:
Report link

No, you usually don’t need to reinstall—Conda envs are built for linux-64, not a specific distro.
But if system libraries (glibc, libstdc++, CUDA/MPI) are incompatible, you might hit errors and then need to recreate the env. Test it first; only rebuild if imports fail.

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

79753432

Date: 2025-09-02 11:28:04
Score: 3.5
Natty:
Report link

Problem solved today, Meta should have fix the bug.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jonathan Le Cornichone

79753427

Date: 2025-09-02 11:23:02
Score: 0.5
Natty:
Report link

This isn’t a bug, it’s just how LangGraph works. It runs nodes in supersteps (bulk-synchronous style). Since b and c are started in the same step, the engine waits for both to finish before moving on, which is why b2 doesn’t run until after c completes.

If you want b → b2 to continue right away (without waiting on c), you’ve got two options:

Both approaches avoid the global step barrier that’s currently holding things up.

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

79753420

Date: 2025-09-02 11:18:01
Score: 2
Natty:
Report link

You can clone the source repo, remove all the files from the icons folder that you don't need. Then npm i then npm run icons from repo root and voila.

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

79753411

Date: 2025-09-02 11:07:58
Score: 3.5
Natty:
Report link

Okay - I found the issue. On the UE script, I needed to update the context filter and include WORKFLOW. This seems to have resolved my issue.

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

79753406

Date: 2025-09-02 11:06:58
Score: 3.5
Natty:
Report link

It's been a while here,
But adding my 2 cents for anyone encountering this issue still.

I've been using ACK to create an Aurora-Postgresql DBCluster and attach a DBInstance to it, and I've been getting a very similar error, but for the port setting ("Set database endpoint port number for the DB Cluster."). This led me to think the issue is in the DBCluster spec, but it is actually an issue with the DBInstance spec.

If you have specifications that need to be defined on a cluster level, defining them at the instance level as well will cause this error. So you need to remove the VPC setting (in my case, the port) and other parameters from the DBInstance applied configurations. That's what resolved the issue for me.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): getting a very similar error
  • Low reputation (1):
Posted by: Ran Markovich

79753400

Date: 2025-09-02 11:01:56
Score: 0.5
Natty:
Report link

Problem ocurred because my layout.tsx was in path folder that is in brackets (client) and I placed my error.tsx in the same folder expecting that error page would be shown inside layout.
If I properly understood, because my error.tsx was in path folder in (client), Nextjs. When I moved it one layout higher, it started working. And then i understood that in my situation error.tsx needs it's own layout not inherit it from (client) folder's layout, so i left error.tsx there.

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

79753396

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

I get this issue today.. this happened because we need to register our package and sha1

I do this on development it's worked but in release mode failed

What happened?

That because we need to use different sha1 for debug and releas

So first

So actually u need to create 3 times

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

79753393

Date: 2025-09-02 10:50:54
Score: 2
Natty:
Report link

go to vs code > flask icon to see the tests > it will show info like your project file is disabled, click on it and enable then at bottom right corner a pop up will show asking you to confirm. confirm that and your vs code will now recognize those tests.

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

79753390

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

This worked fro me in firefox

  1. Open the history in the firefox

  2. right client on the website where you want remove the HST

  3. Select forget , Now the site will be accessible

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

79753386

Date: 2025-09-02 10:45:52
Score: 1.5
Natty:
Report link

Yes, nothing should stop you of doing so. You can create singleton instance so that you may avoid instantiating the client over and over (which could be expensive: allocating new resources, sockets and so on).

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

79753382

Date: 2025-09-02 10:42:51
Score: 0.5
Natty:
Report link

@Aytac No need to downgrade version. As manipulateAsync() function is deprecated now but we can apply SaveOptions with the help of saveAsync(options: SaveOptions) function using ImageManipulatorContext in expo-image-manipulator version ~13.1.7 (latest as of today).

As per official documentation We can do something like this -

const imageRef = await ImageManipulator.manipulate(imageUri)
.resize({
    width: 640,
    height: 480,
})
.renderAsync();
const manipResult = await imageRef.saveAsync({
    compress: 0.8,
    format: ImageManipulator.SaveFormat.JPEG,
});
setManipulatedUri(manipResult.uri);

Explanation:

We have to get ImageRef provided by renderAsync() function which will return Promise<ImageRef>.

const imageRef = await ImageManipulator.manipulate(uri).renderAsync();

Now on ImageRef we can apply SaveOptions with the help of saveAsync(options: SaveOptions) function.

const manipulationResult = await imageRef.saveAsync(options: SaveOptions);
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Aytac
  • Low reputation (0.5):
Posted by: codegsaini

79753378

Date: 2025-09-02 10:35:49
Score: 1.5
Natty:
Report link

Quarkus native builds can take time and likely time out if it takes longer than timeout set. You should give it a look to the builder pod log, which is the one in charge to build the Integration (the maven build). There you will see the real status, if it is progressing or if it's stuck in a given phase. You may find more detailed info in the Camel K troubleshooting guide.

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

79753375

Date: 2025-09-02 10:34:49
Score: 5
Natty:
Report link

Thanks a lot you Guys, this helped me.

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

79753370

Date: 2025-09-02 10:25:47
Score: 0.5
Natty:
Report link

so the issue is that Pub/Sub is super strict about schema compatibility, more than plain protobufs. Adding a new enum value breaks forward compatibility because old subscribers might choke on the new integer (like 5) since they don't know what it means.

In protobuf alone, it's fine (just info loss), but Pub/Sub demands both backward and forward compat, so it rejects the change as incompatible.

Yeah, it's a pain if your enums change often, it does make schemas tricky for evolving messages.

Best fix: Switch those enums to strings for now. That way, you can add new "values" without breaking anything, since strings are flexible.

Just define the possible strings in your app code or docs for validation.

If enums are a must, add a new field with the updated enum and deprecate the old one gradually.

Or create a whole new schema (like v2) and migrate topics/subscribers over time.

Avro schemas might be better for this if you can switch, as they handle enum additions with defaults.

Reserved numbers in enums can help plan ahead, but won't fix existing issues.

Check Pub/Sub docs for updates on this, it's a known limitation.

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

79753369

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

Solution Overview:
I needed a way to close the GLFW window from any part of my application. Initially, I tried calling glfwSetWindowShouldClose(window, GLFW_TRUE), but I wasn't sure how to get the correct window pointer into the other screen modules.

What I tried & why it fell short:

What changed:

Result:
Now, I can simply call App::window from any screen and close the window cleanly, improving both readability and maintainability.

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

79753365

Date: 2025-09-02 10:24:45
Score: 8 🚩
Natty: 6
Report link

докажеш шо ти пастер чи шо нишей

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

79753364

Date: 2025-09-02 10:23:45
Score: 3.5
Natty:
Report link

This is not possible through action/filter, you will have to use react for this.

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

79753363

Date: 2025-09-02 10:23:45
Score: 5.5
Natty: 5
Report link

This is very well explained here https://medium.com/@ManBearPigCode/how-to-reverse-a-number-mathematically-97c556626ec6

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mohamed Adam

79753361

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

BTW my extended answer which also includes a reverse geo-location lookup is in this public repository:
https://github.com/MarsFlyer/GPXtools

It uses the the geocoder library and the OpenStreetMap's Nomanatim service. As this is a public facility with throttling, I've also used the ratelimit library.

from geopy.geocoders import Nominatim
from ratelimit import limits, sleep_and_retry

The location address has lots of sub-parts, so the getLocation function tries to reduce duplicated place names. You may want to adjust that to cope with how your local place names are handled.

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

79753351

Date: 2025-09-02 10:17:43
Score: 2
Natty:
Report link

How can I achieve with an ARRAYFORMULA that also the range is increasing as in a drag-downed references? All should increase if there is no "$" sign before them like this:

=COUNTIF(T$2:T2;T2)
=COUNTIF(T$2:T3;T3)
=COUNTIF(T$2:T4;T4)

This

=ARRAYFORMULA(COUNTIF(T$2:T2;T2:T))

Counts as this equivalent drag-down formula:

=COUNTIF(T$2:T2;T2)
=COUNTIF(T$2:T2;T3)
=COUNTIF(T$2:T2;T4)

This one

=ARRAYFORMULA(COUNTIF(T$2:T;T2:T))

Counts as this equivalent drag-down formula:

=COUNTIF(T$2:T;T2)
=COUNTIF(T$2:T;T3)
=COUNTIF(T$2:T;T4)

Any hint is welcome how to increase also the range and achieve the first pattern with ARRAYFORMEL.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): How can I
  • Low reputation (1):
Posted by: Lev

79753346

Date: 2025-09-02 10:14:41
Score: 4
Natty:
Report link

For everyone would like to use connect to FastMCP server but face the same issue on Postman:

You can disconnect the connection and try to reconnect again. This will instantiate a session with valid ID and you can start calling tool from it.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): face the same issue
  • Low reputation (0.5):
Posted by: Hoang Thinh

79753330

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

Try Adding your domain in it. Like this.

res.set_cookie(
    key="SOME_KEY",
    value=cookie_value,
    httponly=True,
    samesite="none",
    path="/",
    max_age=1000,
    expires=COOKIE_EXPIRY_DATE_TIME,
    secure=True,
    domain="example.com", # <-- Add this line
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Milap Shah

79753320

Date: 2025-09-02 09:55:36
Score: 3.5
Natty:
Report link

Flutter version 3.35.1 added 'scrollable' field in NavigationRail.

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

79753314

Date: 2025-09-02 09:51:35
Score: 1
Natty:
Report link
$primary : #121212;
$link: $primary;


// Override global Sass variables from the /utilities folder
@use "bulma/sass/utilities" with (
  $primary: $primary,
  $link: $primary,
);

It is possible now with modular approach.

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

79753306

Date: 2025-09-02 09:38:32
Score: 2.5
Natty:
Report link

I realized https://learn.microsoft.com/en-us/windows/msix/desktop/desktop-to-uwp-behind-the-scenes#common-file-system-operations doesn't say This section applies only to virtualized apps. so I guess this is an intended behavior for mediumIL apps and I'm actually asking an XY question. I'll post a new one.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Agritite

79753304

Date: 2025-09-02 09:38:32
Score: 4
Natty: 4.5
Report link

Sample React Native App which integrate Native Modules(Turbo Modules)

https://github.com/sonalkrkeshri/TurboModuleLocalStorage

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

79753303

Date: 2025-09-02 09:38:32
Score: 3
Natty:
Report link

the error not found means is not detected,

have u clearly define in your route?

go to public_html>routes>web.php

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

79753301

Date: 2025-09-02 09:36:31
Score: 1
Natty:
Report link

I made a package for this :)

You can block users, emails, ip addresses, domain names, cities, states, countries, continents, and regions from using your application, logging in, or registering.

https://github.com/jeremykenedy/laravel-blocker

It is IP-based, not throttling-based.

Reasons:
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • High reputation (-1):
Posted by: jeremykenedy

79753299

Date: 2025-09-02 09:30:29
Score: 2.5
Natty:
Report link

This extension's developent has been paused, a simpler approach has been created to accomplish WinFormsZOrderViewer VS Extension's functionality in a much simpler NuGet

This question and the Issue on the Github page will be closed, the repos will be archived as well.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Luis Miguel Sánchez

79753295

Date: 2025-09-02 09:29:29
Score: 1
Natty:
Report link

The issue stems from Excel's clipboard behavior, which includes hidden intervening columns when copying non-adjacent selections. A simple workaround is to use Excel's "Go To Special" dialog: press F5, click "Special", select "Visible cells only", and then copy. This will ensure only your selected columns are placed on the clipboard for pd.read_clipboard() to read correctly.

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

79753290

Date: 2025-09-02 09:25:28
Score: 0.5
Natty:
Report link

i tried this macro to not use range select. Instead of clicking cells in table, macro clicks below active cell vertically

Sub RefreshAll_LinkClickable_v2()

    Application.ScreenUpdating = False
    ActiveWorkbook.RefreshAll

    Dim ws As Worksheet
    Dim rRng As Range
    Set ws = ActiveSheet
    Set rRng = ws.Range("ControlTable[Borrower]:ControlTable[Agreement], ControlTable[Date of Balance Confirmation], ControlTable[The last related Document]")

    Dim rCell As Range
        For Each rCell In rRng
            Application.SendKeys "{F2}"
            Application.SendKeys "{ENTER}"
        Next rCell

    Application.ScreenUpdating = True
    
End Sub
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: dwqwer

79753286

Date: 2025-09-02 09:16:26
Score: 0.5
Natty:
Report link

I found a method that sender.get_commandArgument() can get the stored value in e.commandArguement. Then use split to get the targeted message.

    function UnlockConfirm(sender, args) {
            var commandArgument = sender.get_commandArgument();
            var parts = commandArgument.split('|');
            var recordNo = parts[2];

            if (No != "") {
                args.set_cancel(!confirm('Confirm to delete record' + No + '?'));     
            } else {
                args.set_cancel(!confirm('Confirm to delete?'));
            }
        } 
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Matthew

79753283

Date: 2025-09-02 09:15:24
Score: 14 🚩
Natty: 4.5
Report link

did you find the answer even i am getting similar issue can you help me ERROR - APIUtil Error when getting the list of roles

org.wso2.carbon.user.core.UserStoreException: Invalid Domain Name

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): did you find the answer
  • RegEx Blacklisted phrase (3): can you help me
  • RegEx Blacklisted phrase (2): even i am
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): i am getting similar issue
  • Starts with a question (0.5): did you find the answer
  • Low reputation (1):
Posted by: Niranjan Vasadi

79753280

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

Using this example Excel-File and copying it's content by strg + c:

Example Excel-File

this python code creates a dataframe out of the clipboard-content:

import pandas as pd

df = pd.read_clipboard(sep=r'\s\s+')

Resulting df:


    a   b   c
0   12  1   4
1   13  1   5
2   14  1   6
3   15  1   7
4   16  1   8
5   17  1   9

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

79753274

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

You can see how to find native libraries in Android Studio by using APK Analyzer over this link. You can also check your libs.versions.toml, as Android Studio warns you about libraries that are not aligned to 16KB.

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Burak Karaduman

79753267

Date: 2025-09-02 08:53:19
Score: 3.5
Natty:
Report link

In my case, I first needed to install and configure the "AWS Toolkit with Amazon Q" extension for Visual Studio.

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Andrii Fast

79753254

Date: 2025-09-02 08:27:14
Score: 1.5
Natty:
Report link

I tried this :

ax = sns.swarmplot(data=df, x="value", y="letter", log_scale=2, hue="type", palette=my_palette, size=6)

collection = ax.collections[0]
offsets = collection.get_offsets()

xy_stars = []
# Select first 15 offset (stars)
i = 0
for (x, y) in offsets:
    if i < 15:
        xy_stars.append([x,y])
        ax.scatter(x - 0.000001, y, s=40, color='#944dff', marker=(5, 1), zorder=100)
    i += 1

x_stars = [xs[0] for xs in xy_stars]

for collection in ax.collections:
    offsets = collection.get_offsets()

    # Removes 'star' scatters
    new_offsets = [offset for offset in offsets if offset[0] not in x_stars]

    # Update offsets collection
    collection.set_offsets(new_offsets)

enter image description here

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

79753244

Date: 2025-09-02 08:17:11
Score: 4
Natty: 4.5
Report link

Sample React Native App which integrate Native Modules(Turbo Modules)

https://github.com/sonalkrkeshri/TurboModuleLocalStorage

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

79753242

Date: 2025-09-02 08:13:11
Score: 2
Natty:
Report link
execute dotnet new packagesprops in the root dir of your solution.

edit Directory.Builds.props and set use central stuff to false.

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

79753239

Date: 2025-09-02 08:11:07
Score: 7 🚩
Natty:
Report link

Did you finally get any directive on this

Reasons:
  • RegEx Blacklisted phrase (3): Did you finally get any
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: ELVIS TATA TANGHANG

79753233

Date: 2025-09-02 08:04:05
Score: 1
Natty:
Report link

this's the solution
how to update assetlinks for two apps

you just need to update the asstlinks.json with your sha256_cert_fingerprints for debug, release, and store, and it'll work well No need to verify from app settings "App info" -> "Open by default" and add verified links It'll be verified automatically with installing the app Android will open the target app according to the prefix in your link

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

79753231

Date: 2025-09-02 08:03:04
Score: 3
Natty:
Report link

If you are using Security/Service Principals (and not SAS or Shared Access Key) to connect to the container then you can do it by using ACLs:

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

79753223

Date: 2025-09-02 07:55:02
Score: 0.5
Natty:
Report link

What you’re seeing means PHP isn’t being executed at all.
Browsers never run PHP. A web server must process your .php file and return plain HTML. If you “open” a .php file directly from disk (e.g., file:///C:/.../index.php) or use a static dev server (like VS Code’s Live Server), the raw PHP is sent to the browser and appears as if it’s “commented out.”

The “Quirks Mode” warning is a separate HTML issue (missing/incorrect doctype). It doesn’t make PHP run or not run.

Fix:

Run with PHP's built-in server:

cd project
php -S localhost:8000

then you can open your project at http://localhost:8000/index.php

Notes:

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

79753202

Date: 2025-09-02 07:28:56
Score: 2
Natty:
Report link

Apna dil kya bara main, bas ghamon ka sahara hu,

Muskurata sab ke saamne, andar se to ashk ka dariya hu.

Jo khwab sajaaye the, unhi mein kahin bichhra hu,

Meer-e-Wafa kehta hai, main khud se bhi hara hu."**

Ya pata haina ies ko Krna

hai

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

79753201

Date: 2025-09-02 07:28:56
Score: 1
Natty:
Report link

This is a common issue with manufacturers implementing aggressive power-saving methods on their devices. The HCI snoop log can help identify why a specific connection was disconnected. In some cases, changing the default settings may resolve this issue.

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

79753199

Date: 2025-09-02 07:27:56
Score: 1
Natty:
Report link

This behavior may be caused by the design of Windows Installer service. All custom action binaries (i.e. the .dll file) are extracted in the user's %temp% location at the very beginning of the installation.

So, during an upgrade the installation process first extracts the new version of your custom action DLL, then it continues with the uninstall of your old product version and during this stage the old version of your custom action DLL binary is extracted again and thus it will overwrite the existing DLL. Afterwards when the new version of your custom action DLL is called it will actually use the old version of the binary.

I think the best solution to avoid this behavior/issue, as @Joshua Okorie suggested too, will be to make sure you rename the binary of your custom action DLL each time you rebuild it. For instance you can try to use a template that include the file version in its name.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Joshua
Posted by: herman.smn

79753187

Date: 2025-09-02 07:13:53
Score: 0.5
Natty:
Report link

If you had plain nested loops in your code both loop variables would be locals in the same method body. This doesn't work and will result in a CS0136 compiler error.

However in your case you have a foreach loop and a second one which is in a closure. This means that the someItem variable of the outer loop is compiled into a closure field while the inner someItem loop-variable is compiled into a local variable. Since they are different kinds of symbols there is no conflict.

Reasons:
  • Whitelisted phrase (-1): in your case
  • No code block (0.5):
  • Low reputation (1):
Posted by: canerkaya

79753169

Date: 2025-09-02 06:57:48
Score: 6 🚩
Natty: 4.5
Report link

i'm getting this error 'Property assignment expected.javascript' in my code

data: [{
        type: "area",
        indexLabelFontSize: 16,
        dataPoints: {{chart_data|safe},}
        }]
    });

how to resolve it?

Reasons:
  • RegEx Blacklisted phrase (1.5): how to resolve it?
  • RegEx Blacklisted phrase (1): i'm getting this error
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Hema

79753161

Date: 2025-09-02 06:50:45
Score: 5.5
Natty: 6.5
Report link

Have you already read this document
https://developer.atlassian.com/cloud/confluence/oauth-2-3lo-apps/#3--make-calls-to-the-api-using-the-access-token

enter image description here

Reasons:
  • Blacklisted phrase (1): this document
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: นิติกร องค์ศิริมงคล

79753156

Date: 2025-09-02 06:46:44
Score: 1
Natty:
Report link

I think the problem occurs because you wrote on memory that you don't own sizeof return how many bits does the datatype takes in memory and since your are given it an int it probably return 4 or 8 according to your system

So I think a fix for your problem will be (Char*)malloc(sizeof(char) * Length + 1)

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

79753149

Date: 2025-09-02 06:41:43
Score: 1.5
Natty:
Report link

Looks like you’ve hit one of those spots where Hamcrest gives you a nice matcher out-of-the-box, but AssertJ doesn’t try to cover it. That’s why Co-Pilot spit out that huge reflection-based helper — technically correct, but way too much boilerplate for what you actually want.

If your goal is just “make sure getters and setters work”, you’ve got a couple of simpler options:

  1. Use a small bean testing library (e.g. OpenPojo or Pojo Tester).
    They integrate fine with JUnit 5 and keep your test short:

    import com.openpojo.validation.ValidatorBuilder;
    import com.openpojo.validation.test.impl.GetterTester;
    import com.openpojo.validation.test.impl.SetterTester;
    import org.junit.jupiter.api.Test;
    
    class GetServiceModelsByDistributionStatusResponseTest {
    
        @Test
        void shouldHaveValidGettersAndSetters() {
            var validator = ValidatorBuilder.create()
                .with(new GetterTester())
                .with(new SetterTester())
                .build();
    
            validator.validate(GetServiceModelsByDistributionStatusResponse.class);
        }
    }
    
    
  2. If it’s just one or two beans, don’t overthink it — write a tiny manual test:

    @Test
    void shouldSetAndGetStatus() {
        var bean = new GetServiceModelsByDistributionStatusResponse();
        bean.setStatus("OK");
        assertThat(bean.getStatus()).isEqualTo("OK");
    }
    
    

So in short:

Would you like me to show you a super minimal reflection-based AssertJ helper (like 20 lines) that you can reuse across all your beans, instead of the giant sample Co-Pilot gave you?

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: PixelCrafter

79753148

Date: 2025-09-02 06:40:42
Score: 0.5
Natty:
Report link

This is because you can only Instantiate a GameObject on unity's main thread and the message you receive calls your handler code on an async thread.

I would recommend looking at the UnityMainThreadDispatcher package to help with this.

A simple but less efficient method to fix this would be to have a bool that is set true in your handler. Then in update function if that bool is true, Instantiate your GameObject.

    void Start()
    {
        EventHandler<MsgHandlerEventArgs> handler = (sender, args) =>
        {
            messageReceived = true;
        };

    // Update is called once per frame
    void Update()
    {
       if(messageReceived)
        // create object 
    }
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user31401452

79753147

Date: 2025-09-02 06:39:41
Score: 4
Natty: 4.5
Report link

Sample React Native App which integrate Native Modules(Turbo Modules)

https://github.com/sonalkrkeshri/TurboModuleLocalStorage

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

79753133

Date: 2025-09-02 06:24:38
Score: 3.5
Natty:
Report link

Please try to change the procedure name. It will definitely work.

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

79753124

Date: 2025-09-02 06:10:34
Score: 0.5
Natty:
Report link

What is the value of innodb_buffer_pool_size? (It should be about 70% of RAM.) How much RAM? What is the typical size of metadata ?

Please provide `SHOW TABLE STATUS LIKE 'invoice';`
`    SELECT  COUNT(*)
        FROM  invoice
        WHERE  issue_date BETWEEN '2025-01-01' AND '2025-07-30'
          AND  customer_id = 20
          AND  status BETWEEN 1 AND 7
          AND  workflow = 1 

Together with

    INDEX(customer_id, workflow, status, issue_date)
    INDEX(customer_id, workflow, issue_date, status)
Reasons:
  • RegEx Blacklisted phrase (2.5): Please provide
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What is the
  • High reputation (-2):
Posted by: Rick James

79753120

Date: 2025-09-02 06:06:33
Score: 0.5
Natty:
Report link

LLMs are built mainly for natural language, not for directly understanding spreadsheets. When you pass a table as text (CSV, Excel copy-paste, etc.), the model just sees a stream of tokens — it doesn’t “know” rows and columns. This often breaks the structure and leads to wrong (or hallucinated) answers.

Better approaches:

General Principle:
Think of it this way:

Best practice is to let each system do what it’s best at, and connect them.

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