Skip to content

Instantly share code, notes, and snippets.

@kare
kare / hello.c
Last active November 22, 2016 13:09
plan9port: Hello, World!
#include <u.h>
#include <libc.h>
void
main(void)
{
print("Hello, World!\n");
exits(0);
}
@kare
kare / apple-keyboard-unicode-symbols.tsv
Last active September 9, 2015 15:11
Apple Keyboard Unicode Symbols
Character Hex ASCII Description
238B 9099 Esc
232B 9003 Backspace / Delete
21EA 8682 Capslock
23CE 9166 Return
21E7 8679 Shift
2325 8997 Option
2318 8984 Command

Keybase proof

I hereby claim:

  • I am kare on github.
  • I am kare (https://keybase.io/kare) on keybase.
  • I have a public key whose fingerprint is 8A09 67D5 731C 7EE3 5B95 DF9F 8AC3 1763 3388 A6E6

To claim this, I am signing this object:

func httpHandler(next http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
next.ServeHTTP(w, r)
}
return http.HandlerFunc(fn)
}