61,218 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-1
votes
0
answers
38
views
Debugging problems with uv, Polars, and Visual Studio Code
I'm having a lot of problems in the interaction between uv, Polars, and Visual Studio Code.
I run my Polars code within a virtual environment built with uv.
Sometimes the kernel just dies.
Sometimes a ...
3
votes
0
answers
74
views
How to have the language server in Visual Studio Code recognize that a JavaScript file is meant to be used as service worker?
For example, given a single file service_worker.mjs with these contents:
self.addEventListener("install", () => self.skipWaiting());
self.addEventListener("activate", () => ...
0
votes
0
answers
37
views
How to properly detach from a remote debug session?
With VS Code, I want to debug my application running on a remote target.
For this, on the target I'm running gdbserver :1234 --attach $(pidof myapp).
I have created a launch.json script for code:
{
...
0
votes
0
answers
75
views
Visual Studio Code : jar import error - package does not exist
When referencing an external library (.jar) with an import, i get the error "package ... does not exist".
I precised that compilation is OK (when i print in the console, changes are ...
0
votes
0
answers
47
views
how to connect web application in my laptop to a raspberry pi through MQTT? [closed]
I have a web application to a restaurant. There is a reservation part. raspberry pi working as a central robot and it contains the reserved and non reserved tables. when customer select no reservation ...
-1
votes
0
answers
46
views
Problems in VS Code with -Command parameter
There is a task file VS Code tasks.json:
{
"version": "2.0.0",
"tasks": [
{
"label": "Hello, World",
"...
1
vote
1
answer
55
views
Visual Studio Code auto completion
I am new to coding and I recently downloaded VS Code on my MAC to code.
The thing is that I am tired of whenever I write something, suppose a tag like <ul>, then VS Code automatically puts the ...
-1
votes
1
answer
34
views
How can I create clickable Mermaid diagrams in Markdown (Jupyter Notebook / VS Code) that open local files?
I’m using Mermaid diagrams inside Markdown, rendered in a Jupyter Notebook opened in VS Code.
My goal is to represent an organization / process / pipeline graph where nodes are clickable, ideally ...
-3
votes
0
answers
53
views
C# Visual Studio Code want to run a project which is in a different folder than the solution [closed]
I have a C# API created in Visual Studio Code. I have the .sln in a different folder than the APi.csproj.
I have the requirement to run the application using bash from the .sln directory.
When I run ...
2
votes
1
answer
127
views
Why is std::filesystem::current_path() not able to get current path? [closed]
I'm using VS Code with CMake Tools extension on Ubuntu.
This C++ program produces the following output when run with "CMake: Debug" (which I select using the Command Palette):
#include <...
3
votes
0
answers
118
views
VS Code stuck on "Initializing 'tsconfig.json"
Recently my VS Code seems to have a problem initializing my VueJs workspaces. When a .vue file is open VS Code displays "Initializing 'tsconfig.json'" in the the lower left-hand corner and ...
3
votes
1
answer
109
views
I want to use a different compiler but when i close vscode or refresh it goes back to the same old compiler settings
i am having trouble updating c_cpp_properties.json:
{
"version": 4,
"configurations": [
{
"name": "windows-clang-x64",
"includePath&...
2
votes
1
answer
110
views
Debugging Jupyter Notebook in VS Code
I tried to debug a notebook in VS Code but I can't. When I set a breakpoint and run debug cell or press F5, I am getting this error
/usr/bin/env /home/user/anaconda3/envs/myenv/bin/python /home/user/....
-1
votes
0
answers
48
views
VS code extension side panel UI development test [closed]
Is there anything I have to test the UI sidebar UI design test always without check from the extension running.
0
votes
1
answer
47
views
Dockerized Symfony app debug in VSCode - 9003 port occupied
Symfony app as container in docker-compose.yaml:
users:
build:
context: .
dockerfile: ./docker/Dockerfile
container_name: users
restart: unless-stopped
working_dir: /var/...