I’m now a Mac user, before it was Ubuntu.
- Homebrew
- iTerm2 + ohmyzsh + direnv
- VSCode Insiders (settigns)
- vim + sublime
- Sequel Pro
- 1password – password manager
- VLC player
- Google Chrome
- 1Password extension
- Adblock for Youtube
- Adblock Plus
- AdBlock
- Grammarly
- Mailto: for Gmail
- Refined GitHub
- Momentum
- Calendars
- Caffeine
- Disk Doctor
- ScreenFlow
- Tunnelblick
- PingStatus
- CopyClip
- Spotify / Radiant Player / SoundCleod
- Dropbox
- Slack / Telegram
- Backup and sync from Google
- Caps Lock key to switch languages
sh
eval "$(direnv hook zsh)"
alias go="git checkout"
alias code="code-insiders"
function getId(){
aws ec2 describe-instances --filters Name=tag:Name,Values=$1|jq ".Reservations[].Instances[].InstanceId" --raw-output
}
# $ goe production1
function goe() {
aws ssm start-session --target $(getId $1)
}