This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set -g default-terminal "xterm-256color" | |
setw -g xterm-keys on | |
bind -r H resize-pane -L 5 | |
bind -r J resize-pane -D 5 | |
bind -r K resize-pane -U 5 | |
bind -r L resize-pane -R 5 | |
bind -r C-h select-window -t :- | |
bind -r C-l select-window -t :+ | |
bind h select-pane -L | |
bind j select-pane -D |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"os" | |
"encoding/json" | |
) | |
type Foobar struct { | |
A_int int |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am steakejjs on github. | |
* I am ej (https://keybase.io/ej) on keybase. | |
* I have a public key whose fingerprint is 9AA6 07A3 AD1D 45DA BDE3 3CEE 82A5 93BA A90B E68C | |
To claim this, I am signing this object: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~ echo "MTQyODg2MTkwOHxEdi1CQkFFQ180SUFBUkFCRUFBQU1QLUNBQUlHYzNSeWFXNW5EQVVBQTJadmJ3WnpkSEpwYm1jTUJRQURZbUZ5QTJsdWRBUUNBRlFEYVc1MEJBSUFWZz09fGZWZuwf1oFeGx0R7d7EzCqJix5E-N4AGeXlMXNb0Uju" | base64 -D | |
1428861908|Dv-BBAEC_4IAARABEAAAMP-CAAIGc3RyaW5nDAUAA2ZvbwZzdHJpbmcMBQADYmFyA2ludAQCAFQDaW50BAIAVg==|fVf�ց^����*��D����1s[�H�% | |
➜ ~ echo "Dv-BBAEC_4IAARABEAAAMP-CAAIGc3RyaW5nDAUAA2ZvbwZzdHJpbmcMBQADYmFyA2ludAQCAFQDaW50BAIAVg==" | base64 -D | |
����0��stringfoostringbarintTintV% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am ejcx on github. | |
* I am ej (https://keybase.io/ej) on keybase. | |
* I have a public key whose fingerprint is 9AA6 07A3 AD1D 45DA BDE3 3CEE 82A5 93BA A90B E68C | |
To claim this, I am signing this object: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"crypto/rand" | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"crypto/rand" | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd | |
echo "export PATH=\"/usr/local/go/bin/\":\$PATH | |
export GOPATH=\"/root/go\"" >> ~/.bashrc | |
curl https://storage.googleapis.com/golang/go1.4.2.linux-amd64.tar.gz > go.1.4.2.tar.gz | |
tar -zxvf go.1.4.2.tar.gz | |
mv go /usr/local/ | |
mkdir go | |
cd go | |
mkdir src bin pkg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"os/exec" | |
"fmt" | |
) | |
func main() { | |
err := exec.Command("man", "-P /tmp/runme.sh", "man").Run() | |
fmt.Println(err) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"log" | |
"net/http" | |
"os" | |
"github.com/gorilla/sessions" | |
) |
OlderNewer