Skip to content

Instantly share code, notes, and snippets.

@RaviTezu
Forked from lestrrat/stages.md
Created September 29, 2017 06:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RaviTezu/479d6f57e1fdce4342ce7deb372fb6ba to your computer and use it in GitHub Desktop.
Save RaviTezu/479d6f57e1fdce4342ce7deb372fb6ba to your computer and use it in GitHub Desktop.
Seven Stages of Becoming a Go Programmer
  • stage 1: You believe you can make Go do object oriented programming. You want to do this by using clever struct embedding.
  • stage 2: You believe goroutines will solve all of your problems. You want to use goroutines for anything and everything that you can, who cares if the code becomes a bit more complicated
  • stage 3: You believe that instead of object oriented programming, interfaces will solve all of your problems. You want to define everything in terms of interfaces
  • stage 4: You believe channels will solve all of your problems. You want to do everything from synchronization, returning values, and flow control using channels.
  • stage 5: You now believe Go is not as powerful as people claim it to be. You feel like you're stripped of all of the nice tools and constructs that other languages provide.
  • stage 6: You realize that stages 1~5 were all just your imagination. You just didn't want to accept the Go way. Everything starts to make sense.
  • stage 7: You are now at peace. You now write everything, including what you would've normally used Perl/Ruby/Python for, in Go. if err != nil no longer bothers you. You only use goroutines and channels when you must. You are one with the Gopher. You feel its glorious chi, and cry when you realize his mercy for allowing your to write code in such a majestic language.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment