79535066

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

I was able to figure out the parameters finally. Here are the solutions:

CsvConfiguration config = new CsvConfiguration(CultureInfo.InvariantCulture)
{
    HasHeaderRecord = true,
    MissingFieldFound = (args) => AddMissingFieldParseError(args.Context.Reader.HeaderRecord, args.Context.Reader.Parser.Row, args.Index),
    BadDataFound = (args) => AddBadDataFoundParseError(args.Field, args.Context.Reader.Parser.Row)
};
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: T. J. Fan

79535063

Date: 2025-03-25 23:27:01
Score: 1
Natty:
Report link

Use --dart-define= and --dart-define-from-file= to resolve this.

Flutter requires the variables during build and not runtime. Either add .env file to assets and use dotenv library or use the above mentioned to define variables during flutter build web --dart-define-from-file=env.json.

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

79535062

Date: 2025-03-25 23:27:01
Score: 0.5
Natty:
Report link

For compressing files, I would suggest setting both ZipEntry.Size = 0 and ZipEntry.CompressedSize = 0 after creating the ZipEntry with the ZipEntryFactory. I have found that sometimes neither or just one property is set to zero for a factory-generated file entry and I have never had a problem when I set them both to zero explicitly. I suppose this could mess things up if you rely upon ZipEntry.Size for something before the entry is added to the Zipfile, but in that case you could always get the file size from the uncompressed file. Once the entry has been added to the Zipfile, if you retrieve the entry it's compressed size will be correct. I agree with Shingo, it seems like a bug. Minor as bugs go, and it isn't worth complaining about in a free library.

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

79535056

Date: 2025-03-25 23:22:00
Score: 1.5
Natty:
Report link

Resolved this after some debugging. As it turns out, fully_qualified_name was actually a null value causing this issue, to resolve I manually constructed the fully_qualified_name. The docs imply that this should be an accessible field but it appears not. I didn't confirm, but I suspect it's related to the fact that I'm making these changes as part of an upgrade from a legacy version (0.54) to a newer version (1.1.3).

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

79535054

Date: 2025-03-25 23:21:00
Score: 0.5
Natty:
Report link

You can use the walrus operator := to specify how the value changes with each iteration inside the list comprehension, to achieve the following:

a = [1, 2, 20, 3, 30, 300]
count = 0
b = [sum(a[count:(count := count + i)]) for i in range(1,4)]
print(b)

This should give you

[1, 22, 333]

Which is the desired outcome.

Edit: Apparently walrus operator is a really controversial feature in python that a lot of people hate it because it goes against a lot of Zen of Python rules. So I guess use it with caution?

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Dawith Lim

79535052

Date: 2025-03-25 23:20:00
Score: 3.5
Natty:
Report link

I just ended up here by using old fashioned google, and the upvoted answer worked well for me (when checking the bookmarked line option), thanks!

It appears however I also have a 'remove non-bookmarked lines' option in the search -> bookmark menu. That did the same trick for me and would combine step 2 and 3.

I'm not able to comment, so just sharing it here.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): to comment
  • Blacklisted phrase (0.5): upvote
  • No code block (0.5):
  • Low reputation (1):
Posted by: samcera

79535039

Date: 2025-03-25 23:08:57
Score: 1
Natty:
Report link

Add the following to the module build.gradle.kts file:

implementation(libs.ui.tooling)
debugImplementation(libs.ui.tooling)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alan Larimer

79535038

Date: 2025-03-25 23:08:57
Score: 3
Natty:
Report link

Use this for CPU intensive tasks: ExecutorService executor = Executors.newFixedThreadPool(cores);

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

79535025

Date: 2025-03-25 23:01:56
Score: 3
Natty:
Report link

SiddheshDesai is right, you need automatic upgrades ... but you no longer need to create a new Uniform scale set to use it :) you can now use upgrade_mode = "Automatic" on Flex scale sets!
https://techcommunity.microsoft.com/blog/azurecompute/general-availability-upgrade-policies-on-virtual-machine-scale-sets-with-flexibl/4287334

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

79535020

Date: 2025-03-25 22:54:54
Score: 1.5
Natty:
Report link

Flutter usually points at a specific java var in the environment not the javac command, i think its JAVA_HOME or something, so usually its locate and package within android studio.

You can download and install Flutter using only android-sdk (cli). I did it a lot because i hate Android Studio. It's easier than it looks.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bruno Bee Nahorny

79535018

Date: 2025-03-25 22:53:54
Score: 2
Natty:
Report link

Have you checked the results of "grails dependency-report command" ?

You have to know which lib is adding this transitive library and then excluding it with the exclude closure.

For example, for a Grails 2.5.5 project, I want to use the itext 2.1.7 and the plugin rendering is using an older version. So, I did this:

dependencies {
       runtime 'com.lowagie:itext:2.1.7'
}

plugins {
        compile (":rendering:1.0.0") {
            excludes 'itext'
        }
}
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Jordi Romero

79535016

Date: 2025-03-25 22:49:53
Score: 3.5
Natty:
Report link

Can you verify the version of Java JAVA_HOME is pointing to? Hbase 2.5 supports Java 8 and 11.

https://hbase.apache.org/2.0/book.html

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: AaronCreor

79535015

Date: 2025-03-25 22:49:53
Score: 3.5
Natty:
Report link

I encountered the same issue where I couldn't debug using just mouse hover. To resolve this, I cleared the local cache in Visual Studio:
https://learn.microsoft.com/en-us/answers/questions/1221136/visual-studio-2022-clear-local-caches

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

79535012

Date: 2025-03-25 22:47:53
Score: 1.5
Natty:
Report link

Ensure IdP Sends : Update the IdP settings to return the correct value.
Check Session Timeout: Ensure the SAML request ID is not expiring before the response arrives.
Validate Metadata Sync: Reconfigure metadata in both Salesforce and the IdP to ensure proper communication.
Enable Debug Logging: Capture and analyze logs to troubleshoot further discrepancies.

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

79535010

Date: 2025-03-25 22:44:52
Score: 2.5
Natty:
Report link

well after struggling a bit... I found the issue in MY context. In case it helps someone...

My issue was that I was just adding the CNAMEs which is something I have to do… but my DNS Records in Cloudflare didn’t included this configuration, that is needed for AWS to be able to generate the certificate

So after I configured 2 records per url (1 for wildcare, 1 for literal) for each of this domain:

The issue seems to be gone!

Reasons:
  • Blacklisted phrase (1): I have to do
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Juan

79534999

Date: 2025-03-25 22:36:51
Score: 0.5
Natty:
Report link

You should update your angular.json

`"styles": [
  "node_modules/ngx-sharebuttons/themes/circles.scss",
  "node_modules/ngx-sharebuttons/themes/modern.scss",
  "src/styles.scss"
],`

You don't need to convert the code to css to get if you are using angular

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

79534997

Date: 2025-03-25 22:34:50
Score: 1
Natty:
Report link

If you are building a website, specifically an ashx "processRequest" .net and have setup your local pc to have its own name in the hosts file like mysite.local edit c:\windows\system32\drivers\etc\hosts and make sure the entry for mysite.local is linked to the correct ipconfig ipaddress.

Now the reason for a hosts entry is so you can create a self signed cert for mysite.local so you can test https from the visual studio debugger.

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

79534996

Date: 2025-03-25 22:33:50
Score: 3.5
Natty:
Report link

Why are you not simply defining Quotes as a map of key: Stock ?

type Stock struct {
    ID    string `json:"id"`
    Quote struct {
        USD struct {
            Price float64 `json:"price"`
        } `json:"USD"`
    } `json:"quote"`
}

type Quotes struct {
    Data map[string]Stock `json:"data"`
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Why are you not
  • Low reputation (1):
Posted by: jguillaumeso

79534994

Date: 2025-03-25 22:32:50
Score: 2
Natty:
Report link

I am using a motorola g 5. When running adb devices on the terminal, nothing would show up. Here is what fixed it for me:

on Phone > Settings > Developer Options > Enabled USB Debugging

After that, I could see my phone in the terminal.

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

79534993

Date: 2025-03-25 22:30:50
Score: 1.5
Natty:
Report link

You need these permissions, different from whats used for posting. My issue was lack of these.

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

79534992

Date: 2025-03-25 22:30:50
Score: 1
Natty:
Report link

If you ever forget, add --dry-run. Subversion will tell you what will be merged without executing the merge.

$ svn merge -r1752:1765 [YOUR BRANCH] --dry-run
--- Merging r1753 through r1765 into '.':

In my case I'm reminded that the first revision doesn't start on 1752, it starts on 1753! If that isn't what I want, I can change it and when the results look right, I will remove --dry-run and run it again for the actual merge.

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

79534989

Date: 2025-03-25 22:29:49
Score: 0.5
Natty:
Report link

I'll use that PL/SQL :)

DECLARE
    v_file UTL_FILE.FILE_TYPE;
    v_text CLOB;
    v_buffer VARCHAR2(32767);
    v_amount PLS_INTEGER := 32767;
    v_pos PLS_INTEGER := 1;
BEGIN
    FOR rec IN (SELECT doc_id, doc_text FROM votre_table) LOOP
        -- create file
        v_file := UTL_FILE.FOPEN('EXPORT_DIR', rec.doc_id || '.xml', 'W');

        v_text := rec.doc_text;
        v_pos := 1;

        -- write
        WHILE v_pos <= DBMS_LOB.GETLENGTH(v_text) LOOP
            v_buffer := DBMS_LOB.SUBSTR(v_text, v_amount, v_pos);
            UTL_FILE.PUT_LINE(v_file, v_buffer);
            v_pos := v_pos + v_amount;
        END LOOP;

        -- close it
        UTL_FILE.FCLOSE(v_file);
    END LOOP;
END;
/

I'll test it...it should work

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

79534988

Date: 2025-03-25 22:28:49
Score: 2
Natty:
Report link

For anybody facing a similar problem in React Web, you may need to add this to your handler function:

event.preventDefault();

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): facing a similar problem
  • High reputation (-1):
Posted by: Forrest

79534985

Date: 2025-03-25 22:27:49
Score: 2.5
Natty:
Report link

I think it's due to a problem with the packages. I have found a workaround. You should downgrade Microsoft.Maui.Controls and Microsoft.Maui.Compatibility to version 9.0.40 from version 9.0.50 and try to run your project again.

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

79534983

Date: 2025-03-25 22:26:49
Score: 3.5
Natty:
Report link

Function (); xy= ab or function xy=z or backwards works too

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

79534979

Date: 2025-03-25 22:22:48
Score: 0.5
Natty:
Report link

also

print(f"{(3**2 + 5**2)**(1/3) = }")

output:

(3**2 + 5**2)**(1/3) = 3.239611801277483

doubling Jerrybibo's comment that generally eval is evil! (and thanks for mentioning about not eval()'ing an input) if you need to reuse the string of b_equation and / or the result b, then eval() seems legit

b_equation = "(3**2 + 5**2)**(1/3)"
b = eval(b_equation)
print(f"{b_equation} = {b}")

# use b_equation and / or b for stuff
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: the-citto

79534967

Date: 2025-03-25 22:11:46
Score: 1.5
Natty:
Report link

The horizontal text alignment problem is due to:

    case(Qt::TextAlignmentRole):
        return Qt::AlignLeft;  // Not aligned

if I change Qt::AlignLeft to Qt::AlignCenter or nothing, it's aligned

    case(Qt::TextAlignmentRole):
        return Qt::AlignCenter; // Aligned

It's not aligned with Qt::AlignRight too. Why AlignLeft and AlignRight push the text up?

Still crashing when sorting columns

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Lucciodelavegas

79534964

Date: 2025-03-25 22:08:45
Score: 1
Natty:
Report link

Even though the path property in refine() accepts an array, it will only display the error if you set just one path.

To show multiple paths, you need to use .superRefine() instead of .refine(). See Display error messages in multiple locations using zod.

You can also chain .refine() calls, which I recommend in this situation. You can have two errors one for "At least one warehouse..." and one for "At least on cluster...".

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

79534942

Date: 2025-03-25 21:52:42
Score: 1.5
Natty:
Report link

It seems that GridDB´s REST API doesn't currently support a key-value pair to set a column´s nullity, such as "nullable": False. A workaround for that is to use the query editor of GridDB´s management website to create the table, using a regular CREATE TABLE SQL statement:

Create table Orders (
Order_ID INTEGER NOT NULL PRIMARY KEY,
Order_Date TIMESTAMP NOT NULL,
Client_ID INTEGER NOT NULL,
Order_NF STRING NOT NULL)

Create Orders table

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

79534930

Date: 2025-03-25 21:42:39
Score: 9 🚩
Natty: 6.5
Report link

hey guys i really need your help. I've been trying to create an app instance for messaging on amazon chime sdk but I've never seen anything to lead me to achieve this. kindly help me guys on how to achieve this.

thanks.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (3): kindly help
  • Blacklisted phrase (1): how to achieve
  • RegEx Blacklisted phrase (1): hey guys
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: adebaba

79534928

Date: 2025-03-25 21:41:39
Score: 3
Natty:
Report link

The getdate function is only available for ZK devices that support SOAP. get_date is not available for ZKLib UTP 4370.

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

79534926

Date: 2025-03-25 21:38:38
Score: 10
Natty: 8
Report link

Hey I'm trying to do the same. did you figure it out?

Reasons:
  • Blacklisted phrase (1): trying to do the same
  • RegEx Blacklisted phrase (3): did you figure it out
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30061307

79534924

Date: 2025-03-25 21:37:38
Score: 1.5
Natty:
Report link

In case someone else runs into this issue:

There is a setting on your Twilio account (which seems to default to requiring authentication), which you can disable. It's under Voice > Settings > General

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

79534922

Date: 2025-03-25 21:35:37
Score: 2.5
Natty:
Report link

Cmake 4.0.0 is a release candidate and not finally released. Did you try the latest official Release 3.31.6 or earlier?

Reasons:
  • Whitelisted phrase (-2): Did you try
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Martin Fischer

79534919

Date: 2025-03-25 21:34:37
Score: 1
Natty:
Report link

This looks like it was just a version issue, which makes sense, as I was fixing my requirements file at some point, and my venv would not have reset when I rolled back.

This issue was resolved by updating the following libraries:

databricks-sql-connector==4.0.0
databricks-sqlalchemy==2.0.5
SQLAlchemy==2.0.39
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Robert Riley

79534908

Date: 2025-03-25 21:25:36
Score: 3
Natty:
Report link

@Learner DotCom,
This seems like a half-assed solution by the GitLab team. start_in: xyz should permit a variable, otherwise it's more-or-less useless.

TY for posting your solution, it got me thinking how to approach this in several other ways, none ideal... yet... blah.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Learner
  • Low reputation (1):
Posted by: Michal Rysanek

79534898

Date: 2025-03-25 21:19:34
Score: 3.5
Natty:
Report link

The first param for MockMultipartFile should match name of @RequestParam param in controller

https://stackoverflow.com/a/62684310/11488500

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

79534895

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

What works for me is turning "UI Smooth scrolling" off.

Go to "Help" >> "Find Action" >> type "UI Smooth scrolling" and turn it off.

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): What
  • Low reputation (0.5):
Posted by: SadHak

79534890

Date: 2025-03-25 21:16:33
Score: 1
Natty:
Report link

Double clicking the Resources.resw file on the Solution Explorer should add a column on the table.

Resources.resw

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

79534886

Date: 2025-03-25 21:15:33
Score: 0.5
Natty:
Report link

Another alternative could be this formula. This formula can be entered in any cell and dragged down.

=SUM(INDIRECT(ADDRESS(21+(ROW(A1)-ROW($A$1))*20,5,,,"Daily!")):INDIRECT(ADDRESS(40+(ROW(A1)-ROW($A$1))*20,5,,,"Daily!")))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user22566114

79534883

Date: 2025-03-25 21:14:33
Score: 1.5
Natty:
Report link

The fastest minimalist log2(x) code that I know of uses a union to reinterpret an IEEE754 FP number representation as a scaled integer proxy for the log function. It is very specific to the IEEE754 binary representation. I think that it may be originally due to Kahan. It can be very fast if you skip the error checking. I only bother to check for x>0 here (various error cases are covered in another answer).

This is a quick implementation for the simplest linear interpolation and up to cubic forms.
The first return gives the linearised log2 version equivalent to @chux implementation.
Essentially it works by subtracting off the exponent offset from the biased exponent and then making the rather gross approximation that log2(1+x) ~= x. Exact for x=0 and x=1 but poor near x=0.5.

This is the sample log2 code with a minimal test framework:


#include <iostream>

// *CAUTION* Requires IEEE754 FP 32 bit representation to work!
// Pade rational float implementation on x = 0 to 1 is good to 3 sig fig

union myfloat { float f32; int i32; };

float mylog2(float x)
{
    myfloat y, z;
    z.f32 = y.f32 = x;
    if (x > 0.0)
    {
        y.i32 -= 0x3f800000;            // subtract off exponent bias
//        return (float) y.i32/(1<<23); // crude linear approx max err ~ 0.086

        y.f32 = (y.i32)>>23; // y now contains the integer exponent

        z.i32 &= 0x3fffffff;
        z.i32 |= 0x3f800000; // mask argument x to be of form 0 <= 1+x < 1
        z.f32 -= 1.0;
//       z.f32 = 1.2 * z.f32 * (1 - z.f32 * (0.5 - z.f32 / 3.0));            // naive cubic Taylor series around x=0 with  max err ~ 0.083
//       z.f32 = 1.5 * z.f32 - z.f32 * z.f32 * (0.81906 - z.f32 * 0.3236);   // optimised cubic polynomial (not monotonic) max err ~ 0.00093
//       z.f32 = z.f32 * 10 * (6 + z.f32) / (42 + 28 * z.f32);                      // naive Pade rational approximation    max err ~ 0.0047
        z.f32 = z.f32 * (36 + 4.037774 * z.f32) / (24.9620775 + 15.070677 * z.f32); // optimised Pade for this range 0 to 1 max err ~ 0.00021
                                                                                    // naive int coeffs were 36, 4, 25, 15 respectively
    }
    return y.f32+z.f32;
}

void check_log(float x)
{
    printf("%-9g : %-9g %-9g\n", x, log2(x), mylog2(x));
}

void test_log()
{
    float x = 0.0625;
    while (x < 33)
    {
        check_log(x * 0.9999); // to check monotonicity at boundary
        check_log(x);
        check_log(x * 1.0001);
        check_log(x * 1.1);
        check_log(x * 1.5);
        check_log(x * 1.75);
        x += x;
    }
}

int main()
{
    test_log();
}

This TI designers notes on [fast 'log(x)'](https://www.ti.com/lit/an/spra218/spra218.pdf?ts=1742833036256) tricks is also worth a look at for inspiration. You really need to decide how accurately do you want the result. Speed vs accuracy is always a trade off. How much is enough?

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @chux
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: Martin Brown

79534879

Date: 2025-03-25 21:13:33
Score: 1.5
Natty:
Report link

The CPython deque is implemented as a doubly linked list (https://github.com/python/cpython/blob/v3.8.1/Modules/_collectionsmodule.c#L33-L35).

It's noted in the code docs (https://github.com/python/cpython/blob/v3.8.1/Modules/_collectionsmodule.c#L1101-L1107) that insert is implemented in terms of rotate (i.e. insert at index n is equivalent to rotate(-n), appendLeft, rotate(n)). In general, this is O(n). While insertion at a node is O(1), traversing the list to find that node is O(n), so insertion in a deque in general is O(n)

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

79534874

Date: 2025-03-25 21:10:32
Score: 3.5
Natty:
Report link

La función get_date solo esta disponile para dispositivos zk que soporta SOAP.

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

79534867

Date: 2025-03-25 21:06:31
Score: 2
Natty:
Report link

You may have antivirus software that quarantines the executable, and in that case, you should create an exception in that antivirus. In my case, Avast was quarantining Rterm.exe because it incorrectly identified it as a threat.

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

79534866

Date: 2025-03-25 21:06:31
Score: 1.5
Natty:
Report link

Giving full rights to the queue to the "Everyone" user didn't work for me. I had to add the "ANONYMOUS LOGIN" user, which gets "Send Message" permission by default. I then restarted the MSMQ windows service. That did the trick for me.

This is in Windows 10 Pro.

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

79534860

Date: 2025-03-25 21:02:30
Score: 8 🚩
Natty:
Report link

any solution yet? I tried updating to kotlin 2.1 but then kapt starts crying and that leads to this other issue https://youtrack.jetbrains.com/issue/KT-68400/K2-w-Kapt-currently-doesnt-support-language-version-2.0.-Falling-back-to-1.9.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2): any solution yet?
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rocco

79534853

Date: 2025-03-25 21:00:29
Score: 3
Natty:
Report link

update: Based on the feedback I wrote some c-code (RPi5 PiOS64) to read with 'high speed' a single or multiple gpio input(s) which will act as the reference clock which 'rotates' the antenna(s). My next step is to implement the (status input reading part of the) code in a GNR C++ OOT source.

https://github.com/rrrRbert360/RPi5_gpio_gpiod_read

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

79534835

Date: 2025-03-25 20:50:26
Score: 1.5
Natty:
Report link

It's because of the pruning.

It wasn't an issue in the past, now it is.

Had this issue for a week, maybe it appeared even earlier. Something on Google Cloud's side suddenly broke and you can no longer pull some public images like "bash" or "gcr.io/cloud-builders/gcloud".

For now, you'll have to remove the pruning step.

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

79534827

Date: 2025-03-25 20:46:26
Score: 1
Natty:
Report link

I'd implement it using regex

fun String.convertPhoneNumber(): String {
    return this.replace("[^+\\d]".toRegex(), "")
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Arno

79534826

Date: 2025-03-25 20:45:25
Score: 3
Natty:
Report link

I found the issue was that I had some places in the code where the parent was missing the "accordion" and "modal" classes. The previous version of Bootstrap worked without these so the error went unnoticed until now.

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

79534816

Date: 2025-03-25 20:40:24
Score: 3
Natty:
Report link

I just encountered almost the same thing.... And finally I turned to install by apt install docker.io, and also since I need v2 docker compose, I have to turn to add the official docker source in my apt update list and install the docker compose there.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: aglc

79534803

Date: 2025-03-25 20:36:23
Score: 5
Natty:
Report link

Please subscribe the .Net Core, Angular channel for tech queries and guidance

https://www.youtube.com/watch?v=xW1ntwvivmw

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Lkinfolab Ites

79534802

Date: 2025-03-25 20:36:23
Score: 0.5
Natty:
Report link

Ensure You Are Using the Correct Python Interpreter

import sys
print(sys.executable)

Then, compare this with the output of the same command in your standalone script (fran_log_in.py):

import sys
print(sys.executable)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Adel Alaa

79534799

Date: 2025-03-25 20:33:23
Score: 2
Natty:
Report link

"""Start ™>>>promotion by. 'Crontromnertm' c++ Cc+++hi+ti+f1/f2/f3/f4/f5/f6/f7<><><><>™ "POWER cable c+7✓ipm>>just wanted to check out our housput by the time and Baill71 (1572)### 1920600170179 ME2 1408693 28. THE.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: สุธรรม พนมรักษ์

79534789

Date: 2025-03-25 20:26:21
Score: 1
Natty:
Report link
     for Ip in ${Ip_array[@]}
       do Find_dev=$(ip neigh show ${Ip})
          read IP_dev null dev null laddr state <<< "$Find_dev"
          echo ${IP_dev} ${laddr} ${dev} ${state}
          Mac_array+=(${laddr})
       done
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Leszek Ostachowski

79534786

Date: 2025-03-25 20:25:21
Score: 1
Natty:
Report link

Digital financial innovation is the use of technology innovations in the delivery of financial services (Pazarbasioglu, Mora, Uttamchandani, Natarajan, Feyen & Saal, 2020). The past three decades have encountered digital and technological disruptions that have enabled financial institutions to reinvent their business models to provide service to customers through digital means, increase efficiency, and be more customer-focused channels simultaneously (Beck, 2020). The advancements in internet connectivity, mobile technology, cutting-edge computing techniques, data portability, artificial intelligence, and robotics are some of the technological advances that have ushered in a new era of digital financial innovations (Frame, Wall & White, 2018).

Internet (online) banking innovation makes use of the internet for the delivery of financial services (OECD, 2020). Internet banking allows customers to transact on their bank accounts using computers, mobile phones, and tablets through an online portal on their respective bank's website at their convenience without visiting the bank offices physically (Tahir, Shah, Arif, Ahmad, Aziz & Ullah, 2018). Financial institutions in Kenya have experienced increased adoption of online banking resulting in improved operational efficiency and reduced risk associated with physical transactions, with the major limitation being the initial cost of setting up the online infrastructure (Ndwiga & Maina, 2018).

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

79534784

Date: 2025-03-25 20:25:21
Score: 2.5
Natty:
Report link

In Rust, trait methods can only be accessed when they're in scope. This applies on whether they're user defined, or whether they come as part of the standard library, or some external crate.

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

79534772

Date: 2025-03-25 20:20:19
Score: 1.5
Natty:
Report link

Had the same problem with the to_sql. Return value was negative.

Eventually figured out I had an insert trigger on db table which prevented the insert... :D

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

79534764

Date: 2025-03-25 20:19:19
Score: 0.5
Natty:
Report link

I packaged Forscan into custom Homebrew tap which allows using it easily on Macbooks as well.

This is most likely the easiest way to run Forscan on MacOS. So I would recommend following these steps:

  1. First install homebrew from: http://brew.sh
  2. Then copy following command into Terminal:
brew install --no-quarantine --cask wine-stable onnimonni/tap/forscan
  1. And after this plug your cable to the car and your laptop and launch FORScan.app in your laptop from Applications.
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Onni Hakala

79534760

Date: 2025-03-25 20:17:18
Score: 4.5
Natty:
Report link

Thanks for sharing a sandbox! I removed some containers and height settings. The display flex is not useful and not needed here. I see now the banner and the table as full height. Was this your approach?

 <v-app>
    <v-main>
      <div style="height: 50px; background-color: black"></div>
      <v-container fluid>
        <UsersTable :items="users" />
      </v-container>
    </v-main>
  </v-app>
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): Thanks for sharing
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: devnik

79534757

Date: 2025-03-25 20:16:18
Score: 4.5
Natty: 5
Report link

I think what you're looking for is described at https://www.jetbrains.com/help/idea/using-file-and-code-templates.html

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

79534746

Date: 2025-03-25 20:09:17
Score: 1.5
Natty:
Report link

I had the same issue and 0x0a didn't work but 0x7c0a worked for me.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Joyce Takang

79534745

Date: 2025-03-25 20:09:17
Score: 1.5
Natty:
Report link

This issue reported it to Angular, and this PR fixed it. Assets will now be copied with timestamps.

Comment to be edited when they release the fix.

Reasons:
  • Low length (1):
  • No code block (0.5):
Posted by: William Desportes

79534736

Date: 2025-03-25 20:07:16
Score: 2.5
Natty:
Report link

It turns out that AudioContext() counts as autoplaying, even though no audio is being played, and it is blocked from running. Solution is to not create AudioContext() until an input is provided.

Answer from jcnews1 on Reddit: https://www.reddit.com/r/CodingHelp/comments/1ji1tvn/comment/mjn0kra/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button

Reasons:
  • Whitelisted phrase (-1): Solution is
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jocowl

79534726

Date: 2025-03-25 20:02:15
Score: 0.5
Natty:
Report link

Also faced the same issue.

When writing a custom modifier in Popper.js, there are some required parameters that need to be passed:

  name: string,
  enabled: boolean,
  phase: ModifierPhases,
  fn: (ModifierArguments<Options>) => ?State,

If multiple modifiers with the same name are passed, they are merged. While writing a offset modifier in ng-bootstrap, we often assume that the default offset modifier is already present and merged with our one. However, in ng-bootstrap, the default offset modifier is not set, leading to the issue since the required fn attribute is missing.

to fix need to update code as follow

import { offset as offsetModifier, Options } from '@popperjs/core';
.
.
.
  options: (options: Partial<Options>) => Partial<Options> = (options) => {
    options.modifiers!.push(offsetModifier, {
      name: 'offset',
      options: {
        offset: () => [0, 10],
      },
    });
    return options;
  };

references: https://popper.js.org/docs/v2/modifiers/#custom-modifiers https://popper.js.org/docs/v2/faq/#how-do-i-set-modifier-defaults-and-allow-them-to-be-overridden https://github.com/ng-bootstrap/ng-bootstrap/blob/4137c6062c497869af7998b2ebfdd429eb6e2a97/src/util/positioning-util.ts

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

79534725

Date: 2025-03-25 20:02:15
Score: 4.5
Natty:
Report link

You can simply pipe the first field into the field label of the second field using square brackets:

Is [preferred_name] over 12 years old?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Louis Martin

79534720

Date: 2025-03-25 20:00:14
Score: 1
Natty:
Report link

After .NET 5, System.IO.Path was made to be cross platform. I'd expect this to work everywhere.

private static bool IsSubPath(string parent, string child)
{
    string relPath = Path.GetRelativePath(parent, child);
    return !(Path.IsPathRooted(relPath) || relPath.StartsWith(".."));
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: will bodron

79534693

Date: 2025-03-25 19:47:10
Score: 11.5 🚩
Natty: 4
Report link

Hey @mez did you have any luck with this? I am facing a similar issue, though my issue is downstream: getting Mapbox to accept a different raster-dem than its own.

Reasons:
  • Blacklisted phrase (1.5): any luck
  • RegEx Blacklisted phrase (3): did you have any luck
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing a similar issue
  • Contains question mark (0.5):
  • User mentioned (1): @mez
  • Single line (0.5):
  • Low reputation (1):
Posted by: Matt R.

79534685

Date: 2025-03-25 19:41:09
Score: 2.5
Natty:
Report link

I also had alot of problems to focus the element. There are many ways to do it. The best and most clean solution for me is using https://vueuse.org/core/useFocus/ works like a charm

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

79534675

Date: 2025-03-25 19:36:08
Score: 1
Natty:
Report link

For future googlers, this is the top result, but the real answer to this question is here: FFMPEG "Segmentation fault" with network stream source

Basically the johnvansickle.com builds have a limitation where they need the nscd installed and running. I had this exact issue, and that fixed it for me - just installing nscd isn't enough:

sudo yum install -y nscd
sudo systemctl start nscd.service

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

79534674

Date: 2025-03-25 19:36:08
Score: 2.5
Natty:
Report link

It's not easy to guess what it could be with your small code snipped. Require is only needed if the used library export only in CommonJs (outdated) instead of ES6.

I was looking in the https://www.npmjs.com/package/google-auth-library docu it seems that many examples here are with require but one is with import

import { AwsClient, AwsSecurityCredentials, AwsSecurityCredentialsSupplier, ExternalAccountSupplierContext } from 'google-auth-library';

So the import shouldnt be a problem. Can you share more of your code ? Or even better a playground in stackblitz - sometimes it can even help to debug the issue yourself while creating a isolated stackblitz version.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: devnik

79534664

Date: 2025-03-25 19:28:06
Score: 0.5
Natty:
Report link

@MoonKnight answer is the only answer that can draw decent border at windows 11.

so took it, instead of adding BorderedTextbox on desinger.

will Wrap your textbox at the form_load, so you'll be still referencing. the same textbox. same events etc.

atDesigner:

enter image description here

while Running:

enter image description here

how to use

private void Form1_Load(object sender, EventArgs e) 
{
   //this method will preserve textbox itself, events etc.
   // but it will wrap textbox inside BorderedPanel.
   var borderedPanel = TextBox_Helper.MakeTextbox_CustomBorderColor(textbox1); 
         
}

required Class:

  public static class TextBox_Helper
  {
      /// <summary>
      /// wrap your exisiting textbox, into a panel with customColor Roudned borders
      /// </summary>
      /// <returns>retunrs  BorderedTextbox ,  aka The Panel That Wraps The your Exisiting Textbox</returns>
      public static BorderedTextBox MakeTextbox_CustomBorderColor(this TextBox tbx) 
      {
          //backup previous TBX status
          var tbxOriginalParent =  tbx.Parent;
          var loc = tbx.Location;
          var size = tbx.Size;
          var anchor = tbx.Anchor;
          var dock = tbx.Dock;

          //restore them to Panel
          var bordered_tbx = new BorderedTextBox(tbx);
          bordered_tbx.Location = loc;
          bordered_tbx.Size= size;
          bordered_tbx.Height= size.Height+5;
          bordered_tbx.Anchor = anchor;
          bordered_tbx.Dock = dock;
          tbxOriginalParent.Controls.Add(bordered_tbx);

          return bordered_tbx;
      }
  }

  // https://stackoverflow.com/questions/17466067/change-border-color-in-textbox-c-sharp/39420512#39420512
  public class BorderedTextBox : Panel
  {
      private TextBox textBox;
      private bool focusedAlways = false;
      private Color normalBorderColor = Color.LightGray;
      private Color focusedBorderColor = Color.FromArgb(0,00,225);
      //private Color focusedBorderColor = Color.FromArgb(86,156,214);

     
      public TextBox TextBox
      {
          get { return textBox; }
          //set { textBox = value; }
      }
      public bool FocusedAlways
      {
          get { return focusedAlways; }
          set { focusedAlways = value; }
      }

      public BorderedTextBox(TextBox tbx = null)
      {
          this.DoubleBuffered = true;
          this.Padding = new Padding(2);

          if (tbx == null)
              textBox = new TextBox();
          else
              textBox = tbx;

          this.TextBox.AutoSize = false;
          this.TextBox.BorderStyle = BorderStyle.None;
          this.TextBox.Dock = DockStyle.Fill;
          this.TextBox.Enter += TextBox_Refresh;
          this.TextBox.Leave += TextBox_Refresh;
          this.TextBox.Resize += TextBox_Refresh;
          this.Controls.Add(this.TextBox);

          this.textBox.FontChanged += TextBox_FontChanged;
          RefreshHeight(textBox);

          //debug helper
          //this.TextBox.BorderStyle = BorderStyle.FixedSingle;
          this.BackColor = Color.Red;

      }

      private void TextBox_FontChanged(object sender, EventArgs e)
      {
          RefreshHeight(textBox);
          this.Height = textBox.Height+5;
      }

      private void TextBox_Refresh(object sender, EventArgs e) => this.Invalidate();

      protected override void OnPaint(PaintEventArgs e)
      {
          e.Graphics.Clear(SystemColors.Window);

          using (Pen borderPen = new Pen(this.TextBox.Focused || focusedAlways ?
              focusedBorderColor : normalBorderColor))
          {
              //e.Graphics.DrawRectangle(borderPen,
              e.Graphics.DrawRoundRectangle(borderPen,
                  new Rectangle(0, 0, this.ClientSize.Width - 1, this.ClientSize.Height - 1)
                  ,5);
          }
          base.OnPaint(e);
      }


      /// <summary>
      /// fix Textbox.borderNone bottom gets clipped issue
      /// </summary>
      /// <param name="textbox"></param>
      static void RefreshHeight(TextBox textbox)
      {
          return;

          textbox.Multiline = true;
          Size s = TextRenderer.MeasureText("AĞÜüğGgpPa", textbox.Font, Size.Empty, TextFormatFlags.TextBoxControl);
          textbox.MinimumSize = new Size(0, s.Height + 1 + 3);
          textbox.Multiline = false;
      }


  }
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @MoonKnight
  • High reputation (-1):
Posted by: bh_earth0

79534663

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

To pause all CSS transitions/animations and others Web Animation API, do:

document.getAnimations().map(x => {console.log(x); x.pause()})

See a demo in https://www.youtube.com/watch?v=qeoCpAjdgrI

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: tobiasBora

79534661

Date: 2025-03-25 19:27:05
Score: 1.5
Natty:
Report link

Try modify your cli.py to initialize Django first:

import os
import django

Also Make sure your app is properly listed in INSTALLED_APPS in settings.py

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

79534660

Date: 2025-03-25 19:26:05
Score: 0.5
Natty:
Report link

Use escape sequences

driver = webdriver.Chrome("E:\\dnlds\\chromedriver-win64\\chromedriver-win64\\chromedriver.exe")

or raw string

driver = webdriver.Chrome(r"E:\dnlds\chromedriver-win64\chromedriver-win64\chromedriver.exe")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: jgonz1

79534657

Date: 2025-03-25 19:25:05
Score: 2.5
Natty:
Report link

Maybe you're looking for this https://vuejs.org/guide/essentials/component-basics#dynamic-components

<component :is="tagName" />

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

79534655

Date: 2025-03-25 19:24:04
Score: 1.5
Natty:
Report link

According to Excel MS documentation:

"Total number of characters that a cell can contain 32,767 characters"

https://support.microsoft.com/en-us/office/excel-specifications-and-limits-1672b34d-7043-467e-8e27-269d656771c3

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

79534645

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

Colocation of the two tables table1 and table2 is a condition on the distribution of the outer join between these two tables. Therefore, when you try to run an outer join between table1 and table2, you are seeing that error.

To overcome that error, the tables should be colocated. This basically means that shards of the distributed table should match one to one, i.e. each shard of table1 should overlap with one and only one shard from table2. Different partition (distribution) column types between table1 and table2 is the most common reason of resulting in non-colocated tables.
So, you should make sure that table1 and table2 have the same partition column type.

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

79534627

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

For Android:

In the forms OnCreate:

const
  AWINDOW_FLAG_SECURE = $00002000;
Begin
ANativeActivity_setWindowFlags(PANativeActivity(System.DelphiActivity), AWINDOW_FLAG_SECURE, 0);
End;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Todd Frankson

79534618

Date: 2025-03-25 19:03:00
Score: 4.5
Natty:
Report link

do you use vite?

I use https://www.npmjs.com/package/vite-plugin-remove-console

// https://vitejs.dev/config/
export default defineConfig({
  plugins: [vue(), removeConsole()]
});
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Oxicode

79534616

Date: 2025-03-25 19:00:59
Score: 1.5
Natty:
Report link

Through testing I found that setUp threads work exactly the same as the rest of the test plan. If you uncheck Run Thread Groups consecutively at the Test Plan level, then all same-level threads will run at the same time.

So, the order that the threads execute will be:

1. First all setUp thread groups run at the same time, as many as you have.

2. Then all regular thread groups run at the same time.

3. Then all tearDown thread groups run at the same time.

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

79534591

Date: 2025-03-25 18:46:56
Score: 1.5
Natty:
Report link

I used this code and it showed me ligatures

.CodeMirror {
    font-family: 'Fira Code', monospace !important;
    font-size: 14px;
    height: 300px;
    border: 1px solid #ccc;
}

Fira code is just another font with ligatures so if it works yours should work.

Result:
Result of the code showing font with ligatures

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

79534584

Date: 2025-03-25 18:40:54
Score: 4
Natty: 5
Report link

Do you still have the tutorial? I'm trying to find one but couldn't find a good one to follow

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vicky

79534581

Date: 2025-03-25 18:39:54
Score: 3
Natty:
Report link

add <prog>_DEPENDENCIES = <prog>.o

and

<prog>_LDADD = <prog>.o

to the Makefile.am file

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

79534574

Date: 2025-03-25 18:37:54
Score: 1
Natty:
Report link

I newer versions of yarn (mine is 4.1.1) you need to create a .yarnrc.yml file and set the npmRegistryServer config. Example:

.yarnrc.yml:

npmRegistryServer: https://npm.my-company.com
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nilo nilold

79534572

Date: 2025-03-25 18:36:53
Score: 2.5
Natty:
Report link

<script async='async' src='http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js'></script>

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: bỏ tay ra ních tôi mẹ mày

79534569

Date: 2025-03-25 18:35:53
Score: 1.5
Natty:
Report link

I'm new to Ruby, but some things have changed since this question was asked: https://blog.saeloun.com/2019/10/07/ruby-2-7-keyword-arguments-redesign/. For a constructor like this:

def initialize(channel_id:, token:)
  @channel_id = channel_id
  @bot_token = token
end

...I need this kind of code to populate a new instance from entries in config.yml:

        case entry['type']
        when 'my'
          # Invalid keys will cause an exception.
          args = destination.transform_keys(&:to_sym)
          args.delete(:type)
          slack = MyClass.new(**args)
Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1.5): I'm new
  • Has code block (-0.5):
Posted by: AbuNassar

79534568

Date: 2025-03-25 18:35:53
Score: 1
Natty:
Report link

Rename the SpatRaster so it has the same name as the predictor variable in your model.

names(bathy_pei) <- 'bathy_pei'
rf_pred = terra::predict(bathy_pei, model=rf_a, na.rm = FALSE)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ben

79534566

Date: 2025-03-25 18:34:53
Score: 3.5
Natty:
Report link

I have set a time formular on google sheet as =IF($D2<>"",IF($B2="",NOW(),$B2),""), please i want to improve on this formula in such a way it will notify me or stop me from working after 11:59PM so that I can move to the next sheet at 12:00AM.

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

79534554

Date: 2025-03-25 18:26:51
Score: 1
Natty:
Report link
  1. Avoid execution time limits by adding:

    ini_set('max_execution_time', 0); 
    
  2. Run the extraction process in the background, using Laravel Queue or another worker. Avoid using system functions (exec(), shell_exec()), as they can cause security issues and lack portability.

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

79534553

Date: 2025-03-25 18:24:51
Score: 2
Natty:
Report link

From http package use -> String? mimeType = ContentType.parse(file.path).mimeType;

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

79534537

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

One thing that might explain the discrepancy in the total memory numbers could be that if you leave the Compute drop down at default it will average the metrics across all nodes in the cluster. Make sure you're selecting just the driver node when you want to see metrics for just that node.

Cluster Metrics - View Metrics at the Node Level

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

79534529

Date: 2025-03-25 18:17:49
Score: 1
Natty:
Report link

Just export this environment variable before running cqlsh to tell cqlsh which version of python to use, or add to your zshrc script.

export CQLSH_PYTHON=python3.9
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: vishr

79534526

Date: 2025-03-25 18:13:48
Score: 1
Natty:
Report link

you can't use .append with arrays. SQLAlchemy doesn't see changes this way.
You should do this instead:

blend.images = blend.images + [ntpath.basename(row[16])]

Maybe you still need this after 6 years of waiting xD

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Тарасов Петр

79534522

Date: 2025-03-25 18:11:48
Score: 0.5
Natty:
Report link

You have to add http://localhost to your Authorized JavaScript origins, along side w/ the one w/ the port.

Google recently deprecated the legacy One Tap with the fedCM, try adding use_fedcm_for_prompt: true in your initialize call.

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

79534505

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

Ok, the workaround to remove the MS security update stopped working.

After scouring the internet for more solutions, i ended up asking ChatGBT and one of its suggestions worked. Again I guess its a workaround but it will do.

Its to run the following command in powershell to unblock files in my installation folder where i am running setup.exe

Get-ChildItem -Recurse "C:\path\to\folder" | Unblock-File

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

79534485

Date: 2025-03-25 17:54:43
Score: 7.5 🚩
Natty: 5
Report link

Did you find a solution ??I am doing the same thing and i really can't wrap around my head of how to do it ..................1127£77_7_+_+_+_+_+_++_+_++#(#!"++"+£+£+£+£+"+_++"+_+_+_+_++_+_!_+_!_+_!_!_!_+

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a solution
  • No latin characters (0.5):
  • Filler text (0.5): ..................
  • Low reputation (1):
Posted by: Giselle Dmello

79534479

Date: 2025-03-25 17:53:41
Score: 8 🚩
Natty:
Report link

did you get a solution for this? I am facing the exact same problem but unable to find a solution yet.. the problem is with using the RESt endpoints of keycloak for 2FA and not the browser flow.

With keycloak's forms(browser flow) its way too simpler but unable to implement 2FA using token generation thru rest endpoints of keycloak.

Kindly respond if you have figured out a way to do so

Reasons:
  • RegEx Blacklisted phrase (3): did you get a solution
  • No code block (0.5):
  • Me too answer (2.5): I am facing the exact same problem
  • Contains question mark (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: aki a

79534474

Date: 2025-03-25 17:51:41
Score: 1
Natty:
Report link

You can do it with this formula:
=AVERAGE(INDEX(TableSalaries,,MATCH("Employee Name1",TableSalaries[#Headers])))

where TableSalaries is the name of the table from your second attachment.

When you put it in your table, you will change constant with reference to a cell with your Employee name for which you want to display the average salary, for example:
=AVERAGE(INDEX(TableSalaries,,MATCH([@[Employee Name]],TableSalaries[#Headers])))

Explanation:
- MATCH([@[Employee Name]],TableSalaries[#Headers]) is retrieving the column number in which your employee name is present
TableSalaries[#Headers] is a list of all the strings in the header of TableSalaries table
MATCH is returning index of searched element in the list

- INDEX(TableSalaries,,MATCH([@[Employee Name]],TableSalaries[#Headers])) is returning all the values from column by number, without header of course.
INDEX(array,row_number,column_number)

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vlado Bošnjaković

79534460

Date: 2025-03-25 17:45:39
Score: 1
Natty:
Report link

Try adding the file "requirements-local.txt" on "docker" directory before start your instance using docker compose.

The contents for de file should be:

shillelagh[datasetteapi,gsheetsapi,weatherapi,genericjsonapi]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Herberson Silva