I hereby claim:
- I am johnny13 on github.
- I am thirt13n (https://keybase.io/thirt13n) on keybase.
- I have a public key ASAbuv-9281qzftOHOFT9qzbT9_EC7c1idYI5hNuMNThvAo
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| ########################[ PROMPT COLOR CODES ]####################### | |
| if tput setaf 1 &> /dev/null; then | |
| tput sgr0; # reset colors. | |
| BLK="$(tput setaf 0)" # Black - Regular | |
| RED="$(tput setaf 124)" # Red | |
| GRN="$(tput setaf 64)" # Green |
| ############################################################################# | |
| # Below are the color init strings for the basic file types. A color init | |
| # string consists of one or more of the following numeric codes: | |
| # | |
| # -------------- [ ATTRIBUTES ] -------------- | |
| # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed | |
| # Text color codes: | |
| # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white | |
| # Background color codes: | |
| # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white |
| # | |
| ## Shortcuts | |
| alias d="cd ~/Documents/Dropbox" | |
| alias dl="cd ~/Downloads" | |
| alias dt="cd ~/Desktop" | |
| alias p="cd ~/projects" | |
| alias g="git" | |
| alias h="history" | |
| alias j="jobs" |
| # install Homebrew if you don't already have it: http://mxcl.github.io/homebrew/ | |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| # Install `wget` with IRI support. | |
| brew install wget --with-iri | |
| # install nano from homebrew | |
| brew install nano | |
| # update your nanorc file with the contents of the nanorc file below |
| # Install Homebrew | |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| # Install nvm | |
| brew install nvm | |
| # Export nvm environment | |
| export NVM_DIR="$HOME/.nvm" | |
| . "$(brew --prefix nvm)/nvm.sh" |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| $email = (new WP_Mail) | |
| ->to('john.doe@gmail.com') | |
| ->subject('WP_Mail is great!') | |
| ->template(get_template_directory() .'/emails/demo.html', [ | |
| 'name' => 'John Doe', | |
| 'location' => 'London', | |
| 'link' => 'http://github.com/anthonybudd/WP_Mail' | |
| ]) |