more thoughts on structure

This commit is contained in:
Mark McGranaghan 2012-09-23 14:17:07 -07:00
parent da93d47c1f
commit 0d0a210ef4

View File

@ -1,3 +1,7 @@
# introduction
~ introduction
~ getting-started
# basics # basics
hello-world hello-world
values values
@ -32,6 +36,7 @@ embedding
interfaces interfaces
ok-guards ok-guards
errors errors
~ comments
# concurrency # concurrency
goroutines goroutines
@ -46,6 +51,8 @@ scatter-gather
rate-limiting rate-limiting
burstable-rate-limiting burstable-rate-limiting
worker-pool worker-pool
~ nonblocking-sends-and-receives
~ closing-channels
# core libraries # core libraries
sort sort
@ -55,8 +62,9 @@ string-formatting
regexs regexs
bytes bytes
json json
sha1-hashes ~ typed-json
time time
~ time-formatting
epoch epoch
elapsed elapsed
timers timers
@ -65,6 +73,8 @@ rand
number-parsing number-parsing
enumerable enumerable
urls urls
sha1-hashes
~ base64-encoding
# systems # systems
file-open file-open
@ -80,19 +90,19 @@ exec
reading-input reading-input
users users
line-filter line-filter
tcp server
# network clients # network clients
tcp-client tcp-client
http-client http-client
http-client-basic http-client-basic
https-client https-client
~ streaming-in-http-responses
redis redis
postgres postgres
~ mongodb
email email
# network servers
tcp-server
# web apps # web apps
http-server-basic http-server-basic
http-server-canonical-host http-server-canonical-host
@ -106,3 +116,13 @@ http-server-static
http-server-status-code http-server-status-code
http-server http-server
https-server https-server
~ reading-headers-and-query-params
~ reading-post-bodies
~ streaming-out-responses
# shipping go
~ using-gofmt
~ using-godoc
~ publishing-packages
~ deploying-to-heroku
~ deploying-to-appengine