I hereby claim:
- I am josephspurrier on github.
- I am josephspurrier (https://keybase.io/josephspurrier) on keybase.
- I have a public key whose fingerprint is 3FC8 C7DA FEAD 9308 EC4D 1129 313E F9D9 CED7 C310
To claim this, I am signing this object:
| package main | |
| import ( | |
| "io" | |
| "net/http" | |
| ) | |
| func main() { | |
| http.HandleFunc("/", index) | |
| http.ListenAndServe(":8080", nil) |
| # Download Go (use any of the latest versions) | |
| curl -O https://storage.googleapis.com/golang/go1.8.linux-amd64.tar.gz | |
| # Extract Go | |
| tar -xvf go*.tar.gz | |
| # Install Go | |
| sudo mv go /usr/local | |
| # Create a workspace folder |
| #!/bin/bash | |
| # | |
| # chkconfig: 35 95 05 | |
| # description: Hello world application. | |
| # Run at startup: sudo chkconfig hello-world on | |
| # Load functions from library | |
| . /etc/init.d/functions |
| <form> | |
| <div style="width: 400px; margin: 0 auto; text-align: center; padding-top: 100px;"> | |
| <h1> | |
| <span style="color: blue;">G</span> | |
| <span style="color: red;">o</span> | |
| <span style="color: yellow;">o</span> | |
| <span style="color: blue;">g</span> | |
| <span style="color: green;">l</span> | |
| <span style="color: red;">e</span> | |
| </h1> |
| ################################################################################# | |
| # | |
| # Bash Configurations and Aliases for OS X | |
| # | |
| # Latest: https://gist.github.com/josephspurrier/acf7327726df6587a56ff2c2062314fa | |
| # This was modified so it can be included in your ~/.zshrc file with the command: | |
| # source ~/.bash_profile | |
| # | |
| # It's recommended to use oh-my-zsh: | |
| # sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" |
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "log" | |
| "net/http" | |
| "net/http/httptest" | |
| "net/url" | |
| "strings" | |
| ) |
| package main | |
| import ( | |
| "encoding/json" | |
| "io/ioutil" | |
| "log" | |
| "os" | |
| "path/filepath" | |
| "text/template" | |
| ) |
| <?php | |
| // File Location: projectroot/app/Http/Controllers/AwsController.php | |
| namespace App\Http\Controllers; | |
| use \App; | |
| use \AwsS3; | |
| class AwsController extends Controller |
| ################################################################################ | |
| # Set up PHP Project on OS X with Composer | |
| ################################################################################ | |
| # Download Composer | |
| curl -sS https://getcomposer.org/installer | php | |
| # Move to a global location | |
| mv composer.phar /usr/local/bin/composer |