This gist is maintained for whenever I start fresh on a new OS. It's comprised of one-liners that I can copy-paste into a terminal and rapidly spin up my needed apps.
- Casks:
brew install --cask slack sublime-text transmission dropbox cyberghost-vpn spotify vlc signal whatsapp telegram google-chrome exodus skype sequel-pro brave-browser screaming-frog-seo-spider lulu mamp discord iterm2 omnidisksweeper visual-studio-code megasync yacreader transmit disk-inventory-x notion
- Bottles:
brew install nvm node weechat tor wget git wp-cli mysql composer yt-dlp ffmpeg rar mpv aria2c tree
- Global npm packages:
npm install -g peerflix js-beautify
- Casks:
brew install --cask burp-suite
- Bottles:
brew install nmap wpscan sqlmap nikto
- Python packages:
pip install fierce
- Go packages:
declare -a tmpGoApps=( "github.com/projectdiscovery/nuclei/v2/cmd/nuclei@latest" "github.com/tomnomnom/gf@latest" "github.com/tomnomnom/meg@latest" "github.com/tomnomnom/assetfinder@latest" "github.com/tomnomnom/waybackurls@latest" "github.com/tomnomnom/httprobe@latest" "github.com/tomnomnom/fff@latest" );for tmpGoApp in ${tmpGoApps[@]}; do; go install $tmpGoApp; done;