From Azure Autoscaling to Next Gen Desktop Development not Forgetting Firmware on the Way
Thursday, 20 June 2024
WSL1 versus WSL2
Building a VSCode Extension
Tuesday, 18 June 2024
WSL at MS Build 2024
Windows Subsystem for Linux (wsl)
wsl is available in versions of Windows 10 and above.
wsl --list
Will list installed distributions. In no distribution is installed, it will say "Windows Subsystem for Linux has no installed distributions".
To view a list of available distributions type:
wsl --list --online
This will give you some distributions like Ubuntu, Debian, kali-linux, openSUSE and others.
Here's how to install the Ubuntu distribution.
wsl --install -d Ubuntu
There are some recommended practises for setting a development environment in wsl.
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.
Monday, 17 June 2024
Advertising SDKs and Standards
Microsoft Advertising SDK is compatible with a range of standards including OpenRTB, VAST 2.x, MRAID and VPAID from the IAB (Interactive Advertising Bureau).
CodeQL and Security
CodeQL is a tool for developers to automate security checks. It treats code as data, onto which queries can be run. These queries are designed to detect security vulnerabilities. CodeQL is free to use on public repositories.