1. tmuxp: tmux session manager
  2. readme-md-generator: CLI that generates beautiful README.md files

Article of the week: What happens when you press a key in your terminal?

But all of this was designed in the 70s or 80s or something and then needed to stay the same forever for backwards compatibility, so that’s what we get :)

Tip of the week: Split a string into an array with Zsh:

# by newline
% foo="one
two
three"
% bar=("${(@f)foo}")
% echo ${bar[1]}
one
# by character
% foo="one:two:three"
% bar=("${(@s/:/)foo}")
% echo ${bar[2]}
two