Skip to content

Instantly share code, notes, and snippets.

@jarbacoa
Created May 8, 2020 05:48
Show Gist options
  • Save jarbacoa/877f128ea5676cbf9fdb48cea4f9e08b to your computer and use it in GitHub Desktop.
Save jarbacoa/877f128ea5676cbf9fdb48cea4f9e08b to your computer and use it in GitHub Desktop.
alias cdd="cd ~/Documents"
alias cddesktop="cd ~/Desktop"
# Git
alias clone="git clone"
alias pull="git pull"
alias push="git push"
alias commit="git commit -m"
alias fetchall="git fetch --all"
alias addall="git add ."
# Bash Profile
alias openprofile="nano ~/.bash_profile"
alias sourceprofile="source ~/.bash_profile"
# Node
alias yart="yarn run start"
alias yadd="yarn add"
alias yarm="yarn remove"
alias yard="yarn dev"
#Pizza hut
alias yarntl="yarn test-eslint:fix"
alias yarntu="yarn test-jest:update"
alias yarntc="yarn test-jest:coverage"
# Youtube-dl
alias download-audio="youtube-dl -x --audio-format mp3"
# Ngrok
alias ngrok_hostheader="ngrok http --host-header=rewrite"
# Streamhut
alias streamhut="exec > >(nc streamhut.io 1337) 2>&1"
# Urbit
alias urbit="/usr/local/bin/urbit"
#Exports
export PATH=$PATH:/usr/local/go/bin
export PATH=$PATH:/usr/local/bin
export GOPATH=$HOME/Documents/go
export GOBIN=$GOPATH/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment