distributed systems golang
golang
devops golang
blog engine in go
probabalistic data structures
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
pull down environment variables from etcd and run a process with them
Hadn’t seen this trick before.
S3 library for Go
Doing fun things with Go apps in Jenkins
FSM implementation for Go