These are the Homebrew packages I have used: https://brew.sh ``` brew install --cask visual-studio-code brew install --cask github brew install --cask firefox brew install gh brew install docker brew install nvm (requires additional steps here https://tecadmin.net/install-nvm-macos-with-homebrew/) brew install --cask iterm2 brew install --cask bloomrpc brew install --cask textmate brew install --cask scroll-reverser brew install --cask gimp brew install awscli brew install --cask dotnet-sdk brew install ansible brew install go brew install postgresql brew install --cask vlc brew install wget brew install earthly brew install --cask clipy brew install protobuf brew install k6 brew install --cask microsoft-teams ``` Useful commands: ``` brew update brew outdated #(should brew update first!) brew upgrade ``` Note: updating postgres in particular is annoying because it requires a convenience symlink to be updated to point to the new version folder. You can use `readlink -f ` to show where the symlink points to, such as `readlink /usr/local/Cellar/postgresql@13/bin`. To update the symlink, change it like this: `ln -sfn /usr/local/Cellar/postgresql@13/13.8_2/bin /usr/local/Cellar/postgresql@13/bin`