79725086

Date: 2025-08-04 15:08:00
Score: 2.5
Natty:
Report link

Be aware of your package name from another module when files is placed. If it ends with "buildconfig" you can't build the project.

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

79725075

Date: 2025-08-04 14:55:58
Score: 2.5
Natty:
Report link

.

How can I extract the Unicode code point(s) of a given Character without first converting it to a String?

Use this:

let example: Character = "🇺🇸"

print(getUnicodeHexadecimalCodes(example)) // Prints: ["1F1FA", "1F1F8"]



func getUnicodeHexadecimalCodes(_ theCharacter: Character) -> [String] {
    var dum: [String] = []
    let dummer: String = "%04X" // Basic format string. Others: "U+%04X", or "\\u{%04X}".
    theCharacter.unicodeScalars.forEach { dum.append(String(format: dummer, $0.value)) }
    return dum
}
//
// Or in decimal format:
//
func getUnicodeDecimalCodes(_ character: Character) -> [UInt32] {
    var dum: [UInt32] = []
    character.unicodeScalars.forEach { dum.append($0.value) }
    return dum
}



// 😎

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: LGLB

79725070

Date: 2025-08-04 14:51:57
Score: 1
Natty:
Report link

Yes, it’s definitely possible to share a single AI key across multiple apps or services, as long as the backend is set up securely.In one of my recent projects, I worked on a platform where we use a centralized AI key across different services like a chatbot, analytics module, and document summarizer all under the same system. We made sure to track usage per service and apply access limits when needed.If you're designing something similar, just make sure to:

Keep the key server-side (not exposed in frontend code),

Use environment variables,,And monitor usage to prevent abuse.

Some platforms (like the one we built at InsideAI Web Solution) are structured this way by default, so the same key can serve multiple apps securely while still allowing detailed monitoring.

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

79725068

Date: 2025-08-04 14:47:56
Score: 1
Natty:
Report link
The answer was doing like this:

        $uploader = new MultipartUploader($s3, $file, [
                'bucket' => $bucket,
                'key'    => $key,
                'before_initiate' => function(\Aws\CommandInterface $command) {
                    $command['StorageClass'] = 'STANDARD_IA';
                }
            ]);

Thanks to Chris Haas!
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: greg

79725065

Date: 2025-08-04 14:46:55
Score: 0.5
Natty:
Report link

There are other ways to check for duplicates, such as comparing df.height to df.unique(subset).height, your implementation is better for an "early exit" because it can potentially finish much faster if a duplicate is found early in the dataset.

I think your code is already at a good point.

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

79725057

Date: 2025-08-04 14:43:54
Score: 1.5
Natty:
Report link

it seems kafka need tuning in order to get rid of the issues..

  1. Reduce poll.interval.ms

  2. reduce log.mining.sleep.time.millis

    From Database side you can guarantee undo retention..

  3. SELECT tablespace_name, retention FROM dba_tablespaces WHERE contents='UNDO';

  4. ALTER TABLESPACE UNDOTBS1 RETENTION GUARANTEE;

    Hope it fix the issue

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

79725037

Date: 2025-08-04 14:28:50
Score: 2
Natty:
Report link

Same issue but after upgrading to Android Gradle Plugin 8.1.1 using the Upgrade Assistant and setting all compileOptions and kotlinOptions to use Java 18 (JavaVersion.VERSION_18, jvmTarget = "18"), the build now completes successfully. Looks like the issue is related to mismatched Java versions before the upgrade.

Reasons:
  • RegEx Blacklisted phrase (1): Same issue
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Felix 17

79725030

Date: 2025-08-04 14:21:48
Score: 0.5
Natty:
Report link

first know your interface's name

netsh wlan show interfaces

then find your profile's name

netsh wlan show profiles

now you can connect

netsh wlan connect name="your profile's name" interface="your interface's name"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user3407604

79725026

Date: 2025-08-04 14:17:47
Score: 0.5
Natty:
Report link

I exactly had this issue, but my solution was different:
i just the import type to import:

import { type UserRoleDeleteDto } from "../dtos/user-role-delete.dto";

to this:

import { UserRoleDeleteDto } from "../dtos/user-role-delete.dto";
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: arianpress

79725019

Date: 2025-08-04 14:13:46
Score: 0.5
Natty:
Report link

In my case I did have a faulty region configured in ~/.aws/config
Setting

region = eu-central-1

did fix the issue for me.

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

79725018

Date: 2025-08-04 14:11:45
Score: 1.5
Natty:
Report link

You might want to take a look at the Binary Trees benchmark from the Benchmarks Game. It's a good stress test for garbage collectors, especially when implemented with multiple threads.

The benchmark creates many binary trees of varying sizes — some short-lived and some long-lived — which puts memory pressure on the GC in a realistic way.

You can easily adapt the code to different languages, and even tweak the memory pressure or concurrency to test GC behavior under various conditions.

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

79725005

Date: 2025-08-04 14:02:43
Score: 1
Natty:
Report link

Make sure debugging symbols is loaded for libstdc++ . Can be verified using the info sharedlibrary command.

ptype a, prints the type of the variable a, in this case it is std::string

If you want to print the underlying structure, try inspecting the type of the object the address of a is pointing to.

ptype &a

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

79725004

Date: 2025-08-04 14:02:43
Score: 3.5
Natty:
Report link

What is i want to do something like this:

procedure foo( bar1 IN number DEFAULT 5,
     bar2 IN varchar2,
     bar3 IN varchar2 );

only want to set one parameter as a default

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): What is i
  • Low reputation (1):
Posted by: Dhruvil

79725000

Date: 2025-08-04 14:02:43
Score: 1.5
Natty:
Report link

According to the answer I got from Microsoft Q & A, there is indeed no guarantee that the session B reader would read the writes made by the Session A writer in the correct order, i.e. works like eventual consistency.

Also the session consistency level does not include the consistent prefix guarantee (outside of the session). However assuming you are doing reads via the SDK, you could indeed explicitly request consistent prefix guarantees for each of the read requests you are making as the "session" B reader. Naturally you would lose any session related functionality when doing it.

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

79724993

Date: 2025-08-04 13:56:42
Score: 1
Natty:
Report link

To forward all HTTP requests after the base URL using API Gateway, follow this setup:
HTTP Method: ANY
https://your-api-id.execute-api.region.amazonaws.com/{proxy}
Resource path: ANY
/{proxy+}

This configuration is useful for wrapping all your APIs behind a single AWS endpoint, which can help bypass certain firewall restrictions.

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

79724987

Date: 2025-08-04 13:53:41
Score: 3.5
Natty:
Report link

Have you tried Tapioca? It has (among others) compilers for https://www.rubydoc.info/gems/tapioca/Tapioca/Dsl/Compilers/GraphqlInputObject and https://www.rubydoc.info/gems/tapioca/Tapioca/Dsl/Compilers/GraphqlMutation to generate type signatures.

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Rafe

79724984

Date: 2025-08-04 13:51:40
Score: 1
Natty:
Report link

Pretty weird and useless but 'true' one-liner:

DateTime? dateTime = new Func<(bool, DateTime), DateTime?>(tuple => tuple.Item1 ? tuple.Item2 : null)(new Func<string, (bool, DateTime)>(d => (DateTime.TryParse(d, out var dt), dt))("2025-08-99");
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ghcentre

79724979

Date: 2025-08-04 13:49:38
Score: 9.5
Natty: 6.5
Report link

Were you able to resolve this? I have been on this issue for like a week now :(

Reasons:
  • Blacklisted phrase (1): :(
  • RegEx Blacklisted phrase (1.5): resolve this?
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: josh ross

79724976

Date: 2025-08-04 13:45:37
Score: 1.5
Natty:
Report link

I used the LAG() window function to subtract the the previous row’s value:

SELECT DateTimeStamp, DMS1, DMS1 - LAG(DMS1) OVER (ORDER BY DateTimeStamp) AS HourlyDMS1 FROM vPLANTDATA ORDER DateTimeStamp;

The documentation for LAG() is found here : https://learn.microsoft.com/en-us/sql/t-sql/functions/lag-transact-sql?view=sql-server-ver17

I tried the following query and got this op:

op from query run

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

79724975

Date: 2025-08-04 13:45:37
Score: 0.5
Natty:
Report link

There is no cmath.h header in the standard library. You need either <cmath> or <math.h>

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Aleksandr Medvedev

79724962

Date: 2025-08-04 13:33:34
Score: 2
Natty:
Report link

This question has been already answered here https://serverfault.com/questions/1035465/why-would-aws-fargate-task-containers-report-wildly-incorrect-memory-limits

Fargate set a CommitLimit to the one desidered to you. It is visible directly from cat /proc/meminfo

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

79724952

Date: 2025-08-04 13:21:30
Score: 1.5
Natty:
Report link

thank you very much for your comments! I post an answer for completeness: yes guys you are right, that's not the Binding that was responsible for the crash. I have a function which binds a TextBox.Text to SelectedItem of ListView as follows:

    (listView.SelectedItem as Element).Patient.SurName = (sender as TextBox).Text;

.. and I did not check if SelectedItem is not null. After checking this all worked fine.

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

79724927

Date: 2025-08-04 12:58:25
Score: 2.5
Natty:
Report link

on iOS you need to applyConstraints on the track before creating ImageCapture

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

79724920

Date: 2025-08-04 12:49:23
Score: 1.5
Natty:
Report link

It is part of the Multicast DNS (mDNS) protocol that resolves a device's hostname to be accessible via http://hostname, http://hostname.local or http://hostname.localdevice by pointing to its IP address within a small network that does not include a local name server.

Reference: https://en.wikipedia.org/wiki/Multicast_DNS

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

79724918

Date: 2025-08-04 12:45:22
Score: 3
Natty:
Report link

I have found success using Google sheets first. Copy from book 1 to Sheets, then from sheets to book 2. My new organization doesn't allow for sheets which is why I'm here looking for a new solution.

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

79724905

Date: 2025-08-04 12:33:19
Score: 3
Natty:
Report link

check if you have added closeProtection a option that also is treating call as false and triggering a hangup for me it simply worked by removing this

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

79724902

Date: 2025-08-04 12:25:17
Score: 1
Natty:
Report link

I just got back to chasing this further and found my own answer.

I found a piece of code out on the web, which used the sdbus to send a message, which I was able to get working successfully. I then started working backwards to figure out what the difference was between my code and theirs and was able to narrow it down to the request_handler() function that was called when the sendRequest entry in my VTABLE was hit. In the request_handler() function, I had some local variables that were uninitialized. I found that when I initialized these local variables to zero, when they were declared, that the error messages I was seeing in the log went away.

enter image description here

I'm not exactly sure what was going on, under the hood, that led to the error messages in the journal output, but after initializing these variables, the errors are gone. It looks like the uninitialized variables led to some undefined behavior, that manifested itself in a very unexpected and cryptic fashion.

It is probably worth mentioning, that I found a tool called d-spy, which was very useful in the debugging process. It is a tool intended to help explore d-bus connections, and can be used to execute and invoke methods on an interface, on both the session or system bus. It can be found here: https://flathub.org/apps/org.gnome.dspy

Here is how I would test the set up of my interface, and invoke methods:

enter image description here

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

79724889

Date: 2025-08-04 12:10:13
Score: 3
Natty:
Report link

Openssl has an old bug (about 14 years) then you cannot decrypt file bigger than free RAM on your PC. As solution I recommend to you age utility https://github.com/FiloSottile/age

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

79724873

Date: 2025-08-04 11:55:09
Score: 4
Natty:
Report link

Turns out it is a bug with the OpenApi generation on .NET 9, it will be fixed in .NET 10.

https://github.com/dotnet/aspnetcore/issues/62079

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

79724871

Date: 2025-08-04 11:55:09
Score: 2
Natty:
Report link

Can you put those to your code and run?


    low_speed_limit = 0,      low_speed_time = 900  

İf it doesnt work maybe you can use

options(timeout=333333)
Reasons:
  • Blacklisted phrase (1): doesnt work
  • Whitelisted phrase (-1.5): you can use
  • 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: AHMET yiğitbaşı

79724870

Date: 2025-08-04 11:54:08
Score: 2
Natty:
Report link

Thanks Brett Donald.

I use this css :

#files {
    display: block;
    columns: 200px 4;
    gap: 10px;
    max-width: 1030px; /* 4 times 250px plus 3 times 10px */
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user16761658

79724856

Date: 2025-08-04 11:41:05
Score: 2.5
Natty:
Report link

so it turns out i had set my env in react app to localhost instead of 192.x.x.x - now it works. thanks everyone for help

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Timmy

79724855

Date: 2025-08-04 11:40:05
Score: 3.5
Natty:
Report link

The above solution by ethanworker solved it for me

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

79724847

Date: 2025-08-04 11:30:02
Score: 1.5
Natty:
Report link

Thanks to answers by SpaceTrucker and Gerold Broser I managed to make this work!
Using maven-dependency-plugin:collect I put all the libraries into a text file, then in process-resources phase a script formats the file contents how I want and injects them into its destination file in target folder.

plugins in pom.xml:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <version>3.8.1</version>
    <executions>
        <execution>
            <id>collect</id>
            <phase>generate-sources</phase>
            <goals>
                <goal>collect</goal>
            </goals>
            <configuration>
                <outputFile>scripts/libraries.txt</outputFile>
                <outputScope>false</outputScope>
                <outputEncoding>UTF-8</outputEncoding>
                <excludeArtifactIds>purpur-api, paper-api, spigot-api</excludeArtifactIds>
                <excludeTransitive>true</excludeTransitive>
                <excludeScope>runtime</excludeScope><!-- excludes runtime+compile -->
                <silent>true</silent>
                <sort>true</sort>
            </configuration>
        </execution>
    </executions>
</plugin><!-- maven-dependency-plugin @ generate-sources -->
<plugin>
    <artifactId>exec-maven-plugin</artifactId>
    <groupId>org.codehaus.mojo</groupId>
    <version>3.5.1</version>
    <executions>
        <execution>
            <id>exec-script</id>
            <phase>process-resources</phase>
            <goals>
                <goal>exec</goal>
            </goals>
            <configuration>
                <executable>scripts/injectLibrariesIntoResources-v2.6.bat</executable>
            </configuration>
        </execution>
    </executions>
</plugin><!-- exec-maven-plugin @ process-resources -->

script in scripts/injectLibrariesIntoResources-v2.6.bat:

@echo off
cd scripts

set librariesFile="libraries.txt"
set targetFile="../target/classes/plugin.yml"

powershell -command "(Get-Content '%librariesFile%') | ? {$_.trim() -ne ''} | Set-Content '%librariesFile%'"
powershell -command "(Get-Content '%librariesFile%') -replace 'The following files have been resolved:', '' | Set-Content '%librariesFile%'"
powershell -command "(Get-Content '%librariesFile%') -replace ':jar|.*$', '' | Set-Content '%librariesFile%'"
powershell -command "(Get-Content '%librariesFile%') -replace '   ', '- ' | Set-Content '%librariesFile%'"

powershell -command "(Get-Content '%targetFile%' -Raw) -replace ' \[\] #libraries', (Get-Content '%librariesFile%' -Raw) | Set-Content '%targetFile%'"

which changes line in plugin.yml from

libraries: [] #libraries

to

libraries:
- com.google.code.gson:gson:2.13.1
- javax.annotation:javax.annotation-api:1.3.2
- org.apache.commons:commons-lang3:3.18.0

Why is the script in bash but uses powershell? I wanted this setup to be easily portable! Executing powershell script files requires changing execution policy in Windows.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Nathalie Kitty

79724842

Date: 2025-08-04 11:24:01
Score: 0.5
Natty:
Report link

In Cinnamon 22.1, you can achieve the desired result with two keyboard shortcuts: Super + C for centering the window and Super + V for vertical maximization, after enabling them.
The steps to assign the shortcuts are:

  1. Open the desktop Menu → Keyboard → Shortcuts. In the left sidebar: go to Spices → Calendar → Instance 1, change or remove the default shortcut for Show Calendar (Super + C). I set it to Super + K.

  2. If you have other Calendar Instances, change the shortcut accordingly to free the Super + C shortcut.

  3. In the left sidebar: go to Windows, assign Super + V to "Toggle vertical maximization".

  4. In the left sidebar: go to Windows → Positioning, assign Super + C to "Center window in screen".

Note that with the Center Window shortcut, it's not possible to center a window after you tiled it using Super + Arrow (e.g., tiling to the left with Super + L and then pressing Super + C). As a workaround, if you have a fullscreen application, drag it wherever you want and set your preferred width with the mouse. Finally, press Super + C and Super + V.

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

79724831

Date: 2025-08-04 11:14:58
Score: 1.5
Natty:
Report link

You're using Node.js: v4.5.0, npm: v2.15. These versions are extremely old (from 2016) and are not compatible with most modern packages. Also, the npm registry now requires secure connections and features that old versions don’t support.

download and install latest version of node js from official website of node js select latest version. after installing run this command: node -v for node js version npm -v for npm version

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

79724821

Date: 2025-08-04 11:02:56
Score: 3.5
Natty:
Report link

i had same problem, try removing /src from your root

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

79724819

Date: 2025-08-04 11:01:56
Score: 0.5
Natty:
Report link

The best way to install ImageMogick is to start with the ImageMagick distributions, which come with its Perl stuff. It's a bit annoying to remember this every time I want to install it since I don't use it much, but it's much less painful.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: brian d foy

79724811

Date: 2025-08-04 10:56:54
Score: 2
Natty:
Report link

That is how anchor tabs work. You should the colour of your anchor text to be white (or whatever colour the background of your document is), so that it is invisible to signers but Docusign can still pick up the anchor text and place tabs on it.

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

79724806

Date: 2025-08-04 10:52:54
Score: 0.5
Natty:
Report link

If you see below in man 2 brk you will see in NOTES:

The return value described above for brk() is the behavior provided by the glibc wrapper function for the Linux brk() system call. ...
However, the actual Linux system call returns the new program break on success. On failure, the system call returns the current break.
The glibc wrapper function does some work (i.e., checks whether the new break is less than addr) to provide the 0 and -1 return values described above.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Филя Усков

79724798

Date: 2025-08-04 10:48:52
Score: 4
Natty: 4.5
Report link

It looks like it is possible now using sql stored procedures:
https://www.snowflake.com/en/engineering-blog/sql-stored-procedures-async-execution/

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

79724788

Date: 2025-08-04 10:40:50
Score: 1
Natty:
Report link
  1. Press Trace into... (blue vanishing arrow button)

  2. Set break condition to rdx==0x1111111111111111

  3. Set Record trace checkbox if you want instruction log, press Ok

if you break for any reason other than your rdx condition, repeat again
If you recorded trace, it will be on Trace tab

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

79724787

Date: 2025-08-04 10:40:50
Score: 4
Natty:
Report link

How to assign the elastic ip as load balancer in nginx-controller

is there any option to get the elastic ip a

Reasons:
  • Blacklisted phrase (1): is there any
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): How to as
  • Low reputation (1):
Posted by: Bhanu Prakash

79724763

Date: 2025-08-04 10:25:46
Score: 3
Natty:
Report link

when you need to update specific folder , ex : report folder , you need to open .war file using winrar , before that you have to stop the server or suspend until work is done , after modifications you can resume or restart the JBOSS server

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): when you
  • Low reputation (1):
Posted by: Tharaka Devinda

79724761

Date: 2025-08-04 10:23:45
Score: 8
Natty: 8.5
Report link

damn bro where did you found this user prefix being needed??!!!
thanks for your help

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-0.5): thanks for your help
  • RegEx Blacklisted phrase (3): did you found this
  • RegEx Blacklisted phrase (1.5): fix being needed??
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Mj Gamer

79724753

Date: 2025-08-04 10:19:44
Score: 0.5
Natty:
Report link

It’s very unlikely that userInfo changes just because you're inside apps.map(), JavaScript doesn’t work that way. What’s more likely is that your userInfo value is being updated somewhere (maybe from an async call or due to state updates), and you're seeing different values at different points in the render. If you’re using a state management library like Zustand or Redux, it might be re-rendering the component when the store updates. Also, if you're using React Strict Mode (which is on by default in development), React may render components twice to help catch bugs, which can make it look like values are changing unexpectedly. Try logging userInfo both inside and outside the .map() to compare them and see what’s happening. Most likely, it’s not about .map() itself, but about when and how your state is being updated

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vaishnav Parte

79724740

Date: 2025-08-04 10:02:40
Score: 1
Natty:
Report link

If the batch processing is running inside a command, adding -e prod to the command parameters will do the trick and won't bloat up your memory

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

79724736

Date: 2025-08-04 09:59:39
Score: 4.5
Natty: 5
Report link

Install the latest version of CNWizard.

https://www.cnpack.org/download.php?id=763&lang=en

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

79724733

Date: 2025-08-04 09:55:37
Score: 7.5
Natty: 5
Report link

Hey did you find a solution for this. im also having issues with that as it polls redis too much increasing costs for me on upstash, so wondering if you found a way that works to timeout and poll after few seconds or minutes?

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bilal Waseem

79724723

Date: 2025-08-04 09:47:35
Score: 1.5
Natty:
Report link

You want to accomplish your layout by:

On the left is a sizable 16:9 thumbnail.

On the right are two smaller 16:9 thumbnails arranged vertically.

The combined height of the two thumbnails on the right-side must match that of the large one.

The 16:9 aspect ratio must be adhered to by all thumbnails.

Let's use some elementary algebra to dissect this......more

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

79724715

Date: 2025-08-04 09:43:34
Score: 1
Natty:
Report link

Have you tried blowing into the OpenGL's cartridge from left to right as you hold it flat on your hands?

Also, keep an eye on the entrance slot, right after yous slide it in you will then need to push down and it will lock in place.

And remember, it is always best do this all of this while you smoke crack and worship Satan.

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Jayme Splendid

79724714

Date: 2025-08-04 09:41:34
Score: 1
Natty:
Report link
flutter pub cache repair

this worked for meenter image description here

Reasons:
  • Whitelisted phrase (-1): this worked for me
  • Whitelisted phrase (-1): worked for me
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Aftab Awan

79724709

Date: 2025-08-04 09:36:33
Score: 1.5
Natty:
Report link
Option Explicit

Public Sub Benford_ColumnG_ToSheet_MacFixed()
    Const DATA_SHEET_NAME As String = "2018"   ' e.g., "Data"; blank "" = ActiveSheet
    Const DATA_COL As String = "G"         ' change if your numbers are in a different column
    Const START_ROW As Long = 2            ' set to 1 if no header row

    Dim wsData As Worksheet, wsOut As Worksheet
    Dim lastRow As Long, i As Long
    Dim arr As Variant, v As Variant
    Dim counts(1 To 9) As Long
    Dim total As Long, d As Long
    Dim expected As Double, obs As Double
    Dim chisq As Double, mad As Double
    Dim chartObj As ChartObject
    Dim co As ChartObject

    On Error GoTo CleanFail
    Application.ScreenUpdating = False
    Application.EnableEvents = False

    ' Pick the data sheet
    If Len(DATA_SHEET_NAME) > 0 Then
        Set wsData = ThisWorkbook.Worksheets(DATA_SHEET_NAME)
    Else
        Set wsData = ActiveSheet
    End If

    ' Find last row with data in the chosen column
    lastRow = wsData.Cells(wsData.Rows.Count, DATA_COL).End(xlUp).Row
    If lastRow < START_ROW Then
        MsgBox "No data found in column " & DATA_COL & " at or below row " & START_ROW & ".", vbExclamation
        GoTo CleanExit
    End If

    ' Load to array (fast)
    arr = wsData.Range(DATA_COL & START_ROW & ":" & DATA_COL & lastRow).Value

    ' Count first significant digits
    total = 0
    For i = 1 To UBound(arr, 1)
        v = arr(i, 1)
        d = FirstSignificantDigitFromValue(v)  ' 0 if none/zero
        If d >= 1 And d <= 9 Then
            counts(d) = counts(d) + 1
            total = total + 1
        End If
    Next i

    If total = 0 Then
        MsgBox "No analyzable values (first digit 1–9) found in column " & DATA_COL & ".", vbExclamation
        GoTo CleanExit
    End If

    ' Create/clear output sheet
    On Error Resume Next
    Set wsOut = ThisWorkbook.Worksheets("Benford")
    On Error GoTo 0
    If wsOut Is Nothing Then
        Set wsOut = ThisWorkbook.Worksheets.Add(After:=wsData)
        wsOut.Name = "Benford"
    Else
        wsOut.Cells.Clear
    End If

    With wsOut
        ' Headers
        .Range("A1:E1").Value = Array("Digit", "Count", "% of Total", "Benford %", "Diff (Obs - Exp)")
        .Range("A1:E1").Font.Bold = True

        ' Body
        For d = 1 To 9
            .Cells(d + 1, "A").Value = d
            .Cells(d + 1, "B").Value = counts(d)
            .Cells(d + 1, "D").Value = Log(1# + 1# / d) / Log(10#) ' Benford expected %
        Next d

        .Range("A11").Value = "Total"
        .Range("B11").FormulaR1C1 = "=SUM(R[-9]C:R[-1]C)"
        .Range("C2:C10").FormulaR1C1 = "=RC[-1]/R11C2"     ' observed %
        .Range("E2:E10").FormulaR1C1 = "=RC[-2]-RC[-1]"    ' diff %

        .Range("B2:B11").NumberFormat = "0"
        .Range("C2:C10,D2:D10,E2:E10").NumberFormat = "0.000%"
        .Columns("A:E").AutoFit

        ' Chi-square
        chisq = 0#
        For d = 1 To 9
            expected = total * .Cells(d + 1, "D").Value
            chisq = chisq + ((counts(d) - expected) ^ 2) / expected
        Next d
        .Range("A13").Value = "Chi-square"
        .Range("B13").Value = chisq

        ' p-value (df=8) via worksheet formula (works on Mac/Win)
        .Range("A14").Value = "p-value (df=8)"
        .Range("B14").Formula = "=IFERROR(CHISQ.DIST.RT(B13,8),IFERROR(CHIDIST(B13,8),""n/a""))"
        .Range("B14").NumberFormat = "0.0000"

        ' MAD and class
        mad = 0#
        For d = 1 To 9
            obs = .Cells(d + 1, "C").Value
            expected = .Cells(d + 1, "D").Value
            mad = mad + Abs(obs - expected)
        Next d
        mad = mad / 9#
        .Range("A15").Value = "MAD"
        .Range("B15").Value = mad
        .Range("B15").NumberFormat = "0.0000"

        .Range("A16").Value = "MAD Class"
        .Range("B16").Formula = "=IF(B15<0.006,""Close conformity"",IF(B15<0.012,""Acceptable"",IF(B15<0.015,""Marginal"",""Nonconformity"")))"

        ' Remove any existing charts (Mac-stable)
        For Each co In .ChartObjects
            co.Delete
        Next co

        ' Add chart
        Set chartObj = .ChartObjects.Add(Left:=.Range("G2").Left, Top:=.Range("G2").Top, Width:=420, Height:=280)
        With chartObj.Chart
            .ChartType = xlColumnClustered

            Do While .SeriesCollection.Count > 0
                .SeriesCollection(1).Delete
            Loop

            With .SeriesCollection.NewSeries
                .Name = "% Observed"
                .XValues = wsOut.Range("A2:A10")  ' *** Mac-safe: explicit worksheet ***
                .Values = wsOut.Range("C2:C10")
            End With
            With .SeriesCollection.NewSeries
                .Name = "Benford %"
                .XValues = wsOut.Range("A2:A10")  ' *** Mac-safe: explicit worksheet ***
                .Values = wsOut.Range("D2:D10")
            End With

            .HasTitle = True
            .ChartTitle.Text = "Benford's Law ? First Digit (" & wsData.Name & "!" & DATA_COL & ")"
            .Axes(xlValue).TickLabels.NumberFormat = "0%"
            .Legend.Position = xlLegendPositionBottom
        End With
    End With

    MsgBox "Benford analysis complete. See the 'Benford' sheet.", vbInformation

CleanExit:
    Application.ScreenUpdating = True
    Application.EnableEvents = True
    Exit Sub

CleanFail:
    Application.ScreenUpdating = True
    Application.EnableEvents = True
    MsgBox "Error: " & Err.Description, vbExclamation
End Sub

' First significant digit helper (unchanged)
Private Function FirstSignificantDigitFromValue(ByVal v As Variant) As Integer
    Dim x As Double
    Dim s As String
    Dim i As Long, ch As Integer

    If IsNumeric(v) Then
        x = Abs(CDbl(v))
        If x = 0# Then
            FirstSignificantDigitFromValue = 0
            Exit Function
        End If
        Do While x >= 10#
            x = x / 10#
        Loop
        Do While x < 1#
            x = x * 10#
        Loop
        FirstSignificantDigitFromValue = Int(x)
        If FirstSignificantDigitFromValue < 1 Or FirstSignificantDigitFromValue > 9 Then
            FirstSignificantDigitFromValue = 0
        End If
    Else
        s = CStr(v)
        For i = 1 To Len(s)
            ch = Asc(Mid$(s, i, 1))
            If ch >= 49 And ch <= 57 Then
                FirstSignificantDigitFromValue = ch - 48
                Exit Function
            End If
        Next i
        FirstSignificantDigitFromValue = 0
    End If
End Function

the only thing you have to change is the name of the sheet you want analysed and the column that your data are everthing else is copy paste and it works on macos too
posting this because i couldnt find it anywhere else for excel vba and i want people to have it enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (1): i want
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Thanasis Papazikos

79724706

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

can you add below line in AppConfig.ts file.

provideBrowserGlobalErrorListeners()

after

provideZonelessChangeDetection()

This provides global error handling (which used to be part of zone.js).

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): can you add
  • Low reputation (0.5):
Posted by: Utsav Sheta

79724705

Date: 2025-08-04 09:31:31
Score: 0.5
Natty:
Report link

When you CAST() short value to NVARCHAR then SQL Server adds some right-padding to the value, and this "some value" is then hashed:

-- CAST the whole value
SELECT HASHBYTES('SHA2_512','Password' + CAST('Salt' AS NVARCHAR(36)))
-- Concatenation w/o CAST
SELECT HASHBYTES('SHA2_512','Password' + 'Salt')
-- Concatenation with manual padding
SELECT HASHBYTES('SHA2_512','Password' + 'Salt' + CAST('' AS NVARCHAR(32)))
       
(No column name)
0x3B2EF12DF03E5756286EB5B86BCABE6A838ED91578E6535F1427E51D79AAABC566A838C0BBF02E4ED87E9F645959D55AA4829D7A6D4FE74BAE2B035D3C8B0C47
(No column name)
0x90668E67E68BBBEBC8310F435EE4CD667D43C1CC7BE78A882093DB461E8BC2AC54DA81B54AD4BDD804B838FBEF6A42A0DE24ED0DAA578361EC75748B32BCE9AF
(No column name)
0x3B2EF12DF03E5756286EB5B86BCABE6A838ED91578E6535F1427E51D79AAABC566A838C0BBF02E4ED87E9F645959D55AA4829D7A6D4FE74BAE2B035D3C8B0C47

fiddle

MySQL have soft datatype system, and it simply truncates the padding symbols before thay are provided to the hashing function.

SELECT SHA2(CONCAT('Password', CAST('Salt' AS CHAR(36))), 512);
SELECT SHA2(CONCAT('Password', 'Salt'), 512);
SELECT SHA2(CONCAT('Password', 'Salt', CAST('' AS CHAR(32))), 512);
SHA2(CONCAT('Password', CAST('Salt' AS CHAR(36))), 512)
90668e67e68bbbebc8310f435ee4cd667d43c1cc7be78a882093db461e8bc2ac54da81b54ad4bdd804b838fbef6a42a0de24ed0daa578361ec75748b32bce9af
SHA2(CONCAT('Password', 'Salt'), 512)
90668e67e68bbbebc8310f435ee4cd667d43c1cc7be78a882093db461e8bc2ac54da81b54ad4bdd804b838fbef6a42a0de24ed0daa578361ec75748b32bce9af
SHA2(CONCAT('Password', 'Salt', CAST('' AS CHAR(32))), 512)
90668e67e68bbbebc8310f435ee4cd667d43c1cc7be78a882093db461e8bc2ac54da81b54ad4bdd804b838fbef6a42a0de24ed0daa578361ec75748b32bce9af

fiddle

And I cannot find the solution...

Reasons:
  • Blacklisted phrase (1.5): I cannot find
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (1.5): cannot find the solution
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • High reputation (-2):
Posted by: Akina

79724703

Date: 2025-08-04 09:28:31
Score: 1
Natty:
Report link

How I fixed it:

I went to File > Invalidate Caches / Restart and selected Invalidate and Restart.

After that, Android Studio finally recognized the project as a Flutter app.

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): How I fix
  • Low reputation (1):
Posted by: MuhammetVural

79724692

Date: 2025-08-04 09:21:29
Score: 2.5
Natty:
Report link

Title: Pine Script v5 - "Cannot use 'plot' in local scope" error in a seemingly correct script

Hello,I am facing a persistent "Cannot use 'plot' in local scope" error in Pine Script v5, and I am unable to find the cause. The plotting and alertcondition functions are in the global scope, but the compiler seems to think they are in a local scope.

The error seems to be triggered by the combination of `request.security` calls and the `if` statements used for the state machine logic. The `bgcolor` function before the state machine works fine, but all `plot` functions after it fail. I have tried many different architectural patterns without success.

Could someone please review my code and explain why this error is occurring?

Here is the complete code:

// PASTE THE CODE FROM THE BLOCK BELOW HERE

Thank you fo

r your help!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Shebaz

79724690

Date: 2025-08-04 09:20:29
Score: 3
Natty:
Report link

See the screen recording of the solution in the below URL. The URL is of resolved issue raised for this feature
https://github.com/microsoft/vscode-mssql/issues/18316#issuecomment-2461067735

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

79724677

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

After tinkering a bit, I discovered that adding -fomit-frame-pointer was enough to make the codegen output the same on each compiler. Looking at the history of this optimization, it looks like there's been a push to make it default disabled on all distros, which is a good thing of course. But in this case I am heavily dependent on reducing instruction usage down to the absolute minimum.

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

79724674

Date: 2025-08-04 09:08:25
Score: 3.5
Natty:
Report link

Try this library, its working for both Android and IOS - https://www.npmjs.com/package/react-native-voice-to-text

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

79724663

Date: 2025-08-04 09:01:24
Score: 3.5
Natty:
Report link

git revert -m 1 <commit_hash>

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

79724661

Date: 2025-08-04 09:00:23
Score: 1
Natty:
Report link

take Backup into .psql format as

pg_dump -d database_name -U username -f /tmp/filename.psql -h localhost -port 5432

and restore this file using command as

psql -d database_name -U username -f /tmp/backup_file.psql

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

79724659

Date: 2025-08-04 08:59:22
Score: 2.5
Natty:
Report link

First click on the opening bracket for the function you want to select fully, then press ctrl+shift+p to open vs code setting terminal, search for "select to Bracket", this work's for me every time.

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

79724650

Date: 2025-08-04 08:50:21
Score: 2
Natty:
Report link

I’m not familiar with hemlock specifically (familiar with CL and C however). In the past I’ve just kept the signal handler very simple: set some global variables and maybe an event/CV or similar. The main thread is then triggered from that - and the complex UI code is kept on the main thread.

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

79724648

Date: 2025-08-04 08:49:20
Score: 3
Natty:
Report link

value?.processProductType?.string == "scoreCash"

Here processProductType is key and scoreCash is value

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

79724646

Date: 2025-08-04 08:47:20
Score: 9
Natty: 7
Report link

I have a similar problem and this formula works well, but it considers blank cells as zero in the calculation of standard deviation. Is there a way to calculate it without considering blank cells?

Reasons:
  • Blacklisted phrase (1): I have a similar problem
  • Blacklisted phrase (1): Is there a way
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have a similar problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jeanini Jiusti

79724644

Date: 2025-08-04 08:45:19
Score: 1
Natty:
Report link

It's just historical. Nowadays, use UTF-8. There's no good reason to continue using latin1, except for compatibility with older systems.

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

79724636

Date: 2025-08-04 08:36:16
Score: 0.5
Natty:
Report link

You can get the desired result by running an aggregation:

FT.AGGREGATE cities_idx "*"  
LOAD 3 @__key @fieldOne @fieldTwo 
APPLY "format('%s:%s', @fieldOne, @fieldTwo)" AS combo 
FILTER "@combo=='Foo:Bar'" 
GROUPBY 1 @__key

This will return: search:cities:1

You can then do JSON.GET search:cities:1

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Raphael De Lio

79724629

Date: 2025-08-04 08:24:13
Score: 1.5
Natty:
Report link

I think the issue you are experiencing is most probably how container shapes adjust through the SwiftUI view hierarchy in IOS 18.

In short I believe it's all about precedence.

You need to set the container shape on a parent view, not the view with the concentric rectangle background. Container shapes flow down the hierarchy for the nearest container shape and ConcentricRectangle looks for the hierarchy for the nearest container shape.

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

79724625

Date: 2025-08-04 08:21:12
Score: 1
Natty:
Report link

i believe my below successed experience is helpful for solving you problem and others who stuck on similar problem with other jupyter notebooks image.

Be not professional coder and i just study QNAP NAS for fun with Jupyterlab.

it did cost one and half day on studying internet, including stackoverflow and github. But some coder's informations are too professional for me to fully understand and implement. Finally, based on those hints and with Doubao AI support, i made it success.

Below are very detail records on the way.

https://jupyter-docker-stacks.readthedocs.io/en/latest/using/recipes.html is too simple and for non-professional guys like me has very little helpful info.

============================

QNAP NAS using the scipy-notebook image jovyan cannot install or run programs using sudo.

========

when create containers in QNAP contatiner station

Add environment to containerstation:
-e RESTARTABLE=yes - Recycles Jupyter so that exiting Jupyter does not cause the container to exit. This may be useful when installing extensions that require restarting Jupyter.
-e GRANT_SUDO=yes - Grants access to sudo commands.
Add storage to containerstation:
your_workdocs_folder: /home/jovya. /home/jovya is the location where new notebooks are saved within the container and should be mapped to avoid loss during Docker changes.

======

pls open ssh in your QNAP NAS server and use putty(or other you are famliar with) sign in with admin users.

if you are not familiar with tools, cmds, pls use any AI to support. not complicate.

** DONT forget to close the ssh port after done , especially your server are in internet **

then follow below steps.

# Replace my own container scipy-notebook-202508 with the name of the container started in your own Docker container.
# Create a container started by the root user, configure the Ubuntu system in the container, and grant sudo permissions to the jovyan account.
[{QNAP ssh administrator} bin]$ docker exec -it -u root scipy-notebook-202508 /bin/bash

# Use apt-get to reinstall the sudo and vim tools required.
# Sometimes, a message appears indicating that vim cannot be used by the root user, although files can still be opened. To be on the safe side, it is recommended to reinstall.
root@a3557768d332:~# apt-get update
root@a3557768d332:~# apt-get install -y sudo
root@a3557768d332:~# apt update && apt reinstall -y vim

# You can directly modify visudo, but this is the recommended method. It's more convenient for deleting or adding new configurations later and won't corrupt the main sudoers file.
# I've confirmed that the /sudoers.d folder is included at the end of the main file. jovyan_config is the new configuration I created.
# The file contains only one line: jovyan ALL=(ALL:ALL) ALL. After adding ALL, press Escape, enter :wq to save, and exit.
root@a3557768d332:~# visudo -f /etc/sudoers.d/jovyan_config

# Change jovyan's password; I don't know the original password. It's recommended to set a more complex setting, including uppercase and lowercase special characters, and to use more than 10 characters.
# After all, 1. jovyan has root privileges, and 2. it can be accessed from the public network, not the Docker Hub, so there's no multi-person permission management.
root@a3557768d332:~# sudo passwd user2
Enter new UNIX password: [Enter new password]
Retype new UNIX password: [Enter new password again]
passwd: password updated successfully

# Exit scipy-notebook started by the root user
root@a3557768d332:~# exit

# Restart docker scipy-notebook-202508
# Check your running Docker, operating under the QNAP SSH administrator account.
[{QNAP SSH Administrator} bin]$ docker ps
[{QNAP SSH Administrator} bin]$ docker restart {your container name}

# ===Re-login in the JupyterLab interface. try sudo xxxx, enter jovyan's password, works ======
The following is from the JupyterLab terminal:
jovyan@a3557768d332:~$ sudo apt-get install -y cron
[sudo] password for jovyan:
Sorry, try again.
[sudo] password for jovyan:
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
cron is already the newest version (3.0pl1-137ubuntu3).
0 upgraded, 0 newly installed, 0 to remove, and 113 not upgraded.
jovyan@a3557768d332:~$
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Filler text (0.5): ============================
  • Filler text (0): ========
  • Low reputation (1):
Posted by: Kevin Han

79724623

Date: 2025-08-04 08:21:12
Score: 3
Natty:
Report link

Try to remove the symbol, Once you get the data on your end filter it by the symbol you need to show

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

79724617

Date: 2025-08-04 08:11:10
Score: 2
Natty:
Report link

Dependabot, works only with default branch,

Target Branch, this is used to specify the branch against which the pull request will be raised.

for ex: if A is your default branch and B is your dev branch, it will scan for updates against the A branch, and if you have mentioned target-branch: B in dependabot.yml file, then the pull request will be raised against the B branch.

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: SagChiToddler

79724616

Date: 2025-08-04 08:04:09
Score: 2.5
Natty:
Report link

Like Roland said, it's most likely floating point imprecision. If you want to properly round a number with three digits after the decimal and nothing else, add a 0 at the end to make sure R recognises it as 1.535 and not 1.534999999 or something

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

79724607

Date: 2025-08-04 07:48:05
Score: 1
Natty:
Report link

dependencies

implementation("org.chromium.net:cronet-embedded:119.6045.31")
implementation("org.chromium.net:cronet-api:119.6045.31")
implementation("com.android.volley:volley:1.2.1")
implementation("com.android.volley:volley-cronet:1.2.1")

demo

fun test() {
    val context = this@MainActivity
    val cronetEngine = CronetEngine.Builder(this)
        .enableHttpCache(
            CronetEngine.Builder.HTTP_CACHE_IN_MEMORY,
            100 * 1024.toLong()
        )
        .enableQuic(true)
        .enableHttp2(true).build()
    val httpStack = CronetHttpStack.Builder(context.applicationContext)
        .setCronetEngine(cronetEngine).build()
    val cache = DiskBasedCache(context.cacheDir, 1024 * 1024)
    val network = BasicAsyncNetwork.Builder(httpStack).build()
    val requestQueue = AsyncRequestQueue.Builder(network)
        .setCache(cache).build()
    requestQueue.start()

    // GET
    val getUrl = "https://quic.aiortc.org/123"
    val stringRequest = StringRequest(
        Request.Method.GET, getUrl,
        { response -> toast("Response is: $response") },
        { toast("GET didn't work!") }
    )
    requestQueue.add(stringRequest)

    // POST
    val postUrl = "https://quic.aiortc.org/echo"
    val reqData = JSONObject().apply { put("time", "now") }
    val jsonRequest = JsonObjectRequest(
        Request.Method.POST, postUrl, reqData,
        { response: JSONObject -> toast("Response is: $response") },
        { toast("POST didn't work!") }
    )
    requestQueue.add(jsonRequest)
}

private fun toast(msg: String) {
    val context = this@MainActivity
    Toast.makeText(context, msg, Toast.LENGTH_SHORT).show()
}

Reference

  1. volley support http3, https://blog.csdn.net/yeshennet/article/details/149907813
  2. https://quic.aiortc.org/
  3. https://github.com/google/volley/wiki/Asynchronous-Volley
Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: yeshen

79724605

Date: 2025-08-04 07:46:05
Score: 2
Natty:
Report link

i had similar problem,

i change next version in package.json

from "^15.4.2" to "15.3.1"

  1. change next version

  2. delete node_modules and .next folders

  3. npm i

  4. npm run build

  5. npm run start

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

79724598

Date: 2025-08-04 07:37:02
Score: 2.5
Natty:
Report link

ACE77 adalah situs judi online yang udah lama dipercaya pemain Indonesia buat main slot, bola, casino, sampai togel. Di sini, semuanya lengkap dan gampang diakses tinggal daftar, deposit, langsung gas main! Bonus-bonusnya juga nggak main-main, ada bonus new member, bonus harian, sampai cashback mingguan. Sistemnya cepat, aman, dan CS-nya aktif 24 jam kalau kamu butuh bantuan. Kalau lagi cari tempat main yang serius tapi tetap asik, ACE77 cocok banget buat jadi pilihan.

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

79724596

Date: 2025-08-04 07:36:02
Score: 3
Natty:
Report link

The deletion of the bin folder solved the issue for me.

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

79724593

Date: 2025-08-04 07:32:01
Score: 0.5
Natty:
Report link

Can you try to use cy.get() and .each() for the entire test logic ?

describe('I am testing the Modals on ' + modalUrls.length + ' pages.', () => {
  modalUrls.forEach(function(page) {
    it(`should open and close all modals on ${page}`, () => {

      cy.visit(page);

      cy.get('[data-modal-trigger]').each(($triggerLink) => {
        const modalId = $triggerLink.attr('data-modal-trigger');
        if (modalId) {
          cy.log(`Processing modal with ID: ${modalId}`);
          cy.wrap($triggerLink).click();
          cy.get(`#${modalId}`).should('be.visible');
          cy.get(`#${modalId} [data-modal-close]`).click();
          cy.get(`#${modalId}`).should('not.be.visible');
        }
      });
    });
  });
});
Reasons:
  • Whitelisted phrase (-2): Can you try
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: shailesh patil

79724589

Date: 2025-08-04 07:21:58
Score: 0.5
Natty:
Report link

When rendering the parameters need to go in render_options rather than output_options.

Email doc (test_email_params.Rmd):

---
title: "Test email parameters"
output: blastula::blastula_email
params:
    email_name: "John Smith"
    other_param: "App abc"
---

Email content...

Email is for `r params$email_name`

Create email:

blastula::render_connect_email(input = "test_email_params.Rmd", 
                       render_options = list(params = list(email_name= "Willy Wonker")),
                       connect_footer = FALSE)

Note: Not all parameters need to be passed into an RMarkdown doc, anything not passed in will use t default values.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Will Hore-Lacy

79724586

Date: 2025-08-04 07:13:57
Score: 1
Natty:
Report link

To simplify this workaround,

1. Right click on blank screen of redux dev tools.
2. Open inspect tab
3. Open Application tab
4. In left Pane, click on IndexedDB
5. Inside IndexedDB, click on any link
6. Click "Delete Database"

Now close all the inspect tabs of the browser an reopen projects redex dev tools again.
Now you must have came to normal screen of redex devtools.

Done.

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

79724583

Date: 2025-08-04 07:12:56
Score: 2.5
Natty:
Report link

Uninstalling the app worked for me

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

79724581

Date: 2025-08-04 07:11:56
Score: 1.5
Natty:
Report link

Gemini Code Assist added a keybinding that was overriding Cmd+S in DiffView, so after I removed that, it works as it should.

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

79724579

Date: 2025-08-04 07:09:55
Score: 4
Natty:
Report link

After disabling the mcAfee program, the installation is completed.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yağmur Akbulut

79724572

Date: 2025-08-04 07:01:53
Score: 6.5
Natty: 7.5
Report link

Вот как добавить NodeJS в ISPConfig: https://edgesection.ru/sphere/1

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: EDGESECTION

79724565

Date: 2025-08-04 06:52:51
Score: 1.5
Natty:
Report link

The "library" you're looking for is Microsoft's SDK. You will need to import the following dependencies (Microsoft Documentation):

Gradle:

dependencies {
    // Include the sdk as a dependency
    implementation("com.microsoft.graph:microsoft-graph:6.+")
    // Include Azure identity for authentication
    implementation("com.azure:azure-identity:1.+")
}

Maven:

<dependency>
      <groupId>com.microsoft.graph</groupId>
      <artifactId>microsoft-graph</artifactId>
      <version>[6.0,)</version>
  </dependency>
  <dependency>
      <groupId>com.azure</groupId>
      <artifactId>azure-identity</artifactId>
      <version>[1.11,)</version>
  </dependency>

This will allow you to interact with the Graph API using Microsoft's SDK.

To upload files, you'll want to look at documentations like this:
https://learn.microsoft.com/en-us/graph/sdks/large-file-upload?tabs=java

https://medium.com/xebia-engineering/java-use-microsoft-graph-api-to-access-sharepoint-sites-1a26427c9b83

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mario Soller

79724564

Date: 2025-08-04 06:51:51
Score: 1
Natty:
Report link
public class MouseKeyAdapter extends MouseAdapter implements KeyListener
{
    /** Does nothing, to be overridden. */
    @Override
    public void keyTyped(KeyEvent e) {
    }
    /** Does nothing, to be overridden. */
    @Override
    public void keyPressed(KeyEvent e) {
    }
    /** Does nothing, to be overridden. */
    @Override
    public void keyReleased(KeyEvent e) {
    }
}
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29028183

79724562

Date: 2025-08-04 06:50:50
Score: 1
Natty:
Report link

<script src="https://cdnjs.cloudflare.com/ajax/libs/react/17.0.0/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/17.0.0/umd/react-dom.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>

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

79724560

Date: 2025-08-04 06:46:49
Score: 4.5
Natty:
Report link

Bro if you find out tell me please. i don't need text in real time. i want to use it through recorded audio files.

Reasons:
  • RegEx Blacklisted phrase (1): i want
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user31206586

79724548

Date: 2025-08-04 06:31:46
Score: 3
Natty:
Report link

You can always check if the element is inside an iFrame. If it is, you can add select frame command, and then choose whether it is an index or relative frame

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kristopher Pestaño

79724544

Date: 2025-08-04 06:19:44
Score: 1
Natty:
Report link

I found the answer after visiting official Oracle forum. this line is determine the length of my body. When I send an english character it's accurate but some arabic letters is more than one byte.

the solution is to replace this line in my code:

UTL_HTTP.SET_HEADER(l_http_req, 'Content-Length', DBMS_LOB.GETLENGTH(l_payload));

with this line:

utl_http.set_header( l_http_req, 'Content-Length', utl_raw.length( utl_i18n.string_to_raw( l_payload, 'AL32UTF8' ) ) );

Thank you @Keon Lostrie for your help.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): solution is
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Keon
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Karam Alem

79724533

Date: 2025-08-04 06:07:40
Score: 1.5
Natty:
Report link
suffixProps: DropdownSuffixProps(dropdownButtonProps: DropdownButtonProps(isVisible: false))
add this line In DropdownSearch
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mahfuzur Rahman Faruk

79724522

Date: 2025-08-04 05:52:37
Score: 1.5
Natty:
Report link

The http.FileServer documentation says:

As a special case, the returned file server redirects any request ending in "/index.html" to the same path, without the final "index.html".

Based on this, we expect the request in the question to redirect.

The browser follows the redirect to correct URL and the server returns the resource as expected.

The response recorder returns the redirect as is. In other words, the response recorder does not follow the redirect.

Fix one these ways:

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

79724504

Date: 2025-08-04 05:22:31
Score: 2.5
Natty:
Report link

what works for me was to downgrade python version from 3.13 to 3.12

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): what
  • Low reputation (0.5):
Posted by: CHOI

79724485

Date: 2025-08-04 04:46:23
Score: 1.5
Natty:
Report link

We've seen this exact challenge before while integrating DocuSign with Dynamics 365 for one of our AEC clients. On the surface, everything worked fine—documents were sent, received, and signed. But automatic status updates? Silent. Just like you're experiencing now.

In our case, the root cause was a missing webhook subscription. DocuSign Connect was not pushing status changes back to Dynamics. This is often overlooked during trial setups or when the authentication scopes are not fully configured.

When we solved it, the client saw a 50 percent reduction in document turnaround time. No more manual status checks. No more data silos. Just seamless, automated sync between Dynamics 365 and DocuSign.

You can read the full case study and a blog if you're evaluating whether this integration can work at scale. It outlines exactly what was missing, how we fixed it, and the measurable benefits:

https://nalashaadigital.com/blog/docusign-dynamics365-integration/

https://nalashaadigital.com/case-studies/integrating-docusign-with-dynamics-365/

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

79724484

Date: 2025-08-04 04:45:23
Score: 3
Natty:
Report link

NO, vs code doest have "vi style backward search" natively you need to go for an extensions

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

79724481

Date: 2025-08-04 04:40:22
Score: 1.5
Natty:
Report link

Not sure with older Next versions, but the main fix for this is renaming the /app directory into something else. The standalone configuration in the next.config.ts as a solution mentioned above, doesn't work unless you rename the folder refer to this thread too.

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

79724475

Date: 2025-08-04 04:23:19
Score: 0.5
Natty:
Report link

In AndroidManifest.xml make sure you have:

 <uses-permission android:name="android.permission.CAMERA"/>
 <uses-permission android:name="android.permission.READ_MEDIA_IMAGES"/>
 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jithesh Kumar

79724474

Date: 2025-08-04 04:22:18
Score: 0.5
Natty:
Report link

in your prisma.config.ts you need to add the seed to your defineConfig like so:

export default defineConfig({
  schema: path.join("prisma", "schema.prisma"),
  migrations: {
    path: path.join("db", "migrations"),
    seed: "tsx prisma/seed.ts"
  }
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Simon

79724465

Date: 2025-08-04 04:01:14
Score: 1
Natty:
Report link

I tried using NSURL *url = [NSURL fileURLWithPath: path isDirectory:NO]; but it did not do what I want. I have a directory that is a bundle (it looks like a file to the user). I would like that bundle to be the default selection, but instead the contents of the bundle are displayed, which should not happen except by an explicit user request.

I used macos 15.6.

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

79724460

Date: 2025-08-04 03:41:09
Score: 5
Natty: 4.5
Report link

enter image description here

Realizame el ejercicio y que me de ese resultado

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Neyli Osorto