Skip to content

Instantly share code, notes, and snippets.

@davext
davext / wp.sh
Created May 13, 2025 08:04
This bash script sets the mac wallpaper from a label
#!/usr/bin/env bash
# ────────────────────────────────────────────────────────────────────────────
# make-wallpaper.sh β€’ macOS β€’ ask for a label β†’ black 4-K JPEG wallpaper
# ────────────────────────────────────────────────────────────────────────────
set -euo pipefail
read -p "Enter the label to show on the wallpaper: " LABEL
[[ -z $LABEL ]] && { echo "No text entered – aborting."; exit 1; }
export LABEL # pass into Python
@davext
davext / allStates.JSON
Created August 26, 2021 18:11
All States In The World
[
"Badakhshan, Afghanistan",
"Badghis, Afghanistan",
"Baghlan, Afghanistan",
"Balkh, Afghanistan",
"Bamian, Afghanistan",
"Daykondi, Afghanistan",
"Farah, Afghanistan",
"Faryab, Afghanistan",
"Ghazni, Afghanistan",
@davext
davext / emailPixel
Created May 28, 2021 18:07
NGINX Reverse proxy for PM2 and Node.js Apps
. . .
location / {
proxy_pass http://localhost:8080;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}