diff options
author | Russ Cox <rsc@golang.org> | 2020-03-09 22:11:04 -0400 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2020-03-11 14:10:08 +0000 |
commit | 482079d678d84e207dd9ae63266c4bd4e653886b (patch) | |
tree | 62aa3b630bbe982904f5495fe2cc53d60a87c92d /content/two-recent-go-talks.article | |
parent | 0b4fcd39865e575704b5928c9a8f1cd21e18e8b2 (diff) |
content: wrap long lines using new program wrap.go
Wrapping long lines will make diffs easier to read
for the eventual conversion to Markdown.
For golang/go#33955.
Change-Id: Ibcc1b5a84ccc9144b5fcdc9266f2da3e2cf3c5a3
Reviewed-on: https://go-review.googlesource.com/c/blog/+/222839
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'content/two-recent-go-talks.article')
-rw-r--r-- | content/two-recent-go-talks.article | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/content/two-recent-go-talks.article b/content/two-recent-go-talks.article index 8e72336..0ae7120 100644 --- a/content/two-recent-go-talks.article +++ b/content/two-recent-go-talks.article @@ -6,15 +6,24 @@ Andrew Gerrand * Introduction -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. +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. The following videos are, in my opinion, the best recordings of these talks. * Go: a simple programming environment -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. +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. -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. +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. .iframe //player.vimeo.com/video/53221558?badge=0 281 500 @@ -22,7 +31,14 @@ See the [[https://talks.golang.org/2012/simple.slide][slide deck]] (use the left * Go: code that grows with grace -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. +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. .iframe //player.vimeo.com/video/53221560?badge=0 281 500 |