Visual Studio Code – Wrong output on Linux
I have this code int[] Array = { 0, 1, 2, 3, 4, 5 }; int i; for (i = 0; i < 6; i++) Console.Write(" " + Array[i]); Console.WriteLine("n New Array"); Array = new int[] { 99, 10, 100,…
I have this code int[] Array = { 0, 1, 2, 3, 4, 5 }; int i; for (i = 0; i < 6; i++) Console.Write(" " + Array[i]); Console.WriteLine("n New Array"); Array = new int[] { 99, 10, 100,…
I'm trying to run an ipynb file in vscode and I'm stuck. The extension host keeps crashing and I think I might've found a culprit. Some info about what I'm working with: I'm working on a relatively old macOS (10.13.6)…
I'm trying to code a program that approximates pi using a certain equation. However, when I go run the code it outputs 4.8731472566 instead of 3.1415924576 and I was wondering if there were any mistakes in my code. Here's what…
I have been trying to make changes to a csv invoice that my company gets on a monthly basis. However, the File is 1.5 GB in size and contains over 1.500.000 rows with 36 columns. While I can open the…
I have install Flutter and set up Android SDK. But know I am facing this issue. FAILURE: Build failed with an exception. * What went wrong: The supplied javaHome seems to be invalid. I cannot find the java executable. Tried…
I am beginner in azure and I want to deploy an angular application to azure with Visual Studio Code, so I followed this tutorial https://www.youtube.com/watch?v=u_CRppLcC9k which is really helpful but after running ng build --configuration=production a dist folder is generated…
You can manage settings for each workspace in the .vscode/settings in the root of the workspace folder, it doesn't seem possible to do this with enabling/disabling extensions (unless the extension itself has a setting to enable/disable itself). For example so…
After 3 years on VS, I decided to try Visual Code with clangd for a bit. I work for a big company with huge legacy code and technical debt so I often have to work with some old code and…
While developing I used from pydantic import ValidationError . . . from jsonschema.exceptions import ValidationError I used the first imports but further I added another second import which resulted in not catching the expected result .but vscode did not throw…
I have written a Python notebook .ipynb in Visual Studio Code which includes code chunks and markdown chunks. I want to export this file into Microsoft Word .docx format. It is easy to export it as .pdf but how can…