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

79451608

Date: 2025-02-19 14:05:43
Score: 4.5
Natty:
Report link

What happens when you load the script into PowerShell_ISE and either run it F5 or highlight the entire script and run it with F8?

Can you tell us more about the script. Did you type it up yourself or did you copy paste it from the internet, or did you download a PS1 file from the Internet?

It also sounds like your organization could possibly have Group Policies in place that might be preventing you from running scripts.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you tell us
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: Vern_Anderson

79451604

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

Thank you @Roko C. Buljan for your help (I wanted to reply as a comment on your post, but my example was too long).

Your approach using :scope and :not() works well for the initial example, but I encountered an issue when applying it to a specific parent element.

If I call getDirectChildren(document.querySelector("#layout-3")) on the initial example, it does not return #layout-4 as expected. I think this happens because the selector :scope .layout:not(.layout .layout) only considers direct .layout elements relative to the original parent (.parent in the example), but it does not properly update when parent itself is a .layout.

Here is an extended example demonstrating the issue:

const getDirectChildren = (parent, sel = ".layout") =>
            [...parent.querySelectorAll(`:scope ${sel}:not(${sel} ${sel})`)];

        // Example 1 : Should print [#layout-1, #layout-2, #layout-7]
        let app = document.querySelector(".app");
        console.log("App descendant children", getDirectChildren(app)); // Result: Correct!

        // Example 2 : Should print [#layout-3, #layout-4, #layout-6]
        let layout2 = document.querySelector("#layout-2");
        console.log("Layout 2 descendant children", getDirectChildren(layout2)); // Current result: []

        // Example 3 : Should print [#layout-5]
        let layout4 = document.querySelector("#layout-4");
        console.log("Layout 4 descendant children", getDirectChildren(layout4)); // Current result: []
<div class="app">
    <div>
        <div class="layout" id="layout-1"></div>
    </div>
    <div>
        <div class="layout" id="layout-2">
            <div class="layout" id="layout-3"></div>
            <div>
                <div class="layout" id="layout-4">
                    <div>
                        <div class="layout" id="layout-5"></div>
                    </div>
                </div>
                <div class="layout" id="layout-6"></div>
            </div>
            <div></div>
        </div>
    </div>
    <div class="layout" id="layout-7"></div>
</div>

This shows that while the function works at the top level, it fails to return children when applied to .layout elements deeper in the hierarchy.

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

79451603

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

The Hugging Face Inference API expects different JSON fields from OpenAI- or Groq-style endpoints. Your current code sends an OpenAI‐style request (model, messages) to Hugging Face, which causes a 422 error. Try sending Hugging Face adjusting your format to something like:

{ "inputs": "some prompt or conversation text", "parameters": { "...": "..." } }

Reasons:
  • No code block (0.5):
Posted by: Ethan Pelton

79451599

Date: 2025-02-19 14:04:42
Score: 2.5
Natty:
Report link

First copy the text, then go to the WhatsApp address you want to send it to, paste and then attach the pdf or image you want to send. Regretfully, you have to do it one at a time ...

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

79451593

Date: 2025-02-19 14:02:42
Score: 2.5
Natty:
Report link

The best way is to do it via HTML and CSS like robin mentioned in his comment. If you wanna do the same in Markdown, or just without using CSS, read on...

I made an open-source API to add a play button to Youtube thumbnails given a Youtube id or URL, simply input the video URL to this API i developed like so: https://markdown-videos-api.jorgenkh.no/url?https://youtu.be/dQw4w9WgXcQ

Result:

Definitely not a rickroll

Documentation can be found here if you wanna customize the size: https://markdown-videos-api.jorgenkh.no/docs

I even made a website to make it easier for you to input video URLs: https://markdown-videos.jorgenkh.no/

And best of all, the code is fully open sourced, so you can fork it and host it yourself if you'd like: https://github.com/Snailedlt/Markdown-Videos

Reasons:
  • Blacklisted phrase (1): youtu.be
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Snailedlt

79451589

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

Yeah I know how it feels like - I've gone through this before.

Essentially, ollama is written in Go (https://github.com/ollama/ollama) , so you'll have to figure out a workaround for this case.

I'd recommend distributing your application as a Docker container so that you can like preinstall Docker and also python using your image, and users get everything without separate installations as you wanted.

However, for a python package, you may also consider bundling together the ollama installer, you know, and write your own scripts for launching and managing the ollama server, but this can get tricky.

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

79451585

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

The accepted answer works, but this could also be a valid use case for python's builtin textwrap module:

>>> import textwrap
>>> text = """A
... B
... C"""
>>> print( textwrap.indent(text, "- ") )
- A
- B
- C

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

79451571

Date: 2025-02-19 13:55:40
Score: 4
Natty: 4.5
Report link

See: https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration which suggests adding git config --global core.autocrlf true as does https://bornsql.ca/blog/the-hell-of-git-line-endings-and-the-not-so-simple-fix/

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

79451562

Date: 2025-02-19 13:51:39
Score: 1
Natty:
Report link

i used this answer .and it worked.

.box:not(.boxxy) {
 margin-left: 0px;
 transition-duration: 300ms;
 }
Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Timbukto

79451561

Date: 2025-02-19 13:50:39
Score: 0.5
Natty:
Report link

Yes, using wp-load.php outside of WordPress does present some security risks, especially if sensitive data is being processed or if external users have access to the script.

Although the script isn't passing any values, using WordPress core files externally can still leave your site vulnerable to potential attacks, such as SQL injections or unauthorized access attempts, if proper security measures are not in place. It's important to ensure that these external scripts are protected, particularly when using cron jobs.

To mitigate these risks, one approach is to implement additional layers of authentication. For example, my plugin adds a triple authentication process (email, password, and facial recognition) before granting access to WordPress. This significantly reduces the chances of unauthorized access, even if someone knows the name of the PHP script or tries to exploit vulnerabilities in the system.

Using such multi-layer authentication mechanisms ensures that your WordPress installation remains secure even when external scripts interact with it.

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

79451546

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

Somewhere else here on stackoverflow I found someone using the all() function that exists on Locator in playwright. To get all the elements that match the locator criteria.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
Posted by: Eli

79451542

Date: 2025-02-19 13:46:38
Score: 1
Natty:
Report link

Indeed this type of error is often linked to a Java / Gradle / AGP version incompatibility.

Can you run the following command from the root of the Flutter project to do a first check:

flutter analyze --suggestions

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

79451539

Date: 2025-02-19 13:42:37
Score: 2.5
Natty:
Report link

The file location was synchronized with OneDrive.

Using another location that is not synchronized solved the issue.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Rémi Baudoux

79451536

Date: 2025-02-19 13:41:36
Score: 3
Natty:
Report link

I just ran into the same problem today. Figured out that it was the AdBlocker of my browser that prevented graphes from custom queries to render.

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

79451533

Date: 2025-02-19 13:40:36
Score: 3
Natty:
Report link
"php.validate.executablePath": "\\wsl.localhost\\Ubuntu\\usr\\bin\\php"
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alejandro Mosca

79451532

Date: 2025-02-19 13:40:36
Score: 2
Natty:
Report link

Import it via .use instead of .component conform docs: https://www.npmjs.com/package/vue-awesome-paginate#installation

It will register the component for you.

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

79451527

Date: 2025-02-19 13:39:36
Score: 0.5
Natty:
Report link

In case if somebody has a problem that the checked State of CheckBox element is messed up and will be shown as filled rectangular without check mark the solution is:

  1. Change to <androidx.appcompat.widget.AppCompatCheckBox>
  2. Set color through the app: not android: attribute! Like this: app:buttonTint="?colorOnInfo"
Reasons:
  • Whitelisted phrase (-1): solution is
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Artiom

79451526

Date: 2025-02-19 13:39:36
Score: 0.5
Natty:
Report link

Use test class inheritance

Create a test class, annotate it with @SpringBootTest(properties=["app.secondprop=99"])
Your other test where you wish to have this value of the property could inherit this class

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

79451524

Date: 2025-02-19 13:38:35
Score: 4
Natty:
Report link

You can easily remove the "Powered by Odoo" footer from the apps listed below

https://apps.odoo.com/apps/modules/18.0/ace_remove_website_powered_by_odoo

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

79451521

Date: 2025-02-19 13:37:35
Score: 2.5
Natty:
Report link
outline: revert;

should do it.

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

79451520

Date: 2025-02-19 13:37:35
Score: 2.5
Natty:
Report link

I believe &#{&} { } could do the trick

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

79451519

Date: 2025-02-19 13:37:35
Score: 1
Natty:
Report link

Or just change ascending = [False] to ascending = [True]:

import pandas as pd
import matplotlib.pyplot as plt

DATA = {
    'x': ['val_1', 'val_2', 'val_3', 'val_4', 'val_5'],
    'y': [1, 2, 3, 2.5, 0.5]
}

COLUMNS = tuple(DATA.keys())


df = pd.DataFrame(DATA, columns=COLUMNS)
df.sort_values(['y'], ascending=[True]).plot(x=COLUMNS[0], y=COLUMNS[1], kind="barh", legend=False)

plt.show()

enter image description here

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Márton Horváth

79451517

Date: 2025-02-19 13:36:34
Score: 1
Natty:
Report link

Found a better way:

type Tuple = [unknown, ...unknown[]]

let foo = [{ foo: "foo" }, { bar: "bar" }] satisfies Tuple

Important to note is that you have to use satisfies which exists since TypeScript 4.9 and not as.

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

79451512

Date: 2025-02-19 13:35:34
Score: 4.5
Natty: 4
Report link

Google pay number my WhatsApp number my

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

79451511

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

this article on react flow performance could help you with your challenges, check this out: https://www.synergycodes.com/blog/guide-to-optimize-react-flow-project-performance

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

79451500

Date: 2025-02-19 13:32:33
Score: 1.5
Natty:
Report link

In case anyone stumbles on this, for me checking the "Always install with package manager" in the "Edit configurations" window seems to stop such JNI errors. Not sure about any side-effects to this.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Stelios Papamichail

79451495

Date: 2025-02-19 13:31:32
Score: 2
Natty:
Report link

Basically, what you're seeing isn’t a glitch—it's just a change in how things are done. The old version of Rbf used epsilon to directly scale the distance, so even small tweaks could really shake things up. But the new RBFInterpolator has been reworked with extra stabilization and scaling tricks that essentially "normalize" epsilon’s role. This means that even if you change epsilon a lot, its impact is much more subtle, especially if your data is already nicely scaled.

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

79451493

Date: 2025-02-19 13:30:31
Score: 6 🚩
Natty: 5.5
Report link

PLizzzzzzzz PLizzzzzzzz PLizzzzzzzz

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Filler text (0.5): zzzzzzzz
  • Filler text (0): zzzzzzzz
  • Filler text (0): zzzzzzzz
  • Low entropy (1):
  • Low reputation (1):
Posted by: user29711903

79451491

Date: 2025-02-19 13:30:31
Score: 1.5
Natty:
Report link

I am not sure if this issue was fixed or you found a way around your issue. But I am writing the fix I found to hopefully help someone else. While I have not asked any questions, I am going to explain a scenario to give you an idea of how to fix it. scenario: You may have migrated your db to a newer server and you are trying to run a stored procedure from Database A that tries to create a table in the tempdb. If that is correct, the issue you are having is trustworthiness and you need to grant several permissions:

  1. Enable Trustworthiness on database A
  2. Grant execute on the stored procedure to the user account you are using
  3. If you are running it from task scheduler / cmd using bcp or sqlcmd, give the account the following permissions to the tempdb ONLY, datareader, datawriter, ddladmin.

These three things will solve your issue.

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

79451484

Date: 2025-02-19 13:26:31
Score: 2
Natty:
Report link
import pandas as pd

mydict={'A':[1,2,3,4,5,6],'B':[2,5,1,1,5,1]}
df = pd.DataFrame(*[mydict])
df.head()

Output:

enter image description here

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

79451477

Date: 2025-02-19 13:25:30
Score: 1
Natty:
Report link

Bro the discrepancy (2.8820544184511335e-19) is simply a result of floating point arithmetic, and not because of np.linspace or np.savez or even solve_ivp. Even when you use identical expressions in different parts of your code, the limited precision of floating point representation (and the way operations like division and multiplication are performed) can introduce such minuscule differences.

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

79451476

Date: 2025-02-19 13:25:30
Score: 2.5
Natty:
Report link

Quote from https://de.mathworks.com/help/simulink/ug/function-handle-limitations-for-code-generation.html "You can use function handles in a MATLAB Function block. You cannot use function handles for Simulink® signals, parameters, or data store memory."

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Væry Slightly

79451472

Date: 2025-02-19 13:23:30
Score: 1
Natty:
Report link
import os
import sys

# Check if the system platform is Linux
if sys.platform.startswith('linux'):
    os.environ['PYOPENGL_PLATFORM'] = 'glx'

If you add these lines to the code it will use OpenGL for X11 instead of the EGL of wayland.

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

79451468

Date: 2025-02-19 13:21:29
Score: 2
Natty:
Report link

It seems there is a problem with the node version, Try to use FROM node:20.9.0

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

79451466

Date: 2025-02-19 13:21:29
Score: 1
Natty:
Report link

I was unable to auto populate stack chart with csv data. I went with manually processing it and providing it in format that Highchart like which looks like below:

chartOptions = {
  chart:{
    type:"column"
  },
  categories:['A', 'B'], // I was passing list of group
  plotOptions: {
    column: {
      stacking:"normal"
    }
  },
  series: [{name:'a', data:[2,null]}, {name:'b', data:[3,0]...] 
}

This is the only solution as for now.

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

79451462

Date: 2025-02-19 13:20:29
Score: 2
Natty:
Report link

Within powershell you can run the following:

Start-Process powershell.exe -Credential domain\user -ArgumentList "-File C:\Temp\script.ps1"

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

79451460

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

The redirect-uris should be in the below format. please check.

"redirect-uris": [
   "https://*.cfapps.eu10-004.hana.ondemand.com/**"
 ]
}

Notice the /** in the end and *.cfapps subdomain

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

79451451

Date: 2025-02-19 13:13:28
Score: 1.5
Natty:
Report link

Thank you both for your help. derHugo is right, my SetObjectVisibility(false); was executed only on server. I changed my HideObject method so it calls ClientRpc method for setting object visibility and now it works.

[Server]
public void HideObject(NetworkConnectionToClient client)
{
    RpcSetObjectVisibility(false);
    TargetSetActive(client);
}

[ClientRpc]
private void RpcSetObjectVisibility(bool visible)
{
    SetObjectVisibility(visible);
}
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Davor Homa

79451442

Date: 2025-02-19 13:10:27
Score: 3
Natty:
Report link

{ "message": "Tài khoản đã được tạo", "account": { "username": "LUU GIA BAO", "accountNumber": "2910200829102008", "balance": 1000000000 } }

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Filler text (0.5): 000000000
  • Low reputation (1):
Posted by: Bao Luu

79451435

Date: 2025-02-19 13:08:26
Score: 0.5
Natty:
Report link

You can also do

int _, useful_value, another_useful_value;
ss >> _ >> _ >> useful_value >> _ >> another_useful_value;

It uses an extra variable, but is much cleaner and readable in my opinion if you only need to discard a value

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