I have Seen the Config (And AI Wrote It)
I Bless Thy Debugger My Child
Monday, 17 August 2026
Codex Terra Light 5.6 on the ChatGPT Application
Sunday, 16 August 2026
The .vs hidden directory
Visual Studio creates a .vs directory at the root of your solution. It is used to store solution specific settings and temporary data to help manage the state of your development environment. Fine to .gitignore.
However one interesting directory you may find inside is a slnx file.
A slnx file is the XML version of the traditional sln file. However what is in .vs are supporting files for the slnx file format rather than the file itself.
Service Status Pages
Visual Studio 2026 August Release Notes
MSVS runs on monthly feature updates.
Saturday, 15 August 2026
EC2 instances have different specializations
AWS Compute uses Multi-Tenancy
EC2 instances are virtual machines (VMs). VMs share an underlying physical machine with other instances (this is called multi-tenancy). This is enabled by software called a hypervisor. VMs are isolated but share resources.
When you provision an EC2 instance, you can choose the operating system as Windows or Linux. You can provision thousands of EC2 instances on demand. They are resizable so you can start small and then give your instance(s) more memory and CPU. This is the "elastic" nature of EC2 and is known as vertically scaling an instance. You can also control networking in EC2. Essentially you can choose what requests get to your server.
Virtualization is not a new concept; but AWS makes it more convenient to acquire servers via its Compute-as-a-Service model.