Run Tailscale on macOS Mojave 10.14
I have a photo tool that will not run on any macOS newer than Mojave, so I dug out an…
I have a photo tool that will not run on any macOS newer than Mojave, so I dug out an…
There are a few ways to accomplish getting just the HTTP status code for a URL using cURL, but many…
Excellent tool to quickly test the current network’s download and upload speeds. % networkQuality ==== SUMMARY ==== Upload capacity: 10.767…
My Time Machine backups started taking an insane amount of time to complete. After some research, I was able to…
I have a need to route all traffic to a running Docker conainer through a second network interface card (NIC)…
I needed to setup a crontab entry to restart a node process every week after Let’s Encrypt renewed my certificate.
To base64-encode a Uint8Array with arbitrary data (not necessarily UTF-8) using native browser functionality: const base64_arraybuffer = async (data) =>…
To lock the file: chflags uchg {file path} To unlock the file: chflags nouchg {file path} Keywords: lock, unlock, command…
for file in A2B*.bif; do mv "$file" "${file//A2B/a02b}"; done make lowercase: for folder in *; do mv -nv "$folder" "`echo…
Install macOS iMovie 10.2 or later or iOS iMovie 3.0 or later Bring the clip into a new iMovie project…
git diff --name-only <SHA, tag start> <SHA, tag end> Or with the actions performed: git diff --name-status <SHA, tag start>…
Checks the TLS cert on the connection: curl -v \ --insecure \ --include \ --no-buffer \ --header "Connection: Upgrade" \…
I like to keep a permanent record of my shell commands so I can search back through them later. This…
Error message received: ``` Ctl Model Ports PDs DGs DNOpt VDs VNOpt BBU sPR DS EHS ASOs Hlth 0 LSIMegaRAIDSAS9260-8i…
declare f="fafafda adffd adfadf adfafd afd" echo $f echo "vs" echo "$f" Output: $./above fafafda adffd adfadf adfafd afd vs…
When doing a console.log on an object, you can overwrite the inspect prototype key to hide anything you don’t want…
git log --all --name-only --pretty=format:%H -- {glob} example: git log --all --name-only --pretty=format:%H -- index*
defaults write com.apple.loginwindow TALLogoutSavesState -bool false
Error you get running docker: docker-compose: error while loading shared libraries: libz.so.1: failed to map segment from shared object: Operation…
For me, this was due to an incompatible version of complete being used with the WireGuard wg and wg-quick commands…