Skip to content

Instantly share code, notes, and snippets.

@chamindac
chamindac / win10dockerinstallwsl2.ps1
Last active July 5, 2025 21:55
This script automates installation of Docker Desktop on Windows 10 and uses WSL2
set-executionpolicy -scope CurrentUser -executionPolicy Bypass -Force
If (-NOT ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator))
{
# Relaunch as an elevated process:
Start-Process powershell.exe "-File",('"{0}"' -f $MyInvocation.MyCommand.Path) -Verb RunAs
exit
}
$ProgressPreference = 'SilentlyContinue'
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active April 19, 2026 06:07
Conventional Commits Cheatsheet