strftime for Go
Q: Why? We already have time.Format.
A: Yes, but it becomes tricky to use if if you have string with things other
than time in them. (like /path/to/%Y/%m/%d/report
)
go get github.com/tebeka/strftime
str, err := strftime.Format("%Y/%m/%d", time.Now())