From 0bc952c8ccc7ad58f8a44d3c3c5fe9a3b3e5e69f Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Thu, 9 Aug 2012 08:50:13 +1000 Subject: [PATCH] doc: add 'Get Started with Go' video, remove some older videos (I also updated the wiki's GoTalks page with all the latest videos.) R=golang-dev, r CC=golang-dev https://golang.org/cl/6441113 --- doc/docs.html | 30 +++++++----------------------- 1 file changed, 7 insertions(+), 23 deletions(-) diff --git a/doc/docs.html b/doc/docs.html index 12e76202b4d..8f54efe78b0 100644 --- a/doc/docs.html +++ b/doc/docs.html @@ -139,6 +139,13 @@ before Go 1 and contain some examples that are no longer correct, but they are still of value.

+

A Video Tour of Go

+

+Three things that make Go fast, fun, and productive: +interfaces, reflection, and concurrency. Builds a toy web crawler to +demonstrate these. +

+

Go Concurrency Patterns

Concurrency is the key to designing high performance network services. Go's concurrency primitives (goroutines and channels) provide a simple and efficient means of expressing concurrent execution. In this talk we see how tricky concurrency problems can be solved gracefully with simple Go code. @@ -157,21 +164,6 @@ and unveils the presentation slides.

-

Real World Go*

-

-A talk by Andrew Gerrand presented at Google I/O Bootcamp 2011. -It gives a broad overview of Go's type system and concurrency model -and provides four examples of Go programs that solve real problems. -See the presentation slides. -

- -

Building Integrated Apps on Google's Cloud Platform

-

-A talk by Andrew Gerrand presented at Google Developer Day Japan 2011. -It discusses the development of a web application that runs on Google -App Engine and renders images that it stores on Google Cloud Storage. -

-

Go Programming*

A presentation delivered by Rob Pike and Russ Cox at Google I/O 2010. It @@ -180,14 +172,6 @@ examples demonstrating features particular to Go. These include concurrency, embedded types, methods on any type, and program construction using interfaces.

-

Practical Go Programming*

-

-This talk presents the development of a complete web application in Go. -It looks at design, storage, concurrency, and scaling issues in detail, using -the simple example of an URL shortening service. -See the presentation slides. -

-

More

See the GoTalks