Minor updates.

Jason Buberel 2015-09-07 18:42:54 -07:00
parent d8d72c9104
commit 95ef4e2a44
2 changed files with 3 additions and 0 deletions

@ -33,6 +33,7 @@ Table of Contents
* [Best Practices for a new Go Developer](https://medium.com/@IndianGuru/best-practices-for-a-new-go-developer-8660384302fc) _2015-09-01_
* [Golang Refactoring Tools](http://blog.ralch.com/tutorial/golang-tools-refactoring/) _2015-08-30_
* [Working with Files in Go](http://devdungeon.com/content/working-files-go) _2015-08-23_
* [Defer Fun](https://blog.klauspost.com/defer-fun/) _2015-07-25_
* [Joining the Docker Ship and Go](http://thenewstack.io/make-a-restful-json-api-go/) _2015-07-01_
* [Things I learned teaching Go - Francesc Campoy](https://medium.com/@francesc/dotgo-things-i-learned-teaching-go-e999f33298cf) _2014-11-24_
* [Understanding Go Packages](http://thenewstack.io/understanding-golang-packages/) _2014-11-01_
@ -88,6 +89,7 @@ Start by reading the [overview of mobile development](Mobile) documentation firs
* [5 Part Series - Mobile Go](https://medium.com/using-go-in-mobile-apps)
## Interfaces / OOP
* [Interface Types in Go](https://medium.com/@rakyll/interface-pollution-in-go-7d58bccec275) _2014-10-18_
* [no methods on interfaces](http://gowithconfidence.tumblr.com/post/31735316104/interface-methods) _2012-09-17_
* [How to use interfaces in Go](http://jordanorelli.tumblr.com/post/32665860244/how-to-use-interfaces-in-go) _2012-10-01_
* [Go Object Oriented Design](http://nathany.com/good) _2013-01-14_

@ -582,6 +582,7 @@ See also [[SQLDrivers page|SQLDrivers]].
* [errgo](https://github.com/juju/errgo) - Error tracing and annotation.
* [errors](https://github.com/juju/errors) - The juju/errors package provides an easy way to annotate errors without losing the original error context, and get a stack trace back out of the error for the locations that were recorded.
* [goerr](https://github.com/goerr/goerr) - Allows to make a separate(modular) and reusable error handlers. Exception-like panic() recover() mechanism using Return(error) and catching err := OR1(..)
* [panicparse](https://github.com/maruel/panicparse/) - Parse panics with style.
* [Space Monkey errors](https://github.com/spacemonkeygo/errors) - Go's missing errors library - stack capture, error hierarchies, error tags
* [Tideland golib](https://github.com/tideland/golib) - Detailed error values