Minor additions.

Jason Buberel 2015-08-30 12:53:00 -07:00
parent d9fac3f0d0
commit 88fe84a3a3
6 changed files with 11 additions and 2 deletions

@ -75,6 +75,8 @@ Start by reading the [overview of mobile development](Mobile) documentation firs
## Misc
* [String Matching by Damian Gryski](http://blog.gopheracademy.com/advent-2014/string-matching/) _2014-12-05_
* [An introduction to pointers for Go programmers not coming from C family languages](http://andlabs.lostsig.com/blog/2014/06/30/85/an-introduction-to-pointers-for-go-programmers-not-coming-from-c-family-languages) _2014-06-30_
* [State machines in Go (#golang)](http://denis.papathanasiou.org/?p=1190) _2013-02-10_
* [Go & Assembly](http://www.doxsey.net/blog/go-and-assembly) _2013-02-05_

@ -122,16 +122,19 @@ Here are some of the places where you can find Gophers online. To get a sense of
- [RaceDetector](RaceDetector) - How to detect and fix race conditions
- Working with Databases
- [database/sql](http://go-database-sql.org/) - Online tutorial for working with the database/sql package.
- [TUGTBDDAwG](https://vividcortex.com/resources/building-database-driven-apps-with-go/) - Guide to building data driven apps.
- [SQLDrivers](SQLDrivers)
- [SQLInterface](SQLInterface)
- From other languages
- [Go for Java Programmers](https://www.nada.kth.se/~snilsson/go_for_java_programmers/)
- [Go for C++ Programmers](GoForCPPProgrammers)
- Strings
- [GoStrings](GoStrings)
- [String Matching](http://blog.gopheracademy.com/advent-2014/string-matching/)
- [Comments](Comments)
- [CommonMistakes](CommonMistakes)
- [Errors](Errors)
- [GcToolchainTricks](GcToolchainTricks)
- [GoStrings](GoStrings)
- [Hashing](Hashing)
- [HttpFetch](HttpFetch)
- [HttpStaticFiles](HttpStaticFiles)

@ -7,6 +7,7 @@ In addition to the resources available [at golang.org](http://golang.org/doc/#le
* [Ardan Labs Training](https://www.ardanlabs.com/) - Commercial, live instruction for Go programming.
* [Go By Example](http://gobyexample.com/) provides a series of annotated code snippets.
* [Learn Go in Y minutes](http://learnxinyminutes.com/docs/go/) is a top-to-bottom walk-through of the language.
* [50 Shades of Go: Traps, Gotchas, Common Mistakes for New Golang Devs](http://devs.cloudimmunity.com/gotchas-and-common-mistakes-in-go-golang/index.html)
* [Free Go Language Workshop](https://www.frameworktraining.co.uk/go-language-free-training-workshop/) Framework Training is running regular free BYOD workshops in London, UK
* [GoingGo.net](http://www.goinggo.net/) - A collection of videos and articles for learning Go.
* [Golang Tutorials](http://golangtutorials.blogspot.com/2011/05/table-of-contents.html) - A free online class.

@ -33,6 +33,7 @@ This page links to resources for learning about concurrency in Go. The items ar
- Watch [Go: code that grows with grace](http://talks.golang.org/2012/chat.slide#1)
## Advanced
- Read [Advanced Go Concurrency Patterns](http://blog.golang.org/advanced-go-concurrency-patterns)
- Watch [Advanced Go Concurrency Patterns](http://talks.golang.org/2013/advconc.slide#1)
- Read [Go Concurrency Patterns: Context](http://blog.golang.org/context)
- Study [The Go Memory Model](https://golang.org/ref/mem)

@ -8,10 +8,11 @@
## Podcast Episodes
## Podcasts/Episodes
A collection of podcast episodes that cover Go programming. Please keep items in reverse chronological order (most recent first)
* [The Golang Show (Russian)](http://golangshow.com/)
* [Go on the Web](http://thewebplatform.libsyn.com/55-go-on-the-web) _2015-08-05_
* [Fatherhood with Andrew Gerrand](http://beatsryetypes.com/episodes/2015/05/18/episode-16-fatherhood-with-andrew-gerrand.html) _2015-05-15_
* [Talking with Go Developers at GopherCon India 2015](https://soundcloud.com/thenewstackanalysts/show-33-gophercon-india-2015) _2015-04-01_

@ -328,6 +328,7 @@ If you find a project in this list that is dead or broken, please either mark it
* [go-darts](https://github.com/awsong/go-darts) - Double-ARray Trie System for Go
* [GoLLRB](https://github.com/petar/GoLLRB) - A Left-Leaning Red-Black (LLRB) implementation of 2-3 balanced binary search trees in Google Go
* [go-stree](https://github.com/toberndo/go-stree) - A segment tree implementation for range queries on intervals
* [go-radix](https://github.com/armon/go-radix), [go-radix-immutable](https://github.com/hashicorp/go-immutable-radix) - Radix tree implementations.
* [gotree](https://github.com/gyuho/gotree) - Tree Visualization, Algorithms
* [gtreap](https://github.com/steveyen/gtreap) - Persistent treap implementation.
* [rbtree](https://github.com/yasushi-saito/rbtree) - Yet another red-black tree implementation, with a C++ STL-like API