User Profile

Michael

mmeier@bookwyrm.mei-home.net

Joined 6 months, 1 week ago

Computer nerd getting back into the habit of curling up with a good book he so fondly remembers from ages past.

My interests range relatively widely, from history (both, books about history and history novels) over military SciFi to Fantasy to all kinds of technical books.

I prefer long-running series or large universes with dozens of books when it comes to my fiction reading.

My all-time favourites: - David Weber's Honorverse. Far and away the best military SciFi out there - Rebecca Gable's Waringham series

You can also follow me on Mastodon

This link opens in a pop-up window

Michael's books

Currently Reading

Alex Edwards: Let's Go (EBook, 2025, Selfpublished)

Let’s Go teaches you step-by-step how to create fast, secure and maintainable web applications using …

A great second Golang book

This book makes for an excellent second Golang book. I read "Learning Go" as an introduction to Go, but my main goal was to use Go for my web programming needs. So for my second book, I looked around for something with a light web dev introduction with Go. And I found "Let's Go". It covers all of the basics for delivering static HTML. While it covers a lot, from templating to databases and user management, the one major omission is any use of Javascript. But that's fine with me, to be honest. Everything else is covered really well, building a small web app for pasting text snippets.

I especially enjoyed the fact that Alex Edwards chose to not go with one of the big Golang web frameworks. He's instead using mostly the Golang standard library. But he also doesn't shy away from using libraries for targeted tasks, like …

Jon Bodner: Learning Go: An Idiomatic Approach to Real-World Go Programming (Paperback, 2021, O'Reilly Media)

Go is rapidly becoming the preferred language for building web services. While there are plenty …

Reviewing "Learning Go" as an experienced programmer new to Go

It's a really good book for getting into Golang. One caveat before I continue: I went into this with a pretty broad background in programming, so I'm not sure how well the book would work for a programming beginner.

First of all: The book does provide what it says on the tin. There's quite some discussion of how to write idiomatic Go in the book, which I like. I don't have problems taking up new syntax for a language, but in the past I've found that all too many books concentrate only on syntax and standard library, but not on what idiomatic code for the language looks like.

What I was positively surprised about while working through the book was that the Go language designers succeeded: They produced a modern, useful programming language that's pretty simple. Go feels quite a lot like when I learned C for the …