Thursday, 30 July 2026
Mathematics in VS Code with Lean
Friday, 17 July 2026
More on Data Validation in Pydantic
Thursday, 9 July 2026
What is Pylance?
Pylance is the component that enables Visual Studio Code to provide IntelliSense for Python.
It is underpinned by Microsoft's Pyright type checker (open source static type checker for Python). Read more about Pyright from the official website.
Thursday, 4 June 2026
C/C++ on VS Code
Tuesday, 5 May 2026
Microsoft's GitHub
Friday, 23 January 2026
Replit versus GitHub Codespaces
Thursday, 20 November 2025
Compiling C# in VS Code
For this you need the C# Dev Kit extension. It's Roslyn-powered.
The code name Roslyn was first written publicly by engineer Eric Lippert (the code was originally hosted on Microsoft's CodePlex before being moved to GitHub).
Dev Containers Extension in VS Code
What it is, What it does
The Dev Containers ("DC") extension is needed by Semantic Kernel in VS Code. It's worth expanding on its purpose here.
DC allows you to use a Docker container as a full-feature development environment (this is independent of how you deploy the thing).
More details here.
Dev Containers Dependencies
It requires Docker Desktop to be installed, which interacts with WSL2. If you don't have it, don't worry, however. VS Code will prompt you automatically to install it. After installation, you will see a status bar labelled "Setting up Dev Containers" followed by "Connecting to Dev Container (show log)".
Dev Container Configuration
This is located in semantic-kernel\.devcontainer\devcontainer.json. This is similar to launch.json for debugging configurations. More info here.
Tuesday, 18 November 2025
Allowing wsl.localhost in list of allowed hosts
When navigating to a directory in WSL from VS Code you may get the message:
The host 'wsl.localhost' was not found in the list of allowed hosts. Do you want to allow it anyway?
You will get the opportunity to hit Allow (because you trust the host, it is after all, your WSL installation) together with the option to flag: "Permanently allow host 'wsl.localhost'".
Friday, 12 September 2025
Microsoft Semantic Kernel
Microsoft Semantic Kernel is a "lighweight, open-source development kit" to build AI agents and integrate models into C#, Python and Java code.
When you load up SK into a fresh Visual Studio Code (no extensions) it will prompt to install recommended extensions. These will include:
- ESLint - integrates ESLint JavaScript into VS Code (for static analysis)
- Prettier - integrates Prettier, the opinionated code formatter (for JavaScript, TypeScript and other webby stuff)
- Azure Functions - to quickly manage serverless apps directly from VS Code
- vscode-pdf - to display pdf files in VSCode (required to open PDF code maps for .NET and Python)
Friday, 24 January 2025
GitHub Desktop
GitHub Desktop enables you to work with projects hosted on GitHub.
It is an open source application based on Electron (software framework to create desktop applications with web technologies: HTML, CSS and JavaScript with a Chromium browser engine front end and a Node.js backend, used in Visual Studio Code).
Roughly speaking it is a visual version of the CLI.
Thursday, 20 June 2024
Building a VSCode Extension
Tuesday, 18 June 2024
VSCode is Cool
Visual Studio Code is increasingly giving Microsoft Visual Studio a run for its money.
One of the plus points of VSCode is it's lightweight as well as having built-in support for JavaScript, TypeScript and Node.js with other languages supported as extensions.