I hereby claim:
- I am hazbo on github.
- I am hazbo (https://keybase.io/hazbo) on keybase.
- I have a public key ASD068DiePWFbwOLtjXtDsxeUf_wG3ZBIgHJSyU9ceOo0wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| set nocompatible " be iMproved, required | |
| filetype off " required | |
| " set the runtime path to include Vundle and initialize | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| " alternatively, pass a path where Vundle should install plugins | |
| "call vundle#begin('~/some/path/here') | |
| " let Vundle manage Vundle, required |
| #!/bin/bash | |
| CONTAINER=$1 | |
| RUNNING=$(docker inspect --format="{{ .State.Running }}" $CONTAINER 2> /dev/null) | |
| if [ $? -eq 1 ]; then | |
| echo "'$CONTAINER' does not exist." | |
| else | |
| /usr/bin/docker rm --force $CONTAINER |
| package main | |
| import( | |
| "fmt" | |
| ) | |
| // Defining the data types we will use | |
| // in our Person struct | |
| type Person struct { | |
| name string |
| package main | |
| import( | |
| "fmt" | |
| "net/http" | |
| "time" | |
| "io/ioutil" | |
| ) | |
| type ResponseData struct { |