79542392

Date: 2025-03-28 21:04:00
Score: 4.5
Natty:
Report link

I ended up implementing an rpy ball spring: https://github.com/RobotLocomotion/drake/compare/master...krish-suresh:drake:ball_spring which is running faster than the linearbushing+ball constraints, unsure why exactly that is the case.

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

79542386

Date: 2025-03-28 20:58:59
Score: 4.5
Natty: 5
Report link

This issue was recently fixed in https://github.com/oracle/odpi/commit/3a578197cae567028bfe9d39e7e05bfc5869c650 and will be released as part of python-oracledb 3.1.0

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

79542385

Date: 2025-03-28 20:57:59
Score: 5
Natty:
Report link

Is there a way to count the number of times a person is scheduled to work at a specific time? I have a calendar in Excel by month, with the employes scheduled at 2 time slots per day, throughout the omonth. and I have tried all versions of countif to return the number of shifts per employee and get no actual data, so I am counting them manually. I have tried the Countifs and it wont work. Is there another formula to help?

=COUNTIFS(A4:N39,"="&TIME(9,0,0),A4:N39,P6)

P6 = the employee name, the month grid is A4:N39.

Help? Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): Is there a way
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Is there a
  • Low reputation (1):
Posted by: Lake Country

79542375

Date: 2025-03-28 20:48:56
Score: 2
Natty:
Report link

This question looks very similar to a topic in the Bitmovin Community: https://community.bitmovin.com/t/bitmovin-player-contains-bitcode-app-store-upload-fails-xcode-16/3570/1

To summarize the relevant information here:

Bitcode support was removed in June 2023 in Player version 3.40.0. Please make sure to use at least 3.40.0, ideally upgrade to the latest (latest is version 3.86.0 as of 28th March 2025).

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

79542374

Date: 2025-03-28 20:47:56
Score: 2.5
Natty:
Report link

Just noting that this also affects Chromium browsers on macOS. Currently reproducing this issue in Brave browser Version 1.76.81 Chromium: 134.0.6998.166 running under macOS 15.3.2.

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

79542373

Date: 2025-03-28 20:47:56
Score: 2.5
Natty:
Report link

Clique em Ctrl+h
Depois deixe marcado na caixa inferior esquerda a opção ""
Find = \n
Replace = ,

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Adriana Luca Cruz

79542370

Date: 2025-03-28 20:44:55
Score: 2.5
Natty:
Report link

I would also recommend checking your security group rules configured in your ECS service. It should allow inbound traffic for HTTP from your ip address range. This was my issue.

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

79542367

Date: 2025-03-28 20:43:55
Score: 3.5
Natty:
Report link

See this example for a flexible job shop with setup time

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

79542365

Date: 2025-03-28 20:42:55
Score: 2
Natty:
Report link

In my case, the error ocurred during build time, in a Next.js application. The command bellow solved the issue.

pnpm approve-builds

Regards,

Reasons:
  • Blacklisted phrase (1): Regards
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Fernando Moro

79542362

Date: 2025-03-28 20:41:55
Score: 1.5
Natty:
Report link

As far as I know, there is no magic and complete way to do so.

However, you may consider making an API using Django and use something else to build an Android app that consumes the API. If you want to stay as close as possible to Python ecosystem, Flask may be a good choice.

Of course, that's way more than converting a Django project to an Android app.

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

79542337

Date: 2025-03-28 20:17:50
Score: 1
Natty:
Report link

I had to save the board state for each move made when Minimax was called and analyze them individually. This allowed me to track the moves and notice that the board state was not being updated correctly. I’ve now resolved the issue. The problem was related to how I was passing my board state (piecesPos). I was retrieving and passing the wrong board state, which caused Minimax to make incorrect or suboptimal moves. Thank you all for your contributions; it is greatly appreciated.

Renaming to piecesPosCopy and using piecesPos

This was getting the actual board state to use when min max is called.

int minMax(List<String> piecesPosCopy, int depth, bool isMaximizing, int alpha, int beta) {
    // Base case: if depth is 0 or the game is over, return the evaluation
    if (depth == 0 || isGameOver(piecesPos)) {
      return evaluateBoard(piecesPos);
    }

    if (isMaximizing) {
      int maxEval = -9999; // Initialize to a very low value
      for (int i = 0; i < piecesPos.length; i++) {
        if (piecesPos[i][0] == "B" || piecesPos[i][0] == "O") {
          List<int> possibleMoves = getPossibleMoves(piecesPos, i);
          for (int move in possibleMoves) {
            // Save the current state
            List<String> saveState = List.from(piecesPos);

            // Make the move
            performMultitakeAnim = false;
            makeMove(piecesPos, i, move);

            // Recursive call
            int eval = minMax(piecesPos, depth - 1, false, alpha, beta);

            // Restore the state
            piecesPos = List.from(saveState);

            // Update maxEval
            maxEval = max(maxEval, eval);
            alpha = max(alpha, eval);

            // Alpha-Beta Pruning
            if (beta <= alpha) {
              break;
            }
          }
        }
      }
      return maxEval;
    } else {
      int minEval = 9999; // Initialize to a very high value
      for (int i = 0; i < piecesPos.length; i++) {
        if (piecesPos[i][0] == "W" || piecesPos[i][0] == "Q") {
          List<int> possibleMoves = getPossibleMoves(piecesPos, i);
          for (int move in possibleMoves) {
            // Save the current state
            List<String> saveState = List.from(piecesPos);

            // Make the move
            performMultitakeAnim = false;
            makeMove(piecesPos, i, move);

            // Recursive call
            int eval = minMax(piecesPos, depth - 1, true, alpha, beta);

            // Restore the state
            piecesPos = List.from(saveState);

            // Update minEval
            minEval = min(minEval, eval);
            beta = min(beta, eval);

            // Alpha-Beta Pruning
            if (beta <= alpha) {
              break;
            }
          }
        }
      }
      return minEval;
    }
  }
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): appreciated
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Franklyn Oreben

79542323

Date: 2025-03-28 20:04:48
Score: 1.5
Natty:
Report link

Tente usar o extract:

SELECT 
    EXTRACT(YEAR FROM date_column) as YEAR,
    EXTRACT(MONTH FROM date_column) AS MONTH
FROM TABLE
    
    
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lucas Silveira

79542322

Date: 2025-03-28 20:03:48
Score: 3
Natty:
Report link

i tried very scenarios and finally i found that is for using index.ts or anything for sorting path

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

79542309

Date: 2025-03-28 19:56:47
Score: 1.5
Natty:
Report link

You must create the app within the power bi report on Power BI Service not the desktop. This ensures the PowerBIIntegration.Refresh() function is embedded in the app.

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

79542301

Date: 2025-03-28 19:53:46
Score: 0.5
Natty:
Report link

For those who might still be experiencing this issue:

This problem mainly occurs for countries or IP addresses that are subject to software sanctions by Google and its subsidiaries.

First, obtain a VPN with an IP address that is not under sanctions. Then delete the ".gradle" folder from the project and also delete the main ".gradle" folder of the system from the following location:

Windows: C:\Users\YOURUSERNAME\.gradle

Linux: ~/.gradle/

After that, connect the VPN and run the project.

It will take a few minutes for Gradle to download, and the project will run correctly.

Good luck!

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

79542297

Date: 2025-03-28 19:51:46
Score: 2.5
Natty:
Report link

i had another variant than the causes mentioned in the issue: i was getting the error in lib A, but the error was that lib B (referenced by lib A) had a wrong "name" in the package.json

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

79542293

Date: 2025-03-28 19:48:45
Score: 1
Natty:
Report link

In my case, I use following format after my domain as https://hashibul.me/sitemap.xml and Waiting to see what is happening . I'm getting same.

content-type:application/xml
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: H Hasan

79542283

Date: 2025-03-28 19:43:44
Score: 4
Natty: 4
Report link

idk what this is, i cant read it:

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

79542282

Date: 2025-03-28 19:42:43
Score: 1
Natty:
Report link
from solders.pubkey import Pubkey

you can try this one

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: superstar

79542278

Date: 2025-03-28 19:40:43
Score: 0.5
Natty:
Report link

I found the best method by comparing for subsequent characters or letters, all other methods did not really work, if the differences in the string length were too big.

I had the situation in ComfyUI to find a lora by it's name, which was extracted from an images metadata and which had to be compared against a list of installed lora's. The main difficulty is, that the locally installed loras are all modified in their names, so that the names are still similar, but not matching.

A method like "Jaccard similarity" or other quantizations did not work and gave sometimes even results for completely different names, but where the amount of matching characters was even better, than the correct name.

So I've wrote a method, to compare two strings for subsequent characters. To make it a bit more complicated: the lora names to find are in a list, to compare with another list containing the locally installed loras. The best matches will the be stored in a dict.

# get a list of loras
model_list = folder_paths.get_filename_list("loras")
loras = {}
for lora in lora_list:
    similarity = 0
    # clean the string up from everything not ordinary 
    # and set it to lowercase
    lora_name = os.path.splitext(os.path.split(str(lora).lower())[1])[0]
    lora_name = re.sub('\W+',' ', lora_name.replace("lora", "").replace("  ", " ")).strip()

    for item in model_list:
        # clean the string and set it to lowercase
        item_name = re.sub('\W+',' ', os.path.splitext(os.path.split(item.lower())[1])[0]).strip()
        # get the shorter string first

        n1, n2 = (item_name, lora_name) if len(lora_name) > len(item_name) else (lora_name, item_name)
        set0 = (set(n1) & set(n2)) # build a set for same chars in both strings

        n1_word = ""
        n1_size = 0 # substring size
        n1_sum = 0 # similarity counter

        # check for subsequent characters
        for letter in n1:
            if letter in set0: # if it exists in both strings ...
                # reassemble parts of the string
                n1_word += letter
                if n2.find(n1_word) > -1: # check for existence
                    n1_size += 1 # increase size
                else: # end of similarity
                    if n1_size > 1: # if 2 or more were found before
                        n1_sum += n1_size

                    # reset for next iteration
                    n1_size = 1 
                    n1_word = letter
            else: # does not exist in both strings
                # end of similarity
                if n1_size > 1: 
                    n1_sum += n1_size # if 2 or more were found before

                # prepare for next new letter
                n1_size = 0
                n1_word = ""
        if n1_size > 1: # if 2 or more were found at last
            n1_sum += n1_size

        # get score related to the first (shorter) strings length
        n1_score = float(n1_sum / len(n1))

        if n1_score > similarity:
            similarity = n1_score
            best_match = [item,]
    best_match = best_match[0]
    loras.update({best_match: lora_list[lora]})

So this gives me the best result and fails only, if there is really no locally installed lora with the characteristics of the description in the base list.

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

79542270

Date: 2025-03-28 19:33:41
Score: 3
Natty:
Report link

LogLayer is an abstraction layer over many Javascript / Typescript loggers. You can even use multiple loggers like Pino and Winston together, or even cloud providers like DataDog.

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

79542266

Date: 2025-03-28 19:32:41
Score: 2
Natty:
Report link

They're different because GetWindowText() gives you the TitleBar text of the window, whereas GetWindowModuleFileName() gives you the path to the executable that's running the window.

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

79542265

Date: 2025-03-28 19:31:40
Score: 3
Natty:
Report link

just install version 0.14.1 and every things work like a charm

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

79542263

Date: 2025-03-28 19:30:40
Score: 3.5
Natty:
Report link

We did something like this to make it work
https://github.com/cocoindex-io/cocoindex/pull/224/files

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

79542258

Date: 2025-03-28 19:27:40
Score: 1
Natty:
Report link

Solution in Powershell based on the solution of @svick:

$titleOrig = 'File:Tour Eiffel Wikimedia Commons.jpg'
$pref = 'https://upload.wikimedia.org/wikipedia/commons/thumb'
$thumbSize = 200
$title = $titleOrig.Substring(5) -replace ' ','_'
$hash = ([System.BitConverter]::ToString($md5.ComputeHash($utf8.GetBytes($title)))).replace("-","").ToLower()
$pref,$hash.Substring(0,1),$hash.Substring(0,2),$title,"${thumbSize}px-$title" -join '/'
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @svick
  • Low reputation (0.5):
Posted by: Podbrushkin

79542248

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

This allowed me to display the list without warnings

<View style={{ minHeight: 2, height: "100%" }}>
      <FlashList
        ...
      />
</View>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Daniel

79542247

Date: 2025-03-28 19:18:37
Score: 6.5
Natty: 7
Report link

Same problem whit xiaomi andorid 11, any update?

Reasons:
  • RegEx Blacklisted phrase (1): Same problem
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Adrian De Seta

79542244

Date: 2025-03-28 19:17:37
Score: 1
Natty:
Report link

Update:

Turns out this had nothing to do with CORS or with Angular's management of credentials - it had to do with Angular's lifecycle. See - I was calling CheckAuthStatus (a function that sends an httpClient request to and endpoint in my backend that expects a jwt token in an httpOnly cookie), from app.component.ts inside of an ngOnInit().

Apparently, even though I was subscribing to the observable returned from that function, angular doesn't check (likely because it can't as its an httpOnly cookie) that the credentials have been bound to the request by the browser before sending the request.

I figured this out by manually adding a button that calls checkAuthStatus, and the credentials came through! Leading me to the conclusion that it was a timing problem, rather than a configuration one.

TLDR: If you call a function in ngOnInit() without allowing time for angular/the browser to load, all credentials you send will send as null - as nothing is bound. Simply set a setTimeout or rxjs delay - and you're golden.

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

79542230

Date: 2025-03-28 19:10:35
Score: 9 🚩
Natty: 6
Report link

I am facing issue to connect and post on Facebook pages which are added under business portfolio, as I don’t have business _management advance access approved.

If there any way to do without that permission ? Can someone help me to get advance access approval if that must require?

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I am facing issue
  • RegEx Blacklisted phrase (3): Can someone help me
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Vishal Patel

79542213

Date: 2025-03-28 18:54:31
Score: 1.5
Natty:
Report link

File.Move(Path.Combine(uploadsPath, file.FileName), Path.Combine(uploadsPath, "NewFileName"));

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

79542202

Date: 2025-03-28 18:46:30
Score: 0.5
Natty:
Report link
using UnityEngine;

public class newmonoBehaviour : MonoBehaviour
{
public float rotationspeed;
public GameObject onCollectEffect;
    // Start is called once before the first execution of Update after the MonoBehaviour is created
    void Start()
    {
        
    }

    // Update is called once per frame
    void Update()
    {
    transform.rotate(0, rotationspeed, 0);
        
    }
    private void OnTriggerEnter(Collider other) { 
    if (other.CompareTag("Player")) {
 
}
       // Destroy the collectible
       Destroy(gameObject);
       // instantiate the particle effect
Instantiate(onCollectEffect, transform.position, transform.rotation);
}
  }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30096257

79542199

Date: 2025-03-28 18:46:30
Score: 2.5
Natty:
Report link

Yes, as far as I know JNI is still the only option to call a Java method from C. There are no alternatives currently in Project Panama for calling Java from native C.

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

79542189

Date: 2025-03-28 18:40:29
Score: 3.5
Natty:
Report link

When i was getting this increasing the buffer fixed my issue.

Despite for clear errors in the exception log stating that.

DataBufferLimitException: Exceeded limit on max bytes to buffer webflux error

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

79542188

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

From my point of view is the variable content of $sDSN not passed as an argument to function odbc_connect.

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

79542179

Date: 2025-03-28 18:34:28
Score: 1
Natty:
Report link

Use magic method :

from enum import StrEnum, auto


class Color(StrEnum):
    RED = auto()
    GREEN = auto()
    BLUE = auto()

    @classmethod
    def __iter__(cls):
        return iter(cls.__members__.values())
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: jojo

79542178

Date: 2025-03-28 18:34:28
Score: 0.5
Natty:
Report link

Well, following the advice of everyone who answered my question, I think I've managed to solve the problem.

1-Creating pointers in the constructor and destroying them in the structure's destructor was definitely a very bad idea. It was causing most of the problem.

2-Casting using a type that is not of a fixed size also turned out to be a serious mistake.

3-I also remove the MyMemcpy function and am no longer trying to copy the entire structure (just its members).

4-Add a byte of size to the array to fit the end-of-string character '\0'

5-Use sizeoff only with fixed-size types

6- Kenny's page was a great help --> (recommended) https://godbolt.org/

7-Well, all the comments were really helpful. Thank you all so much, guys.

And now I'm ready to start serializing.

The fixed code below:


//-----------------------------------------------------------------------------
// 
//-----------------------------------------------------------------------------
#include <iostream>
#include <cstring>
#include <cstdint>
//-----------------------------------------------------------------------------
// CL /EHsc /std:c++20 Test.cpp
//-----------------------------------------------------------------------------
struct Test
{
    uint8_t *A = nullptr;
    uint8_t *B = nullptr; 
};

//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
int main(int argc, char **argv)
{
    Test *test1 = new Test;
    Test *test2 = new Test;
    Test *test3 = new Test;
    Test *test4 = new Test; 

    test1->A = new uint8_t[ 2 ];
    test1->B = new uint8_t[ 2 ];

    test2->A = new uint8_t[ 2 ];
    test2->B = new uint8_t[ 2 ];   

    test3->A = new uint8_t[ 2 ];
    test3->B = new uint8_t[ 2 ];

    test4->A = new uint8_t[ 2 ];
    test4->B = new uint8_t[ 2 ];


       
    if( memcpy( (void*)test2->A, (const void *) test1->A, sizeof(uint8_t) )  == nullptr)
    {
        std::cout<<"memcpy() -> ERROR = "<<std::endl;
        exit(EXIT_FAILURE);
    }
    
     if( memmove( (void*)test2->A, (const void *) test1->A, sizeof(uint8_t) )  == nullptr)
    {
        std::cout<<" memmove() -> ERROR = "<<std::endl;
        exit(EXIT_FAILURE);
    } 
    
    if( memmove( (void*)test4->A, (const void *) test1->A, sizeof(uint8_t))  == nullptr)
    {
        std::cout<<"memmove() -> ERROR = "<<std::endl;
        exit(EXIT_FAILURE);
    }   


    printf("%p  %p\n", test1->A ,   test1->B);
    printf("%p  %p\n", test2->A ,   test2->B);
    printf("%p  %p\n", test3->A ,   test3->B);  
    printf("%p  %p\n", test4->A ,   test4->B);


    delete test1->A;
    delete test1->B;

    delete test2->A;
    delete test2->B;   

    delete test3->A;
    delete test3->B;

    delete test4->A;
    delete  test4->B; 

    delete test1;
    delete test2;
    delete test3;
    delete test4;    
 
    exit(EXIT_SUCCESS);
    return 0;
}



Program returned: 0
Program stdout
0x26590330  0x26590350
0x26590370  0x26590390
0x265903b0  0x265903d0
0x265903f0  0x26590410

Note: I tagged the post with "C." It was later edited by a moderator, who changed the tag to C++... He'll know what he's doing. So don't make a mountain out of a grain of sand.


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

79542169

Date: 2025-03-28 18:27:26
Score: 3
Natty:
Report link

Getting Tag 8A 3936 translates to 96 which is "System Error" in Credit/Debit Card transaction which is due to the problem in the processing network.

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

79542167

Date: 2025-03-28 18:26:26
Score: 2
Natty:
Report link

It seems that the best approach to this is to achieve it via the data or a file based approach.
https://git-scm.com/book/en/v2/Git-Internals-Plumbing-and-Porcelain
I won't record the details here as I don't really know what I'm talking about, and I'm still little the wiser, so it won't help anyone for me to mislead them with the details of my answer.

In essence I've tried to make essentially deleting stuff a less naive and therefor more acceptable solution than it would have been when I first posed the question.

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

79542164

Date: 2025-03-28 18:26:26
Score: 2
Natty:
Report link

Go to Help -> Reset Settings -> Reset User Preferences and Workspace Configuration -> Apply and Restart.

Because Due to some system configurations after reseting the dbeaver and restart has worked for me

enter image description here

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

79542163

Date: 2025-03-28 18:25:26
Score: 2
Natty:
Report link

I believe it's a bug in the Copy Activity. I've also suffered the same surprise and tried to narrow it down to the different use cases I had. I also found a workaround that stops the duplication very easily, which I've described here : https://www.mattiasdesmet.be/2025/03/28/fabric-hidden-collection-reference-in-copy-activity/

Hope it helps!

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Contains signature (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mattias

79542156

Date: 2025-03-28 18:23:25
Score: 1.5
Natty:
Report link

I was able to fix the issue using the following commands:

npm install -g increase-memory-limit
increase-memory-limit
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Josh

79542154

Date: 2025-03-28 18:21:25
Score: 1.5
Natty:
Report link

I encountered a problem because I have multiple keys, and I have to name each one.

Check this Azure doc resource: https://learn.microsoft.com/en-us/azure/devops/repos/git/use-ssh-keys-to-authenticate?view=azure-devops#q-how-can-i-use-a-nondefault-key-location-that-is-not-sshid_rsa-and-sshid_rsapub

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

79542148

Date: 2025-03-28 18:19:24
Score: 3.5
Natty:
Report link

Telegram: @exxxod1a,
i found the solution. (Double shadow root (closed))

Reasons:
  • Whitelisted phrase (-2): i found the solution
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @exxxod1a
  • Low reputation (1):
Posted by: Exxxod1a

79542146

Date: 2025-03-28 18:17:24
Score: 1
Natty:
Report link

You have to send the whole tokenizationData.token over to monext in the authorization request. The API accepts a card object and part of the card object is the paymentData object. See the below link for more information:

https://docs.monext.fr/display/DT/Object+-+paymentData

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

79542143

Date: 2025-03-28 18:15:23
Score: 3.5
Natty:
Report link

This was caused by the conditional rendering of the CameraView. Upgrading to the latest version patched this issue.

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

79542136

Date: 2025-03-28 18:11:22
Score: 1.5
Natty:
Report link

My solution was to use

target_link_options(${TARGET_NAME} PRIVATE "/PDBALTPATH:$<TARGET_PROPERTY:${TARGET_NAME},NAME>.pdb")

To specify the link options on the target to use the full path to the pdb file.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: T. Cash

79542127

Date: 2025-03-28 18:07:22
Score: 0.5
Natty:
Report link

Reason:

It turns out that this issue was happening due to a missing SSL binding for that port as I am trying to use "https".

Confirm the missing of binding using netsh:

Running netsh command to show the current bindings did not show anything for the port 20001

netsh http show sslcert

Fix the binding:

To fix this we need to do the following:

Running the following command in a command prompt (with administrative privileges) creates a new Self signed Cert (if it does not exist already) and binds the localhost port 20001 to that cert.

> cd "C:\Program Files (x86)\IIS Express"
> IisExpressAdminCmd.exe setupsslUrl -url:https://localhost:20001/ -UseSelfSigned

Explanation:

The IIS Express folder is generally located inside the program files (x86) folder even in windows 11. Inside the IIS Express folder, we have many utilities such as the IisExpressAdminCmd that accepts a param called "setupsslUrl", which further requires an url param and a cert param. In the above case, for the url, I have specified https://localhost:2001 and the cert is a self-signed cert.

In my case, I already had the IIS Express Cert in the "Trusted Root Certificates" section in the windows certificate manager (certmgr). So running the command created a new binding with that cert to port 20001.

Confirmation of the changes:

I confirmed it by running a netsh command in a command prompt (with administrative privileges).

netsh http show sslcert

the output showed:

Output from netsh command

Then I opened the certificate manager (certmgr.msc or msc.exe)

enter image description here

Running the site:

After that I ran the C# project from Visual Studio 2022 and it did not give me an error and the web site loaded correctly.

enter image description here

Reasons:
  • Blacklisted phrase (1): I am trying to
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Shahriar chandon

79542123

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

I have just quick tested your settings. Created new canvas with one image filling the screen second image with rect tr. top and bottom on 450 and copying rest of what you have and the result is that gamemode UI perfectly matches the scene view one. Only difference I see that your canvas Rect Transform have scale 0,51 The scale could be problem I remember first time fiddling out with UI and changing canvas size but here if I change it manually to 0,51 I still have correct result. But I also see that you have height to 974,31 and if I change that, then the stripe will become uneven. I just dont understand how it got messed up when you have correctly Screen Space Overlay

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

79542109

Date: 2025-03-28 17:57:19
Score: 6.5 🚩
Natty: 4
Report link

Did you ever figure this out? The only reply you got makes zero sense, and I also cannot figure out how to just select the user from the trigger in the response part of the workflow.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever figure this out
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Valerie Quevedo

79542099

Date: 2025-03-28 17:51:17
Score: 0.5
Natty:
Report link

When unsure, I recommend looking at well known open source applications that have the functionality that you wish to make. As an example Air is a well known process spawner that monitors for file changes and restarts applications on change. They implement the start and kill process like this:

func (e *Engine) killCmd(cmd *exec.Cmd) (pid int, err error) {
    pid = cmd.Process.Pid
    // https://stackoverflow.com/a/44551450
    kill := exec.Command("TASKKILL", "/T", "/F", "/PID", strconv.Itoa(pid))

    if e.config.Build.SendInterrupt {
        if err = kill.Run(); err != nil {
            return
        }
        time.Sleep(e.config.killDelay())
    }
    err = kill.Run()
    // Wait releases any resources associated with the Process.
    _, _ = cmd.Process.Wait()
    return pid, err
}

func (e *Engine) startCmd(cmd string) (*exec.Cmd, io.ReadCloser, io.ReadCloser, error) {
    var err error

    if !strings.Contains(cmd, ".exe") {
        e.runnerLog("CMD will not recognize non .exe file for execution, path: %s", cmd)
    }
    c := exec.Command("powershell", cmd)
    stderr, err := c.StderrPipe()
    if err != nil {
        return nil, nil, nil, err
    }
    stdout, err := c.StdoutPipe()
    if err != nil {
        return nil, nil, nil, err
    }

    c.Stdout = os.Stdout
    c.Stderr = os.Stderr

    err = c.Start()
    if err != nil {
        return nil, nil, nil, err
    }
    return c, stdout, stderr, err
}

You can find the repo here

They also reference another stack overflow post as to why they use this specific method.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: mpmcintyre

79542098

Date: 2025-03-28 17:50:17
Score: 3.5
Natty:
Report link

Solved (Sort of) Newest SDK does not work

https://checkoutshopper-live.cdn.adyen.com/checkoutshopper/sdk/6.9.0/adyen.js

Old DOES work

https://checkoutshopper-test.adyen.com/checkoutshopper/sdk/5.68.0/adyen.js

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

79542096

Date: 2025-03-28 17:50:17
Score: 1
Natty:
Report link

I was lucky to meet this problem in small project. It contained a long string (JS function) written in my code as

s:='...'#13#10+

'...'#13#10+

... - dozen or two lines unable to accept breakpoint. Solution was to teplace the code with Tfile.readalltext('Jawasctipt.txt'). I suppose my Delphi11.3 to use DWARF not strong enough to resist such stupidity - it provided address in random place not far before start of demanded breakpoint line implementing code (sometimes I observed an access violations in previous line)

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

79542089

Date: 2025-03-28 17:46:16
Score: 1
Natty:
Report link
# 1. Tap mongodb with brew
brew tap mongodb/brew

# 2. Update brew
brew update

# 3. Install mongodb community version
brew install [email protected]

# 4. Run mongodb in the background
brew services start [email protected]

# 5. Verify mongodb is running in background
brew services list
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ashutosh patil

79542084

Date: 2025-03-28 17:43:16
Score: 1.5
Natty:
Report link

added

    - name: Update package list
      apt:
        update_cache: yes


    - name: install google sdk
      apt:
        name: "google-cloud-sdk"
        install_recommends: no
        state: present
      register: result
      until: result is not failed
      retries: 5
      delay: 5
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Deepak

79542081

Date: 2025-03-28 17:43:16
Score: 2
Natty:
Report link

As Rudiger suggested, the answer is straightforward.

Instead of using repo.getBranch() to get the branch name, use repo.getFullBranch() to get it.

The full-branch version returns a string "refs/heads/[branchname]" if we're on a branch, or a raw SHA-1 if we are not.

Confirmed, tested, and pushed.

Thanks!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: GeePawHill

79542069

Date: 2025-03-28 17:36:14
Score: 2
Natty:
Report link

In my case, I was able to get rid of the error by upgrading my spark version from 3.3.1 to 3.4.0

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

79542061

Date: 2025-03-28 17:32:13
Score: 3.5
Natty:
Report link

Так происходит, когда вы загружаете таблицу в Power Pivot из Power Query, а затем переименовываете запрос в Power Query. При передаче таблиц из Query в Pivot автоматически создаются подключения. Их можно у видеть там же, где и подключения к внешним данным. Когда вы переименовываете запрос в Query и затем снова загружаете таблицу в Pivot, создается новое подключение с новым именем, но старое не удаляется автоматически, именно оно и не дает удалить старую таблицу из Pivot. Чтобы легко удалить таблицу из Power Pivot, нужно сначала удалить ее подключение из списка подключений (на вкладке Данные).

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: Настя М

79542044

Date: 2025-03-28 17:23:12
Score: 3
Natty:
Report link

Disabling the Grammarly extension from Chrome helped me solve this problem. Maybe some extension is messing. Try disabling your extensions one by one

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

79542041

Date: 2025-03-28 17:23:12
Score: 2
Natty:
Report link

I know this is old, but I ran across the issue and found a simpler solution. However, it is possible that the fix was something added to astropy since this discussion. My solution was to put the URL in the parse line:

from astropy.io.votable import parse

tab=parse(url)

cat=Table.read(tab,format='votable')

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

79542030

Date: 2025-03-28 17:14:10
Score: 2
Natty:
Report link

I fixed this issue by turning Remote Tunnel Access OFF in Visual Studio Code, which apparently affects Visual Studio as well.

enter image description here

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: tonycdp

79542024

Date: 2025-03-28 17:11:09
Score: 2.5
Natty:
Report link

If you're targeting anything about React Native 0.76.x you'll need to ensure that within the MainActivity.kt there's this SoLoader configuration, listed in the release notes: https://reactnative.dev/blog/2024/10/23/release-0.76-new-architecture#android-apps-are-38mb-smaller-thanks-to-native-library-merging

I was having the same issue, but this resolved the issue where the libhermes_executor.so wasn't found.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: cdanwards

79542019

Date: 2025-03-28 17:10:09
Score: 1.5
Natty:
Report link

In my experience, removing \centering reduces vertical margins. The image is not as centered as before although the horizontal shift is small due to the image allowed space. So check if you are fine with the new position.

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

79542016

Date: 2025-03-28 17:08:08
Score: 4
Natty:
Report link

Newer versions require the provider as per the PrimeNg Docs https://primeng.org/installation#provider

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

79542006

Date: 2025-03-28 17:04:07
Score: 1.5
Natty:
Report link

Kindly check with given regex hopefully it should work

dateString = dateString.replace(/\b0(\d)\b/g, '$1');
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: jaydeep chauhan

79542004

Date: 2025-03-28 17:04:07
Score: 2.5
Natty:
Report link

This also happens if you're behind a corporate proxy, and you then temporarily turn on Remote Tunnel Access.

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

79541995

Date: 2025-03-28 17:02:06
Score: 1
Natty:
Report link

You can manually control the movement if needed, it is defined under specification on Manual Control.

However, in AnyLogic transporters only move "forward". If you want to rotate the animation only by 180 degrees just for the purpose of presentation, you can rotate only the presentation items; no need to have it really go backwards. I have done this before with trucks; when they go in reverse it is still just a normal movement from A->B, however I rotate the 3D object so that it looks like it is in reverse.

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

79541992

Date: 2025-03-28 17:01:06
Score: 0.5
Natty:
Report link

As far as I understand you need to create a calendar subscription using a webcal:// link, simply adding a file won't result in further fetches from the calendar application.

For example see webcal://www.detroitlions.com/api/addToCalendar/ag/d .

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

79541987

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

A large number of answers involve removing access controls that are intended to prevent remote users from using the included management pages to reconfigure your server, which could be dangerous if your server is exposed to untrusted networks such as the Internet and if you haven't removed those management pages.

There are multiple pages in the Wampserver's documentation and forum that suggest you should be setting up new virtual hosts for your web applications instead:

enter image description here

Consider using the built-in tools to set up a new virtual host for your server's IP/hostname/FQDN, and those virtual hosts can have more permissive access controls.

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

79541969

Date: 2025-03-28 16:50:04
Score: 0.5
Natty:
Report link

This can be done using the ModelReaderWriter type or using System.Text.Json with the JsonModelConverter registered.

An example of both approaches can be found in System.ClientModel-based ModelReaderWriter samples.

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

79541967

Date: 2025-03-28 16:48:04
Score: 1
Natty:
Report link

Like others have answered, it seems to be due to memory and CPU exhaustion.

If you use mongoosejs, set the maxPoolSize to something lower; 10 did it for me.

mongoose.createConnection(url, {
  dbName,
  maxPoolSize
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Joachim Amoah

79541951

Date: 2025-03-28 16:39:02
Score: 5
Natty: 4.5
Report link

How did an entire file get converted to angular-material.min.js? I cant even open files that have been renamed/converted. What is going on?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How did an
  • Low reputation (1):
Posted by: James Walker

79541947

Date: 2025-03-28 16:38:01
Score: 2.5
Natty:
Report link

Se que esta es una pregunta antigua, pero la mejor forma de saber que versiones de Net. Framework tienes instaladas, es revisando las llaves de registro. Puedes usar el siguiente comando de PowerShell:

Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' -Recurse | Get-ItemProperty -Name version -EA 0 | Where { $_.PSChildName -Match '^(?!S)\p{L}'} | Select PSChildName, version

Como indicaron otros, usar la estructura de carpetas en C:\Windows\Microsoft.NET no es un buen método, ya que todas las versiones de 4.x usan la carpeta 4.0 como base

Reasons:
  • Blacklisted phrase (1): todas
  • Blacklisted phrase (2): pregunta
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Olivier López Ch

79541943

Date: 2025-03-28 16:34:01
Score: 0.5
Natty:
Report link

In Java things like this can happen easily. From what I know, there might be two main reasons for your problem:

Similar Questions that might give you a clue:

How to detect encoding mismatch

How to handle jackson deserialization error for all kinds of data mismatch in spring boot

Deserialization of JSON, Mismatch

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

79541939

Date: 2025-03-28 16:33:00
Score: 4
Natty: 5
Report link

I tried this and it actually work. thanks

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

79541938

Date: 2025-03-28 16:33:00
Score: 2.5
Natty:
Report link

All the answers are good, but I suggest to do a custom Run Script in Build Phases to change dynamically the Bundle Identifier name. Is more difficult, but its the answer for some cases like copy GoogleServices-Info.plist if you are using flavors (change flavor instead of environment)

Link: https://medium.com/@m1nori/googleservice-info-plist-file-with-flavors-ios-firebas-edae5fb8e81d

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Gustavo Méndez

79541936

Date: 2025-03-28 16:32:00
Score: 2
Natty:
Report link

getpwuid($<) returns an array with user specific information, of which you are looking for the first element, which is the user name.

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

79541929

Date: 2025-03-28 16:27:59
Score: 2
Natty:
Report link

FYI: I'm the author of this project.

I've made a CLI to run sonarlint-ls without any server here:

https://github.com/vincentfenet/sonarlint-ls-cli

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

79541923

Date: 2025-03-28 16:21:58
Score: 0.5
Natty:
Report link

Just like Jay mentioned, you need to check that all the permissions on the DB account are setup correctly. I found the solution on the documents from MS Learn.

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

79541905

Date: 2025-03-28 16:10:55
Score: 3.5
Natty:
Report link

PyQt5 5.15.10 adds native support for macOS ARM.

Released: Oct 14, 2023

https://pypi.org/project/PyQt5/5.15.10/#files

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

79541904

Date: 2025-03-28 16:10:55
Score: 3.5
Natty:
Report link

open db2cmd

rerun your catalog commands

db2 catalog tcpip node <devNodeNameXYZ> remote <db_server_IP_address> server <portNumber> REMOTE_INSTANCE DB2

db2 catalog database <nameofDB> at node <devNodeNameXYZ>

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

79541897

Date: 2025-03-28 16:07:55
Score: 2
Natty:
Report link

I'd suggest running a yarn tsc then yarn --cwd packages/backend build to see if the build works locally first. This should give you more detailed errors.

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

79541892

Date: 2025-03-28 16:05:54
Score: 3
Natty:
Report link

That's an annoying restriction in Postgres, why there are so many ppl doubting the table names

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

79541887

Date: 2025-03-28 16:04:54
Score: 4.5
Natty: 5
Report link

Thank you, it was great solution

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: venkat prasad Juntipally

79541878

Date: 2025-03-28 16:02:53
Score: 1
Natty:
Report link

We had the same issue trying to use an account with MFA disabled (it's a service account used for setting up gateways which require MFA disabled, but that's another story) but where the tenant conditional access policy says MFA is required.

To confirm this is your issue, go to Entra and look for the sign-in logs for the user: this will tell you whether MFA was used/required.

To resolve: add the service account to the exclusions within MS Entra | Conditional Access | Overview | Policies

https://learn.microsoft.com/en-us/entra/id-governance/conditional-access-exclusion

enter image description here

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

79541870

Date: 2025-03-28 15:58:52
Score: 2.5
Natty:
Report link

Try putting a time delay before executing

m_DBConnection.ExecuteNonQuery(strQuery);

It could be that the value did not get written to the tbTestResults.AbortComment column.

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

79541866

Date: 2025-03-28 15:57:52
Score: 1.5
Natty:
Report link

For me work the command:

% sudo chmod 777 /var/run/docker.sock

And then run the commands that AWS indicates on its ECR page.

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

79541864

Date: 2025-03-28 15:57:52
Score: 2.5
Natty:
Report link

For me:
apt install --reinstall libllvm15
solved the problem

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

79541862

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

Running into this same problem as I have objects structured with different top levels objects but within each object I have different paths for month/day combinations.

Ex:

s3://Account/02_2025/KEEP

s3://Account/02_2025/DELETE

s3://Account/05_2025/KEEP

s3://Account/05_2025/DELETE

...

s3://Case/02_2025/Keep

Wondering if you had solved your initial issue.

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

79541849

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

I finally fixed it and it works now.

In my project file, there is an ItemGroup that contains this:

<PackageReference Include="Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter" Version="9.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="9.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.3">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  <Publish>true</Publish>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.0">
  <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  <PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="9.0.0" />

What is shown here is what works. What DID NOT work was that in this section the package reference for Microsoft.VisualStudio.Web.CodeGeneration.Design said version 9.0.0. But, all the other package references said version 9.0.3.

In the NuGet package manager it showed all my packages as being up to date - including Microsoft.VisualStudio.Web.CodeGeneration.Design with 9.0.0 being the latest available for it.

I manually edited the csproj file and changed all the references that said 9.0.3 to 9.0.0 and then it started working again.

Reasons:
  • Blacklisted phrase (1): DID NOT work
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: StuartV

79541844

Date: 2025-03-28 15:45:49
Score: 1
Natty:
Report link

will I be billed for CPU time while waiting on that external API

Yes.

The CPU is not actively being used, so it would make sense if I was not billed

You are billed for as long as a function is in the middle of invocation, from the time it starts to the time it returns a response. The busy-ness of the CPU is never the issue - what matters is that the CPU is allocated and available to perform work during an invocation. The only time you are not billed for CPU on a given server instance is if there are no active requests for that instance (eventually allowing it to scale down).

Gen 2 functions improve on this by allowing multiple concurrent requests, so that they all share the same total billing time. You will want to read this documentation to better understand how it works. Specifically:

When setting concurrency higher than one request at a time, multiple requests can share the allocated CPU and memory of an instance.

See also:

Reasons:
  • Blacklisted phrase (1): this document
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: Doug Stevenson

79541828

Date: 2025-03-28 15:37:48
Score: 2.5
Natty:
Report link

I managed to get the user's email address using the user.fields argument as follows:

https://api.x.com/2/users/me?user.fields=confirmed_email

This however only returns the email if the user has confirmed it on twitter. See the link below for more fields that you can query for.

https://docs.x.com/x-api/users/user-lookup-me

Reasons:
  • Blacklisted phrase (1): the link below
  • RegEx Blacklisted phrase (1): See the link
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Cyrusville

79541825

Date: 2025-03-28 15:35:47
Score: 4.5
Natty: 6
Report link

Follow the instructions here in the link below:

https://www.jetbrains.com/help/pycharm/2024.3/working-with-the-ide-features-from-command-line.html?Working_with_the_IDE_Features_from_Command_Line

Reasons:
  • Blacklisted phrase (1): the link below
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Debojyoti Chatterjee

79541822

Date: 2025-03-28 15:34:46
Score: 4
Natty:
Report link

You're on the right track. I do a ton of this in my day job as an AWS TAM for an MSP**

RE: Reduce delay in cost awareness**: Teams should know about unexpected costs as soon as possible.

AWS Budgets allows gives you a few options here. You can not only set up spend-based alert thresholds, which could go to your email address, but I would use a distro. There are also some newer AI-oriented anomaly detection functions also.

RE: Identify wasted resources easily: Instead of playing a guessing game, we should pinpoint which resources are consuming costs unnecessarily.

Two options jump out at me here:
#1 The AWS Trusted Advisor report. This is an in-depth spreadsheet sent out to clients with enterprise-grade support levels, meaning partner-led support with a 3rd party accredited support provider, AWS OnRamp, or AWS Enterprise-level support tiers.

This report tells you exactly which servers are grossly oversized and other components that could be optimized, archived, or downscaled to save money.

#2 There's a module for an opensource tool called PowerPipe called "Thrifty", which can assist there also.

The AWS console under Cost Explorer will also show you your available instance reservation options and/or savings plans.

RE:Find top cost contributors: Generate a report showing the top 5-10 resources that are contributing to high costs.

I would highly encourage you to learn how AWS Cost Allocation tags work. There are defaults which will give you what you're asking for, but there's some much more advanced and granular options with what are called "User Generated" Cost allocation tags.

RE: Questions I Need Help With Should I build a unified multi-cloud system, or is that too ambitious for a beginner?

If you are new to cloud infrastructure, I would definitely not start off with a multi-cloud environment. Even if you weren't a beginner, there needs to be a very compelling reason to chase "best in breed" services across a provider boundary. This is almost always more hassle than it's worth.

Reasons:
  • Blacklisted phrase (0.5): I Need
  • Blacklisted phrase (2.5): I Need Help
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: John Garrett

79541820

Date: 2025-03-28 15:33:46
Score: 0.5
Natty:
Report link

From Ether6, https://docs.ethers.org/v6/api/utils/#formatEther

You can just use it this way.

const { ethers, formatEther } = require("ethers");
or 
ethers.formatEther(value);
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Sarat Chandra

79541813

Date: 2025-03-28 15:30:45
Score: 2.5
Natty:
Report link

You can solve this by simply adding CSS attribute in your intro id

#intro { scroll-margin-top: 20%; //Add this line }

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

79541809

Date: 2025-03-28 15:28:45
Score: 1
Natty:
Report link

create a client side plugin like so: comment.client.js file in ur plugins directory

export default defineNuxtPlugin(() => {
    const comment = document.createComment(
        " Your comment goes here... "
    )

    document.documentElement.prepend(comment)
})

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

79541800

Date: 2025-03-28 15:25:44
Score: 8 🚩
Natty: 4
Report link

I am having the very same issue :(

Reasons:
  • Blacklisted phrase (1): :(
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): I am having the very same issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Otto Oliveira

79541797

Date: 2025-03-28 15:22:43
Score: 2
Natty:
Report link

Okey, I got it.

The issue was caused by storing unix timestamp as a 32-bit float. Since a float32 cannot accurately represent large unix timestamps, precision was lost, causing the timestamp to remain constant for long periods before updating in steps.

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

79541788

Date: 2025-03-28 15:15:41
Score: 3.5
Natty:
Report link

Thank you for your correction and your code. Relly intresting
Just a doubt.
I don't want to change ALL the default queries in all the archive page but just in a grid loop through the "id Query". In simple words: in the archive page I will have al the posts that among to the archive category in a long loop. Before that loop I want to have a different and smaller loop with the main post i.e. the posts I want to highlight.

Thank you.

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

79541760

Date: 2025-03-28 14:59:38
Score: 6.5 🚩
Natty: 5
Report link

I have the same problem, I was using SQLite, but is too slow with a lot of records, so I tried to use Dexie on Mobile, however, it only worked on web...

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Santos Chávez