probabalistic data structures
golang
gofmt like tool (can you plugin to gofmt?) that rewrites ignored returns to explicitly set ‘_‘.
fmt.Println("hi")
gets rewritten to:
_err := fmt.Println("hi")
or something similar.
Preempts the complaint that Go lets you ignore errors.
golang
ideas
nice looking leveldb wrapper for go
golang
pull down environment variables from etcd and run a process with them
devops
golang
Hadn’t seen this trick before.
golang
FSM implementation for Go
golang