This my walkthrough to set up a developer machine
Do these things first
1. Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install --cask iterm2
brew install --cask visual-studio-code
Summary for ssh
$ ssh-keygen -t ed25519 -C "your_email@example.com"cd ~/.sshcat id_***.pub
Summary for config
git config --global user.name "FIRST_NAME LAST_NAME"git config --global user.email "MY_NAME@example.com"
brew install node@16
brew install yarn