I've still never gotten into `fzf` (and maybe I never will!) but I think it's really cool that you can use a fzf 1-liner to make things like this little UI for reviewing git commits

(fzf stands for "fuzzy finder" but I think it's interesting that you can use it for many things that do not involve searching or finding at all!)

https://jvns.ca/til/fzf-preview-git-commits/

@b0rk one of my #1 most common bash aliases I use is this:

alias bb="git branch --sort=-committerdate| fzf |xargs git checkout "

it let's you see most recently changed git branches, and then pick from that list with a simple 'fuzzy finder' typer