Skip to content

Proverbs from @rob_pike's inspiring talk at Gopherfest SV 2015 (video)

License

Notifications You must be signed in to change notification settings

andriisoldatenko/proverbs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

import proverbs

Proverbs from @rob_pike's inspiring talk at Gopherfest SV 2015 (video)

go run github.com/andriisoldatenko/proverbs

Go Proverbs, by Rob Pike

Don't communicate by sharing memory, share memory by communicating.
Concurrency is not parallelism.
Channels orchestrate; mutexes serialize.
The bigger the interface, the weaker the abstraction.
Make the zero value useful.
interface{} says nothing.
Gofmt's style is no one's favorite, yet gofmt is everyone's favorite.
A little copying is better than a little dependency.
Syscall must always be guarded with build tags.
Cgo must always be guarded with build tags.
Cgo is not Go.
With the unsafe package there are no guarantees.
Clear is better than clever.
Reflection is never clear.
Errors are values.
Don't just check errors, handle them gracefully.
Design the architecture, name the components, document the details.
Documentation is for users.
Don't panic.

or

package main

import _ "github.com/andriisoldatenko/proverbs/pkg"

func main() {}

Enjoy 🎉

About

Proverbs from @rob_pike's inspiring talk at Gopherfest SV 2015 (video)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages