Skip to content

Instantly share code, notes, and snippets.

View chipsenkbeil's full-sized avatar
🏠
Working from home

Chip Senkbeil chipsenkbeil

🏠
Working from home
View GitHub Profile
@coltenkrauter
coltenkrauter / detailed-home-assistant-os-installation-in-vm-on-truenas-scale.md
Last active September 17, 2025 04:10
Comprehensive instructions for installing Home Assistant OS in a VM on TrueNAS SCALE.
@slardiere
slardiere / openssh.ps1
Last active February 7, 2022 22:31
Install OpenSSH on Windows
Add-Type -AssemblyName System.IO.Compression.FileSystem
function Unzip
{
param([string]$zipfile, [string]$outpath)
[System.IO.Compression.ZipFile]::ExtractToDirectory($zipfile, $outpath)
}
$url = 'https://github.com/PowerShell/Win32-OpenSSH/releases/latest/'
$request = [System.Net.WebRequest]::Create($url)