79452101

Date: 2025-02-19 16:33:29
Score: 1
Natty:
Report link

I did this in Python where you would read the file into a dataframe and then add whatever column you want. However, when you save new parquet file, the size of the file changed (much less) and then I was not able to read the new file with new columns in AWS Glue. It seems that new file gets compressed even if you specify no compression. Another way I found this can be done is to save files as csv - size was slightly bigger than parequet since you added more column(s). Then read csv's in Glue. Another way is to resave as JSON however this type of file if not compressed ended up being 4x (column names in each row) or 2x (first row column names only) larger than parquet due to the nature of the JSON. I wish there was a better way to deal with parquet files rather then simply saying you just read these types of files and that's it.

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

79452099

Date: 2025-02-19 16:32:28
Score: 2.5
Natty:
Report link

For those having the same issue despite setting up the Apple Pay certificate in the Stripe dashboard, you need to ensure that your StripeProvider has stripeAccountId set. You can find this in your account settings. I initially had this missing, which caused this error to occur.

<StripeProvider
  // -- THIS WAS MISSING! --
  stripeAccountId={...}
  // --
  publishableKey={...}
  merchantIdentifier={...}
  urlScheme={...}
>
  ...
</StripeProvider>
Reasons:
  • Has code block (-0.5):
  • Me too answer (2.5): having the same issue
  • Low reputation (0.5):
Posted by: Samueljh1

79452095

Date: 2025-02-19 16:30:28
Score: 2
Natty:
Report link

I also had this problem, and what ended up getting me on the right path is N.Chipper's answer, but I want to add a caveat.

His NGINX example would not work because the retries there do not repeat 10 times for example. What they do is they pass it forward to the next server. There are hacky ways to get around that by making an infinite loop reffering to nginx from inside nginx, and then limiting that, but it's not great, and you have less control over timeouts.

In Traefik it also does not work. This is what they say in the docs: As soon as the server answers, the middleware stops retrying, regardless of the response status.

So if a server responds with 502, it passes it forward.

The only solution that worked was the Caddy example provided there.

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

79452087

Date: 2025-02-19 16:29:28
Score: 3
Natty:
Report link

Use : https://jsonxmlformatter.com/ Add it to you fav. it convers Json , XMl and do the merge and comparesion also.

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

79452083

Date: 2025-02-19 16:27:27
Score: 2
Natty:
Report link

by default nginx image is running on port 80 not 8080

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

79452082

Date: 2025-02-19 16:26:27
Score: 2
Natty:
Report link

Resolved!

I was facing a "400 Bad Request" error while trying to place market orders using the Binance Testnet API. After double-checking my API keys, request parameters, and signature generation, I finally discovered the issue: the system time on my Windows machine was not accurate.

Binance requires an exact timestamp when sending requests, as it's used for validating the HMAC SHA256 signature. If the system clock is even a few seconds off, the generated signature becomes invalid, leading to a 400 Bad Request error.

ptbtime1.ptb.de

This is one of the Physikalisch-Technische Bundesanstalt (PTB) time servers, known for its high precision.

Thanks!!

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

79452068

Date: 2025-02-19 16:23:26
Score: 2
Natty:
Report link

For me the solution was to change two entries in the file: "C:\Users\Username\.android\avd\emulatorname.avd\config.ini"

hw.gpu.enabled = no

hw.gpu.mode = off

because I don't have a graphics card.

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

79452062

Date: 2025-02-19 16:21:26
Score: 2
Natty:
Report link

You can just use: background-image: none !important;

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

79452050

Date: 2025-02-19 16:15:25
Score: 1
Natty:
Report link
import { persistor } from './store'

const handleLogout = () => {
  dispatch({ type: 'LOGOUT' })
  persistor.purge();
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: shrikantbishoye

79452048

Date: 2025-02-19 16:14:25
Score: 3.5
Natty:
Report link

I ended up just deleting the lines where it wanted to import the analyzers in the csproj

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

79452045

Date: 2025-02-19 16:13:24
Score: 3
Natty:
Report link

I have no answer. I often use Printscreen to illustrate a problem. In the past Microsoft changes the Printscreen folder whenever they wish. Now there is no folder. Now I have to clip the area and save it by hand. Microsoft help was more then useless and wasted my time.

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

79452041

Date: 2025-02-19 16:13:24
Score: 1
Natty:
Report link
import { persistor } from './store'

const handleLogout = () => {
  dispatch({ type: 'LOGOUT' })
  persistor.purge();
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: shrikantbishoye

79452040

Date: 2025-02-19 16:12:24
Score: 3
Natty:
Report link

To quickly create a thread that doesn't require access to program components I use BeginThread, and to work with updating components, I use TThread.

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

79452032

Date: 2025-02-19 16:11:24
Score: 3.5
Natty:
Report link

As of 2025, for Windows DBeaver 24.1.5, the Word Wrap toggle is in the top pan button "Window" > "Editor" > "Toggle Word Wrap":

link to image screenshot, but it looks like the answer by Codistan from Apr 27, 2023

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

79452030

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

MB it`s a bit late, but now you can use "Bouncer" or/and "token.abilities" to control which data and actions should be available to active/inactive users.

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

79452018

Date: 2025-02-19 16:08:23
Score: 2
Natty:
Report link
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: JTO Informatique

79452016

Date: 2025-02-19 16:07:22
Score: 6 🚩
Natty:
Report link

Me too, can't find a solution.😫

Reasons:
  • RegEx Blacklisted phrase (2): can't find a solution
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kiwi 2333

79452015

Date: 2025-02-19 16:06:21
Score: 1
Natty:
Report link

Can you create a code sandbox to showcase your issue? I assume that the problem is coming from the way you modify formData, I used to get some similar problem when changing property of an object. Maybe try to move the initialState out of the component and console.log registered.name to see it has the data you need? For now, I don't have much info from your code so I'm not sure if you accidentally modified/re-assigned it incorrectly. Also, a suggestion for the Input component I think that you should keep key stable, key={props.id + errors.length} using this may cause your component to have some unnecessary re-rendering.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: An Tran

79452004

Date: 2025-02-19 16:05:20
Score: 3.5
Natty:
Report link

In my case I have problems trying to use a version of ruby. I do all the steps described but when I check ruby ​​-v I get the version that is installed by the repositories.

The thing is that when I try to run bundle install

This is what it returns:

Your Ruby version is 3.0.2, but your Gemfile specified >= 3.1.0, < 3.4.0

However when I run this command rbenv versions

this is what it returns:

system

Anyway, I really can't find a solution to my problem. Thank you very much for your attention.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2): can't find a solution
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Frank Trujillo Contreras

79452000

Date: 2025-02-19 16:04:20
Score: 3.5
Natty:
Report link

You could use history.nvim for a more VSCode like experience similar to Control+Tab.

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

79451991

Date: 2025-02-19 16:02:20
Score: 1
Natty:
Report link

You need to wrap the button inside an tag to make it a clickable link. Also, your CSS has an incorrect @import inside the background-image property—remove that part. Here’s the corrected code:

<html>
  <head>
    <title>Button Link</title>
    <style>
      .butn {
        background-image: url("https://static1.squarespace.com/static/54da7941e4b0e25dc3648a4f/t/59640885b3db2b282c21c56e/1499728005971/zero_state%40300x-8.png");
        width: 555px;
        height: 170px;
        display: block;
      }

      .butn:active {
        background-image: url('https://static1.squarespace.com/static/54da7941e4b0e25dc3648a4f/t/5964090b6b8f5bf77b28504f/1499728139538/hover_state%40300x-8.png');
      }
    </style>
  </head>
  <body>
    <a href="https://example.com">
      <div class="butn"></div>
    </a>
  </body>
</html>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @import
  • Low reputation (1):
Posted by: Saad

79451990

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

@DynamoDBTypeConvertedEnum was used in the AWS SDK for Java v1 with the DynamoDB Object Mapper. However, in AWS SDK for Java v2, this annotation is no longer needed because DynamoDB Enhanced Client provides built-in support for enums.

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

79451986

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

The latest version uses log4j2 2.17.2. Moving to the latest Rundeck version solves that issue and many others.

Here you can see all CVE reported.

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

79451979

Date: 2025-02-19 15:54:18
Score: 1
Natty:
Report link

Try edit tsconfig.json:

"compilerOptions": {
    "paths": {
      "react": ["./node_modules/@types/react"]
    }
  }
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jan

79451976

Date: 2025-02-19 15:53:18
Score: 0.5
Natty:
Report link

The most elegant way for Windows desktop apps (.NET 9), to set the initial app size and position (1/3-2/3) based on the users screen size, goes like this. Be sure to edit the App.xaml.cs in the base map, not the file in the platforms maps. Edit the code there like this:

    protected override Window CreateWindow(IActivationState? activationState)
    {
        // App start-window size derived from screen properties
        double screenWidth = DeviceDisplay.MainDisplayInfo.Width;                               // the user screen
        double screenHeight = DeviceDisplay.MainDisplayInfo.Height;

        double  appWidth = screenWidth / 2.35d;                                                 // the app screen
        double  appHeight = screenHeight / 2.35d;

        return new Window(new AppShell())
        {
            Width = appWidth,
            Height = appHeight,
            X = (screenWidth - appWidth) / 2.0d,                                                // center horizontal
            Y = (screenHeight - appHeight) / 3.0d,                                              // 1/3 vertical
        };
    }

Do not forget to comment out the existing CreateWindow(...).

Reasons:
  • Blacklisted phrase (1): to comment
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Frank Zwarthoed

79451973

Date: 2025-02-19 15:52:18
Score: 1
Natty:
Report link
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@mui/material": "5.14.5",

If you encounter the issue of Uncaught TypeError: defaultShouldForwardProp is not a function, please try using the versions mentioned above

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

79451969

Date: 2025-02-19 15:52:18
Score: 3.5
Natty:
Report link

The answer posted by @engineersmnky is the correct solution.

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

79451968

Date: 2025-02-19 15:52:18
Score: 1
Natty:
Report link

You could use already existing functions to achieve the same, here are my preferred ones:

from math import gcd
from functools import reduce
import numpy as np

lst = [14, 21, 28]

print(reduce(gcd, lst))     # prints "7"

print(np.gcd.reduce(lst))   # prints "7"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Thomas Rasser

79451963

Date: 2025-02-19 15:50:17
Score: 2
Natty:
Report link

No package needed and dealing with the fact that you have a vector of such strings:

v=c("ABC_EFG_HIG_ADF_AKF","ADF_AKF_MNB_RRR")
sapply(strsplit(v,"_"),"[",3)
# [1] "HIG" "MNB"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29713841

79451954

Date: 2025-02-19 15:46:16
Score: 5.5
Natty: 7
Report link

thank you very much, thats help me.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): help me
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Smart gamers City

79451951

Date: 2025-02-19 15:45:16
Score: 2
Natty:
Report link

In my case import of some @storybook v8 produces 400+ errors in declaration:true mode. Removed storybook-related files from compilation - errors gone.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @storybook
  • Single line (0.5):
  • High reputation (-1):
Posted by: Pavel

79451948

Date: 2025-02-19 15:44:15
Score: 2.5
Natty:
Report link

A variable only begins with letters and underscore rather than digits since 4m means 4 multiplied by m in Math. Variables don't conflict with mathematical expressions. We use 3e16 to mean 30,000,000,000,000,000.

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

79451947

Date: 2025-02-19 15:44:15
Score: 1
Natty:
Report link

The black lines show up because you use geom_col(color = "black") you can make them the same color as your fill using geom_col(aes(color = comp)). This way they are still there, but not visible. An alternative would be geom_col(color = NA) which would make the borders invisible.

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

79451944

Date: 2025-02-19 15:42:15
Score: 1
Natty:
Report link

I'm still not sure exactly why, but this has fixed itself. I'm pretty sure I was running the exact same command, with the exact same .dll when it didn't work as when it earlier did, but other changes seem to have resolved it.

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

79451941

Date: 2025-02-19 15:41:14
Score: 8.5 🚩
Natty: 6
Report link

Have you found a solution for this? I currently have the same problem :D

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found a solution for this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): have the same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Jonas

79451936

Date: 2025-02-19 15:41:14
Score: 1
Natty:
Report link

Just in case; Mainly for ones who ends up in this article without reading other docs:

You need to put IRB.conf[:USE_PAGER] = false into your .irbrc.

Also, it is now documented here https://github.com/ruby/irb/blob/master/doc/Configurations.md#hash-irbconf.

Reasons:
  • Blacklisted phrase (1): this article
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Artur INTECH

79451935

Date: 2025-02-19 15:41:13
Score: 4.5
Natty:
Report link

I tride do chang to different action from this link https://github.com/marketplace/actions/publish-github-release-artifacts there no siple way to publish a release HTML files from proccesed folder?

name: Release HTML Files

on:
  push:
    tags:
      - "v*"


jobs:
  build:
    name: Build Presets
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
        name: checkout GITHUB code
      - name: Pobranie numeru wersji z taga
        id: get_version
        run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
      - run: scripts/process_presets.sh .
        name: process HTML
      - run: ls tmp/
        name: List Files
      - name: Upload ARMADA to Release
        uses: SierraSoftworks/[email protected]
        with:
          token: ${{ github.token }}
          overwrite: 'true'
          files: "tmp/*.html"
Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: utek

79451927

Date: 2025-02-19 15:38:13
Score: 2
Natty:
Report link

restart metro with clear cache helped

react-native start --clear-cache
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Anna Danilova

79451925

Date: 2025-02-19 15:37:12
Score: 0.5
Natty:
Report link

This works:

        $validation = \Config\Services::validation();

        $validation->setRules([
            'field1'           => 'required|max_length[20]',
            'array1'           => 'required',
            'array1.*'         => 'required|numeric',
            'array1_keys.*'    => 'required|numeric',
            'array1_count'     => 'required|numeric|greater_than_equal_to[1]|less_than_equal_to[50]'
        ]);

        $to_validate                 = $this->request->getPost();
        $to_validate["array1_keys"]  = array_keys($to_validate['array1'] ?? []);
        $to_validate["array1_count"] = count($to_validate["array1_keys"]);

        if (! $validation->run($to_validate)) {
            return $this->failValidationErrors($validation->getErrors());
        }

That said it is hardly elegant so I will happily upvote a more concise alternative.

Reasons:
  • Blacklisted phrase (0.5): upvote
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: ChrisG

79451922

Date: 2025-02-19 15:37:12
Score: 3
Natty:
Report link

I'm still new to Typescript but this is what I found -

You can see the types in the GitHub here: https://github.com/TanStack/table/blob/main/packages/table-core/src/types.ts

And how they are use for a table here: https://github.com/TanStack/table/blob/main/packages/table-core/src/core/table.ts#L63

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

79451919

Date: 2025-02-19 15:36:12
Score: 1
Natty:
Report link

Users need not only to be able to access to the data, but to run jobs as well.

Grant the users BigQuery Job User at the project level and then grant them BigQuery Data Viewer on the particular dataset which you want them to be able to see.

As an illustration, suppose [email protected] has BigQuery Job User in project-1 and BigQuery Data Viewer on project-1.dataset-a but not project-1.dataset-b. Suppose that you have a dashboard with one visualization from each dataset. [email protected] will see only the visualization from project-1.dataset-a.

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

79451918

Date: 2025-02-19 15:35:12
Score: 1
Natty:
Report link

Just writing :

brew install --cask anaconda

Worked for me, I have a macbook m3.

Reasons:
  • Whitelisted phrase (-1): Worked for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: jean-max rodriguez

79451912

Date: 2025-02-19 15:34:11
Score: 1
Natty:
Report link

Use the watch mode in Sass to automatically update your CSS file whenever you save changes to your .scss file.

Run this command in your terminal:

sass --watch style.scss:style.css
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: OfficialVysko

79451911

Date: 2025-02-19 15:33:10
Score: 13 🚩
Natty: 6.5
Report link

I have a same problem but I'm unable to figure out why its happening. it's not works in my case what should I do? Could you please help me?

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (2): what should I do
  • RegEx Blacklisted phrase (3): Could you please help me
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have a same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: amit solanki

79451899

Date: 2025-02-19 15:29:09
Score: 6 🚩
Natty:
Report link

Can you show us the content of the /etc/nginx/nginx.conf?

Could be that the config is still referencing the certificates as mentioned here: I ran "certbot delete --cert-name". Failed to restart Nginx

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you show us
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Francesco Scheffczyk

79451896

Date: 2025-02-19 15:27:08
Score: 1.5
Natty:
Report link

You can also get the access token by executing normal HTTP request using HttpClient:

var request = new HttpRequestMessage
{
    Method = HttpMethod.Get,
    RequestUri = new Uri("https://login.microsoftonline.com/<your_tenant_id>/oauth2/v2.0/token"),
    Content = new FormUrlEncodedContent(new Dictionary<string, string>
    {
        { "client_id", "<your_client_id>" },
        { "scope", "https://analysis.windows.net/powerbi/api/.default" },
        { "client_secret", "<your_client_secret>" },
        { "grant_type", "client_credentials" },
    }),
};

Reference: https://kalcancode.wordpress.com/2025/02/18/powerbiclient-how-to-get-access-token/

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

79451892

Date: 2025-02-19 15:25:08
Score: 1
Natty:
Report link

I ran into the same problem as you described and couldn’t figure out what caused the significant lag suddenly introduced when running sail artisan commands.

The issue started right after updating Docker Desktop to version 4.38.0, but since I had never experienced any issues after an update before, I didn’t immediately suspect it to be the cause.

After reading your post, I uninstalled Docker Desktop 4.38.0, downgraded back to 4.37.2, and rebuilt Sail without using cache.

After that, everything was back to the speed I was used to.

Hope that helps!

Kind regards

Reasons:
  • Blacklisted phrase (1): regards
  • Whitelisted phrase (-1): Hope that helps
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Christoph Kramer

79451891

Date: 2025-02-19 15:25:08
Score: 4.5
Natty: 4
Report link

You can take a look on release notes of v2.5.cr1 https://debezium.io/blog/2023/12/14/debezium-2-5-cr1-released/

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

79451889

Date: 2025-02-19 15:24:07
Score: 1
Natty:
Report link

The key difference here is by using the new Date() inside useState(() => new Date()) -> This is called initializer function, it will avoid recreating the initial state every render.

function Clock() {
  const time = new Date(); // 🔴 Bad: always returns a different result!
  return <span>{time.toLocaleString()}</span>
}

With this, every time Clock component rendered, the new Date() will create a new object date, React will detect new change causing unnecessary re-render. This may not look like a big issue, but will cause some bottleneck for bigger and more complex component.

Also, please keep in mind that there is a big difference between useState(() => new Date()) and useState(new Date()).

useState(() => new Date()) is lazy initialing, only when React actually needs the initial state does it call this function. While useState(new Date()) will call new Date() every render.

You can check out more about it on this article: https://react.dev/reference/react/useState#avoiding-recreating-the-initial-state

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

79451888

Date: 2025-02-19 15:24:07
Score: 0.5
Natty:
Report link

The short answer is no—you cannot use a variable (or function) in place of a literal string for the -File parameter when launching PowerShell.exe. The -File switch is handled by the PowerShell executable itself before any of your inline script code (and thus any variable assignments) is executed.

Because -File is processed before the session starts, it cannot resolve any variables defined in the command string. If you need dynamic behavior, compute the file path first (outside of the PowerShell call) or use -Command where variable expansion is available.

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

79451887

Date: 2025-02-19 15:23:07
Score: 5.5
Natty: 5
Report link

i'm triying to set an output variable from octopus, but i cannot use it, there is a way to check if the variable is created correctly?

Reasons:
  • Blacklisted phrase (0.5): i cannot
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alejandro Quevedo

79451886

Date: 2025-02-19 15:23:07
Score: 3
Natty:
Report link

Use : https://jsonxmlformatter.com/ Add it to you fav. it convers Json , XMl and do the merge and comparesion also.

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

79451879

Date: 2025-02-19 15:22:06
Score: 1
Natty:
Report link

Hi deceze and stackoverflow team

I created Erlang/OTP client module to communicate with emqtt. emqtt is an Erlang server for subscriptions and publications similar to publications. The server can be configure to provide subscriptions in Jason format. These subscriptions however are returned with double quotes around Key-Value pairs,e.g.,

{"Timestamp":"2025-02-18T10:20:37.144Z","Values":{"Slave 1 (EL1008).Channel 1.Input":true,"Slave 1 (EL1008).Channel 2.Input":false},"MetaData":{}}

In order to assign the json string to variable, the inner double quotes must be escaped first. Lucky I found a way of doing this in the string:replace/3. Erlang function.

handle_info({subscribe, #{topic := Topic, payload := Payload}}, State) ->
    NewPayload = string:replace(Payload, "\"", "\\\"", all),
    io:format("Received message on topic ~s: ~s~n", [Topic, NewPayload]),
    {noreply, State};

To do this any other way you'd have to use a script like sed or awk. This approach however is not good because it has to be called from within Erlang process.The external call can slow down the Erlang process or possibly cause it to crash.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Alberto Perri

79451878

Date: 2025-02-19 15:22:06
Score: 4
Natty:
Report link

I've written an AI-generated completion script for alembic here

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

79451875

Date: 2025-02-19 15:21:06
Score: 3
Natty:
Report link

Solved this ! Just set Project Properties -> Linker -> Optimization -> References -> Yes (/OPT:REF)

This prevents the explicit dependency on oledlg.dll even when not being used.

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

79451865

Date: 2025-02-19 15:17:04
Score: 1.5
Natty:
Report link

Have application-test.properties file with only the property you want to override, and set active profile to test.

Spring boot automatically merges properties from application-test.properties and application.properties files. Property mentioned in application-test.properties overrides the property mentioned in application.properties.

See this post about setting active profile: Setting the default active profile in Spring-boot

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

79451864

Date: 2025-02-19 15:17:04
Score: 1
Natty:
Report link

You need to check that the firebase.json file at the root of your project contains the path to the google-services.json file.

"android": {
  "default": {
    "projectId": "XXXXX",
    "appId": "XXXXX",
    "fileOutput": "android/app/google-services.json"
  }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: JTO Informatique

79451858

Date: 2025-02-19 15:14:04
Score: 1.5
Natty:
Report link

You can get the access token by executing normal HTTP request using HttpClient:

var request = new HttpRequestMessage
{
    Method = HttpMethod.Get,
    RequestUri = new Uri("https://login.microsoftonline.com/<your_tenant_id>/oauth2/v2.0/token"),
    Content = new FormUrlEncodedContent(new Dictionary<string, string>
    {
        { "client_id", "<your_client_id>" },
        { "scope", "https://analysis.windows.net/powerbi/api/.default" },
        { "client_secret", "<your_client_secret>" },
        { "grant_type", "client_credentials" },
    }),
};

Reference: https://kalcancode.wordpress.com/2025/02/18/powerbiclient-how-to-get-access-token/

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

79451844

Date: 2025-02-19 15:11:03
Score: 1
Natty:
Report link

Thank you for the reply but I have to change name of the function to run the script but even now that macro does nothing:

Sub Rw_to_col()
Dim stepvalue As String


stepvalue = InputBox("Set letter of columns per row")
If ColumnLetterToNumber(stepvalue) < ColumnLetterToNumber("m") Or 
ColumnLetterToNumber(stepvalue) > ColumnLetterToNumber("af") Then
MsgBox ("please enter column name between m to af")
Exit Sub
End If

Cells(1, ColumnLetterToNumber(stepvalue)).Select



'
End Sub

Function ColumnLetterToNumber(colLetters As String) As Long
Dim result As Long
result = 0
colLetters = UCase(colLetters)

For i = 1 To Len(colLetters)
    Dim currentChar As String
    currentChar = Mid(colLetters, i, 1)
    If currentChar < "A" Or currentChar > "Z" Then
        ColumnLetterToNumber = -1
        Exit Function
    End If
    result = result * 26 + (Asc(currentChar) - 64)
Next i
ColumnLetterToNumber = result
End Function
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Laszlo Papp

79451841

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

Had the same problem. turned out to be caused by an extension, where an extra indent was added after the auto-indent causing functions to be misaligned. try fixing by disabling Pylance extension, you can re-enable it after and the problem should go away.

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

79451837

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

It is a bug that people are discussing, the only solution I can find is add a key to the select , as mentioned in this thread

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

79451830

Date: 2025-02-19 15:06:01
Score: 3.5
Natty:
Report link

hold ALT while selecting, this will prevent vscod from jumping to the end.

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

79451824

Date: 2025-02-19 15:04:01
Score: 1.5
Natty:
Report link

The reason the code inside the use Effect is not considered idempotent is because it does cause side effects (i.e., updating the state repeatedly every second). However, React ensures that side effects like this only happen outside of the render cycle, preventing unwanted behavior like infinite re-renders. Setting the interval and updating the state is non-idempotent because the behavior changes over time (updates happen every second), but this happens within the proper lifecycle via use Effect.

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

79451820

Date: 2025-02-19 15:03:01
Score: 2
Natty:
Report link

update the third field as expression string('false') to convert it as a string and be able to filter properly

enter image description here

output: enter image description here

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

79451816

Date: 2025-02-19 15:02:00
Score: 1.5
Natty:
Report link

Are you using rvm? I came across your post because I got the same error and I end up finding that the version I selected using rvm was causing the error.

To solve it, I ran rvm use system and everything is working now.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Dyego E.

79451808

Date: 2025-02-19 15:00:00
Score: 2.5
Natty:
Report link

I am still facing the issue in Job's pod " WARNING: Elasticsearch MUST be stopped before running this tool."

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

79451807

Date: 2025-02-19 15:00:00
Score: 4
Natty:
Report link

why not use Clerk. It has out-of-the-box functionality for many authentication providers.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): why not use
  • Low reputation (1):
Posted by: Sanjeev Kumar

79451797

Date: 2025-02-19 14:56:58
Score: 3.5
Natty:
Report link

This is now fixed. The solution was to have an admin remove my access and then grant it back, go figure.

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

79451795

Date: 2025-02-19 14:56:58
Score: 2
Natty:
Report link

Please see the error : Error: package or namespace load failed for ‘rJava’: .onLoad failed in loadNamespace() for 'rJava', details: call: fun(libname, pkgname) error: JAVA_HOME cannot be determined from the Registry

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: محمد حسین شادمان فر

79451787

Date: 2025-02-19 14:53:58
Score: 1
Natty:
Report link

div {border:2px outset green; margin:6px 0}
.box1 {width:100px; height:70px;}
.box2 {width:200px; height:100px;}
img {max-width:100%; height:auto}
<div class="box1">
    <img src="https://i.sstatic.net/FuQYf.png" alt="" />
</div>
<div class="">
    <img src="https://i.sstatic.net/FuQYf.png" alt="" />
</div>

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

79451783

Date: 2025-02-19 14:51:57
Score: 0.5
Natty:
Report link

Found the solution - using Record<never, never> instead of Record<string, never> fixes the type-checking:

type CatData = {
    name: string;
    breed: string;
    age: number;
};

type MaybeCatData = Record<never, never> | CatData;

// Now TypeScript shows errors as expected
function processCat(obj: MaybeCatData): CatData {
    return {
        name: obj.name,    // Error ✗
        breed: obj.breed,  // Error ✗
        age: obj.age      // Error ✗
    };
}

// Safe version with type narrowing:
function processCatSafely(obj: MaybeCatData): CatData {
    if ('name' in obj) {
        return {
            name: obj.name,
            breed: obj.breed,
            age: obj.age
        };
    }
    throw new Error('Invalid cat data');
}

While Record<string, never> allows string properties (with never values), Record<never, never> represents an object that can't have any properties, forcing TypeScript to be more strict about property access.

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

79451775

Date: 2025-02-19 14:50:57
Score: 2
Natty:
Report link

The issue may stem from the Oleacc.lib version or linking method.

Ensure following things:

Check path to Oleacc.lib in linker settings.

Check the Oleacc.h header file path in the project settings.

Check correct version of Oleacc.lib that is compatible with Visual C++ Express 2008.

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

79451767

Date: 2025-02-19 14:47:56
Score: 2
Natty:
Report link
  1. Use a Root Shell (if logged in as root before)

    su -

  2. If it works, then fix the permissions:

    chmod 750 /etc/sudoers.d

    chown root:root /etc/sudoers.d

    exit

  3. Now test:

    sudo ls /root

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

79451764

Date: 2025-02-19 14:46:56
Score: 1
Natty:
Report link

It may be a bit late to answer this, but please add: checks: ['none'] to your google provider as:

Google({
        clientId: process.env.GOOGLE_CLIENT_ID!,
        clientSecret: process.env.GOOGLE_CLIENT_SECRET!,  
        checks: ['none']
    }),
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Daniel Pieczonka

79451763

Date: 2025-02-19 14:46:56
Score: 0.5
Natty:
Report link

To effectively manage component lifecycle events when navigating between different parent routes in your app, you can try subscribing to Angular Router events. Specifically, listen for the NavigationEnd event to trigger actions once navigation is complete.

Additionally, implement the OnInit and OnDestroy lifecycle hooks to perform tasks when your component initializes and is destroyed. This combination will help you manage state and execute necessary logic seamlessly across route changes. Ionic lifecycle hooks are not that good at triggering.

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

79451760

Date: 2025-02-19 14:45:55
Score: 1.5
Natty:
Report link

KREDIS VARIATION:

# config/environments/production.rb
  config.kredis.connector = lambda do |config|
    Redis.new(config.with_defaults(ssl_params: { verify_mode: OpenSSL::SSL::VERIFY_NONE }))
  end

derived from: https://github.com/rails/kredis?tab=readme-ov-file#configure-how-the-redis-client-is-created

if you want to manually configure the SSL: https://github.com/rails/kredis?tab=readme-ov-file#configure-how-the-redis-client-is-created

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

79451727

Date: 2025-02-19 14:36:54
Score: 1.5
Natty:
Report link

From this https://www.selenium.dev/blog/2023/java-8-support/ you can see "Selenium will stop supporting Java 8 on September 30, 2023".

If you watch previous releases in https://www.selenium.dev/downloads/, you can see that Selenium 4.13 is the last version supporting Java 8.

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

79451726

Date: 2025-02-19 14:36:54
Score: 1
Natty:
Report link

For iOS 18

You can easily detect scroll direction by using onScrollGeometryChange

ScrollView(.vertical) {
        ...
    }
    .onScrollGeometryChange(for: CGFloat.self, of: { geometry in
        geometry.contentOffset.y
    }, action: { oldValue, newValue in
        if newValue > oldValue {
            print("SCROLL DOWN")
        } else {
            print("SCROLL UP")
        }
    })

Apple doc: https://developer.apple.com/documentation/swiftui/view/onscrollgeometrychange(for:of:action:)

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

79451714

Date: 2025-02-19 14:33:53
Score: 1.5
Natty:
Report link

I use this:

UserForm.Show vbModal

Application.DisplayAlerts = False
ThisWorkbook.Save
If Application.Workbooks.Count > 1 Then
    ThisWorkbook.Close
Else
    Application.Quit
End If
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Germain

79451711

Date: 2025-02-19 14:33:52
Score: 7.5 🚩
Natty: 4.5
Report link

did you find the solution ? I have quit the same issue.

Reasons:
  • RegEx Blacklisted phrase (3): did you find the solution
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you find the solution
  • Low reputation (1):
Posted by: swordse

79451709

Date: 2025-02-19 14:33:52
Score: 1
Natty:
Report link

I finally figured out that the values I was trying to extract weren't infact inunder the asPaths list, as I'd first read it.

Instead, using the correct formatting string worked

format="get(result.bestRoutes.asPaths.asLists,result.bestRoutes.destRange,result.bestRoutes.nextHopIp,result.bestRoutes.priority)"

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

79451703

Date: 2025-02-19 14:32:52
Score: 1.5
Natty:
Report link

try to update the Append to CommonAttachmentArray and change the value in ContentBytes with the Body from Get Attachment. it should look like this:

enter image description here

{
  "Name": "filename.pdf",
  "ContentBytes": {
    "$content-type": "application/octet-stream",
    "$content": "JVB...jQKRgo="
  }
}
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: frue

79451701

Date: 2025-02-19 14:32:52
Score: 3
Natty:
Report link

Use : https://jsonxmlformatter.com/ Add it to you fav. it convers Json , XMl and do the merge and comparesion also.

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

79451692

Date: 2025-02-19 14:29:51
Score: 4
Natty:
Report link

Can you give any example for the invalid JWT? If you receive 400 code, your JWT Token might be malformed. For example;

{
  "sub": "1234567890",
  "name": "John Doe",
  "iat": 1617201283,
  "scope": "read:data"
}

This token doesn't have "write:data" right. But if you send

{
  "sub": "1234567890",
  "name": "John Doe",
  "iat": 1617201283,
}

This token might be considered as malformed.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you give
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you give any
  • Low reputation (1):
Posted by: Ali İhsan TAŞDELEN

79451691

Date: 2025-02-19 14:29:51
Score: 0.5
Natty:
Report link

In computing, environment variables are dynamic values that can affect the way running processes behave on a computer. They are categorized into two main types: system variables and user variables.

System Variables:

Scope: Apply globally to all users on the computer.

Purpose: Define settings that affect the entire system, such as system paths and locations of system files.

Management: Typically require administrative privileges to modify.

User Variables:

Scope: Specific to the currently logged-in user.

Purpose: Allow users to define settings that affect their own user environment, such as custom paths or application-specific configurations.

Management: Users can modify their own user variables without affecting others.

When a process runs, it inherits both system and user variables. In cases where a variable with the same name exists in both categories, the user variable typically takes precedence, except for certain variables like PATH, where the system and user values are combined. SUPER USER

Understanding the distinction between these two types of variables is crucial for configuring environments appropriately and ensuring that changes have the intended scope and effect.

You said: please short and loo like human generated ChatGPT said: In computing, environment variables are dynamic values that influence the behavior of processes on a system. They come in two types: system variables and user variables.

System Variables:

Scope: Affect all users on the computer.

Purpose: Define settings that apply system-wide, such as system paths and locations of critical files.

Modification: Changing these typically requires administrative privileges.

User Variables:

Scope: Specific to the currently logged-in user.

Purpose: Allow customization of the user environment, like setting personal paths or application preferences.

Modification: Users can alter their own variables without affecting others.

When both system and user variables share the same name, the user variable usually takes precedence, except for certain cases like the PATH variable, where both are combined. BAELDUNG

Understanding these distinctions is essential for configuring environments appropriately and ensuring changes have the intended effect.
for more info please our site : https://glstracking.it/

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

79451686

Date: 2025-02-19 14:27:50
Score: 2
Natty:
Report link

i've had to add a couple of setting to solve the problem:

'spark.dynamicAllocation.shuffleTracking.timeout' 'spark.dynamicAllocation.cachedExecutorIdleTimeout'

once these were added, the behaviour was as expected

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

79451683

Date: 2025-02-19 14:27:50
Score: 0.5
Natty:
Report link

this can be achieved using model inputs

import {Component, inject, model} from '@angular/core';
@Component({ ... })
export class SomeComponent {
  test = model<string>();

  ngOnInit() {
    this.test.set('qwerty');
  }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: felixjiricka

79451679

Date: 2025-02-19 14:25:50
Score: 0.5
Natty:
Report link

add disableDefaultUI: true when creating the map:

this.newMap = await GoogleMap.create({
  id: 'my-test-map',
  element: this.mapRef.nativeElement,
  apiKey: environment.mapsApiKey,
  config: {
  center: {
    lat: lat,
    lng: lng,
  },
  zoom: 15,
  disableDefaultUI: true <-------
  },
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: StackOverHoes

79451675

Date: 2025-02-19 14:24:50
Score: 1.5
Natty:
Report link

turns out I can do things like this and the result is satisfying my condition

fields_to_exclude.each do |excluded_field|
        configure excluded_field do
          searchable false
        end
end

fields_to_exclude is an array of field you wanted to exclude from search during Edit. Thanks for people that has tuned in

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

79451662

Date: 2025-02-19 14:20:48
Score: 7 🚩
Natty:
Report link

Thanks for your advice, @geoand and @zforgo.

The beans were not properly registered. Combining your solutions solved the issue. Everything works fine now !

Thank you for your help!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-0.5): Thank you for your help
  • RegEx Blacklisted phrase (3): Thanks for your advice
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @geoand
  • User mentioned (0): @zforgo
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Laurent_LDNR

79451660

Date: 2025-02-19 14:20:48
Score: 5
Natty: 5.5
Report link

note there's also this great tool https://github.com/newren/git-filter-repo

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

79451654

Date: 2025-02-19 14:18:48
Score: 1
Natty:
Report link

From my understanding non-repaetable read means you read something start of transaction and in the if you read the same you get different result , but in phantom reads it mostly occurs in range queries , so if you send same query anytime in transaction if there is no new data added you will get sam result because it locks , existing infos but can not lock new one for this reason in the second query you will get different result, but if there is just update not insert you will get same result in phantom reads and it will not be phantom reads :).

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Habibov Ulug'bek

79451650

Date: 2025-02-19 14:17:47
Score: 2
Natty:
Report link

Yes

1==true is true but 78==true is false 0==true is true

"true"==true is al.so false. One asks why it should be true, but it's-6&&-&&+-: false. For example, for 8 true statements, the score is 8(the s ore is 1 per true statemen6--&t. Gt

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

79451640

Date: 2025-02-19 14:14:47
Score: 2
Natty:
Report link

I'm working on a similar issue.

What helped me was removing signIn from the pages section.

See this part

Another potential issue could be related to cookies, but I don’t see that in this example.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jiří Hroch

79451634

Date: 2025-02-19 14:12:46
Score: 2
Natty:
Report link

Bro to deal with databases you need to go server-side using node.js. node-adobedb isn't meant to be run in a browser. It relies on Node-specific globals (like Buffer) and Windows-only APIs (ActiveX objects) that aren’t available in client-side JavaScript. In other words, you can’t bundle it directly into a Vue.js 3 app for use in the browser. When you go server-side, your backend can use node-adodb to connect to books.accdb and then expose a REST API that your Vue app can call.

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

79451633

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

Yes, It's possible to bundle ollama with your Python package. It's more complex than tessracth tho.

You should use docker as it's the best approach here for cross platform working. You can package Ollama with Llama3 and your python.

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

79451631

Date: 2025-02-19 14:11:46
Score: 1.5
Natty:
Report link

Following article https://help.salesforce.com/s/articleView?id=001123624&type=1 you need to set properties to value 268435456 = 256MB :

org.apache.cxf.stax.maxTextLength=268435456
com.ctc.wstx.maxTextLength=268435456
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
Posted by: Tomasz

79451627

Date: 2025-02-19 14:11:45
Score: 4.5
Natty:
Report link

Is it possible to remove the parent if it contains certain attribute and then link the child to parents parent which matches the attribute?

For example I have a tree that is mix of object and groups, objects and groups have a unique attribute to differentiate between groups and object. In this case is it possible to get object 1 as parent to object 2 and Object 3 by omitting the groups in between?

<Group="GroupA" uniqueidentifier="123">
   <Object="Object1" uniqueidentifier="456"
        <Group="GroupB" uniqueidentifier="123">
           <Object="Object2" uniqueidentifier="456"
    <Group="GroupC" uniqueidentifier="123">
           <Object="Object3" uniqueidentifier="456"
Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Blacklisted phrase (1): is it possible to
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: user29711909

79451621

Date: 2025-02-19 14:09:44
Score: 15.5 🚩
Natty: 5.5
Report link

We have the same issue using the Polygon Amoy Testnet. Did you resolve it? How did you resolve it? Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (3): Did you resolve it
  • RegEx Blacklisted phrase (3): did you resolve it
  • RegEx Blacklisted phrase (1.5): resolve it?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Marco La Franca

79451617

Date: 2025-02-19 14:08:43
Score: 0.5
Natty:
Report link

So i am battling the same problem and i've come a step further. I have tried initially calculating the averages by using scoreInPercentage and looping through every category, but when using the scoreInPercentage collective average per category i get close like you, but not a exact same value as in the defender portal.

So i took a different route and that was making a total sum of all scores per category by looping through the api response. I realised that the max attainable secure score points was a sum total of all its parts (categories), so the percentage per category must be calculated by the max attainable score per category vs attained score per category. The only thing you have to make sure is that you filter only on the last day and not go through the whole 90 day log of the api response. Now a different problem arises and this is that you cannot get the max value per category anywhere. The only way i have managed to get a 100% accurate representation of the individual categories is by hardcoding the max value (as shown in defender portal) per category, and then calculating a percentage based on the score achieved per category.

Yes you can call https://graph.microsoft.com/v1.0/security/secureScoreControlProfiles and see max attainable points per control, but you cannot just sum total all the points per category, because it will return all available controls and not just the controls you have set-up (or have licensing for). In my case it showed 809 max attainable points for a category while the portal showed 371. So the only way you could get around this (i believe) is to literally compare every control by name from "https://graph.microsoft.com/v1.0/security/secureScores" with the controls in "https://graph.microsoft.com/v1.0/security/secureScoreControlProfiles" (have not tested this). There is no place that shows max scores per category as far as i know. But i hope someone has a better way of dealing with this. For me this is a tad bit much compute to be running from a function app (financially speaking).

I have used typescript, so my code is probably of no value here.

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