Skip to content

Instantly share code, notes, and snippets.

View Enzime's full-sized avatar
❄️
Nixing into the night

Michael Hoang Enzime

❄️
Nixing into the night
View GitHub Profile
@tkisason
tkisason / win11-arm64.md
Last active August 2, 2025 17:10
Build an arm Win11 Pro ISO on Linux / MacOS without homebrew or other binaries

Build a arm Win11 Pro ISO on Linux / MacOS without homebrew or other binaries

This is a short guide on how to build a Win11 Pro ISO image on a linux vm and a macos machine running apple silicon. Such an ISO file can be used to install Win11 Pro on an Apple Silicon (m1 / m2) macbook under vmware. Yes, there are binaries, scripts and tools for this, but this guide only requires some linux tools and a plain macos machine without homebrew and without running some shady binaries downloaded from the Internet.

Download the Win11 product catalog in CAB from from: https://go.microsoft.com/fwlink?linkid=2156292

Unarchive the cab file, extract the products.xml file

@dhoeric
dhoeric / 0_README.md
Last active December 7, 2025 23:50
Google Calendar - Public Holiday Calendars
@AdamGerthel
AdamGerthel / index.js
Created July 16, 2019 11:55
Tinder data funnel script (node.js)
/*
* Node.js helper script for creating a SankeyMATIC funnel
*
* Step 1: Request Tinder from https://account.gotinder.com/data
* Step 2: Wait for your data
* Step 3: Place the data.json file from your data folder next to this script
* Step 4: Run the script: `$ node index.js`
* Step 5: Copy and paste the console output here: http://sankeymatic.com/build/
*/
@Francesco149
Francesco149 / shige-skins.md
Last active March 31, 2024 14:53
Shigetora / Cookiezi skin compilation
@dbohdan
dbohdan / Zsh: change directory using ranger
Created August 17, 2013 16:15
Adopted from the "Bash: cd to last path after exit" example in the man page for ranger(1).
ranger-cd() {
tempfile=$(mktemp)
ranger --choosedir="$tempfile" "${@:-$(pwd)}" < $TTY
test -f "$tempfile" &&
if [ "$(cat -- "$tempfile")" != "$(echo -n `pwd`)" ]; then
cd -- "$(cat "$tempfile")"
fi
rm -f -- "$tempfile"
}