This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
"Badakhshan, Afghanistan", | |
"Badghis, Afghanistan", | |
"Baghlan, Afghanistan", | |
"Balkh, Afghanistan", | |
"Bamian, Afghanistan", | |
"Daykondi, Afghanistan", | |
"Farah, Afghanistan", | |
"Faryab, Afghanistan", | |
"Ghazni, Afghanistan", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. . . | |
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; | |
} | |
} |