79809502

Date: 2025-11-05 00:00:31
Score: 4
Natty:
Report link

I forgot to wrap the store. So I want the computed property to be in the store so I can just call store.b. Instead of having to write the computed ref seperately. So I think I'll need to do it the 'c' way. As the computed ref should be refering to a reactive object, but in the initilization state, the reactive object has not been created yet.

And yea, the proper way would be to use a proper store management system, but I was wondering if there's an easy way for it.

Reasons:
  • Blacklisted phrase (2): was wondering
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: TurtleTread

79809498

Date: 2025-11-04 23:45:28
Score: 2.5
Natty:
Report link

enter image description here

enter image description here

I also encountered the same problem and spent a long time troubleshooting it, but I’ve finally solved it.

The root cause of the issue was that Cloudflare returned a very poor-quality IP node for the domain.

From Cloudflare’s publicly listed IP ranges https://www.cloudflare.com/ips-v4/, I selected a high-quality IP node and added it to my Windows hosts file — that completely fixed the problem.

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

79809495

Date: 2025-11-04 23:42:27
Score: 1
Natty:
Report link

It looks like the issue is with the endpoint path. In Jira API v3, the correct endpoint for a JQL search is /rest/api/3/search, not /rest/api/3/search/jql. When you use /search/jql, Jira doesn’t return the paging metadata (startAt , maxResults , total). Try updating your URL to use /search ; that should fix the response format and bring back the pagination info.

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

79809492

Date: 2025-11-04 23:38:26
Score: 1
Natty:
Report link

Question format is different form before: perhaps I set it up wrong.

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

79809491

Date: 2025-11-04 23:36:25
Score: 1.5
Natty:
Report link

Use gdb to open the core dump

gdb /path/to/binary /path/to/core.dump

Then run:

(gdb) info files
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: cr7

79809489

Date: 2025-11-04 23:33:25
Score: 2.5
Natty:
Report link

@your-common-sense Wouldn't type safety be one reason?

If I had only a set() method, I can't have explicit enforcement for all 3 types. I'd have to use mixed or object|callable.

Having separate methods allows me to be more explicit in how each service is stored.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @your-common-sense
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: germanshedder

79809488

Date: 2025-11-04 23:32:24
Score: 6
Natty:
Report link

I think I once read there was a way to clone a repository with just the .git in it. However I cannot find where I read that but if that's possible, I could change my parent clone to this and avoid having all the files duplicated and then the parent would just hold the .git which would be shared by the worktree ?

Reasons:
  • Blacklisted phrase (1.5): I cannot find
  • Blacklisted phrase (0.5): I cannot
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Lovis XII

79809486

Date: 2025-11-04 23:28:23
Score: 0.5
Natty:
Report link

I think I understand the problem. Groovy's Map coercion doesn't work on concrete types. Since the SpringApplicationBuilder is a concrete type, it instead tries to instantiate it, but because there's no default constructor it fails. When I tried Map coercion on a type that has a default constructor, it instantiates fine, but then my mocked methods aren't actually run.

TL;DR? I had to give up.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: bmauter

79809483

Date: 2025-11-04 23:26:21
Score: 6 🚩
Natty:
Report link

Well I faced the same issue but when using @nomicfoundation/hardhat-toolbox-mocha-ethers. So far i don't understand why Hardhat only recognise Solidity tests, but no TS tests.

Anybody can help with that?

Reasons:
  • RegEx Blacklisted phrase (3): Anybody can help
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Anton Holovchenko

79809480

Date: 2025-11-04 23:23:21
Score: 1
Natty:
Report link

Actually the only one solution seems to disable totally Copilot. At least for me, enabling, disabling and restarting the IDE won't work. NES will run one more time and the code completions will increase its percentage in the Copilot usage statistics, this includes enabling or disabling auto tringgering for code completions, or setting the language or setting all (*) in false, Copilot will run the NES and the code completion; is just like MS said "it's my IDE and I will make Copilot do whatever, no matter what you do".

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Néstor

79809478

Date: 2025-11-04 23:20:20
Score: 2.5
Natty:
Report link

I am the maintainer and primary author of the Spring Data DynamoDB community module -> https://github.com/prasanna0586/spring-data-dynamodb

The Spring Data projects page (https://spring.io/projects/spring-data) now points to this actively maintained version. The latest release is fully compatible with Java 21 and Spring Boot 3.5.6, and I am updating the underlying AWS SDK from v1 to v2 to align with current best practices.

The latest version and compatibility is available here -> https://github.com/prasanna0586/spring-data-dynamodb/?tab=readme-ov-file#version--spring-framework-compatibility

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Prasanna Kumar Ramachandran

79809474

Date: 2025-11-04 23:16:19
Score: 1.5
Natty:
Report link

instead of

CFLAGS="-O2 -Wall -march=native" ./configure <options>

use

CFLAGS="-O2 -Wall -march=native -fcommon" ./configure
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alex Bloom

79809471

Date: 2025-11-04 23:12:17
Score: 7.5 🚩
Natty:
Report link

вопрос больше не актуален
всем спасибо

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • No latin characters (3.5):
  • Low reputation (1):
Posted by: Gregor Zamza

79809468

Date: 2025-11-04 23:04:15
Score: 2.5
Natty:
Report link

I think you misunderstood what II means. Are you saying that you want your top level function to have the same execution time as any one of the 2 functions you call? If so, then it should be II=3 in the top level. Because II is global. For example, one II is 2ns. Your proc1 and proc2 take 6ns to execute and your top level function also takes 6ns to execute.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chenhe Yuan

79809467

Date: 2025-11-04 22:59:14
Score: 1
Natty:
Report link

Ran into this issue today and found that it was caused by importing the wrong scroll view.

Import like this: import { ScrollView } from 'react-native-gesture-handler';

DON'T IMPORT like this: import { ScrollView } from 'react-native';

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

79809464

Date: 2025-11-04 22:50:12
Score: 3
Natty:
Report link

All good but internal testing does not go through a review process. That is why we went with a closed testing and thinking to promote to a production but not sure about it.

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

79809460

Date: 2025-11-04 22:45:11
Score: 2
Natty:
Report link

I am officially supporting this project. The project is very much alive and is available here -> https://github.com/prasanna0586/spring-data-dynamodb. The link in spring-data project was updated to point people to the latest library. The latest version of the library uses Java 21 and spring boot 3.5.6. I am working on updating AWS SDK from V1 to V2. It should be available soon.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Prasanna Kumar Ramachandran

79809454

Date: 2025-11-04 22:38:09
Score: 2
Natty:
Report link

The following helped me with a TypeError: 'Task' object is not callable error in PyCharm when running the debugger. I was using the scrapy library and it behaved in the same way as your error while debugging, but I suspect that you are seeing a similar issue with the asyncio library.

This is taken from the following answer: Cannot debug script with trio_asyncio in PyCharm

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): seeing a similar issue
  • Low reputation (0.5):
Posted by: Nikolai Kummer

79809451

Date: 2025-11-04 22:35:08
Score: 4
Natty: 4
Report link

brew doctor can be really helpful here to make sure you don't need to cleanup, install, link, add to PATH, etc.

Other answers are accurate - it's likely your npm upgrade or reinstalling icu4c

This error can show up when installing php too - I ran into this error with brew install php on Mac OS Monterey 12 (which currently installs 8.4.14). Nothing worked for me though, I've tried everything.

Does anyone know if it's possible to install a version > 8.1 on this OS? I'm convinced it's not.

Reasons:
  • Blacklisted phrase (1): ve tried everything
  • RegEx Blacklisted phrase (2): Does anyone know
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): can
  • Low reputation (0.5):
Posted by: pkucas

79809449

Date: 2025-11-04 22:32:06
Score: 0.5
Natty:
Report link

You should post the HTML that you claim was working but no longer is

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: ControlAltDel

79809444

Date: 2025-11-04 22:26:05
Score: 2
Natty:
Report link

<Ctrl><Shift>R once I highlighted ONLY the commands that I wanted to turn into a function.

My original code block that I wanted to refactor began with a comment and the last line had a comment at the end.

# this code does this
print(a)
print(b) #another comment here.

Refactoring only worked when I ONLY highlighted the print commands.
# this code does this
print(a)
print(b)
#another comment here.

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

79809437

Date: 2025-11-04 22:14:02
Score: 2
Natty:
Report link

I don't know if this is going to let me reply to @apnerve, but I'd have to agree with you that there's nothing technically wrong with skipping h2 and going straight to h3 - that being said, it may be prudent to use CSS to restyle your headings so h1-whatever work the way you want them to, then you have a h2 element that shows up as expected, and you can have an h3. The tiered heading system seems to be used to denote different headers as grouped by importance. H1 is a main header, important. Their importance to the crawler and ultimately organic search ranking will be directed by the standard hierarchy of elements. Creating a page which is pure clean HTML code will be easier for the crawler to recognize as "a product" or "a reservation page".

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @apnerve
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Brett

79809433

Date: 2025-11-04 22:06:01
Score: 1
Natty:
Report link

My company did a production quality test release of our Android app as an Internal Beta release. You can manage your internal testing releases in the Google Play Console under Home>Your App>Test and release>Testing>internal testing. These internal releases could only be downloaded from the app store by users added to the internal testing user group, who were sent a link that redirected them to the app store. Here is more information about Internal Testing of Android apps, it works for up to 100 invited users:

https://play.google.com/console/about/internal-testing/

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

79809431

Date: 2025-11-04 22:05:00
Score: 4
Natty:
Report link

I edited the example data. Hopefully this is easier to demonstrate with now.

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

79809428

Date: 2025-11-04 21:58:58
Score: 3.5
Natty:
Report link

"🎯 Fokus, nikmati, dan biarkan keberuntungan berpihak padamu. JO777 siap mendukungmu."

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

79809427

Date: 2025-11-04 21:55:58
Score: 3
Natty:
Report link

Can't a lot of this be solved by empty lists? And the rest with nullable or property bags

Reasons:
  • RegEx Blacklisted phrase (1.5): solved by empty lists?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can't a
  • High reputation (-2):
Posted by: siggemannen

79809425

Date: 2025-11-04 21:50:57
Score: 1.5
Natty:
Report link
# Source - https://stackoverflow.com/questions/45535861/automate-process-for-merging-csv-files-in-python?newreg=4b233792ea5540e9b7def53147e66644
# Posted by candid
# Retrieved 04/11/2025, License - CC-BY-SA 4.0

for file in os.listdir(DATA_PATH + 'datafolder/'):
    if file.endswith('.csv'):
        abs_path = os.path.abspath(DATA_PATH + 'datafolder/' + file)
        print(abs_path)
        data = openFile(abs_path)
        data2 = someFunction(data)
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Colin Smith

79809424

Date: 2025-11-04 21:49:56
Score: 3.5
Natty:
Report link

Is it possible to use list?

In the case you can just try something like this

import random

mylist = ["Dialogue1", "Dialogue2"]
print(random.choice(mylist))

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Low length (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: Vladimir

79809420

Date: 2025-11-04 21:43:55
Score: 1.5
Natty:
Report link

I successfully uploaded the screenshot using my phone. I logged in to the account with my phone and did it that way.
For some unknown reason, when I transfer the screenshot to my Mac and try uploading it on my browser, it says the dimensions are not right.

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

79809408

Date: 2025-11-04 21:32:53
Score: 2
Natty:
Report link

With the help of @Shrotter I get the idea here is my solution. I used referance string creation methods. It's a great success at my life. thank you again Shrotter.

Dim inz
    For Each inz In prtLst

        'Referans string creation
        Dim sRef 
        sRef = rtPrd.Name & "/" & inz.Name & "/!" & bdyName

        'Create referance
        Set rfBdy = rtPrd.CreateReferenceFromName(sRef)

        'Find da body
        sel.Clear
        sel.Add(rfBdy)
        sel.Copy

        'Activate target
        sel.Clear
        sel.Add(trgtPrt)
        sel.PasteSpecial "CATPrtResult"

    Next
Reasons:
  • Blacklisted phrase (0.5): thank you
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Shrotter
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Yunus Mert AŞKIN

79809397

Date: 2025-11-04 21:08:47
Score: 2.5
Natty:
Report link

Take a look at the specification of US Patent 9,269,157 - "Methods for extracting objects from digital images and for performing color change on the object" - https://ppubs.uspto.gov/pubwebapp/ - maybe you'll find it useful.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vítor Montovani

79809391

Date: 2025-11-04 21:00:46
Score: 0.5
Natty:
Report link

"participants": [

{

"name": "\u00f0\u009f\u0092\u00a5 \u00f0\u009d\u0099\u008e\u00f0\u009

d\u0099\u00a5\u00f0\u009d\u0099\u009e\u00f0\u009d\u0099\u00a7\u00f0\

u009d\u0099\u009e\u00f0\u009d\u0099\u00a9\u00f0\u009d\u0099\u00aa\u

00f0\u009d\u0099\u0096\u00f0\u009d\u0099\u00a1 \u00f0\u009d\u0099\u0

09d\u00f0\u009d\u0099\u00aa\u00f0\u009d\u0099\u00a2\u00f0\u009d\u009

9\u0096\u00f0\u009d\u0099\u00a3 \u00f0\u009f\u0098\u00ae\u00e2\u0080\

u008d\u00f0\u009f\u0092\u00a8"

},

{

"name": "\u00e1\u00b4\u00a9\u00e1\u00b4\u008f\u00e1\u00b4\u008f\u00e

1\u00b4\u008a\u00e1\u00b4\u0080\u00f0\u009f\u00a4\u008e"

}

],

"messages": [

{

"sender_name": "\u00f0\u009f\u0092\u00a5 \u00f0\u009d\u0099\u008e\u00

f0\u009d\u0099\u00a5\u00f0\u009d\u0099\u009e\u00f0\u009d\u0099\u00a7

\u00f0\u009d\u0099\u009e\u00f0\u009d\u0099\u00a9\u00f0\u009d\u0099\u

00aa\u00f0\u009d\u0099\u0096\u00f0\u009d\u0099\u00a1 \u00f0\u009d\u0

099\u009d\u00f0\u009d\u0099\u00aa\u00f0\u009d\u0099\u00a2\u00f0\u009

d\u0099\u0096\u00f0\u009d\u0099\u00a3 \u00f0\u009f\u0098\u00ae\u00e2\

u0080\u008d\u00f0\u009f\u0092\u00a8",

"timestamp_ms": 1743506546720,

"content": "\u00f0\u009f\u0092\u00a5 sent an attachment.",

"reactions": [

{

"reaction": "\u00f0\u009f\u0098\u0082",

"actor": "\u00e1\u00b4\u00a9\u00e1\u00b4\u008f\u00e1\u00b4\u008f\u0

0e1\u00b4\u008a\u00e1\u00b4\u0080\u00f0\u009f\u00a4\u008e"

}

],

"is_geoblocked_for_viewer": false,

"is_unsent_image_by_messenger_kid_parent": false

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

79809389

Date: 2025-11-04 20:57:45
Score: 1
Natty:
Report link

MOHAMED.

// Source - Why am I getting "ERR_CONNECTION_REFUSED" when querying by sidecar-hosted backend in Azure App Service?

// Posted by chris

// Retrieved 11/4/2025, License - CC-BY-SA 4.0

FROM python:3.10-slim

RUN mkdir /backend

WORKDIR /backend

ENV PYTHONDONTWRITEBYTECODE=1

ENV PYTHONUNBUFFERED = 1

RUN pip install --upgrade pip --trusted-host pypi.org

COPY requirements.txt /backend/

RUN apt-get update && \

apt-get install -y libpq-dev gcc

RUN pip install --no-cache-dir -r requirements.txt --trusted-host pypi.org

COPY . /backend/

EXPOSE 8080 80

CMD ["daphne", "-b", "0.0.0.0", "-p", "8080", "backend.asgi:application"]

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

79809385

Date: 2025-11-04 20:53:44
Score: 0.5
Natty:
Report link

You can handle this directly with React Native’s built-in <Text> props

<Text numberOfLines={1} ellipsizeMode="tail">
  {yourLongText}
</Text>

This will automatically add ... when the text exceeds the available width, leaving no padding or margin.

React Native Docs: Text # EllipsizeMode

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

79809375

Date: 2025-11-04 20:44:42
Score: 3
Natty:
Report link

For me the issue was Flutter channel, try switching to Stable Channel.

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

79809368

Date: 2025-11-04 20:39:41
Score: 2
Natty:
Report link

Install or Repair Microsoft Visual C++ Redistributables

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

79809361

Date: 2025-11-04 20:22:37
Score: 4
Natty:
Report link

Thanks... I did make it all 1 record and things are working.. .Thanks everyone

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: rsirota

79809360

Date: 2025-11-04 20:21:36
Score: 1
Natty:
Report link

In my case, I installed git in a new windows machine and the repository have links. I needed to mark the option to allow symlinks in the git installation, and clone the repository again.

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

79809359

Date: 2025-11-04 20:21:36
Score: 2.5
Natty:
Report link

You wrongly delimited the memory segment I see. Look, you gave to Mo99 an array of size 100 but the loop goes from 0 to 100, it's 101 spaces of memory, because you wrote i=0 to i<=100. This includes i=100.

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

79809351

Date: 2025-11-04 20:14:35
Score: 1
Natty:
Report link

This is the most updated version of Metal-accellerated Jax that works on my Mac M3:

conda create -n jax-env python=3.11 pip -y
conda activate jax-env
python -m pip install --upgrade pip wheel setuptools
pip install numpy==1.26.4
pip install ml_dtypes==0.3.2 jax-metal
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user3173325

79809338

Date: 2025-11-04 20:01:31
Score: 1
Natty:
Report link

The other answer is correct in that QMap::operator[] returns a mutable reference (T&) while QMap::value() returns an immutable copy (const T), which is the first thing to address.

For what they left unaddressed, the "how do I update a specific struct value" part, the answer is that you want a QMultiMap for that. Whereas QMap::find() only takes a key, QMultiMap::find() takes a key and a value. Using that, you can find the precise instance of the struct you want to update.

Reasons:
  • Blacklisted phrase (1): how do I
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: 6equj5

79809332

Date: 2025-11-04 19:51:29
Score: 4
Natty:
Report link

It works fine using Polars, just use Polars instead. thx

Reasons:
  • Blacklisted phrase (1): thx
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Frank

79809325

Date: 2025-11-04 19:44:27
Score: 0.5
Natty:
Report link

If the low 5 bits are 0x1F, then the identifier is encoded in multiple octets. The 0x1F is not a part of the identifier value. If the low 5 bits are < 0x1F, then that is your identifier (<=30). All you have to do is examine the low 5 bits of the first octet and compare to 0x1F.

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

79809324

Date: 2025-11-04 19:42:27
Score: 1
Natty:
Report link
lea     eax,msg
push    eax
call    printf
;!!
ADD     ESP, 1*4 ;1 (push eax), push + push + push 3*4
;!!
push    0                           ; return to os contorl point
call    ExitProcess@4

msvcrt does not balance the stack, in 32bits balance stack on use msvcrt

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

79809323

Date: 2025-11-04 19:40:26
Score: 3.5
Natty:
Report link

Looks like the compiler can't find GLFW's installation directory for includes and libs. How did you get GLFW on your machine? if you installed it via homebrew you should compile using:

(Apple Silicon)

clang++ main.cpp -o app \
  -I/opt/homebrew/include \
  -L/opt/homebrew/lib \
  -lglfw -framework Cocoa -framework OpenGL -framework IOKit

(Intel Macs)

clang++ main.cpp -o app \
  -I/usr/local/include \
  -L/usr/local/lib \
  -lglfw -framework Cocoa -framework OpenGL -framework IOKit

So I'd find the installation directory and compile via

clang++ main.cpp -o app \
  -I/path/to/installation/dir/include \
  -L/path/to/installation/dir/lib \
  -lglfw -framework Cocoa -framework OpenGL -framework IOKit

Also you might wanna try compiling via command line to get a clearer picture then vscode's.

Reasons:
  • RegEx Blacklisted phrase (3): did you get
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Emily Dror

79809322

Date: 2025-11-04 19:38:26
Score: 1
Natty:
Report link

i would give a try to this code:

res = (df.loc[df["A"]==2].index-1).isin(df.loc[df["A"]==1].index).all()

then print your dataframe bases on boolean value in res.

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

79809319

Date: 2025-11-04 19:33:24
Score: 1
Natty:
Report link

I had this same issue here, to fix I did this:

slotProps={{
    dialog: {
        sx: {
            zIndex: 10000
        },
        style: { 
            zIndex: 10000 
        }
    }
}}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Wesley Bernadoque

79809313

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

Short answer

Unfortunately (and fortunately privacy wise) that isn't possible.

Long answer

Whatsapp Web doesn’t actually give your browser full access to every participant’s phone number anymore. Since WhatsApp switched to its multi-device system, many group members are identified by random “linked device IDs” (those ending in @lid) instead of real numbers. These IDs are designed for privacy, and the actual phone numbers simply aren’t sent to the web client unless you already have that person in your contacts or you’ve chatted with them before.

When you open a group’s info panel and look at the participant list, WhatsApp briefly fetches and decrypts that data so you can see the numbers in the interface. But that information only exists in memory while the panel is open — it’s not saved anywhere like IndexedDB.

So technically, you can scrape phone numbers from the DOM after a user opens a group and scrolls through the full list, but you can’t do this automatically for every group. WhatsApp’s encryption model is designed to prevent that kind of bulk access. In short, you can export what’s visible on screen, but there’s no reliable way to programmatically fetch all participants’ phone numbers across all groups. That is unless you start simulating user interaction for each group.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • User mentioned (1): @lid
Posted by: Remy Kabel

79809310

Date: 2025-11-04 19:24:22
Score: 1
Natty:
Report link

In PhpMyAdmin, when you add the password for the user, the error will go. it worked for me

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

79809300

Date: 2025-11-04 19:09:18
Score: 0.5
Natty:
Report link

I recently had the same problem and was able to solve it in the following way in Java (should work in most languages):

int useValue = value >> 31;
return value & ~useValue;

I needed it specifically for Integer so I used it in here. We do 31 signed bit-shifts to the right (because Java Integer have exactly 32 bits), which turns all bits into 1 if the value is negative, otherwise 0. Then we return a bitwise AND of our value and the complement of our bits. So a negative number will always return 0 because the complement of its right-shifted bits is always 0. Any value & 0 will always return 0. If our number is positive (or 0), then the complement of those bits will always be 1. Any value & 1 will just return the plain value.

You unfortunately need to know how many bits your value has for this work but it fulfills all other criteria that you mentioned.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kooper

79809299

Date: 2025-11-04 19:09:18
Score: 0.5
Natty:
Report link

imho, the easiest way is to prepare an array to multiply original one with, based on the arithmetical signs of your reshaped D array. And then mutiply it with your flipped original T array.

m = np.where(np.sign(D)[:, None]>0, [-1, 1], [1, -1])
res = np.flip(T,1)*m

res:

[[ 2 -1]
 [-4  3]
 [-6  5]
 [ 8 -7]]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: strawdog

79809298

Date: 2025-11-04 19:03:17
Score: 0.5
Natty:
Report link

@DrewReese "logging in the render function is an unintentional side effect and doesn't necessarily correlate to any actual rendering to the DOM during React's "commit phase", i.e. the "expensive" part" - in a table library, executing the render function for every single item (in a list of potentially thousands) is expensive in itself, regardless of what React does to the DOM (or not). Calling the row render function for every row when just one item changes (e.g. when the checkbox state is toggled) is infeasibly costly.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @DrewReese
  • Single line (0.5):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: Bergi

79809296

Date: 2025-11-04 19:01:16
Score: 2
Natty:
Report link

Thanks! Do you want to write an answer? I'll accept it. Otherwise I'll write up my own.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Paul A Jungwirth

79809293

Date: 2025-11-04 19:00:16
Score: 2.5
Natty:
Report link

Apart from the above answers, another thing to make sure is, if s3 bucket has server side encryption with KMS, in account B, and the access is originated from account A, make sure the principal in account A has access to that KMS, and the KMS's resource based policy allows it. Ref

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

79809282

Date: 2025-11-04 18:46:12
Score: 0.5
Natty:
Report link
 var outputConfig = new KnowledgeAgentOutputConfiguration
 {
     Modality = KnowledgeAgentOutputConfigurationModality.AnswerSynthesis,
     IncludeActivity = true
 };

  var agent = new KnowledgeAgent(
      name: "agent",
      models: new[] { agentModel },
      knowledgeSources: new[] { knowledgeSourceReference }
  )
  {
      OutputConfiguration = outputConfig
  }; 

Based on the code I was able to see LLM-generated response

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

79809273

Date: 2025-11-04 18:34:09
Score: 3.5
Natty:
Report link

You can change the 120-character limit of PyCharm for both the Project and the Default schemes as seen in the image below.

PyCharm Settings

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

79809268

Date: 2025-11-04 18:31:07
Score: 4
Natty: 5
Report link

I join to this debate in 2025 almost 2026.
I have a main function which calls many other functions. Each function is in a file separated from the main function.

lets say the following

main.py
variable1 = 123
variable2 = 1435
from utilsfolder.function_one import function_one
result_one = function_one (variable1, variable2)
from anotherfolder.function_two import function_two
result_two = function_two(variable1,result)
from utilsfolder.function_three import function_three
result_three = function_three(result,variable1, variable2)
print (f"The final result is {result_three}")

So I want to run the code up to function_two and then depure function_three since I notice that function_three on line 50 is having some issue that I want to understand.

My objective is to run the code up to result_two then stop!
Run function three as a new depuration and top at line 49... understand the problem, fix it and then exit that secondary depuration... keep running the first depuration

how can I do this secundary depuration?

Is this even possible with SPYDER or VSCODE?

Best regards my friends :D

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Blacklisted phrase (0.5): how can I
  • Blacklisted phrase (1): can I do
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user3427034

79809252

Date: 2025-11-04 18:14:03
Score: 2.5
Natty:
Report link

@J-Earls Prefer the generator function (using yield) over returning a generator expression, since generator expressions are anonymous. E.g. if there's an error, then in the traceback you get matching_keys (name) instead of <genexpr> (no name). Cf are named lambdas Pythonic?

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

79809251

Date: 2025-11-04 18:13:02
Score: 2
Natty:
Report link

A lot has changed since the last answer has been written to this question. Google provided only web file picker and it does not work anymore in the webview on mobile. So, if you would face this issue, the best place to find the latest updates for it, I'd recommend is here - https://issuetracker.google.com/issues/322267485

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

79809241

Date: 2025-11-04 18:05:59
Score: 0.5
Natty:
Report link

After a long time, inner1d was deprecated and removed. But Numpy 2.0 came with vecdot.
This is the speed comparison, following Nico Schlömer's answer.
perfplot result

relative perfplot result

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

79809232

Date: 2025-11-04 17:55:57
Score: 1
Natty:
Report link

are you looking for something like a list comprehension or generator expression?

from typing import Iterator
def matching_keys(d: dict[tuple[int,int], int], n:int) -> Iterator[tuple[int,int]]:
    return (
        keypair
        for keypair in d
        if keypair[0] == n
    )
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: J Earls

79809223

Date: 2025-11-04 17:45:55
Score: 1
Natty:
Report link

For Redhat Servers use the following

### Download and save ssl cert to a file dockerhub.crt ###

# echo | openssl s_client -showcerts -servername registry-1.docker.io -connect registry-1.docker.io:443 2>/dev/null | \awk '/-----BEGIN CERTIFICATE-----/,/-----END CERTIFICATE-----/' > dockerhub.crt

the local TLS files should be kept in /etc/pki/ca-trust/source/anchors so copy the dockerhub.crt file to anchors

# cp dockerhub.crt /etc/pki/ca-trust/source/anchors

then use update command to update the same

# update-ca-trust extract

update-ca-trust extract tool merges all of this into the extracted output files under:

/etc/pki/ca-trust/extracted

restart your docker service .

Done

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

79809204

Date: 2025-11-04 17:23:50
Score: 1.5
Natty:
Report link

Thanks for your question. To attract the most helpful answers, we need a little more context to guide the conversation.

Please edit your post to add more detail and context. Examples of things you may want to include:

This context is vital for separating high-value strategic advice from general opinion. Remember, our goal is to inspire answers that explain why a recommendation fits a specific context. That said, if you're experiencing a truly unique troubleshooting or debugging issue with a minimally reproducible example, you may want to re-ask your question using that question type.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Lauren Ipsum

79809194

Date: 2025-11-04 17:13:47
Score: 1
Natty:
Report link

Here is my take if you want to avoid slicing the string at each level.


def palindrome(s, i=0, j=None):
  if j == None:
    j = len(s) - 1

  if i > j:
    return True
    
  return s[i] == s[j] and palindrome(s, i + 1, j - 1)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Anthony

79809180

Date: 2025-11-04 16:58:44
Score: 3
Natty:
Report link

For the operational data to work, you'd enter {ITEM.VALUE}. If you have multiple items in your expression, use {ITEM.VALUE[x]} where x is the order of the item you want to display.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Brandon E.M. Savage

79809165

Date: 2025-11-04 16:47:41
Score: 2.5
Natty:
Report link

psychengine_d19f6.rar

1 Can not open /uri/com.android.providers.downloads.documents/document/msf%3A1000113514$$/psychengine_d19f6.rar

2 No such file or directo

ry

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Leonida Acuña

79809159

Date: 2025-11-04 16:43:39
Score: 2
Natty:
Report link

It looks like having the policy Hide Microsoft cloud-based file locations in the Backstage view set to 4294967295 (all optional services disabled) was indeed the issue. Changed to 233 (only allow ThisPC and Recent Places), waited about 90 minutes for cloud policy to refresh, and restarted Excel, and now I'm able to see Recent in the Save As menu.

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

79809151

Date: 2025-11-04 16:32:37
Score: 2
Natty:
Report link

It turns out the issue is that JavaScriptValue cannot be used in an AsyncFunction. From the documentation: "Note that using JavaScript-specific types is restricted to synchronous functions" (https://docs.expo.dev/modules/module-api/). Instead, a Record should be used.

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

79809132

Date: 2025-11-04 16:12:33
Score: 1
Natty:
Report link

Testing against the code block from the regex101 link in VS code, it seems like the first section of the regex is unnecessary. The text can be matched by just using [^(]+\(\n

enter image description here

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

79809127

Date: 2025-11-04 16:05:31
Score: 1.5
Natty:
Report link

autogen-agentchat is seperate module from ag2.

https://pypi.org/project/ag2/

pip install ag2 will fix the importings

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

79809121

Date: 2025-11-04 16:04:30
Score: 1
Natty:
Report link

I agree with choroba's response, and would add a note of support to look at Template::Toolkit. Template::Toolkit is one of the most elegant templating solutions out there for a programmer that needs to output HTML. I say this from long experience with many libraries, languages, and operating systems. I have often considered porting TT to C or Python. Good luck with your project.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
Posted by: codonnell

79809120

Date: 2025-11-04 16:03:30
Score: 7
Natty:
Report link

@Paulw11 Thanks for replying, one more question:

So my iOS developer group can't directly use the Proximity Reader framework? Is a PSP that provides the required SDK absolutely necessary?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Paulw11
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Mauriho Enrique Escurra Colqui

79809113

Date: 2025-11-04 16:01:29
Score: 0.5
Natty:
Report link

This line worked for me :

env XDG_RUNTIME_DIR=/run/user/1000 wlr-randr --output HDMI-A-1 --off

Hope it helps...

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yann Deydier

79809109

Date: 2025-11-04 15:55:28
Score: 1.5
Natty:
Report link

Yes, by default, Quarkus uses the prod profile during build time:

https://quarkus.io/guides/config-reference#build-time-configuration

For dev you can override it as you did.

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

79809107

Date: 2025-11-04 15:53:27
Score: 1
Natty:
Report link

{\rtf1\fbidis\ansi\ansicpg1256\deff0\deflang1065{\fonttbl{\f0\fnil\fcharset178 B Nazanin;}{\f1\fnil\fcharset0 B Nazanin;}{\f2\fnil\fprq2\fcharset178 B Nazanin;}{\f3\fnil\fcharset178 IRANSans;}{\f4\fnil\fcharset0 IRANSans;}{\f5\fnil\fcharset178 Impact;}{\f6\fnil\fcharset178 B Yekan;}{\f7\fnil\fcharset0 B Yekan;}{\f8\fnil\fcharset178 B Zar;}{\f9\fnil\fcharset0 B Zar;}{\f10\fnil\fcharset178 B Titr;}{\f11\fnil\fcharset0 ;}{\f12\fswiss\fprq2\fcharset0 Calibri;}{\f13\fswiss\fprq2\fcharset178 Arial Unicode MS;}{\f14\fnil\fcharset0 Nazanin;}{\f15\fnil\fcharset178 Nazanin;}{\f16\fnil\fcharset2 Symbol;}}

{\colortbl ;\red51\green153\blue255;\red255\green0\blue0;\red200\green200\blue200;}

\viewkind4\uc1\pard\rtlpar\qr\ul\b\f0\rtlch\fs22\'e3\'c7\'cf\'e5 1- \'e3\'e6\'d6\'e6\'da\cf1\par

\cf0\ulnone\'cc\'c7\'da\'e1 \'c7\'d2 \'c8\'c7\'e4\'98 \'cf\'d1\'ce\'e6\'c7\'d3\'ca \'e4\'e3\'e6\'cf \'e3\'c8\'e1\'db (\'c7\'d1\'d2) #\f1\ltrch F#ARZITRNSAMNT#F\f0\rtlch # \b0\fs20 (\'e3\'c8\'e1\'db \'e3\'e6\'d1\'cf \'cf\'d1\'ce\'e6\'c7\'d3\'ca \'cc\'e5\'ca \'c7\'e4\'ca\'de\'c7\'e1)\b\fs22 \'cd\'e6\'c7\'e1\'e5 \'c7\'d2 \'e3\'cd\'e1 \'cb\'c8\'ca \'d3\'dd\'c7\'d1\'d4/ \'cb\'c8\'ca \'d3\'dd\'c7\'d1\'d4 \'c8\'d1\'e6\'c7\'ca \'c7\'d3\'e4\'c7\'cf\u1740? \'d4\'e3\'c7\'d1\'e5 #\f1\ltrch F#LCNUMBER#F\f0\rtlch # \'e3\'e6\'d1\'ce #\f1\ltrch F#OPENINGDATE#F\f0\rtlch # \'c8\'e5 \'e3\'c8\'e1\'db (\'c7\'d1\'d2 #\f1\ltrch F#ARZIOPENAMNT#F\f0\rtlch # #\f1\ltrch F#ARZIARZTYPE#F\f0\rtlch # (\b0\fs20\'98\'e1 \'e3\'c8\'e1\'db \'cb\'c8\'ca \'d3\'dd\'c7\'d1\'d4/ \'cb\'c8\'ca \'d3\'dd\'c7\'d1\'d4 \'c8\'d1\'e6\'c7\'ca \'c7\'d3\'e4\'c7\'cf\u1740?\b\fs22 ) \'d1\'c7 \'cf\'d1 \'e6\'cc\'e5 #\f1\ltrch F#BNFCRYNAME#F\f0\rtlch # \'c8\'e5 \'da\'e4\'e6\'c7\'e4 \'d0\u1740?\'e4\'dd\'da \'cd\'e6\'c7\'e1\'e5 \'98\'e5 \'cf\'d1 \'c8\'d1\'90 \'ca\'de\'c7\'d6\'c7\u1740? \'c7\'d1\'d3\'c7\'e1 \'cd\'e6\'c7\'e1\'e5 (\'81\u1740?\'e6\'d3\'ca \'e1\'c7\u1740?\'e4\'dd\'98 \'c7\u1740?\'e4 \'de\'d1\'c7\'d1\'cf\'c7\'cf) \'e4\'c7\'e3 \'e6 \'e3\'d4\'ce\'d5\'c7\'ca \'c7\'e6 \'c8\'e5 \'d4\'d1\'cd \'dd\'e6\'de \'de\u1740?\'cf \'90\'d1\'cf\u1740?\'cf\'e5 \'c7\'d3\'ca \'e6 \'cf\'d1 \'c7\u1740?\'e4 \'de\'d1\'c7\'d1\'cf\'c7\'cf \'d0\u1740?\'e4\'dd\'da \'e4\'c7\'e3\u1740?\'cf\'e5 \'e3\u1740? \'d4\'e6\'cf \'81\'d1\'cf\'c7\'ce\'ca \'e4\'e3\'c7\u1740?\'cf \'e6 \'c7\'d3\'e4\'c7\'cf \'cd\'e3\'e1 \'cf\'d1\u1740?\'c7\'dd\'ca\u1740? \'d1\'c7 \'cf\'d1 \'e3\'cd\'e1 \'c7\'d1\'d3\'c7\'e1 \'cd\'e6\'c7\'e1\'e5 \'ca\'d3\'e1\u1740?\'e3 \'cc\'c7\'da\'e1 \'e4\'e3\'c7\u1740?\'cf \'e6 \'c8\'c7\'e4\'98 \'d8\'c8\'de \'d4\'d1\'c7\u1740?\'d8 \'e6 \'e3\'e4\'cf\'d1\'cc\'c7\'ca \'c7\u1740?\'e4 \'de\'d1\'c7\'d1\'cf\'c7\'cf \'c8\'c7 \'ca\'de\'c7\'d6\'c7\u1740? \'cc\'c7\'da\'e1 \'c8\'e5 \'d4\'d1\'cd \'c7\u1740?\'e4 \'e3\'c7\'cf\'e5 \'e3\'e6\'c7\'dd\'de\'ca \'e4\'e3\'e6\'cf\'e5 \'c7\'d3\'ca.\f2\par

\f3\'ca\'c8\'d5\'d1\'e5: \'ca\'db\u1740?\u1740?\'d1 \'d0\u1740?\'e4\'dd\'da \'cd\'e6\'c7\'e1\'e5 \'c8\'c7 \'cf\'d1\'ce\'e6\'c7\'d3\'ca \'98\'ca\'c8\u1740? \'cc\'c7\'da\'e1 \'e6 \'c8\'c7 \'e3\'d3\'c6\'e6\'e1\u1740?\'ca \'ce\'e6\'cf \'cc\'c7\'da\'e1 \'e3\'d4\'e3\'e6\'e1 \'e3\'dd\'c7\'cf \'c7\u1740?\'e4 \'de\'d1\'c7\'d1\'cf\'c7\'cf \'e3\u1740? \'c8\'c7\'d4\'cf.\par

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

79809105

Date: 2025-11-04 15:51:27
Score: 0.5
Natty:
Report link

For increase visibility and because i was affected by the same issue, I allow myself to reference the solution from the comments in a dedicated answer:

.NET 9 enables Control-flow Enforcement Technology (CET) by default for managed processes. Visual Studio’s current debugger has compatibility issues with CET, causing the fatal error. Workaround: Disable CET for your app by adding this to your .csproj:

<PropertyGroup>  
   <CetCompat>false</CetCompat>
</PropertyGroup>

This allows debugging to work again.

All credits to @Chad Decker for sharing his solution!

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

79809099

Date: 2025-11-04 15:44:25
Score: 1.5
Natty:
Report link

I see, I unwillingly let people think the main point was about timing or performance. It was not. I'm going to delete the Q, and eventually ask more specific.

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

79809095

Date: 2025-11-04 15:39:24
Score: 4
Natty:
Report link

Thanks. I don't understand how scaleworks. Setting scale=6.0 looks good, but scale=2.0leads to huge vectors and scale=12.0leads to very small.... So the greater the scaleis the smaller the vectors...

What is scalerelated to?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Looks like a comment (1):
Posted by: Andrew

79809094

Date: 2025-11-04 15:39:24
Score: 2
Natty:
Report link

All is prety simple:

2 case:

A) Using webview and just url:

String videoUrl = "https://www.youtube.com/embed/"+url;

Map<String, String> headers = new HashMap<>();

headers.put("Referer", "https://your_site_here.com/");

webView.loadUrl(videoUrl, headers);

B) Using webview and html file with iframe and so one:

Change from

webView.loadData(htmlContent, "text/html; charset=utf-8", null);

TO

webView.loadDataWithBaseURL("https://www.your_site_here.com/", htmlContent, "text/html", "charset=utf-8", null);

P.S: Instead of 'your_site' is possible to use something like this: "https://"+this.getPackageName()

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vadim Iordachi

79809090

Date: 2025-11-04 15:32:22
Score: 2
Natty:
Report link

Try running this command in Console

aws amplify start-deployment --app-id YOURAPPID --branch-name YOURBRANCHNAME --source-url s3://URL/ --source-url-type BUCKET_PREFIX

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

79809077

Date: 2025-11-04 15:19:19
Score: 1.5
Natty:
Report link

I am gonna answer it since I have also struggled. You can get your cloud id by supplying:

https://<YOUR_TENANT>.atlassian.net/_edge/tenant_info

on your browser.
After that, you will get a single JSON with your cloudId

{"cloudId":"1234567890"}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Anon

79809071

Date: 2025-11-04 15:11:17
Score: 0.5
Natty:
Report link

Creation and use of filters is documented in the product documentation in the Gosu Reference Guide under the path "Querying and connecting to databases ==> Query builder APIs ==> Working with results ==> Filtering results with standard query filters". Here's a link to the doc but you'll need a GW Community login to access it.

https://docs.guidewire.com/is/gosu/gosu/topics/querybuilderapi/c_ba2592202.html

You can add your filter to the enhancement but in any case you'll need to add a filter option on the target screen so you might just define it inline. The hard work is in defining the clause you want to add to the query and that can be complicated. I'd suggest using the scratchpad to develop and test your filter clause. Details of adding query clauses of various complexities are in the same area of the documentation. I'm not certain you can express your logic entirely as you've described it so you might need to consider the best way to express that logic.

Good luck!

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

79809070

Date: 2025-11-04 15:11:17
Score: 5
Natty:
Report link

You can check out this open source repo: https://github.com/mrharel/facebook_ads_comments_analysis

And more about it in this LinkedIn post: https://www.linkedin.com/pulse/meta-ads-comment-extraction-sentiment-analysis-amir-harel-fxsae

Reasons:
  • Blacklisted phrase (1): this Link
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
Posted by: Amir

79809060

Date: 2025-11-04 15:00:13
Score: 9
Natty: 7.5
Report link

I have same problem, have u reéolved it yet?

Reasons:
  • Blacklisted phrase (1): I have same problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MInh Thuấn Phạm

79809059

Date: 2025-11-04 14:59:13
Score: 1
Natty:
Report link
{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@/*": ["./resources/js/*"],
      "~/*": ["./*"]
    },
    "moduleResolution": "node"
  },
  "include": [
    "resources/js/**/*"
  ],
  "exclude": [
    "node_modules",
    "vendor"
  ]
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abdulaziz Odilov

79809050

Date: 2025-11-04 14:52:11
Score: 0.5
Natty:
Report link

I have same issues, when i run via xcode, it is starting to copying shared cache symbols. Looks like when you upgrade to a new iOS, it needs to copy those files first. When having this via wireless, it might take too much time and idle out.

My solution:

  1. Did you update iOS recently?

  2. Have you downloaded the latest xcode files? (Open xcode after update macOS)

    1. Yes, than start your app first via xcode to get the new symbols copied over
Reasons:
  • Whitelisted phrase (-2): solution:
  • No code block (0.5):
  • Me too answer (2.5): I have same issue
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: Cyber

79809047

Date: 2025-11-04 14:50:11
Score: 3
Natty:
Report link

Thank you all.

I had installed all java extensions necessary but still did not work. This is a gradle project and hence I had to add ./gradle/wrapper/wrapper.properties with the necessary properties. VS Code picked up the file and everything worked flawlessly.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: Sannu

79809043

Date: 2025-11-04 14:46:09
Score: 1.5
Natty:
Report link

Version 3.0

• Incorporated @FamousM1 change for displaying the @ChannelName.

• The manifest.json is now compatible for use as an extension with Firefox Developer Edition in addition to Google Chrome.

• There's a new Channel Collaboration format for a video where the channel won't just show as one channel name but will show as "Channel 1 and Channel 2". Added compatibility to show those channel names in the title as well where previously it would not work.

• The way Channel Collaboration videos work do not support pulling the @ChannelName from the link since with these, it opens an overlay window showing both channels and the links do not use the @ChannelName styles. I was able to pull the primary @ChannelName from the video description instead.

• Expanded the features so on Channel pages it will also show the @ChannelName and additionally will show which current tab you are on. Ex: Home, Videos, Shorts, Podcasts, Playlists, Posts, Store and it will add " - Search" when viewing channel search results.

• Searching Youtube will also just display the Searched text and adds " - Search".

• Expanded the features to viewing a Playlist page, adding the Channel Name and @ChannelName.

• Expanded the features to viewing a video contained in a Playlist, adding the current videos's Channel Name and @ChannelName along with the playlist name and the playist owner's Channel Name and @ChannelName.

Here's version 3

`manifest.json`:

{
  "name": "YouTube Channel Name",
  "version": "3.0",
  "description": "Display YouTube Channel Name",
  "manifest_version": 3,
  "browser_specific_settings": {
    "gecko": {
        "id": "YouTubeChannelName@display"
    }
  },
  "content_scripts": [ {
      "matches": ["https://www.youtube.com/*"],
      "js": ["displayChannelName.js"]
    } ]
}

displayChannelName.js:

    console.log("displayChannelName started");
    let currTitle = "";
    window.SameCount = 0;
    
    function updateTitle(node) {
    
        if (window.location.href.indexOf("/watch?v=") > -1) {
            if (document.title != currTitle) {
                if (node == undefined) {
                    channelName = (function () { return; })();
                    node = document.getElementById("above-the-fold");
                };
                updateTitletimeout = setTimeout(function () { // wait a little in case title changes before the node reloads
                videoTitle = document.title;
                videoTitle = videoTitle.replace(' - YouTube','');
                    if(node) {
                        channelA = node.querySelector('#channel-name #text a');
                        channelB = node.querySelector('#owner #attributed-channel-name a');
                        channelCollab = node.querySelector('#description-inner ytd-video-description-infocards-section-renderer a#header');
                        var channelName = "";
                        if(channelA) {
                            var channelNameA = channelA.innerHTML;
                            var channelUrlA = channelA.href.split('/').pop();
                        }
                        if(channelNameA == null) {
                            if(channelB){
                                var channelNameB = channelB.innerHTML;
                                var channelUrlB = channelCollab.href.split('/').pop();
    
                                const channelNameBcleantemp = channelNameB.replace(/<span[^>]*>.*?<\/span>/g, "");
                                const channelNameBclean = channelNameBcleantemp.replace(/<\/span>/g, "");
    
                                channelName = channelNameBclean;    
                                channelUrl = " (" + channelUrlB + ")";          
                            }
                        } else {
                            channelName = channelNameA;
                            channelUrl = " (" + channelUrlA + ")";  
                        }
                        
                        if (window.location.href.indexOf("list") > -1) {
                            node = document.getElementById("playlist");
                            var playlist = node.querySelector('#publisher-container yt-formatted-string.publisher > a');
                            var playlistName = node.querySelector('#header-description h3:nth-child(1) yt-formatted-string.title > a');
    
                            if(playlistName) {
                                var inplaylistName = playlistName.innerHTML;
                            }
                            
                            if(playlist) {
                                var playlistchannelName = playlist.innerHTML;
                                var playlistchannelUrl = playlist.href.split('/').pop();
                            }
                            channelUrl =  " - " + inplaylistName + " - " + playlistchannelName + " (" + playlistchannelUrl + ")";
                        }
                        
                        if (channelName != "") {
                            if(channelName) {
                                if (videoTitle.indexOf(" - " + channelName + channelUrl) === -1) {
                                    videoTitle += " - " + channelName + channelUrl;
                                    console.log('displayChannelName - channelName = ' + channelName + channelUrl);
                                    console.log("displayChannelName - updateTitle - " + document.title + " -> " + videoTitle);
                                    window.SameCount = 0;
                                }
                            }   
                        }
    
                        document.title = videoTitle;
                        currTitle = document.title;
                    }
                    currTitle = document.title;
                }, 500);
            } else {
                window.SameCount = window.SameCount + 1;
                if (window.SameCount >= 1) {
                    console.log("displayChannelName stopped");
                    clearTimeout(updateTitletimeout);
                } else {
                    console.log("displayChannelName Title Same - " + window.SameCount);
                }
            }
        }
        
        
        if (window.location.href.indexOf("@") > -1 || window.location.href.indexOf("channel") > -1  ) {
            if (document.title != currTitle) {
                if (node == undefined) {
                    channelName = (function () { return; })();
                    node = document.getElementById("page-manager");
                };
                updateTitletimeout = setTimeout(function () { // wait a little in case title changes before the node reloads
                    videoTitle = document.title;
                    videoTitle = videoTitle.replace(' - YouTube','');
                    channelID = node.querySelector('#page-header div.yt-page-header-view-model__page-header-headline > div > yt-content-metadata-view-model > div:nth-of-type(1) > span > span');
                    channelTab = node.querySelector('#tabsContainer div.yt-tab-shape__tab--tab-selected');
                    var channelUrlID = "";
                    var channelTabName = "";
                    if (window.location.href.indexOf("search") > -1) {
                        channelTabName = "Search";
                    }
                    if(channelID) {
                        channelUrlID = channelID.innerHTML;
                    }
                    if(channelTab) {
                        channelTabName = channelTab.innerHTML;
                    }
                    console.log('displayChannelName - channelName = ' + videoTitle);
                    if (channelUrlID != "") {
                            if (videoTitle.indexOf(" - " + channelTabName + " (" + channelUrlID + ")") === -1) {
                                videoTitle += " - " + channelTabName + " (" + channelUrlID + ")";
                                console.log('displayChannelName - channelTab = '+ channelTabName);
                                console.log('displayChannelName - channelUrl = '+ channelUrlID);
                                console.log("displayChannelName - updateTitle - " + document.title + " -> " + videoTitle);
                                window.SameCount = 0;
                            }
                        }
                    
                    document.title = videoTitle;
                    currTitle = document.title;
                }, 500);
            } else {
                window.SameCount = window.SameCount + 1;
                if (window.SameCount >= 1) {
                    console.log("displayChannelName stopped");
                    clearTimeout(updateTitletimeout);
                } else {
                    console.log("displayChannelName Title Same - " + window.SameCount);
                }
            }
        }
        
        if (window.location.href.indexOf("playlist") > -1) {
            if (document.title != currTitle) {
                if (node == undefined) {
                    channelName = (function () { return; })();
                    node = document.getElementById("page-manager");
                };
                updateTitletimeout = setTimeout(function () { // wait a little in case title changes before the node reloads
                videoTitle = document.title;
                videoTitle = videoTitle.replace(' - YouTube','');
                    if(node) {
                        channelPlay = node.querySelector('div.yt-page-header-view-model__scroll-container > div > div.yt-page-header-view-model__page-header-headline > div > yt-content-metadata-view-model > div:nth-of-type(1) > yt-avatar-stack-view-model > span > span > a');
                        var channelPlayName = "";
                        if(channelPlay) {
                            var channelPlayName = channelPlay.innerHTML;
                            channelPlayName = channelPlayName.replace('by ','');
                            var channelPlayUrl = channelPlay.href.split('/').pop();
                        }
                        
                        channelName = channelPlayName;
                        channelUrl = channelPlayUrl;
                        
                        if (channelName != "") {
                            if(channelName) {
                                if (videoTitle.indexOf(" - " + channelName + " (" + channelUrl + ")") === -1) {
                                    videoTitle += " - " + channelName + " (" + channelUrl + ")";
                                    console.log('displayChannelName - channelName = ' + channelName);
                                    console.log('displayChannelName - channelUrl = '+ channelUrl);
                                    console.log("displayChannelName - updateTitle - " + document.title + " -> " + videoTitle);
                                    window.SameCount = 0;
                                }
                            }   
                        }
    
                        document.title = videoTitle;
                        currTitle = document.title;
                    }
                    currTitle = document.title;
                }, 500);
            } else {
                window.SameCount = window.SameCount + 1;
                if (window.SameCount >= 1) {
                    console.log("displayChannelName stopped");
                    clearTimeout(updateTitletimeout);
                } else {
                    console.log("displayChannelName Title Same - " + window.SameCount);
                }
            }
        }
        
        
        if (window.location.href.indexOf("search_query") > -1) {
            if (document.title != currTitle) {
                updateTitletimeout = setTimeout(function () { // wait a little in case title changes before the node reloads
                    videoTitle = document.title;
                    videoTitle = videoTitle.replace(' - YouTube','');
                    videoTitle += " - Search";
                    console.log("displayChannelName - updateTitle - " + document.title + " -> " + videoTitle);
                    window.SameCount = 0;
                    document.title = videoTitle;
                    currTitle = document.title;
                }, 500);
            } else {
                window.SameCount = window.SameCount + 1;
                if (window.SameCount >= 1) {
                    console.log("displayChannelName stopped");
                    clearTimeout(updateTitletimeout);
                } else {
                    console.log("displayChannelName Title Same - " + window.SameCount);
                }
            }
        }
    
    };
    
    
    
    
    
    function waitForTitleElement() {
      return new Promise(resolve => {
        if (document.querySelector('title')) {
          return resolve(document.querySelector('title'));
        }
    
        const observer = new MutationObserver(mutations => {
          if (document.querySelector('title')) {
            observer.disconnect();
            resolve(document.querySelector('title'));
          }
        });
    
        observer.observe(document.body, { childList: true, subtree: true });
      });
    }
    
    if (window.location.href.indexOf("youtube.com") > -1) {
    
        waitForTitleElement().then((titleElement) => {
            console.log("displayChannelName Title is ready:", titleElement);
            
            new MutationObserver(function (mutations) { 
                updateTitle(undefined);
            }).observe(
                document.querySelector('title'),
                { subtree: true, characterData: true, childList: true }
            );
        });
    }
Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @FamousM1
  • User mentioned (0): @ChannelName
  • User mentioned (0): @ChannelName
  • User mentioned (0): @ChannelName
  • User mentioned (0): @ChannelName
  • User mentioned (0): @ChannelName
  • User mentioned (0): @ChannelName
  • User mentioned (0): @ChannelName
  • User mentioned (0): @ChannelName
  • Low reputation (1):
Posted by: Endymion0000

79809033

Date: 2025-11-04 14:37:07
Score: 1
Natty:
Report link

in Delphi 2007

function TComboBox.DoMouseWheel(Shift: TShiftState; WheelDelta: Integer;
  MousePos: TPoint): Boolean;
begin
  if FUseMouseWheel then
    Result := inherited DoMouseWheel(Shift, WheelDelta, MousePos)
  else
    Result := True;
end;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Stoyan Toskov

79809031

Date: 2025-11-04 14:37:07
Score: 2
Natty:
Report link

This worked for me Thanks, just renamed the 18.0 folders

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): This worked for me
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user1932109

79809009

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

@antokhio - thank you for the linked libraries, maybe I can find the solution by studying their code as these libraries (especially use-context-selector) solve exactly the same issue I am confused by right now.

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

79809007

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

So I know this is old but i just came across this in WPF.
where the Visual Class (the class that creates visual items in wpf) is in the System.Windows.Media namespace

the adorner class lives in the System.Windows.Document namespace but inherits from Classes in the System.WIndows.Media namespace.

so im a newbie but Im seeing the microsoft team do this all the time.

Namespaces seem to be just away to organize files not to prototype class inheritance.

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

79809005

Date: 2025-11-04 14:08:57
Score: 4.5
Natty:
Report link

@SherlHohman, I do not know if it is Stack Overflow on my browser, but the "Add a Comment" or "Reply" functionalities are broken on my side, leaving a comment, (like I do now) is my only working solution to get involved in the issue.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @SherlHohman
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Olivier Belhumeur

79809004

Date: 2025-11-04 14:07:57
Score: 3.5
Natty:
Report link

@sparkJ - meaning checkbox won't re-render but the wrapper with the useTableStateRowSelectionContext will. That is a possible solution but I somehow think even this re-render is unnecessary.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @sparkJ
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Wax Cage

79809002

Date: 2025-11-04 14:05:56
Score: 1.5
Natty:
Report link

Windows's tree does not support this.

Linux tree can do this (through WSL or ported installation)

tree -P *.docx
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abhishek Singh

79809001

Date: 2025-11-04 14:05:55
Score: 7.5
Natty:
Report link

@Drew Reese - I have answered your questions in the body of the post. As for the topic title - I believe this is the essence of my problem - how to force component to only update when "item in the context list connected to the component" changes - is added or removed. I am opened to improve the clarity of my post in any way, please give me more guidance if you see any.

Reasons:
  • RegEx Blacklisted phrase (2.5): please give me
  • RegEx Blacklisted phrase (1): I am opened to improve the clarity of my post in any way, please
  • No code block (0.5):
  • User mentioned (1): @Drew
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: Wax Cage

79808993

Date: 2025-11-04 13:56:53
Score: 6
Natty:
Report link

@Gabe Sechan thanks, but I'd rather a free one. It's a FOSS app I'm contributing on. I highly doubt they want/can accept paid library

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

79808990

Date: 2025-11-04 13:51:52
Score: 1
Natty:
Report link

Thanks  daggett: I wrapped script2 as a method and passed script1 as parameter in script2

pipline.groovy


node('Node1'){
 def loadedScript1 = load('./Script1.groovy')
 loadedScript1()
 //..some code
 def loadedScript2 = load('./Script2.groovy')
 loadedScript2.script2(loadedScript1)
}

Script1.groovy

def script1(){
 println 'Script1 works'
 //..some code
}
return this;


Script2.groovy

def script2(Script script1){
 println 'Script2 works'
 //..some code
 script1()
}
return this;
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: diagramd 2020

79808982

Date: 2025-11-04 13:46:51
Score: 1
Natty:
Report link

The file structure is correct.

You just need to use the full URL in the fetch request:

const res = await fetch("http://localhost:3000/api/contact", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify(data),
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rasul Navir

79808980

Date: 2025-11-04 13:45:50
Score: 0.5
Natty:
Report link

Just expanding on @bfavaretto answer to include a variant using Map objects.

const listeners = new Map(); // Key value Map structure

for(/* ... */) {
   (function outerfunction(i, f) {
        const listener = function(e) { 
            responsefunction(e, f, i); 
        };

        elementname.addEventListener("click", listener);
        listeners.set(elementname.id, listener); // use meaningful keys
   })(parameter1, parameter2);
}

// Removing the listener later:
elementname.removeEventListener("click", listeners.get(elementname.id));
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @bfavaretto
  • Low reputation (0.5):
Posted by: remedy_man