<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| package join | |
| import ( | |
| "fmt" | |
| "strings" | |
| "testing" | |
| ) | |
| var ( | |
| testData = []string{"a", "b", "c", "d", "e"} |
| package main | |
| import ( | |
| "fmt" | |
| "github.com/codegangsta/negroni" | |
| "github.com/gorilla/mux" | |
| "log" | |
| "net/http" | |
| ) |
This re-styles your sublime text sidebar to be dark, it fits default Monokai theme.
Save the Default.sublime-theme file into packages/Theme - Default, make a backup of your original if you want to be able to go back easily.
Based on:
| #to add network restriction | |
| sudo tc qdisc add dev lo root netem delay 100ms | |
| #to remove it network restriction | |
| sudo tc qdisc del dev lo root netem delay 100ms |
| #Colors | |
| git config --global color.branch auto | |
| git config --global color.diff auto | |
| git config --global color.interactive auto | |
| git config --global color.status auto | |
| #User | |
| git config --global user.name "Thiago Caiubi" | |
| git config --global user.email [email protected] |
| #undo last commit | |
| git reset HEAD^ | |
| #show files in a given commit | |
| git show --pretty="format:" --name-only rev_number | |
| #remove untracked files and directories | |
| git clean -f -d | |
| #track remote branch |
| #!/bin/bash | |
| PASTEL='{ | |
| "Ansi 0 Color" = { | |
| "Blue Component" = 0.3097887; | |
| "Green Component" = 0.3097887; | |
| "Red Component" = 0.3097887; | |
| }; | |
| "Ansi 1 Color" = { | |
| "Blue Component" = 0.3764706; |