159 comments

[ 4.7 ms ] story [ 225 ms ] thread
Hello all,

After 2.5 years of writing, countless weekends and evenings, I released a book about the Go programming language.

The book is available for free on the website because I wanted to give something back to the developer's community :)

It is composed of 700+ pages, 41 chapters, and approximately 405 drawings/screenshots.

I tried to cover all the important topics that a new Go programmer should know.

At the end of each chapter, you can find a small Q/A and a bullet point list of key notions.

I would love to hear your feedback about it!

I love it. Hats off to you for your hard work on this. Who builds your illustrations/graphics ? Looks cool.
My spouse :)

Thank you for your feedback !

Should probably credit them in the foreward.
At this point any Go-related work must come with illustrations done by the spouse.
I really like that you go in detail of common and important standard library functions and hit come important things like database drivers and JSON. 700 pages is a nice big programming book and it looks like you're not skimping on details. Great job and good work!
Hello jjice,

Thanks for those kind words, I tried to cover a lot of topics. Consequently it makes a lot of pages!

I hope that the content will help you ! Do not hesitate to contact me if you spotted an error or if you want to suggest an improvement.

I can't thank you enough! I wanted to learn Go and wanted something like this. I really like the chapter structure, it really easy to follow and progress.
Thank you very much, I really appreciate :) I hope that it will help you in your Go journey.

Do not hesitate to send me feedback in order for me to improve the content.

This is great,well done! I was thinking of picking Go at some point this year, need not to forget to buy the book. May I ask what did you for the website,looks pretty neat?
Thank you for your feedback and support!

Go is easy to learn, and you need a limited amount of time to produce code!

I built the website with VueJS, and I use bootstrap for the CSS part (with https://bootstrap-vue.org/).

Great book! (and this from someone who does not like Go :)). After reading a bit I was almost ready to jump in again and then I remembered errors and the associate repeating code and I got back to Python.

I have a friend who is constantly trying to drag me though the fence so maybe one day.

You may want to try quasar (https://quasar.dev/) for your VueJS sites - it is excellent.

Thank you ! I hope this day is close !

I will try quasar on another project maybe, I did not know this framework. I also need to improve my competences with React :)

Thank you for this fantastic resource. I've been meaning to learn Go for a while, but have a lot of difficulty staying focused on tutorials with big blocks of text. Your concise bullet format is really easy to follow, and would be especially useful for anyone who doesn't speak English as their first language.

Also really respect that you clearly did this out of passion, so I'll say this to everyone on your behalf: support the author by purchasing a digital copy!

https://www.practical-go-lessons.com/buy-digital-or-hard-cop...

oh thank you! I appreciate your kind words:) It's very rewarding to read all the comments on this thread... You made my day !
Man I been looking at diving into Go for a while now, time to go in headfirst. Really appreciate your contribution and I feel the exact same way about wanting to give back to the community, one day I'll have something of value to offer!
Thank you jackosdev !

Maybe you can begin by blog posts ? It is a good exercice to dive deep into a subject and make sure you understand it. Do not hesitate to contact me if you want support in the process

This looks amazing. Thank you.

I've found an error.

In Chapter 6, Section 3 (Introduction) you say, "In a previous chapter, we covered decimal and binary notation." but those topics aren't covered until Chapter 7 :)

On another note, you might want to consider converting the online copy of the book to MkDocs (using the Material theme), so that it's easier to read, navigate and search.

I'd gladly lend a hand with this, if you like?

I will take a look at it, thanks for your suggestion. I will check if Lyx has an option to export to this format.
MkDocs isn't a "format" as such. It requires you to write Markdown and then configure the mkdocs.yml file to define the website's properties, such as the navigational structure.
Thanks for this clarification I will check this.
We’ve been moving some docs meant for other teams to mkdocs from Confluence at work and I’ve been happy with it - GitBook is also popular.
Can you help me understand this code on interfaces? If you were calling (CartStore.GetById()) where does (*cart.Cart) come from? I don't see any logical connection between these two.

  type Cart interface {
      GetById(ID string) (*cart.Cart, error)
      Put(cart *cart.Cart) (*cart.Cart, error)
  }

  // A type that implements the interface :

  type CartStore struct{}

  func (c *CartStore) GetById(ID string) (*cart.Cart, error) {
      // implement me
  }

  func (c *CartStore) Put(cart *cart.Cart) (\*cart.Cart, error){
      // implement me
  }
Hello rustyboy, first thanks for your feedback.

I think that there is a mistake in the name of the interface type. It should not be `Cart` but something else. Like `CartStorage`.

A type that implement this CartStorage interface can be named `MySQLCartStorage` or `DynamoDBCartStorage`. Each database engine responsible for the storage will have a different implementation.

The interface is here to define a contract, a set of behaviors that you should implement.

I will definitely change that

Let me just clarify, sorry i'm from python, so not very familiar but this feels like a "circular reference". You're implementing a struct CartStore which has methods GetById, and Put. Because interfaces (or contracts) are implicit then it's automatically considered a Cart.

What I don't understand is the return types of these functions, a pointer to a cart's cart member? or an error.

Interfaces in Go are implicitely implemented. It means that if a type has the methods defined in the interface, then it implements the interface.

I will update the example because it's confusing !

If you have some time come to the speak with me in the chatbox on the website I can help you understand this.

  cart.Cart
  package.NameInPackage
So the name Cart is an interface, the function/method signatures are indicating that a Cart is being returned but being explicit about the package the interface belongs to with cart.Cart. It's made more confusing since the name cart (lower-c) is being used for both a member variable and the package name in the signature of Put, and it looks like the package name doesn't show up on an explicit line in that chapter to help clarify it.
This looks great! It looks really well thought out and practical. Congrats on the release. Kudos and thanks for making it freely available as well. Cheers.
A very minor point (sorry): please could you search-and-replace all “advices” to “advice” in the text? Advice is its own plural form.
Not a Go programmer and usually don't post here. Just wanted to appreciate the effort, also saving it for future reference. Thanks
Hi, Maximilien. I really like the structure of the books. It starts with "what we will learn" and ends with "test yourself" and key takeaways. The structure can help the reader to really conscious in understanding the learning goals and validating the understanding.

I also always want to write a programming language book or some other technical topic book in general, which the writing process will I use as learning process for myself. But I always wonder in deciding the topic to cover. How do you decide the topics to cover? Do you start from following existing books or online documentation topic sequences? Or just write whatever topic you are interested first and structure the content afterward?

Thanks for your comment ! If you want to do it, just pick a language and start to write.

Writing is not easy but it becomes easier if you transform it into a habit.

In my experience I forced myself to write regularly like every day of the week. I usually worked one hour approximately by session.

By doing so you will see that you will achieve a lot.

Do not force youtself to write for one entire day then do nothing for a week.

Concerning the topics to cover I will recommand using a mind map to build the table of content. This is interesting because you can drag and drop sections easilly.

I would suggest first to define your targeted audience. Having this audience you can begin building the plan.

My approach was to teach notions progressively. Sometime I needed to rework the sections order. Use an editor that allow you to do that easilly like Lyx (love it).

Students generally love rituals and adding some introduction ritual/section and conclusion section is a plus.

Hope those recommendations will help you :)

Writing something is really a great way to make sure you understand something !

Good luck

I think this is very well structured. I really like the "Test yourself" section. As a person who finds small post-reading assignments enjoyable and motivating, my only suggestion would be to add a small assignment that employs the learnings. Actually coding what one just learned is arguably a good way to reinforce the learnings and raising further questions/doubts. E.g. for your Application Configuration chapter, an example assignment could be:

    Create a command line application that accepts users inputs as below:

        a. Mandatory "-firstName" flag to accept first name
        b. Mandatory "-lastName" flag to accept last name
        c. Optional "-middleName" flag to accept middle name
        d. Mandatory "-age" flag to accept age - only integers between 0 and 200 should be accepted
        e. Optional "-party" flag to accept political party following - only valid values are "D", "R" and "I"
        d. Optional "-userId" flag to specify user id - if HOME environment variable is set, extract user id from home directory path
Would you consider open sourcing the book? What systems are you using to create and maintain it?
Hello rijoja, I'm currently thinking about it.

I'm writing the book with Lyx. Lyx documents are converted to LaTeX docs, then converted to HTML with pandoc. Then I have a homemade Go script that generates the VueJs components (one per chapter).

This question is asked a lot so I will write something about the system because it can help other writers.

Surprised you didn't use Hugo for your website instead. Since Hugo is written in Go, and it's blazing fast.

Thanks for your work anyhow :)

One feedback: I skimmed through the Context chapter and noticed that you made the common mistake.

In the code snippet provided at https://www.practical-go-lessons.com/chap-37-context#the-ser..., you made the channel unbuffered. The doWork goroutine would write to the channel and the "main" goroutine would read from it. But since the "main" goroutine could exit early because of context cancellation, they could get into the case of no one on the reading end any more, causing the doWork goroutine to be blocked forever (the writing to the channel is blocked when there's no one to read it).

Someone even published a paper about fixing this common mistake in open source projects a few days ago: https://www.reddit.com/r/golang/comments/m66djp/automaticall...

Thank you for your work. I absolutely love the book. You might add links to buy digital copy at the very top of the page. Currently, I've found the link on 3rd attempt) Also, why not sell on Gumroad (https://gumroad.com)? It is convenient. Good luck!
Thank you for this! We just started using Go for all of our new and/or updated backend stuff and I love it.

I'll definitely be checking this out. :)

I applaud the effort. Very impressive work. I appreciate the free access to this, but will be buying, if / when I have time to work through some of the lessons :)
Thanks for your feedback ! It makes me happy if it can help you !
The book looks very interesting! In the section about logging, Logrus is unfortunately in maintenance mode now. We've used it at my place, now we have switched to Zap.
Thanks for your feedback ! I will add a warning in the book concerning Logrus.

I will also check Zap to add an example :)

Nice! What were the tools you used to write it and convert it to the ebook and paper versions?
Thanks,

I worte the book using Lyx (https://www.lyx.org/) Each chapter is a Lyx document.

Then I converted : Lyx to LaTeX, then LaTeX doc are converted to HTML with pandoc (https://pandoc.org/).

Then I have an homemade script to generate Vue Components.

Lyx and Pandoc are great tools !

Hi maximilienandi, great work! Easy to read for non-native!

Always nice to see more alternative to the Blue Book too ;)

When I open Golang books or any kind of tutorials, I usually jump into Concurrency sections to see its depth and quality ...

If ever start thinking of selling v2 of your book, please go through Katherine Cox-Buday book "Concurrency in Go" content.

I like Katherine but your writing style is much much easy to read and process. Wish half of Katherine content will migrate into your future works.

Adding reference on Katherine book might help others too.

Hi adeptima, thank you for your feedback!

I am really happy that you like the writing style.

I will order the book written by Katherine.

Concurrency is a really difficult topic; maybe I will add more content about it later. Real-world use-cases are hard to find also.

Always assume Go references are about the board game, always disappointed. Congrats on the book!
I was tricked too; maybe doubly so.

I thought this was a book on writing programs to play Go.

I feel at this point I should use this book to write a program to play Go using Go, and then in a way I wouldn't be so wrong.

This looks great! I absolutely love that it assumes no knowledge of anything, including how the computer works. This is how all educational material should be written.

I think that most knowledge gaps we all have are caused by a teacher/book making assumptions about what we already know.

Hi tomca32,

Thank you for the feedback. I tried to make it accessible to new programmers. I hope it will be used by people how wants to start their programmer's journey.

Being a self-taught programmer, I always suffered from not knowing some very basic notions. I learned a lot in the process of writing those chapters.

Excellent!

I am not a Go programmer, so I am not your target audience, but I have written a book, so I understand the work.

Thanks so much!

Thank you ChrisMarshallNY, for your kind message. I hope you will start using Go in the future!
I sent a link to a friend, who is very much a Go programmer (I am a Swift programmer).
Looks very good! Thanks for providing it free.
I hope it can help others in the process of learning how to build programs !
Looks great.

How'd you build the Web site — a package of some sort, or did you roll your own CSS? I've been working on a law-related book that I plan to post; I like the look of your site.

(I suppose it's too much to hope for that you created this with Emacs and org-mode — which is what I'm writing my book in — together with a nifty CSS package ....)

Thanks !

I wrote it using Lyx which is WYSIWYG for LaTeX. Then I convert the LaTeX document into HTML.

The HTML is then injected (with some modifications) into a Vue component (the website is built with Vue).

I use only Bootstrap for the CSS (with bootstrap-vue). When I have some time I will publish the sources of my script.

I hope it can help you !

> I wrote it using Lyx which is WYSIWYG for LaTeX. Then I convert the LaTeX document into HTML.

What did you use to do the conversion? Will Lyx export HTML, or did you use something else?

Pandoc will convert from LaTex to HTML (I've not tried that specific conversion). [0]

[0] https://pandoc.org/

I used Pandoc to make the conversion. Lyx has also an option to export to HTML but I was not satisfied with the result.
> which is WYSIWYG for LaTeX

Oh the delicious irony. Don't tell Donald Knuth! :)

Great work. I am learning golang right now. The art/pics look amazing and the samples and the explanations are on point. Thank you for your work! I'm sure it will go a long way I'll made sure I tweet about it.
Thank you for your support, I really appreciate, I hope many newcomers will find it interesting.
Looks great. I’m getting to learn go in my new role so this will help me get up to speed before I start
Hello redisman, I hope it will help you.

Do not hesitate to share your feedback with me, especially if something is difficult to understand or if you spotted a mistake :)

Thank you for building this!

I appreciate chapter 40 being included, a quick summary of go/programming recommendations. Also the illustration on the landing page caught my eye, good choice.

Many thanks! When I began writing Go code I found a lot of "Go idioms" on blog posts, it was hard to remember all of them. By the way, "Effective Go" (https://golang.org/doc/effective_go) is also a great summary of good practices.
(comment deleted)
This is excellent! Hope you get some sales to make up for the effort :)
I just scrolled through the chapter that looked most promising to me in the table of contents (Chapter 36: Profiling) and I have to say I love it!

On that one hand the basic steps are there like how to download a specific zip file, but at the same time it goes deep into the different types of profiling and how to use the mandatory tools.

Thanks for your support arendtio ! I am happy that you liked this chapter, it took me a lot to write, because I never used pprof before. But it's a great tool.
Excellent job! Maybe you are already thinking about it, but... You can add a Search Bar and Go version & language selection for the documentation. (i.e. see (bottom left): https://docs.godotengine.org/en/stable/)

Also I just published this on /r/golang if you do not mind. :)

Thank you for those suggestions. Adding a search bar is already in my todo list. I will probably use Algolia.

Thank you for posting this on reddit ! I tried to do it but I made a mistake in the title, so I deleted the post and posted again (I never posted on reddit before). Now it seems that my second post is not really visible.

Thank you for your support Dentrax !

"This site is blocked due to a security threat that was discovered by the Cisco Umbrella security researchers."

Category: Malware

That is the warning I'm getting on this link at work. Of course I don't think you are trying to malware people, but might want to look into that on why people might not be able to access your site.

Hello hodder, thanks for reporting this. I have no idea what is the cause of this...
I ran a scan with Norton antivirus on the website artifacts downloaded on AWS the result is OK.

I also checked the website with Google safe browsing (https://transparencyreport.google.com/safe-browsing/search?u...) and the result is also OK. I also run the test with virus total website and no threats have been detected. (https://www.virustotal.com/en/#url).

If you have more information about this do not hesitate to share!

My browser (when behind work VPN) is showing an untrusted SSL cert error so probably the issuer is not whitelisted in some employer's systems.
I'm using AWS amplify to deploy the website, they provide a free SSL certificate.

That's probably the reason !

Cisco is pretty terrible and has tons of false positives. I wouldn't worry too much.
I just love the positive vibes of this post, feedback received, and OP’s replies. It just makes HN a happier place!
I also loved the experience of posting!I'm so happy to read messages of the community ! Thank you all !
I love your writing style. Specially the way of not assuming previous knowledge.
I tried to define every notions used. Thank you very much for liking my style. I hope that this book will help others to start programming with Go !