Key binding | Action |
---|---|
M n | next-window |
M p | previous-window |
M j | move down a pane |
M k | move up a pane |
M h | move left a pane |
M-l | move right a pane |
M ↑ | move the pane divide up (resize) |
M ↓ | move the pane divide down (resize) |
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" | |
"net/http" | |
) | |
func Rofl(w http.ResponseWriter, r *http.Request) { | |
fmt.Fprintln(w, "ROFL") | |
} |
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" | |
"net/http" | |
) | |
func Yolo(w http.ResponseWriter, r *http.Request) { | |
fmt.Fprintln(w, "YOLO") | |
} |
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" | |
"net/http" | |
) | |
type Lol struct{} | |
func (l *Lol) ServeHTTP(w http.ResponseWriter, r *http.Request) { |
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
http.Handle("/yolo2", http.HandlerFunc(Yolo)) |
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
http.Handle("/yolo2", http.HandlerFunc(Yolo)) |
I hereby claim:
- I am wm on github.
- I am wmernagh (https://keybase.io/wmernagh) on keybase.
- I have a public key whose fingerprint is E2C9 3136 5CC3 DA1C 9F5C 1A67 ED8C 249C 2A6A 260D
To claim this, I am signing this object:
Extract uniq emails sorted by domain from file.
Note that we ignore emails of the form [email protected], i.e. if it has a '<' we ignore it.
$ extract_emails.zsh file_with_emails.txt
[email protected]
[email protected]
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
let g:zeus_prefix = "" | |
let g:bundle_prefix = "" | |
let g:fdoc_prefix = "" | |
" Toggle the rspec_command | |
function! ToggleRspecCommand(prefix_name, prefix) | |
if g:{a:prefix_name}_prefix != "" | |
let g:{a:prefix_name}_prefix = "" | |
else | |
let g:{a:prefix_name}_prefix = a:prefix . " " |
NewerOlder