github.com/spotify/syslog-redirector-golang@v0.0.0-20140320174030-4859f03d829a/blog/content/two-recent-go-talks.article (about)

     1  Two recent Go talks
     2  2 Jan 2013
     3  Tags: talk, video, ethos
     4  
     5  Andrew Gerrand
     6  
     7  * Introduction
     8  
     9  Late last year I wrote a couple of Go talks and presented them at [[http://thestrangeloop.com/][Strange Loop]], [[http://oredev.com][Øredev]], and various other venues. The talks are designed to give insight into the practice of Go programming, each describing the construction of a real program and demonstrating the power and depth of the Go language and its libraries and tools.
    10  
    11  The following videos are, in my opinion, the best recordings of these talks.
    12  
    13  * Go: a simple programming environment
    14  
    15  Go is a general-purpose language that bridges the gap between efficient statically typed languages and productive dynamic language. But it’s not just the language that makes Go special – Go has broad and consistent standard libraries and powerful but simple tools.
    16  
    17  This talk gives an introduction to Go, followed by a tour of some real programs that demonstrate the power, scope, and simplicity of the Go programming environment.
    18  
    19  .iframe http://player.vimeo.com/video/53221558?badge=0 281 500
    20  
    21  See the [[http://talks.golang.org/2012/simple.slide][slide deck]] (use the left and right arrows to navigate).
    22  
    23  * Go: code that grows with grace
    24  
    25  One of Go's key design goals is code adaptability; that it should be easy to take a simple design and build upon it in a clean and natural way. In this talk I describe a simple "chat roulette" server that matches pairs of incoming TCP connections, and then use Go's concurrency mechanisms, interfaces, and standard library to extend it with a web interface and other features. While the function of the program changes dramatically, Go's flexibility preserves the original design as it grows.
    26  
    27  .iframe http://player.vimeo.com/video/53221560?badge=0 281 500
    28  
    29  See the [[http://talks.golang.org/2012/chat.slide][slide deck]] (use the left and right arrows to navigate).