1. lazydocker: The lazier way to manage everything docker
  2. fzf: A command-line fuzzy finder
  3. git-xargs: Make updates across multiple Github repositories with a single command

Tip of the week: How to make a loading animation:

frames="/ | \ -"
while :; do
for f in $frames; do printf "
%s Loading..." "$f"; sleep 0.5; done
done