Start with Golang
Setup local environment
Setup IDE
Tools and Libs
Test framework: https://github.com/stretchr/testify
Package manager: github.com/mattn/gom I prefer this one becuase it is simple and it is possible to store all vendors in local folder.
Log manager: https://github.com/Sirupsen/logrus
Monitoring: https://github.com/gocraft/health
Sidekiq compatible BackgroundJobs: https://github.com/jrallison/go-workers
Libchan: http://blog.codeship.com/composable-go-services-using-libchan/
Debugger: https://github.com/derekparker/delve
Web Frameworks:
Cache:
Practice Go and share samples via:
Bootstrap project: http://go-bootstrap.io
Always format your code before commit:
Tutorial: http://blog.golang.org/go-fmt-your-code
Hooks: https://golang.org/misc/git/pre-commit or https://github.com/edsrzf/gofmt-git-hook
Books, News and Tutorials