79234443

Date: 2024-11-28 15:16:17
Score: 5.5
Natty: 4.5
Report link

I struggle with the same issue with a flask app. Applying the above to the main app.py of flask doesn't help. Any idea?

Reasons:
  • Blacklisted phrase (1): Any idea?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Fred

79234440

Date: 2024-11-28 15:16:17
Score: 11 🚩
Natty: 5.5
Report link

I am having exactly the same problem. Do you have any updates yet?

Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have any
  • RegEx Blacklisted phrase (0.5): any updates
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having exactly the same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: philadi

79234428

Date: 2024-11-28 15:14:16
Score: 5
Natty: 4
Report link

Quando você for salvar o modelo coloque o .keras ao invés do .h5.

No seu caso:

model.save('model.h5')

loaded_model = keras.saving.load_model('model.h5')

Modifique para:

model.save('model.keras')

loaded_model = keras.saving.load_model('model.keras')

Reasons:
  • Blacklisted phrase (3): você
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Denis Honório

79234388

Date: 2024-11-28 15:05:12
Score: 6.5 🚩
Natty: 5
Report link

is it possible to grab like this also element that "text": "{json key: value pairs}" how to grab the value from the string json element then?

Reasons:
  • Blacklisted phrase (1): is it possible to
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): is it
  • Low reputation (1):
Posted by: Nela Kolundzija

79234347

Date: 2024-11-28 14:55:08
Score: 4
Natty:
Report link

You can press q to cancel ctrl-b

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

79234333

Date: 2024-11-28 14:51:06
Score: 6
Natty: 7
Report link

what if i'm using Swagger so i can't switch to Jakarta?

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): what if i
  • Low reputation (1):
Posted by: OrzoDaSosa

79234263

Date: 2024-11-28 14:26:59
Score: 5
Natty: 5
Report link

i have used this solution and it work on dev mode, but, if i deply on nginx i have error 500, why?

Reasons:
  • Blacklisted phrase (0.5): why?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Salvosnake

79234254

Date: 2024-11-28 14:23:56
Score: 7 🚩
Natty:
Report link

settings_file_path = 'config_box.json' print(settings_file_path)
auth = JWTAuth.from_settings_file(response)

Facing the same error: "error": "'NoneType' object has no attribute 'from_settings_file'"

I am facing in Lambda, in my local working as expected.

Any suggestions?

And I am using the same versions.

Reasons:
  • RegEx Blacklisted phrase (2): Any suggestions?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): Facing the same error
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Amaresh Ayinavolu

79234241

Date: 2024-11-28 14:18:54
Score: 4
Natty:
Report link

Please see steps in thread here, allows for dynamic port assignment.

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

79234196

Date: 2024-11-28 14:03:49
Score: 6.5 🚩
Natty: 4
Report link

Did you implement the steaming service after all? Is there any repository you can share?

Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): Is there any
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: SwiftNic

79234141

Date: 2024-11-28 13:48:45
Score: 7.5
Natty: 7
Report link

I have same problem, and change the resolution to 1281 works, thanks.

Reasons:
  • Blacklisted phrase (0.5): thanks
  • 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
  • Single line (0.5):
  • Low reputation (1):
Posted by: 無尾魚

79234080

Date: 2024-11-28 13:32:39
Score: 4
Natty:
Report link

i am having the same problem now, when i try to migrate with truffle, that error appears.

Deploying 'Migrations'

*** Deployment Failed ***

"Migrations" hit an invalid opcode while deploying. Try:

Exiting: Review successful transactions manually by checking the transaction hashes above on Etherscan.

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): i am having the same problem
  • Low reputation (1):
Posted by: Jose Emilio

79234056

Date: 2024-11-28 13:26:37
Score: 4.5
Natty:
Report link

I hope my solution solves the issue you faced.

By default, process.env variables in Next.js are only available in the client and server-side code executed by Next.js. However, in your backend server, you need to ensure the environment variables are properly loaded.

Please try to use a .env.local file in the root of your project to define your environment variables.

In Next.js, environment variables used in the client-side code must start with NEXT_PUBLIC_. However, this does not apply to server-side code, including your database connection.

Ensure you are not adding the NEXT_PUBLIC_ prefix to MONGODB_URI, as it is meant for server-side usage.

Thanks in advance.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: AnJun Luo

79234050

Date: 2024-11-28 13:24:36
Score: 4
Natty: 6
Report link

en el string del updatecommand al capo de fecha pasarle un getdate()

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

79234021

Date: 2024-11-28 13:14:33
Score: 10.5
Natty: 7.5
Report link

Have you managed to solve this?

Reasons:
  • Blacklisted phrase (3): Have you managed
  • RegEx Blacklisted phrase (1.5): solve this?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Esteban Vazquez

79234009

Date: 2024-11-28 13:10:31
Score: 9.5 🚩
Natty: 5.5
Report link

Did you find out what was the issue ?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find out
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find
  • Low reputation (1):
Posted by: Mathieu Houtreille

79234003

Date: 2024-11-28 13:07:30
Score: 5.5
Natty:
Report link

There is no event for that, neither any plans to implement it.

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

79233958

Date: 2024-11-28 12:52:26
Score: 4
Natty:
Report link

I solve this problem with installing CH340 driver.

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

79233916

Date: 2024-11-28 12:41:22
Score: 4.5
Natty: 5
Report link

It's a false positive, Check the official Documentation https://docs.flutter.dev/reference/security-false-positives

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

79233898

Date: 2024-11-28 12:36:20
Score: 4.5
Natty:
Report link

I have been to resolve issue by giving "/" in Override backend path in backend settings enter image description here

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

79233884

Date: 2024-11-28 12:29:18
Score: 10 🚩
Natty:
Report link

Did you find out the solution to this? I'm facing a similar problem

Reasons:
  • RegEx Blacklisted phrase (3): Did you find out the solution to this
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing a similar problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find
  • Low reputation (1):
Posted by: James Hunter

79233882

Date: 2024-11-28 12:28:17
Score: 4
Natty: 4.5
Report link

Apparently it is possible as per bitbucket documentation: https://confluence.atlassian.com/bbkb/building-multi-architecture-docker-images-with-bitbucket-pipelines-1252329371.html

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

79233816

Date: 2024-11-28 12:07:10
Score: 4.5
Natty:
Report link

The official Spring Batch documentation has a page dedicated to this: https://docs.spring.io/spring-batch/reference/step/chunk-oriented-processing/commit-interval.html#page-title

Is that what you are looking for?

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
Posted by: Tom Cools

79233798

Date: 2024-11-28 12:03:09
Score: 5
Natty: 4
Report link

Hello I want to know the sse timeout, is it a timeout between two packets, or a timeout for the entire link length? From the phenomena I tested, he showed a timeout of the entire link length, for example: SseEmitter emitter = new SseEmitter(30 * 1000L); 2024-11-28 19:45:07.082 [http-nio-8080-exec-1] INFO cn.kaipuyun.chatapi.controller.v1.ChatController:76 - 建立连接 2024-11-28 19:45:37.215 [http-nio-8080-exec-3] WARN o.s.w.s.m.support.DefaultHandlerExceptionResolver:537 - Async request timed out

enter image description here

Reasons:
  • Blacklisted phrase (1): I want to know
  • Blacklisted phrase (1): enter image description here
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user28507409

79233774

Date: 2024-11-28 11:54:06
Score: 7 🚩
Natty: 5.5
Report link

Can you provide this whl file for 32-bit if you have it still

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you provide
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Pratyush Mishra

79233762

Date: 2024-11-28 11:53:05
Score: 4
Natty:
Report link

Use real device, do not use simulator.

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

79233739

Date: 2024-11-28 11:47:02
Score: 4.5
Natty:
Report link

Мне помог таймаут:

  useEffect(() => {
     setTimeout(()=> loadCaptchaEnginge(6), 0)
  },[])
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • No latin characters (3):
  • Low reputation (1):
Posted by: Denis Kokorev

79233712

Date: 2024-11-28 11:40:59
Score: 4
Natty: 4.5
Report link

check the appspec file in github , use this doc for reference https://gbengaoni.com/blog/Deploy-a-PHP-application-on-EC2-with-Github-and-AWS-CodePipeline-fb38cf204cbb

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

79233689

Date: 2024-11-28 11:33:56
Score: 6
Natty: 7.5
Report link

asasdasdcxasdwa dassssssssssssssssssssssssssssssssssssssssssssssssssss

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

79233668

Date: 2024-11-28 11:27:54
Score: 5
Natty:
Report link

Thanks to @pmf and @GillesQuénot. My file was in CrLf format.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @pmf
  • User mentioned (0): @GillesQuénot
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Mr. Clear

79233650

Date: 2024-11-28 11:22:52
Score: 4
Natty: 4.5
Report link

ok good, what is I have all_categorical() ~ "{n} / {N} ({p}%) and I desire only to have the percentage in 2 digits?

How to do that?

Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Y.M.S

79233639

Date: 2024-11-28 11:20:50
Score: 6 🚩
Natty: 6
Report link

Is there an update on this? I want to make only products selectable in a reference editor, without allowing subtypes to be chosen.

Reasons:
  • Blacklisted phrase (1): update on this
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Is there an
  • Low reputation (1):
Posted by: va4n

79233617

Date: 2024-11-28 11:16:48
Score: 5
Natty:
Report link

link it good to see this link,will answer you

Reasons:
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): see this link
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Wei Yang

79233577

Date: 2024-11-28 11:05:44
Score: 4
Natty:
Report link

This functionality has moved to the sidebar and can be re-added to the bottom bar here:

enter image description here

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

79233545

Date: 2024-11-28 10:59:42
Score: 4
Natty:
Report link

clear client(browser) cache: ctrl + f5

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

79233534

Date: 2024-11-28 10:56:41
Score: 4
Natty:
Report link

Try using the @Hidden annotation in your controller. On the method level or on the class level.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • User mentioned (1): @Hidden
  • Single line (0.5):
  • Low reputation (1):
Posted by: Chris Sibaya

79233533

Date: 2024-11-28 10:56:40
Score: 5.5
Natty: 4
Report link

I am same issue. I have vs code 1.75.0 When I install Thunder extension , I get error :

in command palate, I do not see Code: Check for Updates Or Help/check updates.

Any suggestions?

Reasons:
  • RegEx Blacklisted phrase (2): Any suggestions?
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: petercli

79233502

Date: 2024-11-28 10:48:37
Score: 9.5 🚩
Natty:
Report link

I'm just trying to get gtk working on raspberry pi os. Everything compiles and builds but like you I get same error message when running code. when this line executes: gtk_window_new(GTK_WINDOW_TOPLEVEL);

I'd be really grateful if you could elaborate on your answer a little. I don't know an XPM is and google is coming up with real estate proteries lol. Also, could you show what you canged in your code or build settings please.

Reasons:
  • RegEx Blacklisted phrase (2.5): could you show what you
  • RegEx Blacklisted phrase (2): I'd be really grateful
  • RegEx Blacklisted phrase (1): I get same error
  • No code block (0.5):
  • Me too answer (2.5): I get same error
  • Low reputation (1):
Posted by: Martin Bingham

79233491

Date: 2024-11-28 10:43:35
Score: 5
Natty:
Report link

Helo All i am facing same issue and tried above nginx.ingress.kubernetes.io/configuration-snippet: | real_ip_header CF-Connecting-IP; but same issue and when get ingress pod logs i've seen cloud flare ips

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): i am facing same issue
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Hossam

79233481

Date: 2024-11-28 10:37:33
Score: 5.5
Natty:
Report link

https://support.google.com/assistant/thread/310248669/𝗪𝗵𝗮𝘁-𝗶𝘀-𝘁𝗵𝗲-𝗰𝗮𝗻𝗰𝗲𝗹𝗹𝗮𝘁𝗶𝗼𝗻-𝗽𝗼𝗹𝗶𝗰𝘆-𝘄𝗶𝘁𝗵-𝗨𝗻𝗶𝘁𝗲𝗱-𝗔𝗶𝗿𝗹𝗶𝗻𝗲𝘀

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Benja min

79233400

Date: 2024-11-28 10:13:24
Score: 4.5
Natty: 5
Report link

Run:

rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2023

Fixed my issue

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

79233346

Date: 2024-11-28 10:00:20
Score: 8 🚩
Natty:
Report link

Hi could you please tell which version of angular ang ngx-bootstrap you are using?

Reasons:
  • RegEx Blacklisted phrase (2.5): could you please tell
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alex Umanskiy

79233331

Date: 2024-11-28 09:56:19
Score: 6 🚩
Natty: 5.5
Report link

Are you got the solution please let me know

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ashok Kumar

79233281

Date: 2024-11-28 09:40:14
Score: 5
Natty: 6
Report link

Hace unos meses tuve usurpación de mi cuenta personal, con la cual perdí toda mi información y la mal utilizan para crear cuentas, manejar mi celular y computadora, no me permiten usar Google, ni un navegador valido al igual que las App de mi celular y ustedes contribuyen hacer daño, CUMAS!!

Reasons:
  • Blacklisted phrase (2): crear
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28528493

79233260

Date: 2024-11-28 09:35:12
Score: 4.5
Natty:
Report link

I am currently getting error 422 on SwaggerHub ARVR-Toolkit enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Khang Nguyễn

79233140

Date: 2024-11-28 08:51:59
Score: 4.5
Natty:
Report link

you can raise an issue in their repo: https://github.com/dotnet/fsharp/

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

79233106

Date: 2024-11-28 08:40:57
Score: 4.5
Natty:
Report link

I found that the following two commits caused the difference. https://gcc.gnu.org/git/?p=gcc.git&a=commit;h=2637bd27e86c30bce73f6753e922b1b2f03ad47d https://gcc.gnu.org/git/?p=gcc.git&a=commit;h=e05531efb7fb5ef03d1e62c95c73c87d71e91d49

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

79233085

Date: 2024-11-28 08:34:54
Score: 4
Natty:
Report link

You can find Objdump in binutils-gnu that you can install using yum install binutils-gnu.

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

79233052

Date: 2024-11-28 08:19:44
Score: 6 🚩
Natty:
Report link

i am having the same issue and i was unable to fix it

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i am having the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dan Manolache

79232984

Date: 2024-11-28 07:53:37
Score: 5
Natty: 4.5
Report link

A great article with practical advice, thank you. MHTOGEL

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: MHTOGEL

79232978

Date: 2024-11-28 07:51:36
Score: 4.5
Natty:
Report link

Ah, I was so close! Thanks so much for taking the time to help me, I really appreciate it.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): help me
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Mike Edwards

79232967

Date: 2024-11-28 07:46:35
Score: 4
Natty:
Report link

Same, but I do spent some time to find the enterence. Here is the 2 steps: enter image description here

enter image description here

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

79232913

Date: 2024-11-28 07:25:27
Score: 11.5 🚩
Natty: 5
Report link

did you find a way? I am also struggeling with the same problem - today :-) Did you find any kind of API call to get distribution list owners / members.

THX Chris

Reasons:
  • Blacklisted phrase (1): THX
  • RegEx Blacklisted phrase (3): did you find a way
  • RegEx Blacklisted phrase (3): Did you find any
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): did you find a
  • Low reputation (1):
Posted by: Chris

79232822

Date: 2024-11-28 06:48:02
Score: 4.5
Natty: 4.5
Report link

Do check the medium tutorial. I followed the same

https://tonyowen.medium.com/sharing-fonts-between-flutter-and-native-a9d98517f372

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: Ishteyaque Ahmad

79232782

Date: 2024-11-28 06:31:57
Score: 10 🚩
Natty: 5
Report link

I've got a similar problem: When I try to run ./gradlew bundleRelease it failed with this error: "Execution failed for task ':app:createBundleAmazonReleaseJsAndAssets'. Process 'command 'node'' finished with non-zero exit value 1"

Can somebody help me please ?

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can somebody help me
  • RegEx Blacklisted phrase (2): help me please
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Uri Know

79232723

Date: 2024-11-28 05:53:47
Score: 4.5
Natty: 6
Report link

TYSMd AWfstgdhfdgfdgknhfkjibnhfdnhgnfdhnodthdnoi

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

79232695

Date: 2024-11-28 05:42:43
Score: 4
Natty:
Report link
{counryList.map((country, index)=>{country})}
Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anatoli Kuwebwa

79232643

Date: 2024-11-28 05:10:34
Score: 6 🚩
Natty: 4.5
Report link

see here https://github.com/reactwg/react-18/discussions/129 enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: LianwenWu

79232628

Date: 2024-11-28 04:59:31
Score: 4
Natty:
Report link

/https/fix_56/.Co***`

strong text

`***

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: Lewis Colman

79232581

Date: 2024-11-28 04:27:23
Score: 5
Natty:
Report link

big thanks to dm-p (Daniel Marsh-Patrick)

https://github.com/deneb-viz/deneb/issues/517

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: mikhail stotskiy

79232577

Date: 2024-11-28 04:24:21
Score: 5.5
Natty:
Report link

I created this VS Code extension that shows comments when you mouse over package scripts. I would appreciate it if you could try it out and provide feedback. Thank you.

https://marketplace.visualstudio.com/items?itemName=yeongmin.package-scripts-hover

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1.5): would appreciate
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: yeongmin

79232509

Date: 2024-11-28 03:35:08
Score: 6.5 🚩
Natty: 4.5
Report link

Have you found out the solution yet? I faced the same issue and can't fix it too

Reasons:
  • RegEx Blacklisted phrase (2.5): Have you found out the solution yet
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hữu Đức Nguyễn

79232492

Date: 2024-11-28 03:27:06
Score: 5.5
Natty: 5.5
Report link

whether there is a demo to show the diff?

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

79232479

Date: 2024-11-28 03:19:04
Score: 5.5
Natty:
Report link

I created this VS Code extension that shows comments when you mouse over package scripts. I would appreciate it if you could try it out and provide feedback. Thank you.

https://marketplace.visualstudio.com/items?itemName=yeongmin.package-scripts-hover

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1.5): would appreciate
  • Contains signature (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: yeongmin

79232465

Date: 2024-11-28 03:13:02
Score: 4
Natty:
Report link

yeah, I'm on Windows 11 and having the same problem. If you specify the URI@Sha it works.

What's weird is walking through the problem with AWS support, it does not happen when you do the same from Linux or Mac.

it appears to be an issue with Docker Desktop on Windows.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same problem
  • Low reputation (0.5):
Posted by: eAndy

79232427

Date: 2024-11-28 02:45:52
Score: 7.5 🚩
Natty: 6
Report link

me also getting the same issue, see, when i do npm run build in my vs code, then it worked without any error and running as expected without any build errors. Now when i am trying to deploy nextjs app in which i have used shadcn and aceternity ui components to vercel, then i am getting not found error for all this. Do you able to slve/fix this ?

Reasons:
  • Blacklisted phrase (1): i am trying to
  • Whitelisted phrase (-1): it worked
  • RegEx Blacklisted phrase (1.5): fix this ?
  • No code block (0.5):
  • Me too answer (2.5): also getting the same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Om Sharma

79232399

Date: 2024-11-28 02:28:47
Score: 4
Natty:
Report link

Have you tried wrapping the text(s) you want styled differently in a span element(s) and then giving them a id/class selector to style it?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Matthew Wright

79232385

Date: 2024-11-28 02:19:45
Score: 4.5
Natty:
Report link

I created this VS Code extension that shows comments when you mouse over package scripts. I would appreciate it if you could try it out and provide feedback. Thank you.

https://marketplace.visualstudio.com/items?itemName=yeongmin.package-scripts-hover

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1.5): would appreciate
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: youngmin kim

79232378

Date: 2024-11-28 02:15:44
Score: 4
Natty:
Report link

@CachePut(cacheNames = "account", key = "#createAccountRequest.universalId", cacheManager = "demoAccountCacheManager")

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: tu.jianming

79232366

Date: 2024-11-28 02:03:41
Score: 5
Natty: 5
Report link

you need to create nat vm with this guide in order to use private connectivity so you dont need to use external ip from cloud sql https://cloud.google.com/datastream/docs/private-connectivity#whatsnext

Reasons:
  • Blacklisted phrase (1): this guide
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: TS.

79232118

Date: 2024-11-27 23:05:57
Score: 13.5
Natty: 7.5
Report link

Im getting the exact same error using hive catalog. Did you manage to solve this? if so could you share the solution please. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): could you share the solution
  • RegEx Blacklisted phrase (3): Did you manage to solve this
  • RegEx Blacklisted phrase (1.5): solve this?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): getting the exact same error
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bluespark_84

79232078

Date: 2024-11-27 22:43:52
Score: 9
Natty: 8
Report link

where you able to solve this?.

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve this?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): where you
  • Low reputation (1):
Posted by: maik

79232023

Date: 2024-11-27 22:19:45
Score: 6.5 🚩
Natty:
Report link

Do you have a @Directive decorator on top of your directive? Something like:

@Directive({ selector: '[orlyDisableShortcuts]' })
Reasons:
  • RegEx Blacklisted phrase (2.5): Do you have a
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Directive
  • Low reputation (0.5):
Posted by: ilya.chepurnoy

79232013

Date: 2024-11-27 22:13:44
Score: 12
Natty: 7.5
Report link

I'm also facing the same, did you find any solution?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you find any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Agam Gupta

79231996

Date: 2024-11-27 22:05:41
Score: 4.5
Natty:
Report link

Why do you want to inject ComponentActivity? That doesn't make much sense. The compiler says you need to have @Inject in constructor of ComponentActivity, which you cannot do.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @Inject
  • Single line (0.5):
  • Starts with a question (0.5): Why do you
  • Low reputation (0.5):
Posted by: Harry

79231966

Date: 2024-11-27 21:48:35
Score: 9 🚩
Natty: 5.5
Report link

Did you find a proper solution for this by any chance?

Reasons:
  • RegEx Blacklisted phrase (3): Did you find a
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find a
  • Low reputation (1):
Posted by: Roshan Varghese

79231951

Date: 2024-11-27 21:43:34
Score: 6
Natty: 7
Report link

what missing host permission was needed?

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): what
  • Low reputation (1):
Posted by: barak kesten

79231913

Date: 2024-11-27 21:25:28
Score: 4
Natty: 4
Report link

This is not a Answer but my hands for my rig are moving at the same time

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

79231902

Date: 2024-11-27 21:19:26
Score: 4
Natty: 4
Report link

Mine had power save mode on, I turned it off in notifications

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

79231896

Date: 2024-11-27 21:16:25
Score: 4
Natty:
Report link

Visual Studio 2017: Team Explorer --> Git --> Git Settings --> Default Repository Location

enter image description here

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

79231733

Date: 2024-11-27 20:10:07
Score: 4
Natty:
Report link

мне тут помогли со взломом как и обещал оставляю отзыв сделали все в короткие сроки.качественно человек даже не узнал об этом ставлю твердую 5+++ спасибо большое кому нужно вот номер телефона +79033500820 почта [email protected] спасибо дмитрию

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • No latin characters (2):
  • Low reputation (1):
Posted by: услуги на заказ

79231726

Date: 2024-11-27 20:06:04
Score: 7.5 🚩
Natty:
Report link

I have the error message below (env) C:\xampp\htdocs\imgdwn\radardeprix_test\python-test\lib>pip install fasttext-0.9.2-cp311-cp311-win_amd64.whl ERROR: fasttext-0.9.2-cp311-cp311-win_amd64.whl is not a supported wheel on this platform.

Can you help please

Reasons:
  • RegEx Blacklisted phrase (3): Can you help
  • RegEx Blacklisted phrase (1): I have the error
  • RegEx Blacklisted phrase (1.5): help please
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Eric Balé

79231500

Date: 2024-11-27 18:41:40
Score: 8 🚩
Natty:
Report link

Can you show your full code? Are you saying you want the bottom navbar to exist with the tab bar to control the pages of the same screen?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you show your
  • 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: Jojo

79231493

Date: 2024-11-27 18:39:39
Score: 15 🚩
Natty: 6.5
Report link

I'm facing the same error for two days. Does anyone have a solution??

Reasons:
  • Blacklisted phrase (3): have a solution?
  • RegEx Blacklisted phrase (3): Does anyone have a solution
  • RegEx Blacklisted phrase (1): I'm facing the same error
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same error
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Borient Manfouo

79231440

Date: 2024-11-27 18:20:32
Score: 8 🚩
Natty:
Report link

I’m facing the same issue and currently working on fixing it. If you have any suggestions or solutions, I'd greatly appreciate it if you could share them with me. Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (2): any suggestions
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: GhazalMohammadi

79231376

Date: 2024-11-27 17:55:25
Score: 4
Natty:
Report link

I'm facing the same issue and as a workaround am adding include_directories(${<lib>_INCLUDE_DIRS}) as each target exports this variable . It does the trick but I do not understand the root cause so would be interested to follow this thread

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Daniel Pomfjuk

79231349

Date: 2024-11-27 17:46:22
Score: 4.5
Natty: 5.5
Report link

I know this is an old topic... IF I want to restrict to accounts only in my B2C directory only (single tenant), how do I configure MSAL to support this?

I don't want to support/allow other directories or social logins.

Reasons:
  • Blacklisted phrase (1): how do I
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Mike Bond

79231310

Date: 2024-11-27 17:33:19
Score: 4
Natty: 4
Report link

I have the same same question here, and there doesn't seem to be an answer online.

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

79231254

Date: 2024-11-27 17:16:13
Score: 7.5 🚩
Natty: 4.5
Report link

Sorry to hijack here, but I have a very similar problem, in that I had a bunch of installations in my Mamp 5.2 and upgraded to Mamp 7.1. I didn't know that I had to export dbases like you describe and thought by just copying my htdocs file to the new Mamp App folder, it would be ok, (call me ignorant). So now, I have the new phpmyAdmin, sitting there empty, and I can't access my old installations.
Is there a 'safe' way of doing this? I'm a bit clueless when it comes to db handling, other than just creating a db and a new user.
Thanks in advance!!!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have a very similar problem
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Tony

79231221

Date: 2024-11-27 17:04:09
Score: 7 🚩
Natty: 6
Report link

Did you figure out a solution at the end? I really need this.

Reasons:
  • RegEx Blacklisted phrase (3): Did you figure out a solution
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Diar

79231202

Date: 2024-11-27 17:00:07
Score: 8 🚩
Natty:
Report link

first of all many thanks for your answer. I followed all steps and changed all tables with a little script to the values you indicated. Anyway even if I change it manually in MySQL Workbench it shows utf8mb4_0900_ai_ci as Collation. is this correct?

But finally the result is still the same. It produces these strange binary blobs and running the restore script in order to import it in my local mysql server it gives this result:

ERROR at line 48: ASCII '\0' appeared in the statement, but this is not allowed unless option --binary-mode is enabled and mysql is run in non-interactive mode. Set --binary-mode to 1 if ASCII '\0' is expected.

Do you have any other tipp to solve this?

Greetings

Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (1.5): solve this?
  • RegEx Blacklisted phrase (2.5): Do you have any
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Daniel Dinkel

79231196

Date: 2024-11-27 16:58:06
Score: 4.5
Natty:
Report link

It is much easier to use a vagrant box, for example https://portal.cloud.hashicorp.com/vagrant/discover/gbailey/al2023 It is working fine.

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

79231181

Date: 2024-11-27 16:53:03
Score: 6
Natty: 7
Report link

Same problem here, I haven't found any solution either and looks like a very rare problem

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (1): Same problem
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bruno De Vivo

79231122

Date: 2024-11-27 16:41:59
Score: 6.5 🚩
Natty: 6.5
Report link

I have migrated to coil3 and it has stopped working, does anyone know?

Reasons:
  • RegEx Blacklisted phrase (2): does anyone know
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
Posted by: Rulogarcillan

79231119

Date: 2024-11-27 16:40:58
Score: 4
Natty:
Report link

Same here. Llama 3.1 8b modelfile not works.

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

79231072

Date: 2024-11-27 16:25:54
Score: 4
Natty:
Report link

I have this problem. And it actually, didn't start until I updated to the most recent version of Slider Revolution 6.

Reasons:
  • Blacklisted phrase (1): I have this problem
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Angelo Logan TJackson25

79231015

Date: 2024-11-27 16:08:47
Score: 4
Natty:
Report link

This is the document for adding custom control :

https://learn.microsoft.com/en-us/azure/devops/extend/develop/custom-control?toc=%2Fazure%2Fdevops%2Fmarketplace-extensibility%2Ftoc.json&view=azure-devops

and you can make it hidden from process change as in this link :

https://learn.microsoft.com/en-us/azure/devops/organizations/settings/work/customize-process-field?view=azure-devops#hide-a-field-or-custom-control

Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: mohamed saeed

79230996

Date: 2024-11-27 16:04:46
Score: 6 🚩
Natty: 5
Report link

Yeaah, this worked to me. Thankys Is it a new way to deal with it ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Gaabriel7

79230890

Date: 2024-11-27 15:31:35
Score: 7
Natty: 7.5
Report link

I am stuck on the same issue. Any soultion yet?

Reasons:
  • RegEx Blacklisted phrase (1.5): I am stuck
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rishabh Singh

79230843

Date: 2024-11-27 15:14:31
Score: 4
Natty: 4
Report link

Ok this is an easy one. Go to the Roles section of IAM in the web console and search for the permission you care about. For example I want to know which roles get "networkservices.meshes.list". I search for "networkservices.meshes.list" and all the roles that have it are returned.

Reasons:
  • Blacklisted phrase (1): I want to know
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: David Thornton