79678284

Date: 2025-06-24 22:29:53
Score: 6.5 🚩
Natty:
Report link

I have the same problem but with List. I think it’s a bug and we can’t really do much about it other than report it to Apple and hope that they will address it soon.

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: KrówQa

79678273

Date: 2025-06-24 22:16:49
Score: 11.5 🚩
Natty:
Report link

I have the same problem ....... Have you found a solution?

Thanks

Jon

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I have the same problem
  • RegEx Blacklisted phrase (2.5): Have you found a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Jon Little

79678266

Date: 2025-06-24 22:08:46
Score: 10 🚩
Natty: 5.5
Report link

Have you been able to figure out the problem yet?

Reasons:
  • Blacklisted phrase (1.5): Have you been able to
  • RegEx Blacklisted phrase (3): Have you been able to figure out
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nhan Cao

79678202

Date: 2025-06-24 20:52:26
Score: 4.5
Natty: 4
Report link

<iframe src="javascript:while(3===3){alert('XSS!')}"></iframe>

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anonymous

79678107

Date: 2025-06-24 19:28:03
Score: 8
Natty: 7.5
Report link

have you found a solution for this issue ?

Reasons:
  • RegEx Blacklisted phrase (2.5): have you found a solution for this issue
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ahmed Karmous

79678046

Date: 2025-06-24 18:23:46
Score: 10 🚩
Natty: 5.5
Report link

I am facing the same issue while pushing my node project, what should i do?

Reasons:
  • Blacklisted phrase (2): what should i do
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rupal Porwal

79678044

Date: 2025-06-24 18:22:45
Score: 4
Natty:
Report link

A few things that might help others (including me) assist you better:

1. What Node.js library are you using for NFC communication? (e.g., `nfc-pcsc`)

2. Can you share the APDU commands you’re using to write `PWD`, `PACK`, and `AUTH0`?

3. Is the tag already locked when you try to write?

4. Are you getting any specific error codes or responses from the reader?

Also, have you checked the NTAG213 datasheet? The protection config pages are usually between E3 to E6, and AUTH0 sets the page where protection begins.

If you share some code, I can try to debug or help further.

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you share
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: d. Praveen

79678007

Date: 2025-06-24 17:52:37
Score: 4
Natty: 4.5
Report link

What to do when such a mistake occurs?

MissingPackageManifestError: Could not find one of 'package.json' manifest files in the package
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What to
  • Low reputation (1):
Posted by: Red

79677954

Date: 2025-06-24 17:03:22
Score: 10 🚩
Natty: 4.5
Report link

Did you find the alternative?, cause im having the same problem

Reasons:
  • RegEx Blacklisted phrase (3): Did you find the
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find the
  • Low reputation (1):
Posted by: jhonny gonzalez

79677913

Date: 2025-06-24 16:30:13
Score: 4.5
Natty:
Report link

I've worked on the exact same project with DQN and can offer some insights. I'm typically able to achieve an average reward of 490+ over 100 consecutive episodes, well within a 500-episode training limit. Here's my analysis of your setup.

(A quick note: I can't comment on the hard update part specifically, as I use soft updates, but I believe the following points are the main bottlenecks.)

The Primary Issues Causing Your Slow Training

  1. Your Replay Buffer is far too large.
  2. Your Batch Size is comparatively too small.
  3. Your episode termination condition is extremely lenient.
  4. Your network architecture is overly complex, with too many parameters to train.

1. Your Replay Buffer is Too Large

We generally think a large replay buffer leads to a more uniform sample distribution, which is true to an extent. Even with a FIFO (First-In, First-Out) principle, the distribution remains stable.

However, this comes with significant risks:

  1. It accumulates too many stale experiences. When your model samples from the buffer to learn, it's overwhelmingly likely to draw on old, outdated samples. This severely hinders its ability to learn from recent, more relevant experiences and thus, to improve.

  2. It introduces significant feedback delay. When your target network updates, it immediately collects new experiences from the environment that reflect its current policy. These new, valuable samples are then added to the replay buffer, but they get lost in the vast sea of older experiences. This prevents the model from quickly understanding whether its current policy is effective.

In my experience, a buffer size between 1,000 and 5,000 is more than sufficient to achieve good results in this environment.

2. Your Batch Size is Too Small in Comparison

Generally, a larger batch size provides a more stable and representative sample distribution for each learning step. Imagine if your batch size was 1; the quality and variance of each sample would fluctuate dramatically.

With a massive replay buffer of 100,000, sampling only 32 experiences per step is highly inefficient. Your model has a huge plate of valuable data, but it's only taking tiny bites. This makes it very difficult to absorb the value contained within the buffer.

A good rule of thumb is to scale your batch size with your buffer size. For a buffer of 1,000, a batch size of 32 is reasonable. If you increase the buffer to 2,000, consider a batch size of 64. For a 5,000-sized buffer, 128 could be appropriate. The ratio between your buffer (100,000) and batch size (32) is quite extreme.

3. Your Episode Termination Condition is Too Lenient

The standard for this environment is typically a maximum of 500 steps per episode, after which the episode terminates.

I noticed you set this to 100,000. This is an incredibly high value and makes you overly tolerant of your agent's failures. You're essentially telling it, "Don't worry, you have almost infinite time to try and balance, just get me that 500 score eventually." A stricter termination condition provides a clearer, more urgent learning signal and forces the agent to learn to achieve the goal efficiently.

I stick to the 500-step limit and don't grant any extensions. I expect the agent to stay balanced for the entire duration, or the episode ends. Trust me, the agent is capable of achieving it! Giving it 100,000 steps might be a major contributor to your slow training (unless, of course, your agent has actually learned to survive for 100,000 steps, which would result in-game-breakingly high rewards).

4. Your Network Architecture is Overly Complex

I use only two hidden layers (32 and 64 neurons, respectively), and it works very effectively. You should always start with the simplest possible network and only increase complexity if the simpler model fails to solve the problem. Using 10 hidden layers for a straightforward project like CartPole is excessive.

With so many parameters to learn, your training will be significantly slower and much harder to converge.

Additional Points

  1. Your set of hyperparameters is quite extreme compared to what I've found effective. I'm not sure how you arrived at them, but from an efficiency standpoint, it's often best to start with a set of well-known, proven hyperparameters for the environment you're working on. You can find these in papers, popular GitHub repositories, or tutorials.

  2. You might worry that starting with a good set of hyperparameters will prevent you from learning anything. Don't be. Due to the stochastic nature of RL, even with identical hyperparameters, results can vary based on other small details. There will still be plenty to debug and understand. I would always recommend this approach to save time and avoid unnecessary optimization cycles.

  3. This reinforces a key principle: start simple, then gradually increase complexity. This applies to your network architecture, buffer size, and other parameters.

  4. Finally, I want to say that you've asked a great question. You provided plenty of information, including your own analysis and graphs, which is why I was motivated to give a detailed answer. Even without looking at your code, I believe your hyperparameters are the key issue. Good luck!

Reasons:
  • RegEx Blacklisted phrase (1): can't comment
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (2): urgent
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Foxmir

79677797

Date: 2025-06-24 14:59:47
Score: 4
Natty: 5
Report link

What of those using expo image picker which is the same as android photo picker, am still stuck in this issue for offer two weeks now and is really really frustrating

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What of those
  • Low reputation (1):
Posted by: Kingsley

79677789

Date: 2025-06-24 14:54:45
Score: 10 🚩
Natty: 6.5
Report link

Have you used the sinc interpolation method to solve differential equations? I need help

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2.5): I need help
  • RegEx Blacklisted phrase (1.5): solve differential equations?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MOHAMED EL BOURGHI

79677762

Date: 2025-06-24 14:38:40
Score: 5
Natty: 5.5
Report link

PDF function (experimental) in PowerApps can be used to generated a pdf. However it does not support Maps, embedded PowerBI's and nested galleries. Guess that could be incorporated in the ppt?

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: user30881646

79677665

Date: 2025-06-24 13:33:19
Score: 5
Natty:
Report link

This blog is informational.

IF YOU WANT TO MAKE ONLINE EARNING

Visit our website : https://www.playmaxx.club/

TRUSTED WORK

Reasons:
  • Blacklisted phrase (1): This blog
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: PLAYMAX

79677614

Date: 2025-06-24 13:05:10
Score: 6 🚩
Natty: 5.5
Report link

is the reCaptcha issue resolved after downloading it from google play release?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): is the
  • Low reputation (1):
Posted by: Karan Bhanushali

79677607

Date: 2025-06-24 12:59:07
Score: 5
Natty:
Report link

@JvdV, your solution works, but it also returns duplicate values. Would you please modify the formula to remove duplicate values.

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

79677571

Date: 2025-06-24 12:31:58
Score: 5
Natty: 4
Report link

Is it possible to rotate the annotation? I have searched through documentation, gallery and answers here and I wasn't able to find any hint.

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: Dickson Souza

79677434

Date: 2025-06-24 10:47:28
Score: 7.5
Natty: 7.5
Report link

I had problem here, after changing to LF it works. But worked locally using docker desktop, when pushed same image to ACR and pulled the image in deployement file, it fails. can you explain why?

Reasons:
  • Blacklisted phrase (0.5): why?
  • RegEx Blacklisted phrase (2.5): can you explain
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sai kumar

79677432

Date: 2025-06-24 10:47:27
Score: 8 🚩
Natty: 4
Report link

I am new to drones and QGroundControl, so if I make any mistakes or ask obvious questions, I hope you can forgive me and point me in the right direction I am currently trying to customize the QGroundControl UI for Android. I want to redesign the entire interface with a more modern and touch-friendly look. I have been going through the developer documentation on the QGroundControl website, but honestly, I have been stuck for the past two weeks. I still haven't figured out which version of Qt to use or where exactly to get the source code for a setup that works well with QGroundControl development on Android. Any help or guidance regarding customizing Qgroundcontrol for Android would mean a lot to me. I would appreciate any help from you. Thanks a lot.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): Any help
  • Blacklisted phrase (1): any help
  • Blacklisted phrase (1.5): would appreciate
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (1.5): I am new
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hoàn Bùi

79677409

Date: 2025-06-24 10:31:22
Score: 4
Natty:
Report link

Thank you Koen for your response. It works like a charm. I confirm that it resolved my query.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bhavin Adhvaryu

79677407

Date: 2025-06-24 10:28:21
Score: 4
Natty: 7.5
Report link

Thank you so much! This worked perfectly after I spent hours trying different approaches with meta fields that didn't work. Even AI couldn't help me solve this one. You saved me a lot of time!!!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): help me
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aram

79677355

Date: 2025-06-24 09:46:10
Score: 5.5
Natty:
Report link

I have discover a bug when you have two legend to the right or left, the second event click is weardly placed. Let me know if you have the same issue

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): have the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rayan Hilliman

79677276

Date: 2025-06-24 08:50:50
Score: 6.5 🚩
Natty:
Report link

I ran into the same problem, did you finally solve it

Reasons:
  • RegEx Blacklisted phrase (3): did you finally solve it
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: DuangDuang

79677255

Date: 2025-06-24 08:35:46
Score: 4
Natty:
Report link

In Camel 4.x, OPC-UA is supported through the PLC4X component https://camel.apache.org/components/next/plc4x-component.html

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

79677247

Date: 2025-06-24 08:31:44
Score: 4.5
Natty: 6
Report link

What helped me was to recreate the identifier directly on the website https://developer.apple.com/account/resources/identifiers/list

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What help
  • Low reputation (0.5):
Posted by: koliush

79677245

Date: 2025-06-24 08:30:44
Score: 4
Natty: 4.5
Report link

Update:
Kotlin 2.4 Introduces Rich Errors, which are SumTypes

https://xuanlocle.medium.com/kotlin-2-4-introduces-rich-errors-a-game-changer-for-error-handling-413d281e4a05
the | symbol is used as in Scala or TS

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Guillaume de Toulouse

79677243

Date: 2025-06-24 08:29:43
Score: 4.5
Natty: 6
Report link

What helped me was to recreate the identifier directly on the website https://developer.apple.com/account/resources/identifiers/list

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What help
  • Low reputation (0.5):
Posted by: koliush

79677229

Date: 2025-06-24 08:20:39
Score: 9 🚩
Natty: 4.5
Report link

Has anyone found a solution? I am using keycloak 26.2.5

Reasons:
  • Blacklisted phrase (2): anyone found
  • RegEx Blacklisted phrase (3): Has anyone found
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ahmed zeiss

79677218

Date: 2025-06-24 08:14:37
Score: 4
Natty:
Report link

The issue was there was no container for Function App Code. I had to manually create one (named code-container) and specify it in the deployment settings.

enter image description here

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

79677125

Date: 2025-06-24 06:56:17
Score: 5.5
Natty: 4
Report link

la variable de PERL Environnement

Reasons:
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: PERL

79677083

Date: 2025-06-24 06:16:06
Score: 5.5
Natty:
Report link

Could you try add "noEmit": true to your tsconfig.ts?

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

79677064

Date: 2025-06-24 05:54:00
Score: 7
Natty: 7
Report link

i am trying the same thing multiple threads writing to same tcp socket using synchronized block. but my threads getting stuck while taking lock in synchronized block. these keeps waiting and not coming out. looks like one of the thread got stuck in writing to tcp socket and is not coming out. how this problem can be solved?

Reasons:
  • Blacklisted phrase (1): i am trying the same
  • RegEx Blacklisted phrase (1.5): solved?
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30877151

79677044

Date: 2025-06-24 05:28:52
Score: 4
Natty:
Report link

Okay, I've found the answer @maulik nagvadiya I Uninstall the app manually from your device, but this did not work for me, so I'm using
flutter clean and flutter pub get Then run again, and it's worked fine, thanks all

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @maulik
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: arslan

79677032

Date: 2025-06-24 05:16:49
Score: 4
Natty:
Report link

Found an answer in the hibernate discussions:

https://discourse.hibernate.org/t/migrating-from-hibernate-5-to-6-results-in-error-that-target-lists-have-at-most-1664-entries/11571/4

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

79677029

Date: 2025-06-24 05:14:48
Score: 4
Natty: 5
Report link

para recortar puedes hacerlo con SkiaSharp ahora en net maui, o con Bitmap puro; te recomiendo mas SkiaSharp, no es pesado y te ahorras un poco de código, para dibujar el recuadro, si es al tiempo con la cámara puedes usar CameraView; si prefieres tomar la foto y después ajustar con un rectángulo, mas simple con MediaPicker.
el rectángulo se dibuja ya sea con canvas o xaml puro con Border, no hay ciencia.

Reasons:
  • Blacklisted phrase (2): código
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30876917

79677023

Date: 2025-06-24 05:05:44
Score: 4
Natty:
Report link

Notion supports only HTTPS request, so HTTP request is dismissed.

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

79677001

Date: 2025-06-24 04:28:35
Score: 4
Natty: 4.5
Report link

Here is the Two guide on how to do it so. Physcial design of IOT Logical design of IOT

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

79676993

Date: 2025-06-24 04:17:33
Score: 4
Natty:
Report link

Hi you can change the date format in hibernate or refer below link to solve the issue..Thank you
How to assign Date parameters to Hibernate query for current timezone?
Let me know if it help you..

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: aziim dev

79676979

Date: 2025-06-24 03:54:26
Score: 4
Natty:
Report link

As well as the accepted answer by Salah Akbari above, make sure that the constructor is public, otherwise you'll still get the same issue.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): get the same issue
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: N Kozlov-Evans

79676961

Date: 2025-06-24 03:06:09
Score: 8 🚩
Natty:
Report link

"THAT IS FUCKED" You guys and I do mean every last one of you motherfuckers needs to GO GET FUCKED.

You shit head nazi faiscist cunt .... stop fucking every god damned thing up to the point of unusability just because you can. This shit has gotten extremely stale .... and I'm not the only one who is completely over it.

Fucking Cunts

Reasons:
  • Blacklisted phrase (2): FUCK
  • Blacklisted phrase (2): fuck
  • Blacklisted phrase (2): Fuck
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: EatTheCornAndNutsFromMyShit

79676951

Date: 2025-06-24 02:49:05
Score: 4
Natty:
Report link

This doesn't work. I want to scroll from one page to another page because the appropriate app is there. But swiping isn't working

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Roberta Morgan

79676932

Date: 2025-06-24 02:14:55
Score: 5
Natty: 5.5
Report link

I found this blog here that lists the APIs and how to scrape with IP Rotation. Article Link

Reasons:
  • Blacklisted phrase (1): this blog
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: John

79676921

Date: 2025-06-24 01:53:46
Score: 8 🚩
Natty:
Report link

Have anyone found the answer to these drastic change in model training results??? I am facing the same issue. I am using Kaggle to train my model using GPU P100. My code environment from 2024 (tf 2.15.0) gives better training / validation / test results than the latest code environment (2.18.0) . Same code, same dataset, same configurations but different results. The code environment with 2.15 gives me test accuracy above 95% while the latest code environment (2025 and 2.18) gives me hardly 90% test accuracy.
@PMDP3 @Martin

Reasons:
  • Blacklisted phrase (1): ???
  • Blacklisted phrase (2): anyone found
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same issue
  • Contains question mark (0.5):
  • User mentioned (1): @PMDP3
  • User mentioned (0): @Martin
  • Low reputation (1):
Posted by: GrayAtom

79676879

Date: 2025-06-24 00:37:28
Score: 8.5
Natty: 7.5
Report link

help me, whats wrong with this?
enter image description here

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: MHD VEREL

79676857

Date: 2025-06-23 23:30:12
Score: 7.5 🚩
Natty:
Report link

I too having same issue, trying to downgrade now :(

Reasons:
  • Blacklisted phrase (1): :(
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): having same issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rajender Singh

79676845

Date: 2025-06-23 23:06:05
Score: 4.5
Natty:
Report link

Inspired by the discussion, I implemented a version using std::variant . https://github.com/DapengFeng/RustCxx

Reasons:
  • Probably link only (1):
  • Contains signature (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: DapengFeng

79676743

Date: 2025-06-23 20:55:30
Score: 10.5 🚩
Natty: 6
Report link

I want to use es liberia but I get an error when synchronizing com.amitshekhar.android:android-networking:1.0.2 that file can't be found. Is there a solution? I already implemented 1.0.4 but I keep getting the same error.

Reasons:
  • Blacklisted phrase (3): Is there a solution
  • RegEx Blacklisted phrase (1): I want
  • RegEx Blacklisted phrase (1): I get an error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): getting the same error
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Gateway Laptop

79676589

Date: 2025-06-23 17:52:44
Score: 5.5
Natty:
Report link

We are also facing the same problem since June 20 2025, we have double checked the configurations multiple times and it still reported "invalid_client"

Recently, there are other 17 developers also facing this problem, we think it's apples fault: https://developer.apple.com/forums/thread/789011

and looks like this problem is not happen at first time: https://developer.apple.com/forums/thread/675742

Reasons:
  • Blacklisted phrase (1): also facing this
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): also facing the same problem
  • Low reputation (1):
Posted by: Smith

79676563

Date: 2025-06-23 17:33:38
Score: 4
Natty:
Report link

I have the same situation.

No squiggles lines AND Error List window doesn't show any errors if "Build + IntelliSense" is selected. It does show errors if "Build Only" is selected but then I have to manually rebuild after every edit.

I did remove and reinstall IntelliCode from the Visual Studio Installer,
Tools-Options-..-InteliCode unchecked and checked back
Tools-Options ... show error squiggles unchecked and checked back
Deleted .vs folder, and reset all settings to C# profile.
.obj and .bin folders deleted multiple times

Is GitHub copilot required for this to work? I hope not...
Is Live Share required? I hope not either...

I seems to be out of options any additional suggestions would be appreciated.

Reasons:
  • Blacklisted phrase (1): appreciated
  • RegEx Blacklisted phrase (2): any additional suggestions
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: shlasasha

79676557

Date: 2025-06-23 17:30:37
Score: 5.5
Natty:
Report link

So I have this issue too, started about a week ago for a live version of the app, it just stopped functioning and now even if I download my current live version from the app store, I get the same error.

It happens on device and on the simulators for me, and I have no idea what happened? Nothing changed, it just started failing and there is zero information regarding it online.

No idea what to do, my app is breaking slowly for all users and there is no clear reason why.

Reasons:
  • RegEx Blacklisted phrase (1): I get the same error
  • No code block (0.5):
  • Me too answer (2.5): I get the same error
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Atlas

79676533

Date: 2025-06-23 17:11:32
Score: 4.5
Natty:
Report link

I am having the same problem. Here is some sample code. As can be seen from the results, the code outside of the test is called twice. Once before the actual test is run and once after. Only on the second pass will the code inside the test scope is executed. I assume that this is due to Playwright scanning for tests before executing the actual tests.

Like Drashty, I am creating parameterized tests so the parameter data has to come from outside of the test block. The problem with this double pass is that the parameter retrieval routines are being called twice.

I have not been able to tap on the internal context to prevent a second call to the retrieve parameter data routine. As can be seen below, the context does not seem to be preserved across the two passes (the iterator value is the same).

Question: how can I tap into the Playwright context so that I can set a boolean flag that will prevent pre-test code from executing twice?

import { test } from '@playwright/test';

let iterator: number = 0;
console.log(`Pre Test step: ${iterator}`);
iterator = iterator + 1;

test(`testing with id: a test`, () => {
  console.log(`dummy step`);
});

Results:

enter image description here

Reasons:
  • Blacklisted phrase (0.5): how can I
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I am having the same problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: herbey zepeda

79676508

Date: 2025-06-23 16:55:16
Score: 5
Natty:
Report link

Even I had the issue with this but my project is in modular structure with native federation any help is much appreciated

import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';


platformBrowserDynamic().bootstrapModule(AppModule);
@NgModule({
    declarations: [
        AppComponent,
        // DialogComponent,
        IEAlertComponent,
        InformativeBannerComponent,
        // ErrorModalComponent,
        NotificationBannerComponent,
        // EmailPreviewDialogComponent,
        // TestEmailDialogComponent,
        FooterComponent,
        // MultiSearchComponent,
    ],
    bootstrap: [AppComponent],
    imports: [
        FormsModule,
        ReactiveFormsModule,
        BrowserModule,
        CommonsComponentsModule,
        // ChatbotModule,
        // FiltersModule,
        AppRoutingModule,
        BrowserAnimationsModule,
        ContactDrawerModule,
        HelpDrawerModule,
        JsonSchemaFormModule,
        MaterialDesignFrameworkModule,
        DdcMastheadModule,
        DdcSidenavModule,
        DdcBannerModule,
        DdcLoadingModule,
        DdcConfirmationModalModule,
        DdcAlertMessageModule
    ],
    providers: [
        provideHttpClient(withInterceptorsFromDi()),
        {
            provide: HTTP_INTERCEPTORS,
            useClass: HttpErrorInterceptor,
            multi: true,
        },
        {
            provide: APP_INITIALIZER,
            useFactory: autherize,
            deps: [UserService],
            multi: true,
        },
        ScrollService,
        RouteStatusService,
    ]
})
export class AppModule { }
Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): any help
  • RegEx Blacklisted phrase (3): any help is much appreciated
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ram

79676286

Date: 2025-06-23 13:58:24
Score: 4.5
Natty: 6.5
Report link

Estava com o mesmo erro, e essa dica me ajudou(uso a versão 0.21.2)

https://medium.com/@arth2048/flet-attributeerror-str-object-has-no-attribute-set-attr-internal-4e0380b99304

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Pedro Prates

79676282

Date: 2025-06-23 13:54:22
Score: 6 🚩
Natty:
Report link

When I get this error it is beacuse I get an Out Of memory (OOM) error, so the training is taking more GBs of RAM/GPU than the available, and then the operative system kills the process. Could this be happening you?

Reasons:
  • RegEx Blacklisted phrase (1): I get this error
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: AlArgente

79676270

Date: 2025-06-23 13:46:18
Score: 11 🚩
Natty: 5.5
Report link

I'm having the same error.. Have you find a solution ?

Reasons:
  • Blacklisted phrase (2): Have you find
  • RegEx Blacklisted phrase (1): I'm having the same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm having the same error
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Eliott I

79676265

Date: 2025-06-23 13:40:15
Score: 6 🚩
Natty:
Report link

Same here
I am also looking for the solution.
Tried too much but still not getting any solution

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (2): I am also looking
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Asad Ali Hazoori

79676242

Date: 2025-06-23 13:22:09
Score: 7.5 🚩
Natty:
Report link

I am from Ukraine and I use the interface as in the picture. Please help me solve this issue.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Stas Lozinskiu

79676216

Date: 2025-06-23 13:02:02
Score: 5.5
Natty:
Report link

Can you quickly check with the configurations of your 'TokenProvider' or 'JWTFilter' for token parsing or validations?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Mukesh Prajapat

79676119

Date: 2025-06-23 12:01:42
Score: 5.5
Natty: 6.5
Report link

Can you place in a setting file; to tell visual studio code to look for these files in a Linux docker container ?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Christopher

79676072

Date: 2025-06-23 11:21:30
Score: 4
Natty:
Report link

I am writing this answer since I do not have enough reputation to write a comment yet.

I have found this post whilst having the same problem and tried to recreate my own problematic code, since this was asked for in the comments, so this is just what I think could be the problem, rather than a solution.

In my case, the problem is the display type.
The element containing the text will only stay as wide as the text itself when using display: inline.

But since using this is not always an option, I think what the original poster needs is a way to limit the width to the text with non-inline display attribute values and without using width: min-content.

<div style="width: 65px;background: black;">
  <span style="display: block;background: gray;">Short Text</span>
</div>

Reasons:
  • RegEx Blacklisted phrase (1.5): I do not have enough reputation
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): having the same problem
  • Low reputation (1):
Posted by: kleenerStern

79676014

Date: 2025-06-23 10:29:15
Score: 9 🚩
Natty: 6.5
Report link

Did you ever resolve this? Running into exactly the same issue

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever resolve this
  • RegEx Blacklisted phrase (1.5): resolve this?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Mason

79675943

Date: 2025-06-23 09:33:46
Score: 4.5
Natty: 4.5
Report link

It might be related to a plugin or dependency's Kotlin Gradle Plugin version.

https://medium.com/@zalamayank2005/error-the-android-gradle-plugin-supports-only-kotlin-gradle-plugin-version-1-5-20-45c59d9b9f35

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Group of Stars

79675868

Date: 2025-06-23 08:42:28
Score: 6 🚩
Natty:
Report link

It appears that Plotly v6.0.0 conflicts with Jupyter NB. I downgraded as clearly suggested in a post that I found after asking the question here: Plotly displaying numerical values as counts instead of its actual values?

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Rene Chan

79675860

Date: 2025-06-23 08:33:26
Score: 4
Natty:
Report link

This is possible by right clicking on the console tab, then going to the option `New console in environment` and selecting your environment there.

Showing where to find the run from environment option

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

79675839

Date: 2025-06-23 08:19:17
Score: 7.5 🚩
Natty:
Report link

Hello Aburaddaha Abdalmalek,
Are you able to find the issue why all metrics are zero. Even i am having the same issue with coco.

Reasons:
  • RegEx Blacklisted phrase (2): Even i am
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i am having the same issue
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: chandu

79675831

Date: 2025-06-23 08:11:14
Score: 5
Natty: 5
Report link

If we do it this way, when we build the app using apk/aab, it becomes too heavy, can't we make it lighter?

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

79675809

Date: 2025-06-23 07:56:10
Score: 4
Natty:
Report link

i also faced similar issue today where i was not able to login to Linux Server and getting same error.

"kex-exchange-identification-read-connection-reset-by-peer"

So this was happening because my /etc/group file was blank somehow. and after restoring the file from backup and then restarted the sshd service sorted the issue.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): getting same error
  • Low reputation (1):
Posted by: Shivam

79675801

Date: 2025-06-23 07:50:08
Score: 5.5
Natty:
Report link

i have a same issue in worker service .Net 8
then I removed the manual dll <refrence> and added <packageRefrence> for
"System.ServiceProcess.ServiceController" it resolved.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i have a same issue
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Mahesh Patil

79675795

Date: 2025-06-23 07:48:07
Score: 4
Natty:
Report link

add selector app!=""

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
Posted by: voipp

79675774

Date: 2025-06-23 07:23:00
Score: 5.5
Natty:
Report link

Thanks for sharing this! I was also wondering how to add my own music in the Banuba Video Editor. Your solution really helps! For Android, adding the code to the VideoEditorModule using AudioBrowserConfig.LOCAL makes sense. And for iOS, setting AudioBrowserConfig.shared.musicSource = .localStorageWithMyFiles is super useful, especially knowing it only works with audio stored via the Apple Music app. It’s a bit tricky that it's not clearly explained on their website or GitHub, so your answer is a big time-saver. Appreciate the clear directions! This will help a lot of users facing the same issue. 🎵🙌

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (2): Thanks for sharing
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: johnson Black

79675687

Date: 2025-06-23 06:01:35
Score: 6 🚩
Natty: 4
Report link

test guest, hello this is test guest to post as a guest mode on stackoverflow.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: guest

79675648

Date: 2025-06-23 05:21:24
Score: 6.5 🚩
Natty:
Report link

Talvez te ayude en algo

● Ve a la consola de Google Cloud, abre tu navegador web y navega a [ console.cloud.google.com ]

● Selecciona el proyecto correcto, asegurate de haber seleccionado el proyecto asociado con tu acceso a la API de Google Ads

● Navega a credenciales, en el menu de navegación el icono en la parte superior izquierda, ve a API y servicios > credenciales

● Encuentra tu ID de cliente de OAuth, verás una lista de tus claves de API o ID de cliente de OAuth 2.0, haz clip en el nombre del código que estás usando para tu script de python

○ Comprueba la configuración: En la página de configuración de tu ID de cliente, comprueba 2 cosas: 1. Tipo de aplicación: para un script que se ejecuta en Google Colab o en tu equipo local, debe estar configurado como aplicación de escritorio. Si esta configurado como aplicación web, esperará un flujo de autenticación diferente y requerirá un redirect_uri que no sea localhost 2. URI de redireccionamiento Autorizados, si tu tipo de aplicación es web verás esta sección, para un script de Colab, es probable que esto sea incorrecto, al cambiar el tipo a Aplicación de Escritorio. Google gestionará correctamente la dirección al localhost automáticamente. Si es absolutamente necesario usar el tipo Aplicación Web, deberás agregar: Http//localhost:8080 " o cualquier puerto que tu servidor local esté configurado para usar.

Si haz comprobado esta configuración y sigues teniendo problemas, obtendrás la mejor ayuda haciendo una pregunta detallada en lugar como los foros oficiales de soporte de la API de Google Ads

Reasons:
  • Blacklisted phrase (2): ayuda
  • Blacklisted phrase (1): está
  • Blacklisted phrase (2): código
  • Blacklisted phrase (2): pregunta
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Axe Bolaños

79675564

Date: 2025-06-23 02:27:45
Score: 5.5
Natty: 5.5
Report link

Since I can't leave a comment, I'm posting my question here.

I tried using:

await Future.delayed(Duration(milliseconds: 1000));

However, some users still can't see the JS file being loaded.

Should I try increasing the delay time?

Have you found any other solution that works more reliably?

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found any other solution that works more reliably
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Lee

79675559

Date: 2025-06-23 02:18:43
Score: 5.5
Natty:
Report link

According to this link, 50 lines of code modification is all that is needed.

I have not tried it. Maybe it will work?

https://github.com/php/php-src/issues/12762

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Mike

79675558

Date: 2025-06-23 02:13:41
Score: 4
Natty: 4.5
Report link

If someone still wants to solve this (like me), please check out https://learn.microsoft.com/en-us/azure/azure-app-configuration/quickstart-azure-functions-csharp?tabs=entra-id#manage-trigger-parameters-with-app-configuration-references

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

79675506

Date: 2025-06-22 23:12:55
Score: 8.5 🚩
Natty:
Report link

@Shrotter I am also facing similar issue- Issue

I want reference to the part from instance - shown in red block.

From above answer, I get oSel.Count2 = 0.

if TypeName(oProductdocument) = "ProductDocument" then
'Search for products in active node
oSel.Search "CATAsmSearch.Product,in"

    if oSel.Count2 <> 0 then
        'first selected product is the active node
        Set oActiveProduct = oSel.Item2(1).LeafProduct

Thanks in advance

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Me too answer (2.5): I am also facing similar issue
  • User mentioned (1): @Shrotter
  • Low reputation (1):
Posted by: Anand Abyankar

79675450

Date: 2025-06-22 21:06:23
Score: 4
Natty:
Report link

I am facing the same error. I found that the Player script, which we are using, is attached to both Player and Player Visual. Turn off that script in Player Visual, and you will be good to go!! This worked for me!!

Reasons:
  • Whitelisted phrase (-1): This worked for me
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (1): I am facing the same error
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am facing the same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: Abhinav Sharma

79675406

Date: 2025-06-22 19:40:59
Score: 4.5
Natty:
Report link

It seems that JetBrains members posted an article how to fix this error code here:
https://youtrack.jetbrains.com/articles/SUPPORT-A-1853/Junie-provides-error-code-400-input-length-and-maxtokens-exceed-context-limit

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

79675347

Date: 2025-06-22 18:21:36
Score: 4
Natty:
Report link

How about encoding the length-info explicitly, in a static constexpr variable?

struct mybits {
  static constexpr size_t num_bits = 15;
  unsigned int one:num_bits;
};
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How
  • Low reputation (1):
Posted by: user2929974

79675234

Date: 2025-06-22 15:18:44
Score: 8 🚩
Natty: 4
Report link

I have the same question, I fully uninstalled the vscode using control panel, but the problem remained.

There is no suggestions when writing html code and when right click on html file it shows option of "open with..." when i click on that, it just shows a plain text editor, please provide a fix

Reasons:
  • Blacklisted phrase (1): I have the same question
  • RegEx Blacklisted phrase (2.5): please provide
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same question
  • Low reputation (1):
Posted by: Mustafa khan 1921

79675080

Date: 2025-06-22 10:37:35
Score: 4
Natty:
Report link

I think you need to have internet permission. Enabled in android manifest,

Also make sure your using https. If your api url is http then follow this steps

https://medium.com/mindorks/my-network-requests-are-not-working-in-android-pie-7c7a31e33330

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tech Pulsecode

79675025

Date: 2025-06-22 09:19:16
Score: 5
Natty:
Report link

But now i have another problem:

const loginUser = async (username: string, password: string) => {
        useLogin(username, password)
            .then((res) => {
                if (res) {
                     // process res
               }
           })
           .catch((/*e*/) => toast.warning("Server error occured"));
     };

Property 'then' does not exist on type 'UseQueryResult<unknown, Error>'. Property 'then' does not exist on type 'QueryObserverRefetchErrorResult<unknown, Error>'.

Can you please tell me what's the problem here ?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you please tell me what
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Transporter08

79675011

Date: 2025-06-22 09:02:12
Score: 4.5
Natty: 4.5
Report link

I will soon share my code with you since I just submitted it. As a recommendation, try avoiding huge chunks of code like naming to variables too long or using this line " a = a + 1; " instead use a++ or a += 1. And yes have you done update50 on the terminal?

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

79674881

Date: 2025-06-22 04:01:03
Score: 5.5
Natty:
Report link

Exactly same problem here, anyone who help?

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

79674856

Date: 2025-06-22 03:05:49
Score: 7.5 🚩
Natty: 6
Report link

Are you still facing this issue? How to fix the issue?

Reasons:
  • RegEx Blacklisted phrase (1.5): How to fix the issue?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: taoohoo

79674849

Date: 2025-06-22 02:27:37
Score: 7.5 🚩
Natty:
Report link

i am facing the same issue i have build.gradle.kts and i use this

packaging {
        resources {
            excludes.addAll(
                listOf(
                    "lib/arm64-v8a/libc++_shared.so",
                    "lib/armeabi-v7a/libc++_shared.so",
                    "lib/x86/libc++_shared.so",
                    "lib/x86_64/libc++_shared.so"
                )
            )
            pickFirsts.add("lib/**/libc++_shared.so") // Prioritize Flutter's version
            // Fallback: merge if exclusion fails
            merges.add("lib/arm64-v8a/libc++_shared.so")
        }
    }

still i am facing the issue its not resolving please help me

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • RegEx Blacklisted phrase (1): i am facing the issue its not resolving please
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): i am facing the same issue
  • Low reputation (1):
Posted by: Mahboob Anwar

79674837

Date: 2025-06-22 01:51:29
Score: 5
Natty:
Report link

I just have exactly the same problem: waiting for 20 mins and found nothing happened. It's no reason for it to run such long. What I did was to check whether my pip was up to date, and it turns out it's 24 instead of 25. After I Updated pip to latest version the installation finished in seconds.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): have exactly the same problem
  • Single line (0.5):
  • Low reputation (1):
Posted by: Johnny Liu

79674836

Date: 2025-06-22 01:51:28
Score: 4
Natty:
Report link

This is what I'd do, an AVERAGEIF formula.

=AVERAGEIF(A:A,D3,B:B)enter image description here

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

79674790

Date: 2025-06-21 23:06:53
Score: 6 🚩
Natty: 5.5
Report link

Nowadays we can find it out yet?

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

79674770

Date: 2025-06-21 22:09:39
Score: 4
Natty:
Report link
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @NosakhareKingsley
  • User mentioned (0): @EstusFlask
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Nosakhare Kingsley

79674760

Date: 2025-06-21 21:46:33
Score: 5
Natty: 5
Report link

Apple just announced a new webhook feature

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

79674708

Date: 2025-06-21 19:29:57
Score: 4
Natty:
Report link

Just need to update the browser **Face palm**

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

79674668

Date: 2025-06-21 18:38:38
Score: 7.5 🚩
Natty:
Report link
Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: Paridhi Pandey

79674650

Date: 2025-06-21 18:14:31
Score: 9.5 🚩
Natty: 5
Report link

use only @Restcontroller annotation and remove @component in your code and could you share endpoint which you are using for request?

Reasons:
  • RegEx Blacklisted phrase (2.5): could you share
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Restcontroller
  • User mentioned (0): @component
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Bhaskar

79674564

Date: 2025-06-21 15:45:52
Score: 5.5
Natty: 6.5
Report link

What does the (title=Google") part do in APAD1's answer?

I have taken an HTML course in 2017 - 2018 and do not remember the title attribute.

Is it needed?

Thank you

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): What do
  • Low reputation (1):
Posted by: Ron Mc

79674556

Date: 2025-06-21 15:40:50
Score: 4.5
Natty: 5
Report link

You all can use this npm package:
https://www.npmjs.com/package/react-navify

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Md. Tanvir Hasan

79674533

Date: 2025-06-21 15:02:39
Score: 7 🚩
Natty: 5.5
Report link

How do.i get my old zangi back. Im.not good at trct stuff I need help

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (2.5): I need help
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How do
  • Low reputation (1):
Posted by: Barbara

79674473

Date: 2025-06-21 13:45:15
Score: 14 🚩
Natty:
Report link

I have same error. Did you solve it?

Reasons:
  • RegEx Blacklisted phrase (3): Did you solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • RegEx Blacklisted phrase (1): I have same error
  • Low length (2):
  • No code block (0.5):
  • Me too answer (2.5): I have same error
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ernesto Turco

79674435

Date: 2025-06-21 12:46:58
Score: 6.5 🚩
Natty: 6.5
Report link

same probleme here using springboot 2025-06-21T13:37:01.346Z ERROR 21052 --- [AccessControle] [nio-8080-exec-3] c.book.accesscontrole.Zkt.ZKTecoService : ❌ Error retrieving attendance records: A COM exception has been encountered:

At Invoke of: GetGeneralLogData

Description: 80020005 / Le type ne correspond pas. can someone please help mee !!!

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): please help me
  • RegEx Blacklisted phrase (1): same problem
  • No code block (0.5):
  • Low reputation (1):
Posted by: manar krid

79674369

Date: 2025-06-21 11:11:32
Score: 6 🚩
Natty:
Report link

My comment from above:

import { useState, useEffect } from 'react'

function List({ cards }) {
  return <ul>
    {cards.map((card) => (
      <li key={card.id}>
        <h2>{card.name}</h2>
        <p>{card.location}</p>
        <p>Length: {card.miles} miles</p>
      </li>
    ))}
  </ul>
}

function App() {
  const [cards, setCards] = useState([]);

  useEffect(() => {
    const asyncFunction = async () => {
      const response = await fetch("https://67f56264913986b16fa4640a.mockapi.io/hikes")
      const data = await response.json()
      const filteredData = data.filter((data) => data.favorite == true);
      setCards(filteredData)
    }
    asyncFunction()
  }, [])

  return (
    <div id="favorite-hikes-div">
      <div>Navbar</div>
      <h1 id="favorites-header">Favorite Hikes</h1>
      <List
        cards={cards}
      />
      <div>Footer</div>
    </div>
  )
}

export default App

You are a new user and got some downvotes which is probably frustrating. As @estus-flask mentioned you do not have a minimal working example. Please provide one that means something similar to what I have above. It should include a main component, your list components and remove unnecessary components like NavBar and footer and replace them with empty divs or remove them entirely. Otherwise your question is great. it has a somewhat fitting title, you described what you tried in the past and your problem is clear. If you add this mve I will give you an upvote.

Reasons:
  • Blacklisted phrase (1): did not work
  • Blacklisted phrase (0.5): upvote
  • RegEx Blacklisted phrase (2.5): Please provide
  • RegEx Blacklisted phrase (2): downvote
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @estus-flask
  • Low reputation (0.5):
Posted by: Huhngut