Dart: New project in my command palette does not work

When I run ctrl + shift + p to navigate into Dart: New project, after clicking the Dart: New project, I only see an error message saying (command ‘dart.createProject’ not found). What should I do to overcome this error!? I tried to add a new command in command palette but I failed to add it … Read more

How to disable this icon? Visual studio 2022

How to remove this icon from my central viewport. It’s basically just stuck in the middle of the screen, can’t click it, nothing. Where does this randomly come from? Probably a shortcut? Anyone know how to disable it? Would help me enormously. Ffs. enter image description here How many times have you tried to repair/reinstall … Read more

Invalid scope error |Unknown Scope error while requesting an authorization code with linkedin sign in api

Linkedin sign in docs. https://learn.microsoft.com/en-us/linkedin/shared/authentication/authorization-code-flow?context=linkedin%2Fconsumer%2Fcontext&tabs=HTTPS1 https://www.linkedin.com/oauth/v2/authorization?response_type=code&client_id={{client_id}}&redirect_uri=http://localhost:3000/login&state=foobar&scope=liteprofile%20emailaddress%20w_member_social i was trying this with actual client id and I’m getting this error http://localhost:3000/login?error=invalid_scope_error&error_description=Unknown+scope+%26quot%3B20emailaddress%26quot%3B&state=foobar in url bar. Tried removing liteprofile from scope Tried running the request in browser. Tried changing the redirect url

Running a springboot application in local works fine and I am able to access all the apis, but the docker image running is giving 404 error

Running a springboot application in local works fine and I am able to access all the apis, but the docker image of same codebase running is giving 404 error for every api, not even /actuator/mappings api Dockerfile: # Use a base image with Java 21 pre-installed FROM openjdk:21 # Copy the application’s jar file into … Read more

Gradle keeps waiting for JavaExec task to Complete

Gradle keeps waiting for JavaExec task to Complete. But I want gradle to move to other task and let the JavaExec Application to run in background till build is over . In Ant we simply acheived this by <parallel><daemons> <java fork=”true”> <daemons/><parallel/> But in gradle not getting a Simpler solution and Worker API seems complex. … Read more

I got a problem with my Ultrasonic HC-SR04

this is the error Tone.cpp.o (symbol from plugin): In function `timer0_pin_port’: (.text+0x0): multiple definition of `__vector_7′ C:\Users\ana98\AppData\Local\Temp\arduino_build_633619\libraries\NewPing\NewPing.cpp.o (symbol from plugin):(.text+0x0): first defined here collect2.exe: error: ld returned 1 exit status Using library NewPing at version 1.9.7 in folder: C:\Users\ana98\OneDrive\Documentos\Arduino\libraries\NewPing exit status 1 Error compiling for board Arduino Uno. My expectations where simple, just a code … Read more

Azure OpenAI ChatGPT returns incorrect date

I have the following code written in blazor .net 8. i am using “gpt-35-turbo” in Azure OpenAI whenever i ask a question like “What date is today?” ChatGPT answer Today is October 15, 2021. firstly i was expecting that it will respond with ‘I don’t know’, but instead it returned incorrect date. on other instance … Read more

Bootstrap Image Slider Carousel not working

So I am trying to build a website using Django to show images using an image slider carousel, but the code doesn’t seem to work. I have no idea why. Instead of being a carousel the images are stacked on top of one another. My html: <div class=”section”> <div class=”container”> <div class=”row justify-content-between”> <div class=”col-lg-7″> … Read more