79835415

Date: 2025-12-02 02:06:40
Score: 4
Natty:
Report link

So essentially what you're saying is that the lines between front-end and back-end are now blurred. OK, that still doesn't explain why a position advertised as front-end would also need back-end experience. If back-end experience is needed, shouldn't it be labeled full-stack?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
Posted by: Heath

79835413

Date: 2025-12-02 02:01:39
Score: 1.5
Natty:
Report link

In n8n, binary data is already base64 encoded internally, so you don't need to re-encode it. Your approach of accessing the binary property from the previous node and directly using it as base64 is correct. One thing to double-check is that you access the base64 string via binaryData.data (not just binaryData) since binaryData is an object containing data and metadata. Also, ensure your next node or HTTP request to Odoo sends the base64 string properly in the JSON payload without additional encoding.

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

79835409

Date: 2025-12-02 01:54:37
Score: 2.5
Natty:
Report link

@gayathri No, that doesn't work if the early accounts fill both segments. https://dbfiddle.uk/E7C2AbBs

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @gayathri
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: MatBailie

79835402

Date: 2025-12-02 01:33:33
Score: 2.5
Natty:
Report link

As per the latest documentation of Hangfire, MySql is not listed. you are probably constrained to use either Redis or MSSQL (SQL Server) . See https://docs.hangfire.io/en/latest/configuration/index.html

Alternatively if you want to, you could write your own custom configuration if it is worth is another question.

Or you can also use some community supported storage https://www.hangfire.io/extensions.html#storages

Reasons:
  • Blacklisted phrase (1): another question
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Abiola Akinnubi

79835391

Date: 2025-12-02 00:52:24
Score: 1.5
Natty:
Report link

not sure if I understand your question correctly.

  1. create relationships between two table

enter image description here

then when you select T1, you will see T44

enter image description here

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

79835388

Date: 2025-12-02 00:43:22
Score: 1.5
Natty:
Report link

here is an idea I came up with, idk how acceptable it is though lmao:

switch(foo) case 1, 2, 3 ->{
    //if true
} default -> {
    //if false
}

this could also work:

switch(foo) case 1, 2, 3 ->{
    //if true
}

Main problem with it is that it may not accept all data types.

Reasons:
  • Blacklisted phrase (0.5): lmao
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dr. Lul

79835383

Date: 2025-12-02 00:36:20
Score: 0.5
Natty:
Report link

First, flatten the nested RDD and then join with the second RDD. I also merged the duplicates; however, you can skip that step if needed.

joined = (
    rdd1
        .flatMap(lambda group: group)
        .reduceByKey(lambda a, b: a + b)
        .join(rdd2)
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: AtilaSol

79835381

Date: 2025-12-02 00:32:19
Score: 0.5
Natty:
Report link

From ikegami's comment with Perl code, I had an idea. GNU C has block expressions, too, so one can do this:

#define rev_comma(lhs, rhs) ({const auto a = (lhs); rhs; a;})

for a reversed comma. It defines a constant a to be the left-hand side, evaluates the right-hand side, then returns a without evaluating the left-hand side again.

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

79835372

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

CheatEngine’s speed hack works by altering how a game reads time, making the program run faster or slower than normal. It manipulates the system’s timing functions instead of changing gameplay directly. This creates the effect of speeding up actions or slowing them down, mainly for testing or experimentation purposes. https://www.ssoid.site/

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

79835364

Date: 2025-12-01 23:54:10
Score: 1.5
Natty:
Report link

When sending content to a WordPress site that uses Elementor, simply posting raw HTML to the 'content' field won't apply Elementor's styling or structure because Elementor stores its layouts as JSON data linked to widgets and sections. To preserve styling, you typically need to submit content in Elementor's proprietary JSON format or use Elementor's Template API, which is more complex. If that's too complicated, a common workaround is to use the Classic Editor for content or the Elementor HTML widget to embed raw HTML, though this limits Elementor's advantages. You can also try programmatically adding the required Elementor post meta and data structure, but that requires deep knowledge of how Elementor stores its layout. For automation, converting your HTML to Elementor JSON would be ideal but is fairly involved. Using a small formatter API might help you transform or validate content formats in your workflow. Overall, if you want full Elementor compatibility, pushing Elementor JSON is the best route; otherwise, fallback to Classic Editor or Elementor HTML widget may be simpler.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Chris Schmitt

79835356

Date: 2025-12-01 23:18:02
Score: 8
Natty:
Report link

@Rhys Tedstone Thanks for the advice, I really appreciate it. The interviewer mentioned that I’m not allowed to ask him questions about the challenge and should figure it out myself, so I’m trying to stay careful. I also checked the desktop app, but it doesn’t support disappearing pictures either. I’ll keep exploring the web client side as you suggested.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks for the advice
  • No code block (0.5):
  • User mentioned (1): @Rhys
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: saad jlassi

79835355

Date: 2025-12-01 23:11:00
Score: 3
Natty:
Report link

I’m doing my best with every opportunity right now. I already tried reverse engineering with BurpSuite, but all the traffic is encrypted, so that approach didn’t work. It seems the solution must be on the client-side, so I’ll focus my efforts there next.

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

79835351

Date: 2025-12-01 23:09:00
Score: 3
Natty:
Report link

I would highly recommend making it so this question can't easily be found by the interviewers, since that basically defeats the point of a technical interview.

I'd say finding the API in the desktop version would be best, since the logic is already designed for the web.
This seems weirdly in-depth for an "interview" - are you sure that's what the task is asking of you?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Rhys Tedstone

79835338

Date: 2025-12-01 22:45:55
Score: 2.5
Natty:
Report link

Yes, ConfigureAwait(false) must be used in both, each await is independent, which means the foo task does not automatically pass to bar.

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

79835332

Date: 2025-12-01 22:38:53
Score: 3
Natty:
Report link

Rookie mistake for me. I'd forgotten to reenable debugging within the project settings.

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

79835330

Date: 2025-12-01 22:22:50
Score: 1.5
Natty:
Report link

probably shouldn't use Thead.Sleep there.... I think that's going to run client-side, and there's a single thread there. (so I'm guessing the change detection isn't even running in order to update the disabled state...)

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

79835328

Date: 2025-12-01 22:18:48
Score: 1
Natty:
Report link

You should upgrade your code repository, via the upgrade PR, so that you get a higher version of transforms library (>3.123 should work !)

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

79835327

Date: 2025-12-01 22:16:47
Score: 1.5
Natty:
Report link

You appear to be hitting an incompatibility between Docker Engine version 29 and Fabric v3.1.3, v2.5.14 (and earlier). This problem is reported in Fabric issue #5350. Until a version of Fabric is released with a fix, you will need to downgrade your Docker Engine version 28 (or earlier).

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

79835318

Date: 2025-12-01 22:00:43
Score: 0.5
Natty:
Report link

I'd usually disable the button inside the function called. (so in your case, the first thing you do in IncrementCount method is disable the submit button, and update it's text/innerHTML if desired... ex: "Working...")

Reasons:
  • Whitelisted phrase (-1): in your case
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: browsermator

79835317

Date: 2025-12-01 22:00:43
Score: 2.5
Natty:
Report link

In addition to updating the SDK I also needed to manually switch the C# extension from pre-release to release version then restart vscode

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

79835311

Date: 2025-12-01 21:49:41
Score: 1.5
Natty:
Report link

It is a very old question. Still if anybody needs, I used three sub categories of First-Fit-Decreasing (FFD) algorithm for distribution of loads to multiple renewable energy sources:

a) If the loads are very close, e.g. 200, 250, 150 watts etc., -> FFD Average-fit algorithm

b) If the loads are very different, e.g. 150, 20, 300 etc. ->FFD Best-fit or Best-fit algorithm.

c) If the total load is significantly less than the total renewable sources available -> FFD Worst-Fit algorithm.

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

79835310

Date: 2025-12-01 21:48:39
Score: 6 🚩
Natty:
Report link

I could not found any fix for this error : “Failed to run behave for validation. Check that behave is installed and the behave command is configured correctly in preferences.” with Cucumber Plugin 3.0 in latest Eclipse IDE 2025-09 while working for selenium-java project . I have no python setup in this system . I tried below :

WorkAround Tried with No Luck though :

1.Go to Window > Preferences > Cucumber in Eclipse.

2.In the Cucumber preferences, against "Java" option Added the "runner" package of my project.

Another thing tried :

Uninstalled this plugin and installed a cucumber plugin 2.0.0.xxx . That eliminate this error in feature file but error realated to "missing class" started to appear . To fix those I tried different versions of cucumber-java and cucumber-testng versions . But could not fix.

Can any one please help to solve this for Selenium-Java project

Reasons:
  • Blacklisted phrase (1): this plugin
  • Blacklisted phrase (1): No Luck
  • RegEx Blacklisted phrase (3): please help to
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: simpliQA

79835304

Date: 2025-12-01 21:38:36
Score: 4
Natty:
Report link

front-end isn't always a browser... so maybe they have a front-end built in Java or .NET that also uses a client-side DB?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
Posted by: browsermator

79835294

Date: 2025-12-01 21:22:32
Score: 3
Natty:
Report link

I don't know if you still need this, but here is a Github Action that does what you need, automatically: https://github.com/serviceguards-com/httptests-action

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Akram Fares

79835290

Date: 2025-12-01 21:16:30
Score: 5.5
Natty:
Report link

many thanks by your orientation @Markus Zeller

I like "listen" yours instructions

regards

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): regards
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Markus
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: XHtml

79835289

Date: 2025-12-01 21:15:30
Score: 0.5
Natty:
Report link

Finally found it... It's like:

    if ( $from === $to ) {
        // Single day: Woo interprets this as "during that day in site timezone"
        $args['date_created'] = $from;
    } else {
        // Range: Woo interprets this as "between those days in site timezone"
        $args['date_created'] = $from . '...' . $to;
    }
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: James B.

79835287

Date: 2025-12-01 21:14:29
Score: 4
Natty: 4
Report link

Please note that the URLs have changed.

https://github.com/mod-playerbots/azerothcore-wotlk

https://github.com/mod-playerbots/mod-playerbots

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

79835280

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

This is what I've been using. These are different schemas that evaluate different form elements

<Formik validationSchema={useFirstSchema ? firstSchema : secondSchema} ... />
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Peter B

79835273

Date: 2025-12-01 20:51:23
Score: 2.5
Natty:
Report link

thanks for all yours.

here is my APP/PORTAL/software:


ALL SCRIPTS INTO my APP load:

    web/config.php
        -> this file define:
            time ZONE
            directory for images
            ect...

ONLY when users OPEN:

    web/tools_14
    web/tools_21
    web/tools_26

I need use the class NumberFormatter()
then:

is a bad practice ADD into {web/config.php} the var

$n2text = new NumberFormatter('eng', NumberFormatter::SPELLOUT);

???

if I do then the WHOLE web use Xram with this CLASS,

if I not do (my current practice) then I need call into each "TOOL" the class

in your opinion which is the more efficient?

( if we need something as "function_very_hard()" then we only ADD this function/class into the fragment code who require that, and not into "config.php"

but this is only "NumberFormatter()"

what can you recommended to me?

that is all, thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): ???
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: XHtml

79835268

Date: 2025-12-01 20:45:22
Score: 1.5
Natty:
Report link

{"adjust":{},"appsflyer":{},"facebook":{},"wg":{"name":"WG","cid":"8820676","siteCode":"2912","_ti":"eyJzZXNzaW9uX2tleSI6ImE1NjZiMGQwMDFmODVkZjBjMjIzMTc2NDYxMTY2Njk5NzIyMTQyNSIsImp3dF90b2tlbiI6ImV5SmhiR2NpT2lKSVV6STFOaUlzSW5SNWNDSTZJa3BYVkNKOS5leUpsZUhBaU9qRTNPVFl4TkRjMk5qWXNJbVY0ZEVsdVptOGlPbnNpWW5KdmQzTmxjbVpwYm1kbGNtbGtJam9pSWl3aVkyeHBaVzUwYVhBaU9pSXpOeTR4TVRFdU1UUXpMamN3SWl3aVpHVjJhV05sSWpvaU56RTVNRGszTXpndFl6STVZUzAwTURObExUa3hZakV0TVRSaU5XTmtOemcyWldFMklpd2laR1YyYVdObGRIbHdaU0k2SWpNaUxDSjRMV1JsZG1salpTSTZJakl0TkNKOUxDSjFJam9pTmprNE56ZzJPRE13SWl3aWRpSTZJakUzTmpRMk1URTJOallpZlEuWGdBaVM4YmNCaTZueXhCUU5xQV9fSks1c1R3NkpKT2JJSkUxenpXTFY5RSIsInVzZXJrZXkiOiJsN3lxRW1IdWlhejFFNk5FRmRYWXI1Yld2Z1kyZlpNZkRnbURnTWExbzNycGNtSjllU2FuMDBaRVNLSnVWeDlzWXktejBRTzg2TFFnU09ZWm1lVEVHNjgycG5jZVBzb1JWVTFISWhDbHJ3SENXclo2UF9KdWhkSGZsWkJ6TDF3RXh3NzBTOS04ajVrcHh5X2tSTl9ZQ1I0dE9VV0xPV2o3S2Jwdmo1dlJpcjF4UHZOVWJHenFIeGswSW5vZVdCZTlCR1VTRlJVNWg5d21aZTBha1N3aUJxU0JUR2kwZWg4YUh2bFZyLU9EeVV5Sll1RjVpSTg3ZWVJVTF1WUFZa1dSNTExS3JSRE9vVGJpQnczNmt3U2lObHhMdHlqU29zbVE3YzNLQU5jc1VEWXRtQ0tMaUlnU0dkc3ducFZpUWJKeWxBYWpYOTJnN0VraVMwWWp2SE9fbkEiLCJjcmVhdGVkX3RpbWUiOjE3NjQ2MTE2NjYzMjZ9","_et":"MTc2NDYxMjM3NDg4OA=="},"kwai":{},"tiktok":{},"utm":{},"timestamp":1764612374}

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ali Jatoi blouch

79835267

Date: 2025-12-01 20:43:21
Score: 1
Natty:
Report link

Yep, super normal. The first WebClient call pays for DNS, SSL handshake, and spinning up the connection pool, so it’s slow.
After that everything is already warm, so it flies...

Fix is basically: keep the WebClient as a singleton "wich you already do" and trigger a tiny warm-up call on startup so your users never see that 5 to 9s delay...

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

79835265

Date: 2025-12-01 20:40:20
Score: 1
Natty:
Report link

Why do you call this "dirty"? Only the first one should be necessary. The other two should inherit the first.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why do you
  • High reputation (-2):
Posted by: Tim Roberts

79835259

Date: 2025-12-01 20:31:17
Score: 4
Natty:
Report link

المعطيات: لتكن لدينا الشبكة العصبية متعددة الطبقات الموضحة في الرسم البياني التالي:

لتكن البيانات التالية (𝑥,𝑦)=(2,1)

المطلوب:

.1 حساب المخرجات الوسيطة 11f ، 12f ، 11h ، 12h ، 21f، والمخرج النهائي 𝑦̂

.2 حساب المعام لت Δ𝑤𝑗 و 𝑤𝑗 مع j=1 , …,7 بعد تحديث واحد )مع مراعاة معامل التعلم 𝜶 = 𝟎.𝟏 .)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: Saleh Saleh

79835257

Date: 2025-12-01 20:30:17
Score: 0.5
Natty:
Report link

A simple search for "php test memory usage" returns the memory_get_usage function as its first result. There are even AI examples provided by some search engines to give you a head start (YMMV). There are also examples for you in the documentation itself.

Was there something in particular you were having trouble with to determine how much memory your scripts need?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: maiorano84

79835255

Date: 2025-12-01 20:29:16
Score: 2.5
Natty:
Report link

You might want to check out some tools that simplify these kinds of Google Sheets customizations go to website for options that could make applying colored chips across dynamic dropdowns much easier.

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

79835248

Date: 2025-12-01 20:18:12
Score: 7
Natty:
Report link

@marce-puente

I added more detail about the card templates. Could you please take a look at it again?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @marce-puente
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Erfan Mirhoseini

79835243

Date: 2025-12-01 20:12:11
Score: 5
Natty:
Report link

precisely that is my Q!

eat a lot of RAM this class?,

how I can measure that?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: XHtml

79835241

Date: 2025-12-01 20:11:10
Score: 4
Natty: 4
Report link

When you say old vector software, can you be specific as to what you used? I'm having some issues with the VN1640.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: EBBB

79835240

Date: 2025-12-01 20:11:10
Score: 4
Natty:
Report link
MsgBox "Your message!", vbSystemModal
Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chris Christianson

79835234

Date: 2025-12-01 20:04:08
Score: 2.5
Natty:
Report link

How much memory do you think this code uses? Also have you checked your assumptions or done any measurements?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How
  • High reputation (-2):
Posted by: Nigel Ren

79835233

Date: 2025-12-01 20:04:08
Score: 3.5
Natty:
Report link

It was a version mismatch between Linux and Windows.

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

79835230

Date: 2025-12-01 20:01:07
Score: 1
Natty:
Report link

In Update, you are doing:

Pausemenu.SetActive(true);

And then you check if the gameObject you just set to Active is Active:

if (Pausemenu.activeSelf)

That can't work.

I don't know if that is your main problem, but with this it can't work.

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

79835222

Date: 2025-12-01 19:48:03
Score: 2.5
Natty:
Report link

simply I take care with my little RAM; I need use

$n2text

in some lines when $USER use some areas of my portal

( now is more of 3 times, then I see MAYBE is best have

$n2text

in whole program but I am a newbie then I want hear (read) the professionals

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: XHtml

79835221

Date: 2025-12-01 19:46:03
Score: 0.5
Natty:
Report link

Yep, TestStand nuked your types and there’s no undo for that.
Just grab the modified type-palette .ini or .seq files, restore them from Git, restart TestStand, and your custom types are back !

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

79835220

Date: 2025-12-01 19:46:03
Score: 2.5
Natty:
Report link

I think you should be more specific in your description of the cards, otherwise it's unlikely that anyone will be able to help you.

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

79835218

Date: 2025-12-01 19:40:01
Score: 1
Natty:
Report link

The security-related entities, e.g., definition of username, database roles, role memberships, permissions, are determined by a specific server configuration, and they do not belong to programming asserts, a.k.a., programmability of stored procedure, function, etc.

We have resolved this issue by removing the security-related entities from the SQL Server Database project.

We also configured Visual Studio's Schema Compare to ignore the following object types to prevent synchronizing on the security-related entities in future:

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

79835207

Date: 2025-12-01 19:26:57
Score: 2.5
Natty:
Report link

What makes you think the RAM usage of this line of code is so high? What have you measured?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • High reputation (-2):
Posted by: Alex Howansky

79835193

Date: 2025-12-01 19:09:52
Score: 0.5
Natty:
Report link

I discovered that you can open the "Wine Control Panel" by simply using ShellExecute from the Winapi.ShellAPI unit and opening control.exe:

ShellExecute(0, 'open', 'control.exe', nil, nil, SW_SHOWNORMAL);

And then it'll open on Wine or Steam Proton:

Wine Control Panel

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Shaun Roselt

79835188

Date: 2025-12-01 18:53:49
Score: 8
Natty: 7.5
Report link

^^ can you explain how you handled any HTTP connection errors when running this?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you explain how you
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Isabelle Gallucci

79835169

Date: 2025-12-01 18:22:41
Score: 6
Natty:
Report link

@Sergey A Kryukov thank you for the help, it's a male-only family tree, no wifes. It's a popular topic in the Arabic world and a historical science there, thanks again.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (0.5): thanks
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Sergey
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Sarout

79835167

Date: 2025-12-01 18:21:41
Score: 0.5
Natty:
Report link
import type { BetterAuthOptions, InferSession, InferUser } from "better-auth";
import { betterAuth } from "better-auth/minimal";


const authConfig = { ... } satisfies BetterAuthOptions;

export const auth = betterAuth(authConfig);

export type Auth = typeof auth;
export type Session = InferSession<Auth>;
export type User = InferUser<Auth>;
export type AuthData = {
  session: Session;
  user: User;
} | null;
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Wisam Jbori

79835163

Date: 2025-12-01 18:19:40
Score: 0.5
Natty:
Report link

Best thing to do would be to just get the .className at runtime. Crappy fix, but it'll work. Personally I have issues trying to programmatically apply animations because it transforms the css name but not any other reference to it in the file. The keyframes become s-VSwDfhj2prWB-opacityvisibleanimation but my code is element.style.animation = "1s forwards opacityvisibleanimation", which fails.
Even including it in the HTML segment fails, such as
style="animation: {expanded ? "1s forwards opacityvisibleanimation" : "1s forwards opacityinvisibleanimation"}".
I'm not sure how Rich intended us to reference animation names?

You'll need to do this at runtime.
in your .svelte:
element.className.match(/s-[\s\S]{12}/g)[0]

element being anything...

Now I can properly reference animation names:

element.style.animation = "1s forwards " + element.className.match(/s-[\s\S]{12}/g)[0] + "-opacityvisibleanimation"

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

79835162

Date: 2025-12-01 18:18:39
Score: 3.5
Natty:
Report link

try/execpt is the best practice for data type errors like this

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

79835159

Date: 2025-12-01 18:15:38
Score: 1.5
Natty:
Report link

For the lazy version I use this

(.|\r|\n)+
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: fededim

79835155

Date: 2025-12-01 18:09:37
Score: 2
Natty:
Report link

Yes, you must make a custom implementation.

Only the primary (left) mouse button can be used with SwiftUI's built-in gestures (TapGesture, DragGesture, LongPressGesture, etc.). They do not support right or middle mouse input.

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

79835154

Date: 2025-12-01 18:08:36
Score: 2
Natty:
Report link

The answer seems to be a resounding "No, not in modern FF" - thanks to @nanigashi for clarifying.

The best way to ergonomically toggle/access a setting that I've found was to pin an about:config tab and/or find a short identifying substring of the setting name to enter in the about:config search (i.i in the case of full-screen-api.ignore-widgets)

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Has code block (-0.5):
  • User mentioned (1): @nanigashi
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Niki Herl

79835150

Date: 2025-12-01 18:00:34
Score: 2.5
Natty:
Report link

This appears to be a warning message basically stating that there was a tag within the SVG file itself that was not handled by the Svg Loader. I've found you can either simply ignore the message or remove the tag from the SVG.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Julián McClinton

79835147

Date: 2025-12-01 17:57:33
Score: 1
Natty:
Report link

Just to understand the question. You are using these two input elements (default is that they are text fields) as buttons, and you need the value of "action" (the name of the inputs) so that you can see if it was "Enter" or "Cancel" that was clicked when submitting the form? And then you need a localized display text for each button?

Reasons:
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: chrwahl

79835143

Date: 2025-12-01 17:53:31
Score: 1
Natty:
Report link

StackOverflow really isn't a job site - it's a Q&A for programming-related question only ....

Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: marc_s

79835142

Date: 2025-12-01 17:49:30
Score: 3.5
Natty:
Report link

cd scoop-master.zip Set-executionPolicy RemoteSigned-Scope CurrentUser

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jusa Pöyry

79835134

Date: 2025-12-01 17:41:28
Score: 0.5
Natty:
Report link
def apply_twice(func, arg):
    return (func(arg)) # argument is 10 ,that added to to value 5
def add_five(x): # func when called once add_five inside becomes 10+5=15
    return x + 5
print(apply_twice(add_five, 10))


   
def apply_twice(func, arg):
    return func(func(arg)) # argument is 10 ,that added to to value 5 now  called twice
def add_five(x):# func when called twice add_five inside becomes 10+5+5=20
    return x + 5
print(apply_twice(add_five, 10))


   
def apply_twice(func, arg):
    return func(func(arg))+ func(func(arg))# argument is 10 ,that added to to value 5 now  called twice
def add_five(x): #  two time repeated func , when called twice add_five inside becomes 10+5+5=20 +20=40
    return x + 5
print(apply_twice(add_five, 10))
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: turab nomanbhai

79835121

Date: 2025-12-01 17:30:24
Score: 1
Natty:
Report link

For those having issues even with tabIndex removed and all other normal solutions exhausted this is something to consider as it was an intermittent issue and hard to diagnose.

I use Yii2 and Kartik Select2 widget in a bootstrap modal which makes it hard to override the dedropdownParent setting. The widget worked perfectly in most situations anyways so I think he sets it correctly.

If the modal content container does not have a max-height and overflow-y:scroll style settings the select2 was not allowing search functionality when the modal content grew beyond the original modal size. After doing many tests and then some research on the symptoms its clear that there is a scroll detector function in the select2 initialization that breaks if it "thinks" the content should have a scroll even if it doesn't.

To fix this issue I set the modal-content max-height to 75vh and overflow-y:scroll. This way the select2 scroll detection will actually work and the search function will initialize.

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

79835118

Date: 2025-12-01 17:28:24
Score: 1.5
Natty:
Report link

Les espaces de noms permettent de regrouper des variables, des fonctions, des classes, etc. sans polluer les identifiants des autres librairies.

  1. Créer les espaces de noms suivants: terre, mars et jupiter;

  2. Ajouter dans chacun de ces espaces les constantes rayon et nom contenant respectivement le rayon de la planète et son nom;

  3. Ajouter dans chacun de ces espaces une fonction double surface() qui calcule la surface des planètes à partir de leur rayon.

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

79835111

Date: 2025-12-01 17:16:21
Score: 2.5
Natty:
Report link

Thank you for posting the result of your investigation, this was useful!
I'm coming from https://github.com/ocornut/imgui/pull/9099 (I am maintainer of that software) and things have been rather confusing but your latest comment helped connect some pieces of the puzzle.

I'd be ideally trying to solve this, aka allow MBCS-compiled apps using RegisterClassA(), DefWindowProcA() etc to work on all setups. I've been hoping I can avoid calling ImmGetCompositionString() (suggested by https://github.com/ocornut/imgui/pull/3653/files and implied by WM_IME_COMPOSITION ) in order to avoid requiring user to link my library with imm32.

So I am looking at:
\> To let your program work regardless of how the “language for non-Unicode programs” is set, you should handle WM_IME_COMPOSITION message properly. The simplest way to handle the message is to pass it to the DefWindowProcW() function.

However if i do this:

    case WM_IME_COMPOSITION:
    {
        // Handling WM_IME_COMPOSITION ensure that WM_IME_CHAR value is correct even for MBCS apps.
        // (see #9099, #3653 and https://stackoverflow.com/questions/77450354 topics) 
        IMGUI_DEBUG_LOG("WM_IME_COMPOSITION wParam %08X, lParam %08X\n", wParam, lParam);
        return ::DefWindowProcW(hwnd, msg, wParam, lParam);
    }
    case WM_IME_CHAR:
        if (::IsWindowUnicode(hwnd) == FALSE)
        {
            unsigned short ch = (unsigned short)wParam;
            if (::IsDBCSLeadByte(HIBYTE(wParam)))
                ch = MAKEWORD(HIBYTE(wParam), LOBYTE(wParam));

            wchar_t wch = 0;
            ::MultiByteToWideChar(bd->KeyboardCodePage, MB_PRECOMPOSED, (char*)&ch, sizeof(ch), &wch, 1);

            IMGUI_DEBUG_LOG("WM_IME_CHAR %08X -> %08X -> %08X\n", wParam, ch, wch);
            io.AddInputCharacterUTF16(wch);
            
            return 1;
        }
        return 0;

Then I get the correct char in WM_IME_CHAR, followed by a ? :

[07650] WM_IME_COMPOSITION wParam 00008882, lParam 000001B9
[07681] WM_IME_COMPOSITION wParam 0000D982, lParam 000001B9
[07686] WM_IME_COMPOSITION wParam 0000D982, lParam 000001B9
[07696] WM_IME_COMPOSITION wParam 0000D982, lParam 000001B9
[07707] WM_IME_COMPOSITION wParam 00007B96, lParam 000001B9
[07769] WM_IME_COMPOSITION wParam 00007B96, lParam 00001E00
[07769] WM_IME_CHAR 00007B96 -> 00007B96 -> 0000672C
[07769] WM_IME_CHAR 0000003F -> 0000003F -> 0000003F
[07770] [io] Processed: Text: '本' (U+0000672C)
[07770] [io] Processed: Text: '?' (U+0000003F)
[07858] [io] Processed: MouseButton 0 Down (Mouse)
[07865] [io] Processed: MouseButton 0 Up (Mouse)

If I change WM_IME_COMPOSITION handle to always return 1 or to always return 1 when (lParam & GCS_RESULTSTR) then I get the correct WM_IME_CHAR only.

I am curious if you have an idea about this? Thank you greatly!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Omar

79835105

Date: 2025-12-01 17:09:19
Score: 2
Natty:
Report link

When you get a divison by zero error/ exception it boils down to a rounding issue and how numbers are technically handled (machine representation of numbers). It depends how you calculate the number e (i.e. a by an approximation function) and it depends how you exponentiate. For exponentiation and calculating roots (nth root) there exists approximation functions that contain divisions. So rounding is the main culprit here.

That's the difference between theory and concrete implementation.

Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Gammal Gris

79835099

Date: 2025-12-01 16:59:17
Score: 2.5
Natty:
Report link

No, you can’t truly recover the original .py file from a .exe made with PyInstaller.

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

79835097

Date: 2025-12-01 16:57:16
Score: 0.5
Natty:
Report link

When you instantiate an express adapter, you can pass a series of options defined by this interface:

export interface ExpressHttpAdapterOptions extends HttpAdapterOptions {
  useCookies?: boolean;
  useJson?: boolean;
  useText?: boolean;
  useUrlEncoded?: boolean;
}

How can I add body-parser when using the new built-in way?

If useJson is set to true (this is the default value as well), a json parser is added to your express app.

If you are interested in manually setting up your express app, you can do so by passing the app to the adapter constructor:

const expressAdapter = new InversifyExpressHttpAdapter(
  container,
  {
    useCookies: false,
    useJson: false,
    useText: false,
    useUrlEncoded: false,
  },
  myCustomizedExpressApp,
);

I was trying to solve the wrong problem. Just in case anyone else has the same misconception as me: body-parser is not needed. Inversify handles the parsing.

Yeah, the adapter adds a json body parser by default. It can be disabled by passing useJson option flag to false.

My issue ended up being a typical frontend issue when the form was submitted (I was trying to submit JSON using a plain HTML form).

If you were sending a application/x-www-form-urlencoded Content-Type request, yeah, that's tricky, for express silently ignores the body unless you set a parser for it. If you are interested in supporting urlencoded bodies in the future, useUrlEncoded flag can be handy.

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): When you in
  • Low reputation (0.5):
Posted by: Roberto Pintos López

79835095

Date: 2025-12-01 16:56:15
Score: 0.5
Natty:
Report link

Not really. You can, but you'll end up secretly Church-encoding lists or something. You are asking how to equip the type of rose trees with the eliminator for lists; conceptually, the "only" way to do this is to factor through lists.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Naïm Camille Favier

79835094

Date: 2025-12-01 16:55:15
Score: 4
Natty:
Report link

See Is it possible to escape regex metacharacters reliably with sed.

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: pjh

79835090

Date: 2025-12-01 16:51:14
Score: 4
Natty:
Report link

Just moving the partials SCSS files into a subfolder worked. This was solved thanks to this answer. Check it for more information. This could be marked as duplicated.

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

79835081

Date: 2025-12-01 16:40:11
Score: 5
Natty: 5
Report link

Life saver mate! Thx a whole bunch!

Reasons:
  • Blacklisted phrase (1): Thx
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Emerson Langie

79835077

Date: 2025-12-01 16:38:10
Score: 1.5
Natty:
Report link

I spent a bit of time figuring out how to do a mix of spaces and wild cards (*) for file names.

An example of what I found works is:

robocopy ".\Icons" "C:\Users\Public\Desktop" "Wwise "*.* /e /mt:4

The bit in Bold is the interesting bit, in that "Wwise<space>"wildcard.wildcard allows me to copy only the files starting with Wwise<space> to the location desktop. I am sure there are more ways of messing wit this, but I stopped after getting it to do what I wanted.

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

79835075

Date: 2025-12-01 16:37:09
Score: 3.5
Natty:
Report link

One reason this stopped working is that wgy/clear channel/wnyt stopped being part of the school closings network. Try this one: https://www.schoolclosingsnetwork.com/output/townsquare/wgna.asp

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

79835068

Date: 2025-12-01 16:30:07
Score: 7
Natty: 7.5
Report link

where to enter this code? I am having a very big trobule. Please Help...
Jandel("verified-badge")

Reasons:
  • RegEx Blacklisted phrase (3): Please Help
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Starts with a question (0.5): where to
  • Low reputation (1):
Posted by: lol

79835063

Date: 2025-12-01 16:28:06
Score: 2.5
Natty:
Report link

If you're talking about getting syntax highlighting in your markdown file, this has to do with how you're rendering it. The renderer will interpret that language, and some renderer's have more languages implemented than others.

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

79835055

Date: 2025-12-01 16:19:04
Score: 1.5
Natty:
Report link

Your thought process and explanation seem logical to me. What exactly is the issue or concern you have here? What kind of answer or suggestion or advice are you looking for... specifically?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Drew Reese

79835049

Date: 2025-12-01 16:12:02
Score: 1.5
Natty:
Report link

Yes, edit .py files in VSCode and run them on Google servers via the Google Colab extension, like Jupyter notebooks.​

Setup Steps:

Limitations: No direct Google Drive mount or userdata access in VSCode.

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

79835048

Date: 2025-12-01 16:09:01
Score: 0.5
Natty:
Report link

This issue happens when KVM modules keep using VT-x even when you'r not using QEMU

Generally this is enough to make your virtualbox work

sudo modprobe -r kvm_intel kvm_amd kvm

But in some cases, you have to restart the virtualbox kernel modules like this:

sudo modprobe -r vboxnetadp vboxnetflt vboxdrv
sudo modprobe vboxdrv
sudo modprobe vboxnetflt
sudo modprobe vboxnetadp

This temporary frees the VT-x so VirtualBox can run VMs again.

Note: If you want to persist this, then create a small systemd service that runs these commands automatically at startup

Related Blog

  1. https://medium.com/p/2a6d35e57075
Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nishant

79835047

Date: 2025-12-01 16:09:01
Score: 1
Natty:
Report link

If anyone else comes across this
Here's the fix

DoublePointer maxVal = new DoublePointer(1);
DoublePointer minVal = new DoublePointer(1);

All you had to do was set the size in the constructor.

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

79835044

Date: 2025-12-01 16:05:00
Score: 3
Natty:
Report link

It turns out that it was possible this way:

numberofdoors=1&numberofdoors=2

:)

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

79835035

Date: 2025-12-01 15:59:59
Score: 2.5
Natty:
Report link

Can someone explain why std::vector<double> is considered "standard layout"

This is explained since C++11 in the "standard layout class rules", see https://en.cppreference.com/w/cpp/language/classes.html#Standard-layout_class:

A standard-layout class is a class that

  • has no non-static data members of type non-standard-layout class (or array of such types) or reference,

  • has no virtual functions and no virtual base classes,

  • has the same access control for all non-static data members,

  • has no non-standard-layout base classes, only one class in the hierarchy has non-static data members, and

So depending on how std::vector is implemented, all of those may very well be true. But it has nothing to do really with being PoD.

Different combinations of other traits may be used to check for PoD-like classes, lik the is_trivially_xyz family (ie. is_trivially_copyable).
Yet, from my work on an ASM-compiler, that needed to interopt with ASM/classes generated by MSVC, I think I remember there is no true trait to give you a true "pod" definition of a type, in a way that the compiler sees it - my example being the definition of "return values" in the x64 calling convention - here, a combination of is_trivially will not necessary align with what the compiler sees as pod, and I did not found a reliable way to detect it (even after asking stackoverflow).
Regardless, this might be a very specific example. In most cases, checks for trivially may be more than enough. For a lot of cases, it will be enough (and more correct/expressive) to just check for a specific property, instead of making your own "trivial" combined trait (for example, in template code that does copy of a value, just checking for trivially_copyable would be the most appropriate trait.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • RegEx Blacklisted phrase (2.5): Can someone explain
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): Can someone
Posted by: Juliean

79835021

Date: 2025-12-01 15:38:52
Score: 10.5 🚩
Natty: 4
Report link

I'm facing the same issue at the moment and i have done the same as you did, but still Google Play rejecting my app. If you came up with a solution for this matter would u please share it with me !
Thanks in advance

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): please share
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Low reputation (1):
Posted by: abderrahmane elmotaouakkil

79835020

Date: 2025-12-01 15:36:51
Score: 1.5
Natty:
Report link

Chrome recently introduced a restriction (Chrome 104+) that caps the maximum cookie lifetime to 400 days.
So even if you set a longer expiry (like 3 years or 2038), Chrome will silently shorten it.

This limit applies to both expires and max-age directives.
Older cookies created before v104 may still keep their original dates, but any new cookies are forced under the 400-day rule.

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

79835019

Date: 2025-12-01 15:34:51
Score: 1
Natty:
Report link

I've just ended up here with a similar issue. Not sure if it's the same problem that the OP had or a new one but I thought it might be helpful to record it here anyway. My issue was related to this: https://github.com/rstudio/rstudio/issues/16454

Running Sys.unsetenv("PKG_CPPFLAGS") and then installing rbibutils worked fine. Ubuntu 24.04.3 & RStudio 2025.09.2

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

79835009

Date: 2025-12-01 15:29:50
Score: 3
Natty:
Report link

<html>

<head>

<title> FORMULA </title>

</head>

<body>

(a<sub>1</sub>+b<sub>1</sub>)<sup>2</sup>=a<sup>2</sup>+2ab+b<sup>2</sup>

</body>

</html>

Reasons:
  • Low length (1):
  • No code block (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: Sajjad Hossain

79835007

Date: 2025-12-01 15:28:49
Score: 2
Natty:
Report link

You need to configure the WSO2 default model provider for this case.

Please follow the guide in https://bi.docs.wso2.com/integration-guides/ai/direct-llm-call/direct-llm-invocation-with-ballerina-model-providers/#step-5-configure-default-wso2-model-provider

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

79834986

Date: 2025-12-01 15:07:44
Score: 0.5
Natty:
Report link

It depends on the stack used for a product. A frontend can be rendered in the browser using React/Angular/Vue.js/etc or server-side using frameworks like Wicket/Velocity etc.

Depending on the frameworks used it can be quite useful to know a little about back-end tech. I've done projects where the front-end developers had no back-end experience which made in depth discussions very difficult.

IMO a developer should at least have minimal knowledge of tech used in a project no matter what their work area is. This makes discussions easier and gives everyone the ability to chip in when needed.

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

79834982

Date: 2025-12-01 15:02:42
Score: 12 🚩
Natty: 5.5
Report link

I have the same issue, have you been able to fix it?

Reasons:
  • Blacklisted phrase (1.5): have you been able to
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (1.5): fix it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sander BEIRLAEN

79834979

Date: 2025-12-01 14:54:40
Score: 2
Natty:
Report link

Or maybe front-end workers w/ back-end experience are more desired than those without that experience?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Scott Hunter

79834978

Date: 2025-12-01 14:54:40
Score: 1
Natty:
Report link

This should be closed as a duplicate of this question, but alas, Stackoverflow now wants to encourage duplicates.

Reasons:
  • Blacklisted phrase (1): Stackoverflow
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Laurenz Albe

79834968

Date: 2025-12-01 14:41:36
Score: 2.5
Natty:
Report link

@Valnik You can remove the UNIQUE (col1, col2) constraint. Just the index is enough; it handles all combinations. The only thing to check is how to handle NULLs, should they be unique or not?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Valnik
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Frank Heikens

79834963

Date: 2025-12-01 14:39:36
Score: 0.5
Natty:
Report link

(For those of us away from a computer, can you include both error messages for comparison?)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Jon Spring

79834957

Date: 2025-12-01 14:33:34
Score: 3.5
Natty:
Report link

I am writing a scraper in Python and ran into a CAPTCHA on the login form. The site sometimes returns a regular reCAPTCHA v2 and sometimes hCaptcha. I tried to bypass this through Selenium, but CAPTCHA keeps blocking the automation.

My purpose is to automatically obtain the CAPTCHA solution token and insert it into the form so that the script can continue running without manual involvement.

What I have already tried: headless Chrome, different user agents; waiting for the iframe to appear; tried recognizing the CAPTCHA image through third-party libraries, but reCAPTCHA/hCaptcha do not work this way; found mentions of external services, but I do not understand how exactly to integrate them with Python via API.

What I need:

A step-by-step recommendation on how to technically organize CAPTCHA solving in Python: which API to use; how to create a task, obtain the token; how to pass it back into Selenium or the request; whether a universal method exists for different CAPTCHA types.

I would appreciate an example of working code or a proven architecture.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): I have already tried
  • Blacklisted phrase (1.5): would appreciate
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nataniel

79834953

Date: 2025-12-01 14:33:34
Score: 1.5
Natty:
Report link

I just got the solution in Vivaldi forum with this desktop launcher:

[Desktop Entry]
Name=Vivaldi-mod
Exec=sh -c "konsole -e ~/vivaldi-modding/vivaldi.sh; gtk-launch vivaldi-stable"
Icon=vivaldi
Terminal=false

The first task is executed in konsole, the second not (Terminal=false).

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

79834952

Date: 2025-12-01 14:32:34
Score: 0.5
Natty:
Report link

As already mentioned by @VLAZ, That is actually not a runtime error. that is a transpile time error. you declared:

type TParser = (str: string, errStr: string) => number;

which is actually wrong. since there is a default parameter, we need to make errStr optional.

type TParser = (str: string, errStr?: string) => number;

notice the added ? before : string,that is used to indicate the parameter is optional, you can give a value to it, or you may not, typescript will allow you.

here are some helpful links:

Optional Parameters Handbook

Optional Parameters in Callback Types Handbook

Function Types Handbook

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @VLAZ
  • Low reputation (0.5):
Posted by: Ssword

79834949

Date: 2025-12-01 14:31:33
Score: 1
Natty:
Report link

When setting cookies with strict mode, cookies are not set on redirecting. So, in order for the cookies to be set, the page needs to be viewed to the end-user in the browser allowing the cookies to be set.

An approach to this is to redirect using a form post instead of 302 redirect. By rendering an actual page at the end of the authentication process, you're breaking out of the redirect sequence allowing the browser to set the cookie:

<body onload="document.forms[0].submit()">
<form method="post" action="https://that.other.domain">
<input type="_hidden" name="nonce" value="@Server.SomeVariable" />
<input type="_hidden" name="state" value="@Server.SomeOtherVariable" />
<input type="_hidden" name="whatever" value="@Server.Foo" />
</form>
</body>

Hope this helps?

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: Albert Starreveld

79834944

Date: 2025-12-01 14:25:32
Score: 1.5
Natty:
Report link

Browser compatibility is good (https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/zoom, https://caniuse.com/css-zoom), and the property is standardized, https://drafts.csswg.org/css-viewport/#zoom-property

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

79834943

Date: 2025-12-01 14:25:32
Score: 1
Natty:
Report link
while True:
    user_input = input("Enter an integer: ")

    try:
        value = int(user_input)
        break  # input is valid → exit loop

    except ValueError:
        print("Invalid input. Please enter a valid integer.")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Daksh Devgon

79834935

Date: 2025-12-01 14:15:29
Score: 0.5
Natty:
Report link

Here, this is what I use on a daily basis when I try to avoid online services such as Github, Gitlab... Of course when I don't need the CI/CD and the bells and whistles such as actions, accounts, etc.

This answer is for future reference regarding how to achieve a full Git workflow without relying on a remote Git hosting service (like GitHub, GitLab, etc.), by using a local bare repository as your "remote."


💻 Full Git Experience with a Local Bare Repository

You can replicate the standard Git workflow (clone, commit, push, pull, etc.) entirely on your local machine by setting up a bare repository to serve as your central, shared history.

1️⃣ Setting Up the "Remote" (Bare Repository)

First, create a bare Git repository in a designated, central location on your machine. This directory will not contain a working tree (i.e., no files, just the Git history).

  1. Pick a directory for your bare repo (e.g., in your home directory).

    Bash

    mkdir ~/my-project-bare.git
    cd ~/my-project-bare.git
    git init --bare
    
    

2️⃣ Setting Up the Working Copy (Local Clone)

Now, treat that bare repository path as the "remote URL" and clone it into your actual working directory.

  1. Move to a different location where you want your project files to reside.

    Bash

    cd /path/to/my/development/area
    
    
  2. Clone the local bare repository using its file path.

    Bash

    git clone ~/my-project-bare.git my-project-working
    cd my-project-working
    
    

3️⃣ Standard Workflow

From this point on, all Git operations are exactly the same as if you were using an external remote.

The ~/my-project-bare.git directory now acts as your central source of truth. If you want to simulate multiple developers or different machines, you can simply clone the bare repo again into a different folder (e.g., my-project-testing), and use git pull and git push between the working clones and the bare repo.

Reasons:
  • Blacklisted phrase (1): how to achieve
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Chihabeddine AOURINMOUCHE

79834906

Date: 2025-12-01 13:43:21
Score: 6
Natty:
Report link

@abaci Thanks...I think the Chiclet Slicer is a glorified slicer, isn't it? Couldn't find any 'HTML Content Custom Visual' but I did look at 'get more visuals' for HTML-related visuals. Not sure why HTML would be useful here?

Am I wrong to imagine that a Power BI report would be a useful (better) substitute for SharePoint gallery view?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @abaci
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: P E