Quick Pods

Sometimes you just need a quick pod of a given Linux flavour to test a quick scenario: kubectl run debian-container -n default --rm -it --image=debian:stable -- bash kubectl run circle-container -n default --rm -it --image=cimg/base:2026.01 -- bash kubectl run go-container -n default --rm -it --image=cimg/go:1.25.5 -- bash kubectl run ubuntu-container -n default --rm -it --image=ubuntu:26.04 -- bash Also, the CLI to get just load balancers is annoying: ...

January 10, 2026 · 1 min

macOS: Flush the DNS cache

This is common knowledge… but I don’t need to do it enough to have it memorized… and I’m tired of looking it up! So I’m writing it down here: sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder There! Now it’s written down on the web in one more place… 🙄

December 10, 2025 · 1 min