All Questions
Tagged with vscode or visual-studio-code
61,369 questions
0
votes
0
answers
8
views
How to use multiple cores for compilation in vscode + cmake
I am trying to compile a single project with multiple cores.
Here is my tasks.json in vscode.
{
"version": "2.0.0",
"tasks": [
{
"label": &...
0
votes
0
answers
4
views
Databricks plugin for VS Code issues in Debug mode
I am using Databricks plugin for VS Code and able to configure the connection settings.
Able to execute the Pyspark Notebooks in VS Code using Databricks RUN (Run current file with Databricks Connect) ...
0
votes
0
answers
7
views
Creating Kerberos credentials cache - Oracle VS Code
I've been working on getting the Oracle VS Code extension set up. I have an Oracle client that uses Kerberos authentication (note that this is a company-managed laptop, I do not have admin access)
I'm ...
2
votes
0
answers
36
views
Creating Venv fails due to ModuleNotFoundError: No module named 'torch'
I have cloned this Github repo into VSCode in order to start a new project. While trying to create a virtual environment with venv, VSCode detected the requirements.txt and asked me for permission to ...
-8
votes
0
answers
50
views
Conecting MySQL using Python in VS Code [closed]
This is my Python code:
import mysql.connector
print("🟡 Trying to connect...")
try:
mydb = mysql.connector.connect(
host="localhost",
user="root",
password="...
-3
votes
0
answers
22
views
platform.io serial monitor troubles with port index
I'm trying to connect a humidity sensor to my blues notecard using platform.io and I have successfully built, flashed, and uploaded my code but when I go to the serial monitor to test and see the ...
0
votes
0
answers
16
views
Creating cdk pipeline but it deletes itself
I am new to cdk and trying to create a simple pipeline from udemy course and at first its fine I even saw that the pipeline was being created and when it was almost complete i got a pipeline not found
...
0
votes
0
answers
10
views
VSCode ${selectedText} Variable Doesn't Work with Big Files( ~40 MB or bigger)
I use VSCode to work with some big proprietary log files (ASCII text). Part of the flow is to select small chunk of the text (< 20 characters) and invoke external task in terminal. The task ...
0
votes
1
answer
47
views
How do I set default document for an ASP.NET Core 8 web app in Azure App Services?
First time experimenting with creating an ASP.NET Core 8 web application in Visual Studio Code. I chose .NET 8 because it's the newest version. I am deploying it via Azure App Services. I am very ...
-4
votes
0
answers
22
views
how to automatically sync / copy all tabs in vscode across all split views
Is there any extension to automatically open tabs for a file in every split view panel? So that each split view has the same set of file tabs?
Right now, when I open a file, it only shows up as a ...
0
votes
1
answer
22
views
R Syntax Highlighting for RMD files in VSCode Suddenly Stopped / Changed
I went to create a new .rmd file in vscode and realized suddenly my syntax highlighting changed/stopped working. I basically stripped all my settings, and did a clean install of vscode and my ...
0
votes
1
answer
41
views
Pico Hardware SDK options not available for C++
I'm playing around with the Pico SDK and the extension in VS Code and it seems that when I produce a C++ file program instead of C, a number of the hardware options are no longer available to include. ...
1
vote
1
answer
33
views
Is it possible to change font size for a specific editor tab
Is it possible to change the font size of a specific editor tab.
i.e. I would like to change the font size of a specific opened file/tab to a different size from my usual global editor font size. It ...
0
votes
0
answers
30
views
Cannot ssh connect via VSCode Remote - SSH
I am having trouble to connect to my remote machine through the Remote - SSH in VSCode.
I am using Windows, and I managed to make the ssh connection work through WSL and even PowerShell. To be more ...
-4
votes
0
answers
38
views
Postman backend API and Angular Application [closed]
I need help getting my angular application to communicate with my backend api. I need my product to look like the attached image. I currently am using postman that takes JSON data, and it works ...