79260083

Date: 2024-12-07 06:41:39
Score: 12 🚩
Natty:
Report link

I have the same issue. Did you find a solution for it?

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): Did you find a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muhammed Navas Vpp

79260057

Date: 2024-12-07 06:12:33
Score: 5
Natty:
Report link

I have the same issue. Living in Belgium, the default keyboard layout is French AZERTY, but I use an international QWERTY layout. However, the simulator and the canvas are set to AZERTY by default! And changing it only works for one run, when I start it up again next time it switches back! I really don't understand why the system's keyboard layout is not used.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Low reputation (1):
Posted by: Kevin Berden

79259987

Date: 2024-12-07 04:56:18
Score: 4.5
Natty:
Report link

Yeah, so the only way that I could get this to work was by force passing the command line tag. Could not find a way to do this better :(

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

79259896

Date: 2024-12-07 03:25:00
Score: 4.5
Natty:
Report link

So in the end, it was an issue with OpenPGP.js v6.0.0. The bug was fixed on November 21: https://github.com/openpgpjs/openpgpjs/commit/f75447afaa681dc6fa7448a4bf82c63b10265b46

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

79259889

Date: 2024-12-07 03:17:58
Score: 9.5 🚩
Natty:
Report link

were you able to solve this issue? I'm encountering the same problem.

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: RICARDO SOLIS

79259848

Date: 2024-12-07 02:40:48
Score: 6 🚩
Natty:
Report link

It's helped me (Changed MTU to 1400) stackoverflow.com/a/75452499

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

79259803

Date: 2024-12-07 01:41:36
Score: 5.5
Natty: 5.5
Report link

I'm in even worse situation: calling some methods of the host class works fine, while other give this "undefined" error. Leaning towards shared library, but would love to understand why???

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

79259780

Date: 2024-12-07 01:23:32
Score: 4.5
Natty:
Report link

just wanted to ask a question. I am a newbie on leetcode and just wanted to ask doesn't the .size() function just returns the size of the array and not the actual length of the array, won't it be .size()/4. I am also confused with it for a few days so just wanted to ask. Would be very thankful if you could answer and explain it to me

Reasons:
  • RegEx Blacklisted phrase (2): Would be very thankful
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Random jagron

79259720

Date: 2024-12-07 00:23:18
Score: 4
Natty:
Report link

To make the subscription, your account must be a tenant other than 'Personal'.

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

79259652

Date: 2024-12-06 23:39:07
Score: 4
Natty: 4.5
Report link

Do you figure out what went wrong? I'm running into the same issues.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: lucy mckenzie

79259589

Date: 2024-12-06 23:01:59
Score: 4
Natty: 4
Report link

@Sølve using port in webServer config solved the timeout issue, but now

 await page.goto("http://localhost:3000");

is not working , how do you reference your base url in your tests

Reasons:
  • Blacklisted phrase (1): how do you
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Sølve
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: user3613512

79259538

Date: 2024-12-06 22:28:50
Score: 5.5
Natty: 4.5
Report link

Have you resolve this problem ? I encountered the same one.

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve this problem ?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bartosz Podemski

79259481

Date: 2024-12-06 22:00:43
Score: 5
Natty:
Report link

I am having the exact same problem. Here is a simple example of what is getting 503 error:

import pandas as pd
from google.cloud import bigquery

# Sample DataFrame
x = [1, 2, 3, 4, 5]
y = [123, 345, 456, 678, 234]
df = pd.DataFrame({'x': x, 'y': y})

# Construct a BigQuery client
client = bigquery.Client()

# Define table reference
table_ref = client.dataset("TESTING").table("TEST")

# Load data into BigQuery
job = client.load_table_from_dataframe(df, table_ref)
job.result()  # Wait for the job to complete

If you have found the solution to this, please share with me.

Reasons:
  • RegEx Blacklisted phrase (2.5): please share
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I am having the exact same problem
  • Low reputation (1):
Posted by: therealchriswoodward

79259436

Date: 2024-12-06 21:33:35
Score: 8.5 🚩
Natty: 6.5
Report link

I've been searching for an answer too, and it seems that when a UITextView shares a layout manager with other text views, the text view unfortunately becomes static. Is there a solution to this problem now? I would be very grateful for help.

Reasons:
  • Blacklisted phrase (3): Is there a solution
  • RegEx Blacklisted phrase (2): I would be very grateful
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Thom

79259427

Date: 2024-12-06 21:27:33
Score: 4.5
Natty: 4.5
Report link

This apparently is a bug related to Power BI. The following page explains the solution. https://medium.com/riccardo-perico/how-to-fix-couldnt-connect-to-analysis-service-in-power-bi-report-server-2849537de328

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: Abbas Roshan

79259348

Date: 2024-12-06 20:52:22
Score: 4
Natty: 4.5
Report link

Very late to the party, but delete can be overridden through proxies.

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/deleteProperty

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

79259329

Date: 2024-12-06 20:43:19
Score: 4.5
Natty:
Report link

I have found that adding destroy as an argument makes it work more quickly enter image description here

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

79259311

Date: 2024-12-06 20:34:15
Score: 6 🚩
Natty: 5.5
Report link

Is there really "DataDirectory" and "Data Directory"?

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 there
  • Low reputation (1):
Posted by: Alex Gray

79259273

Date: 2024-12-06 20:18:09
Score: 6 🚩
Natty: 5
Report link

Hoping for help. I have some bnb in my token contract address: 0xC0DaB2BC78729618455452a4E670eF7ED233f910 Is there a way to withdraw that?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Anar

79259233

Date: 2024-12-06 20:03:04
Score: 4
Natty:
Report link

ERROR: Could not find a version that satisfies the requirement setup.py (from versions: none) ERROR: No matching distribution found for setup.py

I get this error any ideas why it might be happening

Reasons:
  • Blacklisted phrase (1): any ideas
  • RegEx Blacklisted phrase (1): I get this error
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Firaj Kwaify

79259219

Date: 2024-12-06 19:53:00
Score: 7.5 🚩
Natty: 4.5
Report link

I think it because the @react-oauth/google library or any other library use window.close() which basically throw this error cause its from different origin(google). I am ignoring this for long time if you have any solution can you please let me know too

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): can you please let me know
  • RegEx Blacklisted phrase (1): I am ignoring this for long time if you have any solution can you please
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MD. Thamidul Hasan Sakib

79259207

Date: 2024-12-06 19:50:59
Score: 5.5
Natty: 4.5
Report link

Have you solved this issue? I faced the same problem recently

Reasons:
  • RegEx Blacklisted phrase (1.5): solved this issue?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: AndyFlight

79259172

Date: 2024-12-06 19:32:54
Score: 4.5
Natty: 4.5
Report link

You may find it here:

Note: these obsolete versions of the NDK are no longer supported.

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

79259111

Date: 2024-12-06 19:09:48
Score: 5.5
Natty: 4
Report link

how do i make this work? If anyone can improve this somehow so that it works please tell me, i need to know:

{ "name": "GamingGuild", "version_number": "1.0.0", "website_url": "", "description": "Modpack for my fellow Lethal Company Mod enthusiasts", "dependencies": [ "BepinExPack-BepInEx-5.4.2100", "MoreCompany-notnotnotswypez-1.11.0", "Skinwalkers-RugbugRedfern-5.0.0", "Mimics-x753-2.6.4", "LateCompany-anormaltwig-1.0.18", "YippeeMod-sunnobunno-1.2.4", "FixPluginTypesSerialization-Evaisa-1.1.1", "HookGenPatcher-Evaisa-0.0.5", "LethalCompany_InputUtils-Rune580-0.7.7", "Interactive_Terminal_API-WhiteSpike-1.2.0", "CSync-Sigurd-5.0.1", "LethalLib-Evaisa-0.16.1", "Lategame_Upgrades-malco-3.10.4", "TooManyEmotes-FlipMods-2.2.7", "LetMeLookDown-FlipMods-1.0.2", "NeedyCats-Jordo-1.2.2", "CoilHeadStare-TwinDimensionalProductions-1.0.9", "UniTask-Bobbie-2.5.0", "EnemySoundFixes-ButteryStancakes-1.5.10", "loaforcsSoundAPI-loaforc-1.1.7", "LCMaxSoundsFix-Hardy-1.2.0", "LETHALRESONANCE-LethalResonance-4.7.5", "LethalModDataLib-MaxWasUnavailable-1.2.2", "StarlancerAIFix-AudioKnight-3.8.4", "LethalLevelLoader-IAmBatby-1.3.10", "LethalToolbox-IAmBatby-1.0.4", "Wesleys_Moons-Magic_Wesley-4.0.29", "LobbyCompatibility-BMX-1.2.0", "FacilityMeltdown-loaforc-2.6.20", "EmployeeAssignments-amnsoft-1.1.0", "RollingGiant-NomnomAB-2.6.0", "Monster_Plushies-Scintesto-1.2.9", "ImmersiveScrap-XuXiaolan-1.3.1", "ImmersiveScraps-Justice69-1.2.1", "LethalConfig-AinaVT-1.4.3", "SnatchinBracken-readthisifbad-1.5.1", "Dont_Touch_Me-Kittenji-1.2.4", "HornMoan-MetalPipeSFX-2.1.0", "GoOutWithABang-CTMods-1.0.1", "LCSoundTool-no00ob-1.5.1", "CustomSounds-Clementinise-2.3.2", "ineedmorebullets_turret-Loopers-1.0.3", "TVLoader-Rattenbonkers-1.1.1", "Family_Guy_Funny_Moments-PrinceNailo-1.2.0", "Angry_Birds_Baboon_Hawk-Thwompants-1.1.0", "pizza_pasta_pasta_dropship_NSFW-eluviane-1.0.1", "LethalPosters-femboytv-1.2.3", "posters_that_are_nsfw-monrev-1.2.0", "ModelReplacementAPI-BunyaPineTree-2.4.10", "SpongeBobSuits-RobinKC-1.2.0", "FnafPowerOutage-atg-1.0.1", "More_Suits-x753-1.4.3", "GlowStickSuits-Norman-1.0.4", "Groan_Tube_Scrap-Kittenji-1.0.2", "Lock_Doors_Mod-ENZ-1.1.0", "CompanyCruiserFix-DiFFoZ-1.0.5", "LethalThings-Evaisa-0.10.6", "CodeRebirth-XuXiaolan-0.8.11", "MrovLib-mrov-0.2.10", "WeatherRegistry-mrov-0.3.4", "Wider_Ship_Mod-mborsh-1.3.10", "VertexLibrary-LethalCompanyModding-1.1.0", "Matty_Fixes-mattymatty-1.1.31", "DevilDeal-ProjectSCP-1.0.4", ] }

the error it showed me was:

Unable to parse manifest.json: Expecting value: line 71 column 1 (char 2374)

Reasons:
  • Blacklisted phrase (1): how do i
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (2.5): please tell me
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): how do i
  • Low reputation (1):
Posted by: henry sickmin

79259069

Date: 2024-12-06 18:56:44
Score: 10.5
Natty: 7.5
Report link

Ok so I'm having a problem where I want my ship to explode in 3 seconds but I cant seem to make the delay (this is all in code.org). Can someone help me?

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can someone help me
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Leo R

79258894

Date: 2024-12-06 17:51:25
Score: 6 🚩
Natty:
Report link

I have same question that I have been unable to resolve!

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have same question
  • Single line (0.5):
  • Low reputation (1):
Posted by: Craigdux

79258876

Date: 2024-12-06 17:44:23
Score: 7.5
Natty: 7
Report link

How was this resolved? I am facing exact same issue wehre not able to see the rows but total is correct.

Thanks for your help!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-0.5): Thanks for your help
  • RegEx Blacklisted phrase (1.5): resolved?
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am facing exact same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): How was this
  • Low reputation (1):
Posted by: Drbb

79258839

Date: 2024-12-06 17:29:17
Score: 9.5 🚩
Natty: 4
Report link

Did you got the solution of your question. I am also assigned with similar task and not able to find the solution.

Thank you in advance.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • RegEx Blacklisted phrase (3): Thank you in advance
  • RegEx Blacklisted phrase (3): Did you got the solution
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Shubham Singh

79258789

Date: 2024-12-06 17:08:11
Score: 5.5
Natty:
Report link

I have the same Error with NetCore 8 and Clean Architecture. Event when I have not change IdentityUser to ApplicationUser Source Code have been upload to https://github.com/nguyentuananh921/MyCA2024

Reasons:
  • RegEx Blacklisted phrase (1): I have the same Error
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I have the same Error
  • Low reputation (0.5):
Posted by: Nguyen Tuan Anh

79258786

Date: 2024-12-06 17:07:10
Score: 5.5
Natty:
Report link

Have you trusted the servers for delegation too? Please see https://learn.microsoft.com/en-us/previous-versions/windows/microsoft-desktop-optimization-pack/appv-v4/how-to-configure-the-server-to-be-trusted-for-delegation

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
Posted by: r3verse

79258754

Date: 2024-12-06 16:56:05
Score: 6 🚩
Natty: 5.5
Report link

So, if I am writing an inline C++ wrapper for an inline assembly function and want the compiler to put its argument in to a specific register (like register int a asm("r0");), then screw me, right?

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

79258680

Date: 2024-12-06 16:22:56
Score: 8.5 🚩
Natty: 5.5
Report link

Can someone help?

I am getting similar issues now, in a completely new folder -

Installing template dependencies using npm... npm error code ERESOLVE npm error ERESOLVE unable to resolve dependency tree npm error npm error While resolving: [email protected] npm error Found: [email protected] npm error node_modules/react npm error react@"^19.0.0" from the root project npm error npm error Could not resolve dependency: npm error peer react@"^18.0.0" from @testing-library/[email protected] npm error node_modules/@testing-library/react npm error @testing-library/react@"^13.0.0" from the root project npm error npm error Fix the upstream dependency conflict, or retry npm error this command with --force or --legacy-peer-deps npm error to accept an incorrect (and potentially broken) dependency resolution.

Adding --force or --legacy-peer-deps doesn't work, I get the same error.

Running npm version 10.9.2 node --version 20.18.1

Reasons:
  • RegEx Blacklisted phrase (3): Can someone help
  • RegEx Blacklisted phrase (1): I get the same error
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am getting similar issue
  • Me too answer (0): I get the same error
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can someone help
  • Low reputation (1):
Posted by: Barred From All Bars

79258482

Date: 2024-12-06 15:16:39
Score: 4.5
Natty:
Report link

Make sure to check Android Developers website for detailed explanations - Wi-Fi Direct (peer-to-peer or P2P) overview

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

79258452

Date: 2024-12-06 15:08:37
Score: 6 🚩
Natty: 4
Report link

Hi @Raghavendra Devraj,

I have tried your solution with the "Choose" tag but it doesn't work. It behaves like if SpaProxyServerUrl was not set at all, despite I set it for an EnvironmentName that is defined in my launchSettings.json file ("ASPNETCORE_ENVIRONMENT": ...).

I there any thing I am missing ?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Raghavendra
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: alextekeuf

79258432

Date: 2024-12-06 15:02:34
Score: 5.5
Natty: 4.5
Report link

Has anyone fixed this? Nothing in the answers works

Reasons:
  • RegEx Blacklisted phrase (1.5): fixed this?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: liebe

79258386

Date: 2024-12-06 14:45:29
Score: 4
Natty:
Report link
[enter link description here][1]
Reasons:
  • Blacklisted phrase (0.5): enter link description here
  • Low length (2):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 北科大-陳盈婷

79258349

Date: 2024-12-06 14:34:25
Score: 4.5
Natty: 5.5
Report link

به همین آسونی تمام border-radius: 100%;😊🥲

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

79258312

Date: 2024-12-06 14:28:23
Score: 4
Natty:
Report link

i am getting this error "status": 400, "clerkError": true, "errors": [ { "code": "captcha_missing_token", "message": "Missing CAPTCHA token", "longMessage": "Missing CAPTCHA token", "meta": {} } ] }

Reasons:
  • Blacklisted phrase (1): i am getting this error
  • RegEx Blacklisted phrase (1): i am getting this error
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Daniel Anoka

79258255

Date: 2024-12-06 14:05:17
Score: 4.5
Natty:
Report link

Atlas now contains the user accounts for Mongodb, not the databases. Configure the user accounts in the Atlas cloud interface.

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

79258254

Date: 2024-12-06 14:05:15
Score: 6 🚩
Natty: 4
Report link

Having the same issue here. Probably API endpoints have some inbound access policy on the API gateways. Like aud,scp checks or something else, not sure. We need to identify it and go from there.

With your msal token did you check the token payload? What are the differences with the working token extracted from browser?

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): Having the same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Muhammet Özkan

79258171

Date: 2024-12-06 13:44:09
Score: 4
Natty:
Report link

Just disconnect and connect it again and it's worked fine

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

79258077

Date: 2024-12-06 13:04:57
Score: 9
Natty: 8.5
Report link

@ChauTran this page doesnt work :( https://angular-threejs.netlify.app

Reasons:
  • Blacklisted phrase (1): doesnt work
  • Blacklisted phrase (1): :(
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • User mentioned (1): @ChauTran
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Gülü Əhmədova

79258045

Date: 2024-12-06 12:53:53
Score: 8
Natty: 7
Report link

@Merakel was a solution ever found for this? Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Merakel
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Aidan

79258042

Date: 2024-12-06 12:52:52
Score: 5.5
Natty: 6.5
Report link

No way the 'postmessage' in the place of redirectUrl is worked for me. I was stuck in this portion for 2 days. I was trying different methods/approch to figure out why I'm getting "redirect_url_mismath" error. I was basically giving my google console's "Authorized redirect URIs" after clientId and secrets. Anyway why the postmessage works in there and not the actual redirectUrl. I don't get it, Can someone please tell me why its happening?

Reasons:
  • Whitelisted phrase (-1): worked for me
  • RegEx Blacklisted phrase (2.5): Can someone please tell me
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MD. Thamidul Hasan Sakib

79257963

Date: 2024-12-06 12:23:43
Score: 4.5
Natty:
Report link

you can link the below link . enter link description here

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

79257959

Date: 2024-12-06 12:22:42
Score: 5.5
Natty: 4.5
Report link

I have downloaded oracle database 19c, and PHP 8.2. The problem is that i have this error PHP Warning: PHP Startup: Unable to load dynamic library 'oci8_19' (tried: C:\xampp\php\ext\oci8_19 (Le module sp├®cifi├® est introuvable), C:\xampp\php\ext\php_oci8_19.dll (Le module sp├®cifi├® est introuvable)) in Unknown on line 0. But this modul exists in the file. Please i need your help

Reasons:
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (2): i need your help
  • RegEx Blacklisted phrase (1): i have this error
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Grâce Agassounon

79257902

Date: 2024-12-06 12:03:35
Score: 4
Natty: 5
Report link

If you're still interested in this feature the latest suggestion open for voting is here - https://developercommunity.visualstudio.com/t/Support-Markdown-in-Manual-Validation-M/10807733. The previous comment has been closed.

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

79257859

Date: 2024-12-06 11:46:30
Score: 4
Natty:
Report link

Dumpsys battery set level 100000

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Марат Отемисов

79257840

Date: 2024-12-06 11:41:26
Score: 7.5 🚩
Natty: 4.5
Report link

Explain more, i didn't understand fully, can you explain in step by step Can you share the screenshot or video tutorial

Reasons:
  • RegEx Blacklisted phrase (2.5): can you explain
  • RegEx Blacklisted phrase (2.5): Can you share
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kamlesh Shah

79257835

Date: 2024-12-06 11:39:25
Score: 6 🚩
Natty: 6
Report link

Thanks for the answer, just wondering though, why AppDispatcher is not automatically mocked by Jest, as opposed to what's written in this Doc https://legacy.reactjs.org/blog/2014/09/24/testing-flux-applications.html?

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Devdutta Natu

79257790

Date: 2024-12-06 11:23:20
Score: 4
Natty: 6
Report link

sfdfjfkscvxyj chji jfjksdiv jsfj sofnsdo jfjsdfj sdf f sdf sd

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

79257735

Date: 2024-12-06 11:01:11
Score: 14 🚩
Natty: 6.5
Report link

Did you manage to solve it? If so how can I do it, I'm facing the same problem!

Reasons:
  • Blacklisted phrase (0.5): how can I
  • Blacklisted phrase (1): can I do
  • Blacklisted phrase (1): m facing the same problem
  • RegEx Blacklisted phrase (3): Did you manage to solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Heinrik

79257726

Date: 2024-12-06 10:57:09
Score: 8.5 🚩
Natty: 6
Report link

Could you provide us picture example from the interface? Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (2.5): Could you provide us
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: osmansaglam

79257702

Date: 2024-12-06 10:51:07
Score: 6 🚩
Natty: 5.5
Report link

The logs are not even getting inside to log analytics workspace, what could be the problem?

Reasons:
  • Blacklisted phrase (1): what could be
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sai kumar

79257685

Date: 2024-12-06 10:47:05
Score: 5
Natty:
Report link

Why was correspondence above deleted

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Why was
  • Low reputation (1):
Posted by: Random Me

79257639

Date: 2024-12-06 10:31:00
Score: 8 🚩
Natty: 6.5
Report link

Are you able to solve it? Can you update

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve it?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Puneet Aggarwal

79257638

Date: 2024-12-06 10:30:59
Score: 5
Natty: 4.5
Report link

could not get --no-terminal to work, so i made this module.

https://jsr.io/@svefro/win-console-window-state

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

79257628

Date: 2024-12-06 10:26:58
Score: 4.5
Natty:
Report link

[F12 - Inspection Code][1] [1]: https://i.sstatic.net/YFVJ30Px.png

Here is this code that is responsible or showing "or". It is connected with stripe. {display:none} could work for that?

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

79257624

Date: 2024-12-06 10:26:58
Score: 4
Natty:
Report link

This extension can also be useful, with the Extensions.Web.Popup.OnPopupClosed control

https://wiki.genexus.com/commwiki/wiki?37807,WebExtension+Toolkit

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

79257604

Date: 2024-12-06 10:15:55
Score: 5.5
Natty: 6.5
Report link

what does this parameter means runOnChoice() ? what all values this parameter can take ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): what do
  • Low reputation (1):
Posted by: Piyush Ghosh

79257600

Date: 2024-12-06 10:14:54
Score: 5.5
Natty: 4.5
Report link

https://medium.com/@kritiverma212/tricentis-tosca-how-to-get-current-url-and-save-it-in-buffer-ecfb454a3550

Check out this link I have given step by step process to get current url

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

79257566

Date: 2024-12-06 10:04:51
Score: 10 🚩
Natty: 4.5
Report link

Did you ever figure out a solution? I have the exact same issue/situation as you.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever figure out a solution
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the exact same issue
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Jarrod Ariola

79257500

Date: 2024-12-06 09:42:45
Score: 6.5 🚩
Natty:
Report link

Rui, be professional, if you're going to thumbs down twice with above, explain coherently why, you're a devops specialist, why keep silent?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Random Me

79257421

Date: 2024-12-06 09:14:37
Score: 4.5
Natty:
Report link

I finally found the documentation to achieve this: https://developers.cloudflare.com/speed/optimization/content/prefetch-urls/

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

79257386

Date: 2024-12-06 09:05:33
Score: 6 🚩
Natty: 5
Report link

After submitting the form the abuse is now off for my subscription can I turn it back on if I want to and how to do so ?

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: wass19932705

79257371

Date: 2024-12-06 08:59:31
Score: 5.5
Natty: 4.5
Report link

I have the same problem, it's not due to Apache POI, but it's an editing with LibreOffice ! When you delete a row with LibreOffice, the last row index is set to max rows available (1048575).

If you use Excel, you don't have the problem ...

For the moment, I don't have the solution ...

In my case, I have exclude my check of number of row when the getLastRowNum() return 1048575 ... (I suppose the file is editing with LibreOffice and my check is not possible !).

Reasons:
  • Blacklisted phrase (1): I have the same problem
  • No code block (0.5):
  • Me too answer (2.5): I have the same problem
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Florian

79257369

Date: 2024-12-06 08:59:30
Score: 8.5 🚩
Natty: 5.5
Report link

may I ask how you solved this problem?

Reasons:
  • Blacklisted phrase (1): may I ask
  • RegEx Blacklisted phrase (1.5): solved this problem?
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Viktor Rustoff

79257366

Date: 2024-12-06 08:59:29
Score: 8.5
Natty: 7
Report link

I have a small question on this topic. Is it possible here not to count the answers but to show percent? For example for climate change it would show me 50%, 25% and 25%.

I guess i need to change the code "add_count" with another code, to get this output?

Thanks in advance

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): i need
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: VasKnox

79257360

Date: 2024-12-06 08:54:27
Score: 7.5 🚩
Natty:
Report link

Rui, why did you give me a thumbs down?

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Random Me

79257337

Date: 2024-12-06 08:45:23
Score: 6 🚩
Natty:
Report link

I am having the same issue, trying to deploy my nextjs app using cpanel

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: Ayoub oulaarbi

79257286

Date: 2024-12-06 08:24:17
Score: 5.5
Natty:
Report link

sender = "[email protected]"

I use API https://graph.microsoft.com/v1.0/users/{sender}/sendMail to send Mail

get response :

{"error":{"code":"MailboxNotEnabledForRESTAPI","message":"The mailbox is either inactive, soft-deleted, or is hosted on-premise."}}

What's wrong?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Jerry HTGCN

79257279

Date: 2024-12-06 08:21:16
Score: 5
Natty:
Report link

Why not just use the system's copy command, i.e. in Windows "xcopy"?

Example for a File Watcher using xcopy

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Why not
  • High reputation (-1):
Posted by: Adrian

79257274

Date: 2024-12-06 08:19:14
Score: 4
Natty:
Report link

The issue ended up being with my mac, and not with xcode itself.

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

79257213

Date: 2024-12-06 07:53:06
Score: 6.5 🚩
Natty:
Report link

We do have the same exact problem. We also tried submitting the report with a system user and the authorization for the user to create them. This works for not printing the spool request, but if users submit the report at the same time an identical spool-id is given, which leads to other problems.

Is there a solution for this?

Reasons:
  • Blacklisted phrase (3): Is there a solution
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user28655262

79257208

Date: 2024-12-06 07:51:05
Score: 5
Natty:
Report link

is there a way to breakline when using a variable instead of directly adding the text

Reasons:
  • Blacklisted phrase (1): is there a way
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is there a
  • Low reputation (1):
Posted by: rahul jain

79257147

Date: 2024-12-06 07:23:58
Score: 11 🚩
Natty: 6
Report link

I have to implement the same thing you asked, did you find anything useful for this? It would be a great help if anyone can help me in this

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): did you find
  • RegEx Blacklisted phrase (3): anyone can help me
  • RegEx Blacklisted phrase (0.5): anyone can help
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jainil Patel

79257123

Date: 2024-12-06 07:11:55
Score: 4.5
Natty:
Report link

Check if any of these answers work for you

  1. https://stackoverflow.com/a/1501361/13887525

  2. https://stackoverflow.com/a/59281007/13887525

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Christophy Barth

79257100

Date: 2024-12-06 07:01:52
Score: 5
Natty:
Report link

I am using both apn auth key and apn certificate for two of my firebase project. Will this update anyway affect that?

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

79257097

Date: 2024-12-06 07:00:51
Score: 8 🚩
Natty:
Report link

If I may ask, how did you resolve the MTU size issue? We are having a similar issue where it worked on all previous versions of Android we tested, but does not work on Android 14.

Regards Chris

Reasons:
  • Blacklisted phrase (1): Regards
  • Whitelisted phrase (-1): it worked
  • RegEx Blacklisted phrase (3): did you resolve the
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): having a similar issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: CvN

79257086

Date: 2024-12-06 06:56:49
Score: 5
Natty: 4.5
Report link

https://stackoverflow.com/a/79024366/21133532

This works. But make sure framework path is correct

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Awais Qazi - Flutter Dev

79257072

Date: 2024-12-06 06:50:47
Score: 6 🚩
Natty: 5
Report link

Struggling with Nginx Reverse Proxy Setup for HTTPS (Port 443)

Hello, community!

I've been struggling with this issue for almost two weeks now and need some help. I'm hosting a simple app on my server to test it online. To set it up properly, I decided to use Nginx as a reverse proxy for my Node.js application.


The Goal

I want to be able to connect to my app using HTTPS (port 443) without having to specify any port in the URL. Currently, I can connect to the server on different ports (e.g., 8080 or 443), but I always need to include the port number explicitly. I would like to make this seamless and work as expected for HTTPS.


What I've Tried

  1. Network Configuration:

    • I’ve opened the necessary ports on my router:
      Public 80 -> Private 80
      Public 443 -> Private 443
      Public 8080 -> Private 8080
      
      Example of the port forwarding configuration:
      Public   Private   Protocol
      80-80    80-80     TCP
      443-443  443-443   TCP
      8080-8080 8080-8080 TCP
      
  2. Node.js Express Server:

    • My Express app is set up to listen on port 8080.
    • Here's my server/index.js file:
      const express = require('express');
      const routes = require('./routes');
      const path = require('path');
      const app = express();
      
      const httpPort = 8080; // Port to listen for HTTP
      
      // Middleware for processing JSON data
      app.use(express.json());
      
      // API routes
      app.use('/api', routes);
      
      // Static files served by Vue.js
      app.use(express.static(path.join(__dirname, "../client", "dist")));
      
      // Error handling for static files
      app.use((err, req, res, next) => {
          res.status(500).send('Something went wrong!');
      });
      
      // Vue.js default route
      app.get('*', (req, res) => {
          res.sendFile(path.join(__dirname, "../client", "dist", "index.html"));
      });
      
      // Start the HTTP server
      app.listen(httpPort, () => {
          console.log(`Server running on http://localhost:${httpPort}`);
      });
      
  3. Nginx Configuration:

    • My Nginx is configured to:
      • Listen on port 80 for HTTP and redirect it to port 443 for HTTPS.
      • Use port 443 for SSL with a reverse proxy to my Node.js app on port 8080.
    • Here's my Nginx configuration:
      server {
          listen 80;
          server_name MY_SERVER_NAME;
      
          # Redirect HTTP to HTTPS
          return 301 https://$host$request_uri;
      }
      
      server {
          listen 443 ssl;
          server_name MY_SERVER_NAME;
      
          # SSL certificates (Let's Encrypt or your own certs)
          ssl_certificate /home/<user>/certificates/fullchain.pem;
          ssl_certificate_key /home/<user>/certificates/privkey.pem;
      
          # Configure the proxy to pass traffic to Node.js (HTTP)
          location / {
              proxy_pass http://localhost:8080;
              proxy_http_version 1.1;
              proxy_set_header Upgrade $http_upgrade;
              proxy_set_header Connection 'upgrade';
              proxy_set_header Host $host;
              proxy_cache_bypass $http_upgrade;
          }
      }
      
  4. Firewall Rules (UFW):

    • I've ensured all relevant ports are allowed:
      To      Action    From
      443/tcp ALLOW     Anywhere
      80/tcp  ALLOW     Anywhere
      8080/tcp ALLOW    Anywhere
      
  5. Checking Sockets:

    • When I start my Node.js server and check active sockets using ss -tuln, I can see:
      tcp   LISTEN   0   511    0.0.0.0:443    0.0.0.0:*
      tcp   LISTEN   0   511       *:8080       *:*
      

The Problem

Despite all this, I cannot connect to my app seamlessly on HTTPS (port 443). I still need to manually specify the port in the URL for the connection to work.


What Am I Missing?

  1. Is there something wrong with my Nginx configuration or my Node.js setup?
  2. Could it be an issue with how I handle SSL or the reverse proxy?
  3. Am I overlooking something in my network or firewall settings?

Thanks in advance for your help! Any insights would be greatly appreciated.


Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (3): Thanks in advance
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Only_a_codder

79257043

Date: 2024-12-06 06:38:44
Score: 4
Natty:
Report link

Ok there is a solution -- plus I have additional information regards to error in visual studio when attempting to connect to your azure devopos repo and get an error "We could not refresh your credentials"enter image description here

With the above issue regarding invites not being sent -- Yesterday as mentioned, a new organization was created, users added and invites sent out which were not received -- Attempting to login to azure devops yesterday was denied -- As of today, 12hrs + later, I still had not received invite, however attempted to log in and was granted access -- Not sure if a fluke, definitely a bug in Azure Devops.....

Regards the second issue relating to the picture above -- Cloning a repo in visual studio is generally pretty straight forward, Team Explorer -> Connect to Project. If you're already signed into account you should see a list of servers available with associated repos -- another bug from Azure Devops & VS, is if / when servers are not found you can enter in the url directly, however this will result in an error advising to select an account from the dropdown list which will inevitably advise you no servers were found.

Solution := Don't muck around using VS, open a git bash, create a dir where proj should live then cmd git clone < link to repo > which will force git credential manager to ask for a PAT.

DONT waste your time trying to remove cred's from windows cred manager.

Reasons:
  • Blacklisted phrase (1): regards
  • Blacklisted phrase (1): Regards
  • Blacklisted phrase (1): enter image description here
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Random Me

79257019

Date: 2024-12-06 06:27:40
Score: 8 🚩
Natty: 6
Report link

I am also working on a project on React Native. My development device is Windows and I am getting an error when I try to open the project with Expo Go on my iPhone. How did you achieve this with tunneling and can you explain it to me?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you explain
  • RegEx Blacklisted phrase (1): I am getting an error
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: asmnkpln

79256991

Date: 2024-12-06 06:13:36
Score: 4
Natty:
Report link

I run it fine by

ruby userinput.rb

What are you using to run your sourecode?

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: VietnameseBushes

79256982

Date: 2024-12-06 06:07:34
Score: 7
Natty: 7.5
Report link

I need one help or guidance, where I want to run debian based docker images on gke cluster node pool, with ubuntu it is not working, and i can not modify/change the docker images somehow !! Any ways we can start custom node with GKE with Debian OS or can handle it any how with Ubuntu one ? Like deploy second disk with Debian OS and then use it as primay disk with each node pool ? Please help if anyone has idea on this. Thanks

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (3): Please help
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Ankit

79256967

Date: 2024-12-06 05:59:31
Score: 6 🚩
Natty: 4
Report link

For a Solr version 8.11.0 I did now an update to log4j2.24.2 by simply exchanging the 5 log4j*.jar files under "/opt/solr-8.11.0/server/lib/ext$". But after that solr doesn't respond with an error HTTP ERROR 404 Not Found URI: /solr/ STATUS: 404 MESSAGE: Not Found SERVLET: - Please help me.

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Please help me
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: aiperi imashova

79256852

Date: 2024-12-06 04:37:13
Score: 9 🚩
Natty:
Report link

Same question, I tried some ways like you but all of them did not working. Anyone help pls?

Reasons:
  • Blacklisted phrase (1): did not work
  • Blacklisted phrase (2): help pls
  • RegEx Blacklisted phrase (1): Same question
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rikee

79256835

Date: 2024-12-06 04:29:11
Score: 4
Natty: 4.5
Report link

I know this is an old post but I’ve used the method from the following article (or a variant of it) many times:

https://medium.com/@pradumnkr98/dynamic-bean-injection-in-spring-how-to-select-beans-based-on-enum-values-ea290fdd4442

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

79256805

Date: 2024-12-06 04:03:06
Score: 4.5
Natty: 5
Report link

same issue but not writing code related to the watch in anyway. Started a new playground and tried to run the default "Hello World" and the issue persisted even there. Very odd.

Reasons:
  • RegEx Blacklisted phrase (1): same issue
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: KDH

79256793

Date: 2024-12-06 03:55:01
Score: 8 🚩
Natty:
Report link

i am installing a USB to 8CH RS485 Waveshare driver . After typing sudo make, Im getting these errors. Any help would greatly be appreciated.

make[35]: Entering directory '/usr/lib/modules/4.19.122-rt52/build'

make -C /lib/modules/4.19.122-rt52/build M=/usr/lib/modules/4.19.122-rt52/build

^Cmake[39]: *** wait: No child processes. Stop.

make[39]: *** Waiting for unfinished jobs....

make[39]: *** wait: No child processes. Stop.

make[38]: *** [Makefile:5: default] Error 2

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): Any help
  • RegEx Blacklisted phrase (3): Any help would greatly be appreciated
  • RegEx Blacklisted phrase (1): Im getting these error
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Pablito Derayunan

79256732

Date: 2024-12-06 02:55:48
Score: 6.5 🚩
Natty:
Report link

Can someone know the answer or what I did wrong ?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can someone
  • Low reputation (1):
Posted by: Sonycsl

79256680

Date: 2024-12-06 02:06:38
Score: 4.5
Natty:
Report link

I have created a rules-based chatbot but use TensorFlow hard dataset of 30 conversation flows. Personal chatbots.

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

79256655

Date: 2024-12-06 01:47:32
Score: 6 🚩
Natty:
Report link

Did anyone ever figure out a solution for this. I have a similar goal, and Etsy or Kickstarter are good examples. A purchase / pledge is made but the card won't be charged until the product from Etsy ships / the Kickstarter campaign goal is reached.

Reasons:
  • RegEx Blacklisted phrase (3): Did anyone ever figure out a solution
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did anyone
  • Low reputation (1):
Posted by: don woolley

79256590

Date: 2024-12-06 00:41:18
Score: 10 🚩
Natty:
Report link

Did you ever resolve this? I have the same issue when migrating from .net 6 in-process to .net 8 isolated. Initially when I deployed using a DevOps pipeline the functions weren't even appearing. So I deployed from Visual Studio and that worked. I realised that I had to manually set the FUNCTIONS_WORKER_RUNTIME to dotnet-isolated, restart the app and then change to .Net 8 Isolated from the dropdown. I did this in another environment, deployed using DevOps and the new, upgraded functions appear, but I'm getting the warning

The 'FUNCTIONS_WORKER_RUNTIME' is set to 'dotnet-isolated', which does not match the worker runtime metadata found in the deployed function app artifacts

I'm not getting this in the environment where I published using Visual Studio. There's obviously something different, but I can't see what. All variables and config look the same between the 2.

Reasons:
  • Blacklisted phrase (1): I have the same issue
  • RegEx Blacklisted phrase (3): Did you ever resolve this
  • RegEx Blacklisted phrase (1.5): resolve this?
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: Paul Georgiou

79256549

Date: 2024-12-06 00:11:12
Score: 8
Natty: 7
Report link

Can someone help me read peripheral n uuid n tell me about continuity service n how i read them they hooked in my house with out my permission hellp

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can someone help me
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can someone help me
  • Low reputation (1):
Posted by: Cody Mann

79256522

Date: 2024-12-05 23:49:06
Score: 4
Natty:
Report link

Same case. It just stopped working.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jesús Ramón Valdez Torres

79256511

Date: 2024-12-05 23:41:03
Score: 8.5
Natty: 7
Report link

You didn't get many responses here…

Did you figure it out on your own? (I am trying to do the same thing.)

Thanks,

-kb

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): I am trying to
  • Blacklisted phrase (1): trying to do the same
  • RegEx Blacklisted phrase (3): Did you figure it out
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: kentborg

79256495

Date: 2024-12-05 23:30:00
Score: 5.5
Natty:
Report link

Having the same issue, started a few days ago, maybe week ago.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): Having the same issue
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: PingWinLqD

79256472

Date: 2024-12-05 23:12:56
Score: 4
Natty:
Report link

Set the sprite mode to Single(it was multiple)

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

79256466

Date: 2024-12-05 23:08:54
Score: 6 🚩
Natty: 6
Report link

Here's the solution to all of your problems - https://github.com/AmenokeAkira/Visual-Studio-Fixing

Reasons:
  • Probably link only (1):
  • 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: Amenoke