#go
Read more stories on Hashnode
Articles with this tag
Learn back-end security while writing Go code · Greetings! We're excited to announce that we've unveiled a brand-new cryptography course on Boot.dev....
I’m going to focus mostly on some design decisions and how I went about writing an SPI interface using Go on a Raspberry Pi. I assume my readers have...
Errors in Go (Golang) are a hot topic. Many newcomers to the language immediately level their first criticism, "errors in go are clunky! Let me try...
Interfaces allow us to treat different types as the same type when it comes to specific behaviors. They are central to a Go programmers toolbelt and...
Golang is King when it comes to concurrency. No other language has so many tools right of-of the box, and one of those tools is the standard library’s...
time.Time makes dealing with dates and times in Go a breeze, and it even comes bundled in the standard library! However, a time.Time{} struct uses...