Upgrade All
Upgrade all global installables.
apt
Homebrew
Python
npm
Ruby
Go
apt upgrade
brew upgrade
pip list --outdated --format=json | jq '.[] | .name' | xargs -n1 pip install -U
npm update -g
gem update
# Open a PR to complete this 🫶🏻
info
The pip commands is modified from this StackOverflow answer.