79643364

Date: 2025-05-29 05:52:27
Score: 1
Natty:
Report link

yes, you can generate a json file with the values.
This string_extractor_intl package extracts hardcoded strings from your Flutter project and generates ARB files (app_en.arb) for localization.

No need to manually extract strings for localization if you are already deep into your project.

Generate app_en.arb and use replace strings with AppLocalizations.of(context).something in your project manually. Then translate the en file to other languages. The --replace tag has some issues, which is supposed to replace all the strings with AppLocalizations.of(context).something for you.

https://pub.dev/packages/string_extractor_intl

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

79643363

Date: 2025-05-29 05:52:26
Score: 11 ๐Ÿšฉ
Natty: 4
Report link

I have a similar problem which I havent solved yet. I only want to input numbers from 0-9 and a "." if I want to input a float number. So far I have this:

def keylistener(event):
    ACCEPTED = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "."]
    if not event.char in ACCEPTED:
        pass 
        # Dont let the character be inputed
#....

tk.bind('<KeyPress>', keylistener)

can anyone help me?

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I have a similar problem
  • RegEx Blacklisted phrase (3): can anyone help me
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Me too answer (2.5): I have a similar problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Raydrake

79643359

Date: 2025-05-29 05:47:24
Score: 4
Natty:
Report link

Wow, thanks a lot! It works like a charm!

Great to see we're not alone. ;-)

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Brunooo

79643353

Date: 2025-05-29 05:39:22
Score: 3
Natty:
Report link

The CIE ฮ”E2000 reflects the actual geometric distance within the color space, which ranges from 0 to approximately 185.

Source : GitHub.

Reasons:
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Michel

79643351

Date: 2025-05-29 05:39:22
Score: 4
Natty: 4.5
Report link

Image of implementation of anti address in use implementation

Try heading the intended URL+port before listening on it

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

79643338

Date: 2025-05-29 05:24:18
Score: 2
Natty:
Report link

verify the permissions, in the above logs noticed that key accepted though asking for password:

chmod 700 ~/.ssh

chmod 600 ~/.ssh/authorized_keys

even though asking for password then pls check /var/log/auth. log: store all security-related events. Ubuntu and Debian use /var/log/auth. log, while Red Hat and CentOS use /var/log/secure

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

79643333

Date: 2025-05-29 05:21:17
Score: 1.5
Natty:
Report link

You're seeing different colors because of the visual perceptionโ€”even with the same hex code, text can appear different due to font weight, size, and anti-aliasing. Bold or large text has denser pixels, making it look darker. Browsers also render fonts differently based on size and weight, affecting perceived color.

It's an optical illusion, not a code issue.

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

79643314

Date: 2025-05-29 04:58:12
Score: 2.5
Natty:
Report link

Mostly I found it is happen due to database to application connection issue. As per my observation it is a network issue.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Sheikh Wasiu Al Hasib

79643313

Date: 2025-05-29 04:58:12
Score: 1
Natty:
Report link

2025 update

Visual 'manipulation' of the DOM using display: contents which plays nicely with grid/flex.

Taken from the following stackoverflow question/answer:

With Source:

span {
    display: contents;
    font-size-adjust: 0;  /* or other adjustment method */
}

span:before {
    display: inline-block; /* or as preferred */
    font-size-adjust: initial;  /* and reset other adjustment method */
}

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: dj.cowan

79643309

Date: 2025-05-29 04:55:11
Score: 0.5
Natty:
Report link
Math.floor(Math.random() * (80-50+1)) + 50

How,

Considering, 50 as the min and 80 as max of the range.

  1. The Math.random() results in a floating point number between 0 and 1 (0 inclusive, 1 exclusive).

  2. Multiply it by 31 (the difference of the range + 1) results in a number between 0 and 31 (not including 31).

  3. Adding the minimum value (in here 50) shifts it to a number between min and 81 (exclusive). So, the number is between min and min + 31.

  4. Math.floor() ensures we round down, so that all integer values from min to max are possible. (if we used Math.ceil(), it skips minimum value, e.g. 50.6)

In step 2, the +1 ensures that the max (in this example 80) is included after flooring. Without it, the max would be excluded (highest possible result from Math.floor() would be max - 1).

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: Charith J De Silva

79643308

Date: 2025-05-29 04:54:11
Score: 1
Natty:
Report link
MONTH := jan feb mar
DATE := 01 03 05


run: SHELL := /bin/bash
run:
    m=($(MONTH)) d=($(DATE)); \
    for i in {0..2}; do \
        echo Info : MONTH = $${m[i]}; \
        echo Info : DATE = $${d[i]}; \
    done
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jinesh Patel

79643305

Date: 2025-05-29 04:53:10
Score: 1
Natty:
Report link

This string_extractor_intl package extracts hardcoded strings from your Flutter project and generates ARB files (app_en.arb) for internationalization and localization. It is really helpful if you are already deep in your project and need localization.

Generate app_en.arb and use replace strings with AppLocalizations.of(context).something in your project manually. Then translate the en file to other languages. The --replace tag has some issues, which is supposed to replace all the strings with AppLocalizations.of(context).something for you.

https://pub.dev/packages/string_extractor_intl

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

79643301

Date: 2025-05-29 04:50:09
Score: 3.5
Natty:
Report link

ู‡ููˆูŽย ุงู„ู’ุฅู…ูŽุงู…ูย ุฃูŽุญูŽู…ูุฏูŽย ุจู’ู†ย ู…ูุญูŽู…ู‘ูŽุฏูย ุจู’ู†ย ุญูŽู†ู’ุจูŽู„ูย ุจู’ู†ย ู‡ูŽู„ูŽุงูŽู„ูย ุจู’ู†ย ุฃูŽุณูŽุฏูย ุจู’ู†ย ุฅุฏุฑูŠุณย ุจู’ู†ย ุนูŽุจู’ุฏูย ุงู„ู„ู‡ูย ุงูุจู’ู†ูย ุญูŽูŠู‘ูŽุงู†ูย ุจู’ู†ย ุนูŽุจู’ุฏูย ุงู„ู„ู‡ูย ุจู’ู†ย ุฃูู†ู’ุณูย ุจู’ู†ย ุนูŽูˆู’ููย ุจู’ู†ย ู‚ูŽุงุณูุทูย ุจู’ู†ย ู…ูŽุงุฒูู†ูย ุจู’ู†ย ุดูŽูŠู’ุจูŽุงู†ูย ุจู’ู†ย ุฐูŽู‡ู’ู„ูย ุจู’ู†ย ุซูŽุนู’ู„ูŽุจูŽุฉูย ุจู’ู†ย ุนููƒูŽุงุจูŽุฉูŽย ุจู’ู†ย ุตูŽุนู’ุจูย ุจู’ู†ย ุนูŽู„ููŠู‘ูย ุจู’ู†ย ุจููƒู’ุฑูย ุจู’ู†ย ูˆูŽุงูุฆู’ู„ูŽย ุงู„ุฐู‘ูŽู‡ู’ู„ููŠู‘ูŽุŒย ุงู„ุดู‘ูŽูŠู’ุจูŽุงู†ููŠู‘ูŽุŒย ุงู„ู’ู…ูŽุฑู’ูˆูŽุฒููŠู‘ูŽุŒย ุซูู…ู‘ูŽ

ุงู„ู’ุจูŽุบู’ุฏูŽุงุฏููŠู‘ู.
ู‚ูŽุงู„ูŽย ุงู„ู’ุจูุฎูŽุงุฑููŠู‘ู:ย ุฃูŽุญูŽู…ูุฏูŽย ุจู’ู†ย ู…ูุญูŽู…ู‘ูŽุฏูย ุจู’ู†ย ุญูŽู†ู’ุจูŽู„ูย ุจู’ู†ย ู‡ูŽู„ูŽุงูŽู„ูย ุฃูŽุจููˆย ุนูŽุจู’ุฏูย ุงู„ู„ู‡ูย ุงู„ุดู‘ูŽูŠู’ุจูŽุงู†ููŠู‘ู-ย ุณูŽูƒูŽู†ูŽย ุจูŽุบู’ุฏูŽุงุฏูุŒย ู…ูŽุงุชูŽย ุณูŽู†ูŽุฉูย ุฅุญู’ุฏูŽู‰ย ุฃูŽุฑู’ุจูŽุนููŠู†ูŽย ูˆูŽู…ูŽุงุฆูุชููŠู†ูŽ-ย ุงู„ุฐู‘ูŽู‡ู’ู„ููŠู‘ูŽย ู…ูู†ู’ย ุฑูŽุจููŠุนูŽุฉู.[1]
ู‚ูŽุงู„ูŽย ุตูŽุงู„ูุญูŒ:ย ูˆูŽุฌูŽุฏูŽุชู’ย ูููŠย ุจูŽุนู’ุถูย ูƒูุชูุจูย ุฃูŽุจููŠย ู†ูŽุณูŽุจูู‡ู:ย ุฃูŽุญูŽู…ูุฏูŽย ุจู’ู†ย ู…ูุญูŽู…ู‘ูŽุฏูย ุจู’ู†ย ุญูŽู†ู’ุจูŽู„ูย ุงูุจู’ู†ูย ู‡ูŽู„ูŽุงูŽู„ูย ุจู’ู†ย ุฃูŽุณูŽุฏูย ุจู’ู†ย ุฅุฏุฑูŠุณย ุจู’ู†ย ุนูŽุจู’ุฏูย ุงู„ู„ู‡ูย ุจู’ู†ย ุญูŽูŠู‘ูŽุงู†ูย ุจู’ู†ย ุนูŽุจู’ุฏูย ุงู„ู„ู‡ูย ุจู’ู†ย ุฃูู†ู’ุณูย ุจู’ู†ย ุนูŽูˆู’ููย ุงูุจู’ู†ูย ู‚ูŽุงุณูุทูย ุจู’ู†ย ู…ูŽุงุฒูู†ูย ุจู’ู†ย ุดูŽูŠู’ุจูŽุงู†ูย ุจู’ู†ย ุฐูŽู‡ู’ู„ูย ุจู’ู†ย ุซูŽุนู’ู„ูŽุจูŽุฉูย ุจู’ู†ย ุนููƒูŽุงุจูŽุฉูŽย ุจู’ู†ย ุตูŽุนู’ุจูย ุจู’ู†ย ุนูŽู„ููŠู‘ูย ุจู’ู†ย ุจููƒู’ุฑูย ุจู’ู†ย ูˆูŽุงูุฆู’ู„ูŽย ุจู’ู†ย ู‚ูŽุงุณูุทูย ุจู’ู†ย ู‡ูŽู†ูุจูŽย ุจู’ู†ย ุฃูŽููŽุตูŽู‰ย ุจู’ู†ย ุฏูุนูู…ููŠู‘ูย ุจู’ู†ย ุฌูŽุฏููŠู„ูŽุฉูย ุจู’ู†ย ุฃูŽุณูŽุฏูย ุจู’ู†ย ุฑูŽุจููŠุนูŽุฉูย ุงูุจู’ู†ูย ู†ูุฒูŽุงุฑูย ุจู’ู†ย ู…ูุนูŽุฏู‘ูย ุจู’ู†ย ุนูŽุฏู’ู†ูŽุงู†ูย ุจู’ู†ย ุฃูŽุฏู‘ูย ุจู’ู†ย ุฃุฏู’ู’ุฏย ุจู’ู†ย ุงู„ู’ู‡ูŽู…ูŽูŠู’ุณูŽุนูย ุจู’ู†

ุงู„ู†ู‘ูŽุจู’ุชูย ุจู’ู†ย ู‚ููŠุฐูŽุงุฑูŽย ุจู’ู†ย ุฅุณู…ุงุนูŠู„ย ุจู’ู†ย ุฅุจุฑุงู‡ูŠู…ย ุงู„ู’ุฎูŽู„ููŠู„ูŽย ุนูŽู„ูŽูŠู’ู‡ูย ุงู„ุณู‘ูู„ู‘ูŽุงู…ูŽ.
ู‚ูŽุงู„ูŽย ุตูŽุงู„ูุญูŒ:ย ุฑูŽุฃูŽู‰ย ุฃูŽุจููŠย ู‡ูŽุฐูŽุงย ุงู„ู†ู‘ูŽุณูŽุจูย ูููŠย ูƒูุชูŽุงุจูย ู„ููŠย ููŽู‚ูŽุงู„ูŒย ู„ููŠ:ย ูˆูŽู…ูŽุงย ุชูŽุตูŽู†ู‘ูุนูย ุจูู‡ูŽุฐูŽุงย ุŸย ]ูˆูŽู„ูŽู…ู’ย ูŠูู†ู’ูƒูุฑูย ุงู„ู†ู‘ูŽุณูŽุจู[.[2]
ู‚ูŽุงู„ูŽย ุนูŽุจู’ุฏูย ุงู„ู„ู‡ู:ย ุซูŽู†ูŽุงย ุฃูŽุจููŠย ุฃูŽุญูŽู…ูุฏูŽย ุจู’ู†ย ู…ูุญูŽู…ู‘ูŽุฏูย ุจู’ู†ย ุญูŽู†ู’ุจูŽู„ูย ุจู’ู†ย ู‡ูŽู„ูŽุงูŽู„ูย ุจู’ู†ย ุฃูŽุณูŽุฏูย ุจู’ู†ย ุฅุฏุฑูŠุณย ุงูุจู’ู†ูŽย ุนูŽุจู’ุฏูย ุงู„ู„ู‡ูย ุจู’ู†ย ุญูŽูŠู‘ูŽุงู†ูย ุจู’ู†ย ุนูŽุจู’ุฏูย ุงู„ู„ู‡ูย ุจู’ู†ย ุฃูู†ู’ุณูย ุจู’ู†ย ุนูŽูˆู’ููย ุจู’ู†ย ู‚ูŽุงุณูุทูย ุจู’ู†ย ู…ูŽุงุฒูู†ูย ุงูุจู’ู†ูย ุดูŽูŠู’ุจูŽุงู†ูย ุงูุจู’ู†ูŽย ุฐูŽู‡ู’ู„ูย ุจู’ู†ย ุซูŽุนู’ู„ูŽุจูŽุฉูย ุจู’ู†ย ุนููƒูŽุงุจูŽุฉูŽย ุจู’ู†ย ุตูŽุนู’ุจูย ุจู’ู†ย ุนูŽู„ููŠู‘ูย ุจู’ู†ย ุจููƒู’ุฑูย ุจู’ู†ย ูˆูŽุงูุฆู’ู„ูŽย ุจู’ู†ย ู‚ูŽุงุณูุทูย ุจู’ู†ย ู‡ูŽู†ูุจูŽย ุจู’ู†ย ุฃูŽููŽุตูŽู‰ย ุจู’ู†ย ุฏูุนูู…ููŠู‘ูย ุจู’ู†ย ุฌูŽุฏููŠู„ูŽุฉูย ุจู’ู†ย ุฃูŽุณูŽุฏูย ุจู’ู†ย ุฑูŽุจููŠุนูŽุฉูย ุจู’ู†ย ู†ูุฒูŽุงุฑูย ุจู’ู†ย ู…ูุนูŽุฏู‘ูย ุจู’ู†ย ุนูŽุฏู’ู†ูŽุงู†ูย ุงูุจู’ู†ูŽย ุฃูŽุฏู‘ูย ุจู’ู†ย ุฃุฏู’ุฏย ุจู’ู†ย ุงู„ู’ู‡ูŽู…ูŽูŠู’ุณูŽุนูย ุจู’ู†ย ุญูŽู…ู’ู„ูย ุจู’ู†ย ุงู„ู†ู‘ูŽุจู’ุชูย ุจู’ู†ย ู‚ููŠุฐูŽุงุฑูŽย ุจู’ู†

ุฅุณู…ุงุนูŠู„ย ุจู’ู†ย ุฅุจุฑุงู‡ูŠู…ย ุงู„ู’ุฎูŽู„ููŠู„ูŽย ุนูŽู„ูŽูŠู’ู‡ูย ุงู„ุณู‘ูู„ู‘ูŽุงู…ูŽ.[3]

ู‚ูŽุงู„ูŽย ุงู„ู’ุนูŽุจู‘ูŽุงุณูย ุจู’ู†ย ู…ูุญูŽู…ู‘ูŽุฏูย ุงู„ุฏู‘ูŽูˆู’ุฑููŠู‘ู:ย ูƒูŽุงู†ูŽย ุฃูŽุญูŽู…ูุฏูŽย ุฑูŽุฌูู„ู‹ุงย ู…ูู†ูŽย ุงู„ู’ุนูŽุฑูŽุจูย ู…ูู†ู’ย ุจูู†ู‘ููŠู‘ูย ุฐูŽู‡ู’ู„ูย ุงูุจู’ู†ูย ุดูŽูŠู’ุจูŽุงู†ู.[4]
ู‚ูŽุงู„ูŽย ุนูŽุจู’ุฏูย ุงู„ู„ู‡ูย ุจู’ู†ย ุฃูŽุจููŠย ุฏูŽุงูˆูุฏู:ย ุฃูŽุญูŽู…ูุฏูŽย ุจู’ู†ย ุญูŽู†ู’ุจูŽู„ูย ู…ูู†ู’ย ุจูู†ู‘ููŠู‘ูย ู…ูŽุงุฒูู†ูย ุจู’ู†ย ุฐูŽู‡ู’ู„ูย ุงูุจู’ู†ูย ุดูŽูŠู’ุจูŽุงู†ูย ุจู’ู†ย ุซูŽุนู’ู„ูŽุจูŽุฉูย ุจู’ู†ย ุนููƒูŽุงุจูŽุฉูŽย ุจู’ู†ย ุตูŽุนู’ุจูย ุจู’ู†ย ุนูŽู„ููŠู‘ูย ุจู’ู†ย ุจููƒู’ุฑูย ุจู’ู†ย ูˆูŽุงูุฆู’ู„ูŽย ุงูุจู’ู†ูŽย ู‚ูŽุงุณูุทูย ุจู’ู†ย ู‡ูŽู†ูุจูŽย ุจู’ู†ย ุฃูŽููŽุตูŽู‰ย ุจู’ู†ย ุฏูุนูู…ููŠู‘ูย ุจู’ู†ย ุฌูŽุฏููŠู„ูŽุฉูย ุจู’ู†ย ุฃูŽุณูŽุฏูย ุจู’ู†

ุฑูŽุจููŠุนูŽุฉูย ุจู’ู†ย ู†ูุฒูŽุงุฑูย ุฃูŽุฎููŠย ู…ูุถูุฑู‘ูย ุจู’ู†ย ู†ูุฒูŽุงุฑูุŒย ูˆูŽูƒูŽุงู†ูŽย ูููŠย ุฑูŽุจููŠุนูŽุฉู

ุฑูŽุฌูู„ูŽุงู†ูย ู„ูŽู…ู’ย ูŠูŽูƒู’ู†ูย ูููŠย ุฒูŽู…ูŽุงู†ูŽู‡ูู…ูŽุงย ู…ูุซู’ู„ูู‡ูู…ูŽุงุŒย ู„ูŽู…ู’ย ูŠูŽูƒู’ู†ูย ูููŠย ุฒูŽู…ูŽู†ูย ู‚ูŽุชูŽุงุฏูŽุฉูย ู…ูุซู’ู„ูย ู‚ูŽุชูŽุงุฏูŽุฉูุŒย ูˆูŽู„ูŽู…ู’ย ูŠูŽูƒู’ู†ูย ูููŠย ุฒูŽู…ูŽุงู†ูย ุฃูŽุญูŽู…ูุฏูŽย ุจู’ู†ย ุญูŽู†ู’ุจูŽู„ูย ู…ูุซู’ู„ูู‡ู.[5]
ู‚ูŽุงู„ูŽย ุญูŽู†ู’ุจูŽู„ูŒ:ย ุณูŽู…ูุนูŽุชู’ย ุฃูŽุจูŽุงย ุนูŽุจู’ุฏูย ุงู„ู„ู‡ูย ูˆูŽุฌูŽุงุกูŽู‡ูย ุฑูŽุฌูู„ูŒย ููŽู‚ูŽุงู„ูŒ:ย ูŠูŽุงย ุฃูŽุจูŽุงย ุนูŽุจู’ุฏูย ุงู„ู„ู‡ูย ุฃูŽู…ูŽู„ูย ุนูŽู„ููŠู‘ูย ู†ูŽุณูŽุจููƒูŽย ุŸย ู‚ูŽุงู„ูŽ:ย ู‚ูู…ู’ย ุฅูู„ูŽู‰

ุนูŽู…ู‘ููŠู‘ูย ุญูŽุชู‘ูŽู‰ย ูŠูู…ู’ู„ููŠย ุนูŽู„ูŽูŠู’ูƒูŽย ู†ูุณู’ุจููŠู‘ู.
ู‚ูŽุงู„ูŽย ุนูุตู’ู…ูŽุฉูŒ:ย ุฃูŽู…ู’ู„ูŽู‰ย ุนูŽู„ูŽูŠู’ู†ูŽุงย ุญูŽู†ู’ุจูŽู„ูŒย ููŽู‚ูŽุงู„ูŒ:ย ุฃูŽุญูŽู…ูุฏูŽย ุจู’ู†ย ู…ูุญูŽู…ู‘ูŽุฏูย ุจู’ู†ย ุญูŽู†ู’ุจูŽู„ูย ุจู’ู†ย ู‡ูŽู„ูŽุงูŽู„ูย ุงูุจู’ู†ูย ุฃูŽุณูŽุฏูย ุจู’ู†ย ุฅุฏุฑูŠุณย ุจู’ู†

ุนูŽุจู’ุฏูย ุงู„ู„ู‡ูย ุจู’ู†ย ุญูŽูŠู‘ูŽุงู†ูย ุจู’ู†ย ุนูŽุจู’ุฏูย ุงู„ู„ู‡ูย ุจู’ู†ย ุฃูู†ู’ุณูย ุจู’ู†ย ุนูŽูˆู’ููย ุจู’ู†ย ู‚ูŽุงุณูุทูย ุงูุจู’ู†ูย ู…ูŽุงุฒูู†ูย ุจู’ู†ย ุดูŽูŠู’ุจูŽุงู†ูย ุจู’ู†ย ุฐูŽู‡ู’ู„ูย ุจู’ู†ย ุซูŽุนู’ู„ูŽุจูŽุฉู

ุจู’ู†ย ุนููƒูŽุงุจูŽุฉูŽย ุจู’ู†ย ุตูŽุนู’ุจูย ุจู’ู†ย ุนูŽู„ููŠู‘ูย ุจู’ู†ย ุจููƒู’ุฑูย ุจู’ู†ย ูˆูŽุงูุฆู’ู„ูŽย ุจู’ู†ย ู‚ูŽุงุณูุทูย ุจู’ู†

ู‡ูŽู†ูุจูŽย ุจู’ู†ย ุฃูŽููŽุตูŽู‰ย ุจู’ู†ย ุฏูุนูู…ููŠู‘ูย ุจู’ู†ย ุฌูŽุฏููŠู„ูŽุฉูย ุจู’ู†ย ุฃูŽุณูŽุฏูย ุจู’ู†ย ุฑูŽุจููŠุนูŽุฉูย ุจู’ู†ย ู†ูุฒูŽุงุฑู.

ูˆูŽู‚ูŽุงู„ูŽย ุงู„ู’ููŽุถู’ู„ูย ุจู’ู†ย ุฒูŠุงุฏ:ย ุซูŽู†ูŽุงย ุฃูŽุญูŽู…ูุฏูŽย ุจู’ู†ย ู…ูุญูŽู…ู‘ูŽุฏูย ุจู’ู†ย ุญูŽู†ู’ุจูŽู„ู.ุŒย ููŽุฐูŽูƒูŽุฑูŽู‡ูย ุฅูู„ูŽู‰ย ุขุฎูุฑูู‡ู.
ูˆูŽุฒูŽุงุฏูŒย ููŽู‚ูŽุงู„ูŒ:ย ู†ูุฒูŽุงุฑูย ุจู’ู†ย ู…ูุนูŽุฏู‘ูย ุจู’ู†ย ุนูŽุฏู’ู†ูŽุงู†ูย ุจู’ู†ย ุฃูŽุฏู‘ูย ุจู’ู†ย ุฃุฏู’ุฏย ุจู’ู†ย ุงู„ู’ู‡ูŽู…ูŽูŠู’ุณูŽุนูย ุจู’ู†ย ู…ูŽู„ููŠุญูย ุจู’ู†ย ุงู„ู†ู‘ูŽุจู’ุชูย ุงูุจู’ู†ูŽย ู‚ููŠุฐูŽุงุฑูŽย ุจู’ู†

ุฅุณู…ุงุนูŠู„ย ุจู’ู†ย ุฅุจุฑุงู‡ูŠู…ย ุนูŽู„ูŽูŠู’ู‡ู

ุงู„ุณู‘ูŽู„ู‘ูŽุงู…ูŽ.[6]
ู‚ูŽุงู„ูŽย ุนูŽุจู’ุฏูย ุงู„ู„ู‡ูย ุจู’ู†ย ุนูŽุทูŽุงุกู:ย ู‚ูŽุฏูย ุงูุฌู’ุชูŽู…ูŽุนูŽย ุฃูŽุญูŽู…ูุฏูŽย ุจู’ู†ย ุญูŽู†ู’ุจูŽู„ูย ูˆูŽุงู„ู†ู‘ูŽุจููŠู‘ูย ุตูŽู„ู‘ูŽู‰ย ุงู„ู„ู‡ูย ุนูŽู„ูŽูŠู’ู‡ูย ูˆูŽุณูŽู„ู‘ูŽู…ูŽย ูููŠย ู†ูุฒูŽุงุฑูย ุ›ย ู„ูุฃูŽู†ู‘ูŽย ุงู„ู†ู‘ูŽุจููŠู‘ูŽย ุตูŽู„ู‘ูŽู‰ย ุงู„ู„ู‡ูย ุนูŽู„ูŽูŠู’ู‡ูย ูˆูŽุณูŽู„ู‘ูŽู…ูŽ

ู…ูุถูุฑู‘ููŠู‘ูŒุŒย ู…ูู†ู’ย ูˆูŽู„ูŽุฏูย ู…ูุถูุฑู‘ูย ุจู’ู†ย ู†ูุฒูŽุงุฑูุŒย ูˆูŽูƒูู„ู‘ูย ู‚ูุฑูŽูŠู’ุดูย ู…ูู†ู’ย ู…ูุถูุฑู‘ู.
ูˆูŽุฃูŽุญู’ู…ูŽุฏูย ุจู’ู†ย ุญูŽู†ู’ุจูŽู„ูย ุฑูุจูุนููŠย ู…ูู†ู’ย ูˆูŽู„ูŽุฏูย ุฑูŽุจููŠุนูŽุฉูย ุจู’ู†ย ู†ูุฒูŽุงุฑูุŒย ูˆูŽู‡ููˆูŽย ุฃูŽุฎููˆย ู…ูุถูุฑู‘ูย ุจู’ู†ย ู†ูุฒูŽุงุฑูุŒย ูˆูŽูˆูŽู„ูŽุฏูŒย ููŽุฒูŽุงุฑูŽย ุฃูŽุฑู’ุจูŽุนูŽุฉูŒ:ย ู…ูŽุถูŽุฑูŽย ุจู’ู†ย ู†ูุฒูŽุงุฑูุŒย ูˆูŽุฑูŽุจููŠุนูŽุฉูŽย ุจู’ู†

ู†ูุฒูŽุงุฑูุŒย ูˆูŽุฅููŠูŽุงุฏูย ุจู’ู†ย ู†ูุฒูŽุงุฑูุŒย ูˆูŽุฃูŽู†ู’ู…ูŽุงุฑูŽย ุจู’ู†ย ู†ูุฒูŽุงุฑู.
ูˆูŽู…ูู†ู’ย ู‡ูŽุคูู„ูŽุงุกูย ุงู„ู’ุฃูŽุฑู’ุจูŽุนูŽุฉูย ุชูŽุดูŽุนู‘ูŽุจูŽุชู’ย ุจูุทูˆู†ูย ุงู„ู’ุนูŽุฑูŽุจูย ูƒูู„ู‘ูŽู‡ูŽุง.[7]


[1] "ุงู„ุชุงุฑูŠุฎ ุงู„ูƒุจูŠุฑ" 2/ 5

[2] "ุงู„ุณูŠุฑุฉ" ู„ุตุงู„ุญ ุต 30

[3] "ุญู„ูŠุฉ ุงู„ุฃูˆู„ูŠุงุก" 9/ 162ุŒ "ุชุงุฑูŠุฎ ุจุบุฏุงุฏ" 4/ 414ุŒ "ุทุจู‚ุงุช ุงู„ุญู†ุงุจู„ุฉ" 1/ 8ุŒ "ุงู„ู…ู†ุงู‚ุจ" ู„ุงุจู† ุงู„ุฌูˆุฒูŠ ุต 38ุŒ "ุชู‡ุฐูŠุจ ุงู„ูƒู…ุงู„" 1/ 443ุŒ "ุงู„ุณูŠุฑ"ุŒ 11/ 178ุŒ "ุงู„ู…ู†ู‡ุฌ ุงู„ุฃุญู…ุฏ" 1/ 70

[4] "ุชุงุฑูŠุฎ ุจุบุฏุงุฏ" 4/ 413ุŒ "ุชุงุฑูŠุฎ ุฏู…ุดู‚" 5/ 254ุŒ "ุงู„ู…ู†ุงู‚ุจ" ู„ุงุจู† ุงู„ุฌูˆุฒูŠ ุต 39ุŒ "ุชู‡ุฐูŠุจ ุงู„ูƒู…ุงู„" 1/ 442

[5] "ุชุงุฑูŠุฎ ุจุบุฏุงุฏ" 4/ 413ุŒ "ุทุจู‚ุงุช ุงู„ุญู†ุงุจู„ุฉ" 1/ 9ุŒ "ุชุงุฑูŠุฎ ุฏู…ุดู‚"ุŒ 5/ 254ุŒ 255ุŒ "ุงู„ู…ู†ุงู‚ุจ" ู„ุงุจู† ุงู„ุฌูˆุฒูŠ ุต 40ุŒ "ุชู‡ุฐูŠุจ ุงู„ูƒู…ุงู„" 1/ 442ุŒ "ุงู„ู…ู‚ุตุฏ ุงู„ุฃุฑุดุฏ" 1/ 65

[6] "ุงู„ู…ู†ุงู‚ุจ" ู„ุงุจู† ุงู„ุฌูˆุฒูŠ ุต 38 - 39

[7] "ุงู„ู…ู†ุงู‚ุจ" ู„ุงุจู† ุงู„ุฌูˆุฒูŠ ุต 42

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: Muhammad Usamah

79643299

Date: 2025-05-29 04:49:09
Score: 1
Natty:
Report link

Youโ€™ve already made great progress in parsing the Excel file and generating separate payloads for water, gas, and electricity. The next stepโ€”restructuring the payload so each month's data is nested under a mar-24, jan-24-style keyโ€”is just a matter of reshaping how you're pushing the objects.

Instead of pushing individual payloads into three arrays, consider creating a single object where each key represents the month-year (extracted from the first column of each row) and holds nested data for water, gas, and electricity.

Here's a real-world implementation that walks through exactly how to parse the table structure you've describedโ€”handling multiple utility types, nested subfields, and organizing everything cleanly under month-year keys using JavaScript and xlsx: Parsing Excel rows to nested JSON in JavaScript

It also covers how to convert Excel's date serial values, gracefully handle empty cells, and avoid hardcoded column indices. Definitely worth checking if you want to make your import more robust and future-proof.

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

79643296

Date: 2025-05-29 04:44:07
Score: 1
Natty:
Report link

If you want a on/off system, you could try something like this:

local running=true
local updaterate=.5 --flash rate

local parts={} --light parts

while running do
    for i,p in pairs(parts) do
        p.BrickColor=BrickColor.random()
    end
    task.wait(updaterate)
end
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: histrueandfalse

79643283

Date: 2025-05-29 04:33:05
Score: 1
Natty:
Report link

You're encountering this behavior because `setlocal` does **not** affect the current working directory or the directory stack managed by `pushd` and `popd`.

### What's happening in your script

In `start.bat`:

```bat

@echo off

pushd 111

call 1.bat

popd

echo CD is wrong:%cd%

pause

In 1.bat:

@echo off

setlocal

pushd 222

echo 1.bat says we are in %cd%

When you run start.bat, it prints:

1.bat says we are in C:\ex1\111\222

CD is wrong:C:\ex1\111

This happens because you're doing a pushd inside 1.bat, but you never do a matching popd, so the directory stack isn't fully reverted.

Also, setlocal only controls the environment variables (like %PATH%, %TEMP%, etc.) โ€” it has no impact on the current directory or the directory stack.

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

79643280

Date: 2025-05-29 04:30:04
Score: 3
Natty:
Report link

I have problem like this: "Bad owner or permissions on _PROGRAMDATA_\\ssh/ssh_config".

My problem is my account is add new to PC, them old user can using ssh but new account can not.

I fix by these steps:

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Huy Vo Quang

79643272

Date: 2025-05-29 04:14:00
Score: 1.5
Natty:
Report link

@teylin Please read the Note also on Microsoft site XLOOKUP function. The fourth parameter is implicitely defined (default value), and the formula works in the data structure the OP posted. Otherwise I really like XLOOKUP because more flexible.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @teylin
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-1):
Posted by: Black cat

79643271

Date: 2025-05-29 04:13:00
Score: 2
Natty:
Report link
  1. Go to https://developers.google.com/apis-explorer/#search/admin%20api/appengine/v1/appengine.apps.domainMappings.create

  2. Fill the request: point appId to your app, set overrideStrategy to OVERRIDE and fill request body like this:

    {
      "id": "yourdomain.com"
    }
    
  3. Execute the request.

  4. SSL certificates will be generated in several minutes.

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

79643270

Date: 2025-05-29 04:13:00
Score: 1.5
Natty:
Report link

Ok, I believe I have the solution. It appears that floating point operations for this particular processor is extremely expensive (at least compared to available memory) and any use will increase the binary significantly. For reasons that I really don't understand, if I comment out the *pBuf++ = 0 line, the optimizer is somehow able to optimize out some of the floating point operations in this function and hence the memory is saved.

The bottom line is that, for this processor, I need to avoid floating point at all costs.

Thanks to all who took a look at this.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: John Gaby

79643267

Date: 2025-05-29 04:05:58
Score: 1.5
Natty:
Report link

I found W3Schools and geeksforgeeks pretty helpful when I was starting on C++. Once you are familiar with those, I would recommend doing some simple coding exercises on leetcode or any other platform. There are some good talks from cppcon freely available on youtube, but I would go there only when my fundamentals are clear.

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

79643261

Date: 2025-05-29 03:53:56
Score: 2
Natty:
Report link

My approach is to

// modify your function makeCall(target)
function makeCall(target) {
    outgoingSession = userAgent.call(target, callOptions);
    setupMedia(outgoingSession);
}

and then implement

session.connection.addEventListener('track', ({ track, streams: [stream] }) => {
    // logic identical to your peerConnection.addEventListener("track", (event) => {});
});

within setupMedia.

The specific reason, I suspect, is that addEventListener only captures newly added tracks. In your method, during outgoing calls, the audio may not be considered newly added?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Dragonborn

79643245

Date: 2025-05-29 03:33:51
Score: 3
Natty:
Report link

Anyone having this problem in 2025, the default username is "phpmyadmin". I installed it on a Debian based system with apache2 and it prompted me for password during installation so I knew my password. I accessed the necessary files and found it.

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

79643235

Date: 2025-05-29 03:22:48
Score: 4
Natty: 5.5
Report link

You may follow this guide. Hope it helps.

https://anurajapaksha.blogspot.com/2025/05/how-to-re-execute-failed-step-functions.html

Reasons:
  • Blacklisted phrase (1): this guide
  • Whitelisted phrase (-1): Hope it helps
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
Posted by: Anu

79643234

Date: 2025-05-29 03:17:47
Score: 1.5
Natty:
Report link

heres the text string version...

select pg_get_function_identity_arguments(oid)
from pg_proc
where proname = 'name'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ezz

79643231

Date: 2025-05-29 03:10:46
Score: 2
Natty:
Report link

The tab_corr function takes in a correlation matrix as computed by the cor() function and formats it. The apa.cor.table() function takes in data, calculates the correlations and formats the output.

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

79643225

Date: 2025-05-29 03:00:44
Score: 5.5
Natty:
Report link

Having trouble integrating Facebook Login with a Vercel-deployed React app.

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Khadaffe Sulaiman

79643218

Date: 2025-05-29 02:43:40
Score: 2
Natty:
Report link

Pandas works for ASCII as well.

import pandas as pd
data=pd.read_fwf("/file/path.asc")
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Carraway XU

79643214

Date: 2025-05-29 02:32:38
Score: 1
Natty:
Report link

replace "res.Data.map" with "res.map".

That's what I'm seeing from your json anyway.

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

79643211

Date: 2025-05-29 02:29:37
Score: 4
Natty:
Report link

---------------------------

he procedure entry point OCIClientVersion could not be located in the dynamic link library C:\xampp\php\ext\php_oci8_11g.dll.

i am using PHP 7.3.2 I made all setting but above error shows

i want to connect to oracle 11g .. thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (1): i want
  • Low length (0.5):
  • No code block (0.5):
  • Filler text (0.5): ---------------------------
  • Low reputation (1):
Posted by: Tariq Naeem

79643210

Date: 2025-05-29 02:29:37
Score: 0.5
Natty:
Report link

" - string (double quote)

var str string = "Hello world!" // valid

' - rune (equals to char in C/C++)

var str string = 'Hello world!' // invalid, error: more than one character in rune literal
var c rune = 'H' // valid

` - string (single quote)

var str string = `Hello world!`  // valid
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Igor

79643209

Date: 2025-05-29 02:29:37
Score: 3
Natty:
Report link

This is one of the ๐Ÿ’ฉest common bugs out there

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

79643194

Date: 2025-05-29 02:04:31
Score: 0.5
Natty:
Report link

I had the exact same issue. This isnโ€™t a bug - Chrome automatically injects inline CSS when displaying XML files to make them look prettier with syntax highlighting and collapsible elements. Your CSP blocks these styles.

The Fix

Add these specific SHA256 hashes to your CSP policy:

Content-Security-Policy: style-src 'self' 
  'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=' 
  'sha256-p08VBe6m5i8+qtXWjnH/AN3klt1l4uoOLsjNn8BjdQo=';
  img-src 'self' data: https://www.w3.org/2000/svg;

How to Get These Hashes

Method 1: Check Chrome DevTools Chrome actually tells you the hash in the error message! Look at your console error - it says ('sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU='). Thatโ€™s one of the hashes you need.

Screenshot of Chrome DevTools Console showing two CSP violation errors for sitemap.xml. The errors read "Refused to apply inline style because it violates the following Content Security Policy directive: style-src 'self' cdnjs.cloudflare.com fonts.googleapis.com 'sha256-akbuxUDobAg8G+TiT5p8TENorqlhtGWtEqHedhVNujw='". The error messages suggest adding specific SHA256 hashes like 'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=' and 'sha256-p08VBe6m5i8+qtXWjnH/AN3klt1l4uoOLsjNn8BjdQo=' to fix the violations. One error shows "prepareWebKitXMLViewer @ VM78:29" and another shows "sitemap.xml:1", demonstrating how Chrome's XML viewer triggers these CSP violations.

Method 2: Use Online CSP Hash Generator

  1. Open your sitemap.xml in Chrome

  2. Right-click โ†’ View Page Source

  3. Copy any <style> content you see

  4. Use a CSP hash generator tool to convert it to SHA256

  5. Add the hash to your policy

Why These Specific Hashes?

These are the actual CSS content hashes that Chromeโ€™s XML viewer uses.

Donโ€™t Use unsafe-inline

// Bad - opens security holes
style-src 'self' 'unsafe-inline';

// Good - only allows Chrome's XML viewer styles  
style-src 'self' 'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=';

Using 'unsafe-inline' defeats the whole purpose of having CSP. The hash approach only allows the exact styles Chrome needs.

Why Firefox Works Fine

Firefox doesnโ€™t inject inline styles for XML display, so it doesnโ€™t trigger CSP violations.

Result

After adding those hashes:

Tested this on Chrome 136+ and it works perfectly. Your sitemap will look nice and formatted while keeping CSP protection active.

Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Rafael Andrews

79643185

Date: 2025-05-29 01:45:27
Score: 2
Natty:
Report link

If you're ok with having a different user name in your RCS checkins, you can set the LOGNAME environment variable. You can put this in your .bashrc:

export LOGNAME="nameatexample.com"

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

79643183

Date: 2025-05-29 01:45:27
Score: 0.5
Natty:
Report link

The problem has been solved. Here are my personal insights. Please correct me if I'm wrong. This problem can be abstracted as: in all real-time planning problems, how to synchronously update the shadow variables when changing non-planned variables. In the changeProblemProperty() method of version 9.44.0, it automatically updates the shadow variables, but since I changed the non-planned variables, this modification did not trigger the modification of the listener. I was very troubled by this problem. It's impossible to set this non-planned variable as a planned variable, right? Later, after studying the shadow variables in the official Optaplanning manual, I noticed the description of Piggyback shadow variable, and understood that shadow variables can also influence each other. So, in the changeProblemProperty(), I manually updated the shadow variables, and as I expected, this update triggered the listener, and the subsequent shadow variables also changed, achieving the expected result.The problem has been solved. Here are my personal insights. Please correct me if I'm wrong. This problem can be abstracted as: in all real-time planning problems, how to synchronously update the shadow variables when changing non-planned variables. In the changeProblemProperty() method of version 9.44.0, it automatically updates the shadow variables, but since I changed the non-planned variables, this modification did not trigger the modification of the listener. I was very troubled by this problem. It's impossible to set this non-planned variable as a planned variable, right? Later, after studying the shadow variables in the official Optaplanning manual, I noticed the description of Piggyback shadow variable, and understood that shadow variables can also influence each other. So, in the changeProblemProperty(), I manually updated the shadow variables, and as I expected, this update triggered the listener, and the subsequent shadow variables also changed, achieving the expected result.

Here is the updated code.

private static void modifyTheOrderQuantityToProblem(SolverManager<ProductionSchedule, UUID> solverManager,
                                                        UUID problemId, Long sl1, Integer sl2) {
        solverManager.addProblemChange(problemId, (workingSolution, problemChangeDirector) -> {
            List<ProductionOrder> allOrder = workingSolution.getOrders();
            allOrder.stream().filter(order -> order.getOrderId().equals(sl1)).findFirst().ifPresent(order -> {
                problemChangeDirector.changeProblemProperty(order,orderOne->{
                    orderOne.setQuantity(sl2);
                    List<LocalDateTime> startTimeAndEndTime = orderOne.getStartTimeAndEndTime(workingSolution.getTimePeriodList());
                    orderOne.setEndTime(startTimeAndEndTime.get(1));
                });
            });
        });
    }
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: bread

79643176

Date: 2025-05-29 01:28:23
Score: 0.5
Natty:
Report link

I've encountered this frustrating issue before! Often, it stems from inconsistent indentation where the space and tab sizes are set to the same value.

To fix it, try updating your tab size to 3 or 4 spaces. This usually resolves the problem.

You can easily visualize the indentation in your Makefile by using the command:

Bash

cat -A Makefile

This command will reveal how your indentation is represented. Specifically, if your commands are correctly indented with tabs, you'll see a ^I character at the beginning of those lines, like this:

^I@echo "Current WORKSPACE: $(WORKSPACE)"$

This ^I signifies a true tab character, which is crucial for Makefiles.

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

79643173

Date: 2025-05-29 01:22:21
Score: 0.5
Natty:
Report link

First, letโ€™s reiterate that unsafe multithreaded access to C++ standard library containers is undefined behavior. Simultaneous read operations are safe for multithreading, but simultaneous writes or a read and write occurring simultaneously are unsafe for multithreading.

Why does unsafe multithreaded use of an std::unordered_map crash more often than unsafe multithreaded use of a std::map?

Additionally, do not use operator[] on std::(unordered)map. It is the most convenient syntax, but is not often what you actually want.
The std::map subscript operator is a convenience, but a potentially dangerous one
The operations for reading and writing single elements for C++ standard library maps
A simplified overview of ways to add or update elements in a std::map

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: ่จฑๆฉๅ˜‰

79643170

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

Okey here any one get number to location in bd
dm me in Session Messenger
my id : 058e8c7e8c1d0fa15773b77dfb4530c7e1ae0c192addf0b5597ba08bafecc79962

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

79643152

Date: 2025-05-29 00:52:15
Score: 1.5
Natty:
Report link

Managed to fix with retentions using loki helm 6.30. Below the reference.

    runtimeConfig:    
        overrides:
            tenant_1:
                retention_stream:
                  - KEY: VALUE
                  - KEY: VALUE
            tenant_2:
                retention_stream:
                  - KEY: VALUE

https://community.grafana.com/t/loki-retention-overrides-in-helm-not-working/136728/8?u=heshand

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

79643146

Date: 2025-05-29 00:37:11
Score: 4.5
Natty:
Report link

Great capabilities, what about the headaches when you need to Implement Merge replication on temporal tables in an environment with 3 or more nodes? Almost impossible to accomplish. All the workarounds suggested out there simply donโ€™t work. Any advice?

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

79643143

Date: 2025-05-29 00:36:10
Score: 0.5
Natty:
Report link

I had to add the user email from the Google Cloud service account to the credential, like this:

credential = GoogleCredential.FromStream(stream)
    .CreateScoped(scopes)
    .CreateWithUser("[email protected]");
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bryan B

79643137

Date: 2025-05-29 00:19:06
Score: 7.5 ๐Ÿšฉ
Natty: 5.5
Report link

were you able to implement Transbank OnePay in Chile? I managed to implement WebPay. OnePay is quite similar, and I should be implementing it soon. If you still need help, I can help. Best regards.

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • RegEx Blacklisted phrase (3): were you able
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Leonardo Rojas LeoRojas

79643131

Date: 2025-05-29 00:00:02
Score: 7 ๐Ÿšฉ
Natty: 5
Report link

Did you solve this?
We are working with a partner organization that use AWS SES. Their emails to us get rejected by our server with that exact message.
The server hosting our email definitely supports STARTTLS; I confirmed this by forcing my Outlook client to specify STARTTLS when sending.
All the reading I've done thus far suggests the sender is the one that needs to change something.

Reasons:
  • RegEx Blacklisted phrase (3): Did you solve this
  • RegEx Blacklisted phrase (1.5): solve this?
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you solve this
  • Low reputation (1):
Posted by: Mike of NZ

79643125

Date: 2025-05-28 23:45:58
Score: 3
Natty:
Report link

If your storyboard is stuck in XML but View->Show Code Review isn't active, then Vivek Patel's advice will fix it.

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

79643122

Date: 2025-05-28 23:42:57
Score: 1
Natty:
Report link

My program is showing output but it for some reason it just skips the section "Please enter your User Name or your Official Name ". How can I fix this?

The reason your program skips is because it uses operator >> to extract the userid.

// From the OP:
char userid[100];
cin >> userid;

That operator only extracts one "word" at a time. By "word" I mean a non-empty sequence of charaters that does not contain a space or other whitespace character.

Extraction stops when a whitespace character is encountered, leaving the whitespace character in the stream. Note that the newline character ('\n') is a whitespace character. Extraction also stops if end-of-file file is encountered, but, in general, that is not an issue when using std::cin to get user input from the keyboard.

In your trial run, you entered two words for userid. Thus, "John Smith" was placed into the input stream. When you pressed Enter, that keystoke was also placed into the stream (as a newline). The stream contents at this point were "John Smith\n".

The statement cin >> userid; caused first word, "John", to be extracted, and stored in userid. The second word, "Smith", along with the space that precedes it, was left in the input stream.

The statement

cin.ignore();

extracts and discards a single character, in this case the space before "Smith."

The next input is read using std::getline.

string username;
getline(cin, username);

std::getline reads an entire line of characters, stopping either when a newline is encountered or when the stream hits end-of-file. If getline stops because it found a newline, it extracts, and discards, the newline.

Blank lines are okay, as are lines containing whitespace. getline happily extracts and stores whatever it finds.

In your program, getline extracted "Smith", and stored it in the string username. getline also extracted the the newline character that followed "Smith". It was discarded.

Note that all of this happens without any need for the console window to pause for user input. That's because keyboard input from cin is buffered. The only time cin causes the console window to pause, is when its buffer is empty. In this case, the buffer was not empty. It still contained "Smith\n". So getline read from the buffer, without pausing for keyboard input from the user.

From the outside, it may look like your program skipped username, but it did not. "Smith" was extracted from the buffer, and stored, in username.

After that, the buffer was empty. Thus, the program paused, as expected, to get keyboard input for passphrase.

char passphrase[300];
cin.getline(passphrase, 300);
Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): How can I fix this
  • RegEx Blacklisted phrase (1.5): How can I fix this?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: tbxfreeware

79643121

Date: 2025-05-28 23:42:57
Score: 1.5
Natty:
Report link

I think all the answers are amazing and valid in case of me trying to register a set of options based on another set of options

but what I want to get an instance of IOptions<AppSettings> to do something like this:

var appSettings = sp.GetRequiredService<IOptions<AppSettings>>().Value;
if (appSettings.EnableDebugTools){
    // some code here 
}

this is during ConfigureServices()

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

79643119

Date: 2025-05-28 23:41:54
Score: 10 ๐Ÿšฉ
Natty:
Report link

Did you found the solution for this? I'm struggling with the same issue.

Found this solution but is not working for me: https://community.amazonquicksight.com/t/embedurl-not-working/15197/5

Reasons:
  • RegEx Blacklisted phrase (3): Did you found the solution
  • RegEx Blacklisted phrase (3): not working for me
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (0.5):
Posted by: Ruben Ramos

79643117

Date: 2025-05-28 23:35:52
Score: 3
Natty:
Report link

As Alexandru suggested,

The stack trace shows that another updateStep() method is used to enter WorkflowService, without @Transactional.

And @Transactional annotations have never been working for local, inner-service calls, thus we get no transaction.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Transactional
  • User mentioned (0): @Transactional
  • Low reputation (1):
Posted by: cheesus

79643115

Date: 2025-05-28 23:27:50
Score: 1
Natty:
Report link

Just need to add:

    [assembly: Parallelize]

In the AssemblyInfo.cs

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: JEuvin

79643112

Date: 2025-05-28 23:25:50
Score: 2.5
Natty:
Report link

@MarzSocks not allowed to comment. I used the solution of @Vince

import { Directive, HostBinding, Input } from '@angular/core';
import { MatMenuPanel, MatMenuTrigger } from '@angular/material/menu';


@Directive({
    selector: '[matMenuTriggerForContext]',
    host: {
        'class': 'mat-mdc-menu-trigger',
        '[attr.aria-haspopup]': 'menu ? "menu" : null',
        '[attr.aria-expanded]': 'menuOpen',
        '[attr.aria-controls]': 'menuOpen ? menu.panelId : null',
        '(contextmenu)': '_handleContextMenu($event)',
      },
      exportAs: 'matMenuTriggerContext'
})
export class MatMenuTriggerForContextDirective extends MatMenuTrigger {
    @Input('matMenuTriggerForContext')
    get _matMenuTriggerForContext(): MatMenuPanel | null {
        return this.menu;
      }
    set _matMenuTriggerForContext(v: MatMenuPanel | null) {
        this.menu = v;
    }

    _handleContextMenu($event: MouseEvent): boolean {
        $event?.stopPropagation();
        $event?.preventDefault();
        $event?.stopImmediatePropagation();
        this._handleClick($event);
        return false;
    }
}

and added

/** Handles click events on the trigger. */
override _handleClick(event: MouseEvent): void {
    if (event.button !== 2) {
        return;
    }
    if (this.triggersSubmenu()) {
        // Stop event propagation to avoid closing the parent menu.
        event.stopPropagation();
        this.openMenu();
    } else {
        this.toggleMenu();
    }
}

to filter for right click (event.button == 2) This works, maybe some more changes are needed for perfectly user experience

Reasons:
  • Blacklisted phrase (1): not allowed to comment
  • Blacklisted phrase (1): to comment
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @MarzSocks
  • User mentioned (0): @Vinceand
  • Low reputation (1):
Posted by: bravehurts

79643111

Date: 2025-05-28 23:19:48
Score: 2
Natty:
Report link

Linux buffers are implemented in memory to improve I/O performance by reducing direct disk access and the buffer cache stores block device data, while the page cache handles file data. Linux OS uses structures like "buffer_head" and "page" in the kernel to manage these buffers. Data in buffers is flushed to disk by background processes like "pdflush" or "flush-kthreads"

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

79643110

Date: 2025-05-28 23:19:48
Score: 4
Natty:
Report link

Understanding what data is shared is easier when you visualize your data using memory_graph, a simple example:

Four different copies of nested list

See how memory_graph integrates in Google Colab.

Visualization made using memory_graph, I'm the developer.

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

79643094

Date: 2025-05-28 22:54:42
Score: 1
Natty:
Report link

I have this step-by-step git repo to create the most maintainable Firebase Functions. [https://github.com/felipeosano/nestfire-example][1]

If you have a project created on console.firebase.google.com then just clone the repo and change the .firebaserc with your project id.

This repository uses NestJS and NestFire. NestFire is an npm library that allows you to deploy Nest modules to Firebase Functions. This npm library also allows you to create fast and maintainable triggers. I recommend reading the documentation in its repository.

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

79643087

Date: 2025-05-28 22:43:36
Score: 8.5 ๐Ÿšฉ
Natty:
Report link

i have been having the same problem. I want to use -pb_rad charmm and -pb_rad roux, . But the given patch does not work . could you please help me with this. Thank you. Also what does "I just had to remove the last eval from your answer " means ? what is the replacement that actually works.

set ar_args [list assign_radii $currmol $pb_rad]
if { $pb_rad eq "charmm" } {
    # foreach p $parfile { lappend ar_args $p }
    eval [linsert $parfile 0 lappend ar_args] ;# Avoid a loop
} elseif { $pb_rad eq "parm7" } {
    lappend ar_args $topfile
}
eval $ar_args
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): could you please help me
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): having the same problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Char Pereira

79643086

Date: 2025-05-28 22:41:35
Score: 1
Natty:
Report link

You can apply the radius to the image using imageStyle:

<Image
  source={{ uri }}
  style={[StyleSheet.absoluteFill, { resizeMode }]}
  imageStyle={{ borderRadius: radius }}
/>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Chibuokem Onyekwelu

79643083

Date: 2025-05-28 22:38:35
Score: 2.5
Natty:
Report link

Looks like the Agenda component is broken in Expo SDK 53. Here's a PR you can take a look at and patch: https://github.com/wix/react-native-calendars/pull/2664

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Chibuokem Onyekwelu

79643081

Date: 2025-05-28 22:36:33
Score: 6.5 ๐Ÿšฉ
Natty: 6.5
Report link

does anyone know how to adjust the legend generated by the Kcross graph? Is it possible to include some commands to make this adjustment? I would like to organize the location of the legacy.

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • RegEx Blacklisted phrase (2): does anyone know
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30663030

79643079

Date: 2025-05-28 22:34:32
Score: 0.5
Natty:
Report link

Please try below command and see if it is working. in fact, It worked for me.

$ zz -FF IBM_SFG_OLD.zip --out IBM_SFG_NEW.zip -fz

Reasons:
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Raghava Chellu

79643072

Date: 2025-05-28 22:26:30
Score: 1.5
Natty:
Report link

The answer is Yes!

You can get the contents from fetch, change the visible location with function history.pushState() and totally replace document.documentElement.innerHTML with fetched data. The only thing that will be lost - some http headers which could affect the behavior of the page.

The answer is No!

In most cases once you received the response from server on your POST-request its state will never be the same. If you just walk to new location /someform server will not receive POST and the reply will differ from the reply you already consumed by fetch. Of course there are some servers that always reply the same ( something like 'OK'). But don't get your hopes up.

So, which answer do you prefer?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Solt

79643066

Date: 2025-05-28 22:19:28
Score: 3.5
Natty:
Report link

What archX are you using for your OS? 32 or 64 bit? I'm using Debian 64 on ARM64, and I think I'm running into a depreciation in regards to the "sizeof()" or "strlen()" functions to correctly allocate buffer space for the yolo object arguments. It looks like the original code was bound to a 32 bit environment.

The kicker is that this is my SECOND time going through this journey... accidentally deleted my live and backup images.. "DOH!"

This fellow was helpful... Segmentation fault (core dumped) when using YOLOv3 from pjreddie

Reasons:
  • Blacklisted phrase (1): regards
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Big Monkey Man

79643065

Date: 2025-05-28 22:18:28
Score: 0.5
Natty:
Report link

The blastula package enables displaying an html string in the RStudio viewer. This avoids having to save an html object to a file.

my_html <- "<h1>Here's some HTML</h1>
<p>Here's a paragraph</p>
</br>
</br>"
blastula::compose_email(blastula::md(my_html))
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Rainfall.NZ

79643064

Date: 2025-05-28 22:17:28
Score: 2.5
Natty:
Report link

Import matplotlib.pyplot as plt

Services = ['ะšะพะฝััƒะปัŒั‚ะฐั†ะธะธ', 'ะœะฐั‚ะตั€ะธะฐะปัŒะฝะฐั ะฟะพะผะพั‰ัŒ', 'ะกะพั†ะธะฐะปัŒะฝะพะต ัะพะฟั€ะพะฒะพะถะดะตะฝะธะต', 'ะŸัะธั…ะพะปะพะณะธั‡ะตัะบะฐั ะฟะพะผะพั‰ัŒ', 'ะฎั€ะธะดะธั‡ะตัะบะฐั ะฟะพะผะพั‰ัŒ']

Service_counts = [1750, 600, 350, 500, 250]

Plt.pie(service_counts, labels=services, autopct='%1.1f%%')

Plt.title(ยซะกั‚ั€ัƒะบั‚ัƒั€ะฐ ะพะบะฐะทะฐะฝะฝั‹ั… ัะพั†ะธะฐะปัŒะฝั‹ั… ัƒัะปัƒะณ ะžั‚ะดะตะปะตะฝะธะตะผ 'ะกะปัƒะถะฑะฐ ัะตะผัŒะธ' ะฒ 2023 ะณะพะดัƒยป)

Plt.show()

Reasons:
  • No code block (0.5):
  • No latin characters (1):
  • Low reputation (1):
Posted by: ะ›ะธะปะธั ะฅะฐะปะธะบะพะฒะฐ

79643062

Date: 2025-05-28 22:17:28
Score: 2
Natty:
Report link

ThisWorkbook.Path will provide the path of the current workbook.

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

79643061

Date: 2025-05-28 22:16:27
Score: 3
Natty:
Report link

EC2Launch is required to utilize user_data. You'll want to troubleshoot that before expecting this to run.

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

79643056

Date: 2025-05-28 22:06:25
Score: 3.5
Natty:
Report link

You should be able to achieve this using worklets: https://github.com/software-mansion/react-native-reanimated/discussions/7264

Here's an article you can read: https://dev.to/ajmal_hasan/worklets-and-threading-in-reanimated-for-smooth-animations-in-react-native-98

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

79643052

Date: 2025-05-28 22:02:24
Score: 1
Natty:
Report link

Changing self.__size = __first.__size to self.__size = first._First__size should correctly handle the name mangling and avoid giving you an error.

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

79643049

Date: 2025-05-28 21:58:23
Score: 3.5
Natty:
Report link

For others finding this question in the future, there is a step-by-step tutorial here: https://lopez-ibanez.eu/2024-redheur/

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Manuel Lรณpez-Ibรกรฑez

79643038

Date: 2025-05-28 21:44:20
Score: 2
Natty:
Report link

The only possibilities you have are:

- An incomplete recovery to a point in time before the command was executed, or
- Restore a cold backup of a timestamp prior to the time of the command
- Manually add a column (and insert the values).

but before do that you must drop the column first

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

79643035

Date: 2025-05-28 21:42:19
Score: 2
Natty:
Report link

Just as a test, try the file:// prefix, but with an absolute file path rather than a 'shared' folder.

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

79643018

Date: 2025-05-28 21:27:15
Score: 4.5
Natty: 4.5
Report link

I had the same problem and fixed it by making the enum Codable. I'm wondering if anyone knows why an enum has to conform to codable in SwiftData when it doesn't when using structs. Also, this error message was completely unhelpful in locating the issue, is this the kind of thing Apple wants feedback about?

Reasons:
  • Blacklisted phrase (1): anyone knows
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bob Kalus

79643015

Date: 2025-05-28 21:27:15
Score: 0.5
Natty:
Report link

Sterling File Gateway will maintain the file transfer statical information along with Event codes. These event codes are specifically designed for IBM Control Center. Each code will particular describe the status of the file at each phase during the file transmission process like File Arrived, Replayed, redelivered, completed/success or Failed. If we integrate SFG with IBM control center, by default all these events will be captured by ICC.

Solution#1: You can configure CDC in ICC database so that real-time events will be captured and make sure these captured into another database within the same database instance. Now, you can write a program in any programming language (python preferable) to get these events from new database. In python program, you can subscribe to pub/sub topic to push them to bigquery and the further we can project them to looker studio.

Solution#2: Once ICC captures events from SFG, have your SQL query get the required events from ICC database by using python program. Please make sure you python program should send events/messages in json format to the pub/sub topic which is already subscribed to. And then, create bigquery dataset to pull the pub/sub messages from topic subscription. And then finally , we can project these events to Google looker studio for user interface.

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

79643010

Date: 2025-05-28 21:20:13
Score: 5
Natty:
Report link

It happened to us today. Same message, the Whatsapp number is flagged but not blocked. The template was tested today and was fine. Now Iยดve just tested it and itยดs fine again. Can it be a massive temporary glitch in the system?..

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

79643008

Date: 2025-05-28 21:18:12
Score: 2.5
Natty:
Report link

Use the following code:

val view = ComposeView(this).apply {
    setContent {
        // content
    }

    // Trick The ComposeView into thinking we are tracking lifecycle
    val lifecycleOwner = ComposeLifecycleOwner()
    lifecycleOwner.performRestore(null)
    lifecycleOwner.handleLifecycleEvent(Lifecycle.Event.ON_CREATE)
    setViewTreeLifecycleOwner(lifecycleOwner)
    setViewTreeSavedStateRegistryOwner(lifecycleOwner)
}

ComposeLifecycleOwner:

import android.os.Bundle
import androidx.lifecycle.Lifecycle
import androidx.lifecycle.LifecycleRegistry
import androidx.savedstate.SavedStateRegistry
import androidx.savedstate.SavedStateRegistryController
import androidx.savedstate.SavedStateRegistryOwner

class ComposeLifecycleOwner : SavedStateRegistryOwner {
    private var mLifecycleRegistry: LifecycleRegistry = LifecycleRegistry(this)
    private var mSavedStateRegistryController: SavedStateRegistryController = SavedStateRegistryController.create(this)

    /**
     * @return True if the Lifecycle has been initialized.
     */
    val isInitialized: Boolean
        get() = true

    override val lifecycle = mLifecycleRegistry

    fun setCurrentState(state: Lifecycle.State) {
        mLifecycleRegistry.currentState = state
    }

    fun handleLifecycleEvent(event: Lifecycle.Event) {
        mLifecycleRegistry.handleLifecycleEvent(event)
    }

    override val savedStateRegistry: SavedStateRegistry
        get() = mSavedStateRegistryController.savedStateRegistry

    fun performRestore(savedState: Bundle?) {
        mSavedStateRegistryController.performRestore(savedState)
    }

    fun performSave(outBundle: Bundle) {
        mSavedStateRegistryController.performSave(outBundle)
    }
}

Source: https://gist.github.com/handstandsam/6ecff2f39da72c0b38c07aa80bbb5a2f

Thanks to @CommonsWare for giving me the idea!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @CommonsWare
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Error

79643005

Date: 2025-05-28 21:15:11
Score: 2.5
Natty:
Report link

you should check the apache log if there is no log for that problem could be related to your Client DNS Server. maybe your dns server respond faster than your local machine.

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

79643002

Date: 2025-05-28 21:13:11
Score: 2
Natty:
Report link

As Sam Nseir suggested you can use Dynamic M query parameters, you can check the following question that seems to be similar to yours:

How to change the power query parameter from the Power BI Interface?

A part from MS the reference given by Sam Nseir you can check this article that can be helpful:

https://blog.crossjoin.co.uk/2023/01/29/passing-any-arbitrary-value-from-a-power-bi-report-to-a-dynamic-m-parameter/

Reasons:
  • Blacklisted phrase (1): this article
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Leyth

79642999

Date: 2025-05-28 21:07:10
Score: 1
Natty:
Report link

I have resolved it by downgrading version of react-native-screen.

"react-native-screens": "^2.18.1",

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

79642996

Date: 2025-05-28 21:04:08
Score: 0.5
Natty:
Report link

I found the solution to this issue on Github;
https://github.com/coderforlife/mingw-unicode-main/

That short, simple code fragment solved the problem completely!!

Reasons:
  • Whitelisted phrase (-2): I found the solution
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Gorlash

79642994

Date: 2025-05-28 21:01:08
Score: 0.5
Natty:
Report link

So, going from here, I have to update my environment variable from

e TESTCONTAINERS_HOST_OVERRIDE=172.17.0.3

to

e TESTCONTAINERS_HOST_OVERRIDE=host.docker.internal

and it worked

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Akash Jain

79642986

Date: 2025-05-28 20:50:05
Score: 3.5
Natty:
Report link

go to %temp% and delete hsperfdata_<os_user> folder

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

79642974

Date: 2025-05-28 20:42:03
Score: 1
Natty:
Report link

check your package.json, it should have the autolinking paths 'searchPaths' so that the packages in these paths are autolinked by expo

  "expo": {
    "autolinking": {
      "searchPaths": [
        "../../packages"
      ],
      "nativeModulesDir": "../../packages"
    }
  },
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sujit Balasubramanian

79642972

Date: 2025-05-28 20:41:03
Score: 1
Natty:
Report link

This topic was very confusing to me, so I looked it up and found this link - which confused me more.

My understanding is that:

  1. git rm removes the file from both the working directory (aka worktree, disk) and the staging area (aka index).

  2. git rm -cached removes the file from only the staging area

So if you created a whole new git repository, created a new file, added the new file to the staging area, then ran git rm -cached, basically all you've done is unstage the new file and the new file still exists in the working directory so it can be added back to the staging area. Had you ran git rm instead, you would have removed the file from the staging area AND the working directory so it couldn't be added back to the staging area without creating the file again.

I'm guessing the OP's original question was why PaginationResult.java was still listed in the staging area after running git rm --cached. At least that's where I'm still confused.

Reasons:
  • Blacklisted phrase (1): this link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Chris Phillips

79642966

Date: 2025-05-28 20:37:01
Score: 3
Natty:
Report link

You need to be using spherical kmeans. Yes, minimizing the euclidean distance between two l2 normalized vectors is the same with minimizing cosine, but you also have to l2 normalize the centroids, which you dont have access to in sklearn Kmean.

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

79642961

Date: 2025-05-28 20:31:00
Score: 0.5
Natty:
Report link

Adding to Florian's answer above, I recently attempted some more reverse-engineering on this, which has led me to a lot of new information.

What SciPy calls the function_workspace is actually called the subsystem. The subsystem appears in the MAT-file as a normal variable of mxUINT8_CLASS, i.e., its written as a uint8 variable with just one caveat - this variable has no name. Whether the subsystem is present or not is indicated by a 64-bit integer in the MAT-file header. This integer is a byte marker pointing to the start of the subsystem data in the MAT-file.

Coming to its contents, the subsystem contains all necessary data required to construct object instances of mxOPAQUE_CLASS objects. This includes both user-defined classes (using classdef), as well as datatypes like string, datetime, table, etc.

The way it achieves this is by encoding instructions on object construction using methods of a class FileWrapper__. These instructions include information such as the class type, its properties and their values, and the construction order (in case of nested objects). Each constructed object is mapped to a unique object ID, which is used to link this constructed object to its corresponding variable when reading them in the normal portion of the MAT-file.

The exact format of the subsystem data is extremely convoluted to get into, I would refer you to my documentation which goes into it in great detail.

Reasons:
  • Contains signature (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: foreverallama

79642959

Date: 2025-05-28 20:29:59
Score: 1.5
Natty:
Report link

I did this for my computer vision project at university to train a model using the max size for YOLO. I would use pillow to break the image in to smaller images, which you can do easily with list slicing.

As for question 2, the resolution is going to be different because you sliced the image into smaller images which directly affects the resolution, but the PPI will remain the same resulting in an image with high clarity yet smaller in size.

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

79642955

Date: 2025-05-28 20:27:59
Score: 1
Natty:
Report link
# using  join

set a {abcd}
set b {efgh}
set l [list $a $b] # a list
set c [join  $l ]  # space sep (default)
set d [join  $l  {}]  # no sep

puts $c

abcd efgh

puts $d

abcdefgh

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

79642953

Date: 2025-05-28 20:25:58
Score: 1
Natty:
Report link

Try this:

from selenium import webdriver
from selenium.webdriver.chrome.options import Options

optionss = Options()
optionss.add_argument("--start-maximized")
optionss.add_argument("--disable-popup-blocking")
optionss.add_argument("--ignore-certificate-errors")
driver = webdriver.Chrome(options=optionss)

If you already doing this, please show us all code.

Reasons:
  • Whitelisted phrase (-2): Try this:
  • RegEx Blacklisted phrase (2.5): please show us
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alex William

79642939

Date: 2025-05-28 20:15:55
Score: 4
Natty:
Report link

Does it work this way ?

buttons = driver.find_elements_by_xpath("//*[contains(text(), 'Download All')]")

for btn in buttons:
    btn.click()

Inspired from Click button by text using Python and Selenium

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Mircea Sirghi

79642928

Date: 2025-05-28 20:11:53
Score: 2.5
Natty:
Report link

This appears to be a known bug. Linking PR, which has been sitting dormant for almost 2 years

https://github.com/apache/flink/pull/25410

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

79642925

Date: 2025-05-28 20:06:52
Score: 1.5
Natty:
Report link

unless i misunderstand, looks like you just need to restructure your result differently.

const result = {};
for (let i = 7; i < jsonData.length; i++) {
    const rowData = jsonData[i];
    const singleRow = {};
    singleRow.water = { total: rowData[2], startDate: rowData[6]; }; // add other data as needed
    singleRow.electricity = { total: rowData[14], startDate: rowData[19]; };
    singleRow.gas = { total: rowData[9], startDate: rowData[11]; };

    const date = rowData[0];
    result[date] = singleRow;  // set property as row date
}

it seems you have all the pieces you need already. is there a particular issue you are having?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: sparkJ

79642919

Date: 2025-05-28 20:01:50
Score: 5
Natty:
Report link

I have exactly the same problem, incredible!!!
I had to rollback to version 17.13.7 (where I have the problem with Output-Window without line breaks)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have exactly the same problem
  • Low reputation (1):
Posted by: Karl Andenmatten

79642913

Date: 2025-05-28 19:55:48
Score: 3
Natty:
Report link

Use the class

unreal.PixelStreaming2StreamerComponent

Check the api documentation

https://dev.epicgames.com/documentation/en-us/unreal-engine/python-api/

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

79642910

Date: 2025-05-28 19:52:47
Score: 2.5
Natty:
Report link

It's May 28, 2025 and my team is running into this same issue. It potentially impacts certs using 4096-bit keys (rather than 2048). I've also noticed that if I upload a .pem version of the same cert (instead of .pfx) it seems to work.

PEM format:

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

79642888

Date: 2025-05-28 19:34:42
Score: 5
Natty: 7.5
Report link
emailObj.AddAttachment "c:\windows\win.ini"

How can i use if file has ddmmyyhhmmss date and time stamp like win_05282025122200.ini ??

Reasons:
  • Blacklisted phrase (0.5): How can i
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Starts with a question (0.5): How can i use
  • Low reputation (1):
Posted by: Ananth

79642887

Date: 2025-05-28 19:34:41
Score: 6 ๐Ÿšฉ
Natty: 5
Report link

i have follow this video, it's very helpful https://www.youtube.com/watch?v=zSqGjr3p13M

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

79642880

Date: 2025-05-28 19:28:39
Score: 3
Natty:
Report link

I have done this, dir.create(โ€œtestdirโ€) even copy pasted it. It does not accept it. Have spent over an hour collectively trying to figure this out. Would it be wise to shut the app down and restart or am I doing something incorrectly?

Appreciate your time and help

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

79642870

Date: 2025-05-28 19:23:38
Score: 2
Natty:
Report link

Navigate to the github address that you listed above.

Click on the "Code" dropdown menu.

Click on the "Download Zip" button.

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

79642868

Date: 2025-05-28 19:21:37
Score: 1
Natty:
Report link

For removing at a index you could do:

    public static T[] removeArrAt<T>(T[] src, int idx) {
        return src.Take(idx).Concat(src.Skip(idx + 1)).ToArray();
    }

which returns the modified array

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ็ฅžๆฅฝๅ‚ ็ถพไนƒ

79642866

Date: 2025-05-28 19:18:36
Score: 2
Natty:
Report link

try this wait = WebDriverWait(driver, 10) button = wait.until(EC.presence_of_element_located((By.XPATH, "//button[contains(., 'Download All')]")))

driver.execute_script("arguments[0].scrollIntoView(true);", button) driver.execute_script("arguments[0].click();", button) can you share a screenshot of the element in the browser dev tools or the full HTML block from outerHTML

Reasons:
  • Whitelisted phrase (-1): try this
  • RegEx Blacklisted phrase (2.5): can you share
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abhi Raj

79642864

Date: 2025-05-28 19:15:36
Score: 3
Natty:
Report link

After speaking with the dev team the correct answer here is that tethering can mitigate the issue somewhat, but backpressure cannot be fully eliminated from aeron at this time

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

79642860

Date: 2025-05-28 19:10:35
Score: 0.5
Natty:
Report link

For anyone still having this problem in May 2025, upgrading to the latest gtrendsR dev version helped:

install.packages("remotes")
remotes::install_github("PMassicotte/gtrendsR")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: broti