Tools

A collection of tools and utilities I use and recommend.

Mac Apps

  • Shottr – Lightweight screenshot tool for Mac
  • Raycast – Extensible launcher for macOS
  • Cursor – AI-powered code editor
  • Warp – Modern terminal with AI features
  • Linear – Issue tracking and project management
  • Superhuman – Fast email client
  • 1Password – Password manager and secure vault
  • Obsidian – Knowledge management and note-taking
  • Bruno – Like Postman but free & open source

iOS Apps

  • Streaks – Habit tracking app for iOS

Chrome Extensions

  • Unhook – Block all suggestions on Youtube

Terminal utilities

A script I use to install software when I get a new mac:

brew install zsh # Bash with easier customizations
brew install the_silver_searcher # Ack but faster
brew install httpie # Curl but simpler
brew install gh # Useful for having cursor agent open PRs
brew install dotenvx/brew/dotenvx
brew install ngrok
brew install ffmpeg
brew install watchman

A list of aliases I use often:

alias pn=pnpm

alias g='git'
alias gp='f() { git add -A && git commit -m "$1" && git push; }; f'