problem area

Apple Terminal

macOS and Apple-adjacent terminal workflows for developers and power users.

10 checked fixes

One-liners in this area

Apple Terminal safe

Find Large Files Inside a Project

Before committing, check whether a huge video, build artifact, or export slipped into your repo.

find . -type f -size +100M -print
Apple Terminal caution

Flush macOS DNS Cache

Changed DNS but your Mac still visits the old place? Flush the resolver cache.

sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder