The Bourne shell and Bash aren't the right languages for larger programs
In the previous post, I used goreleaser to add binaries to a project release. Now let's have goreleaser build a Homebrew formula as well. Automatically, and for macOS and Linux alike.
“go get” is a super-simple way of installing Go binaries, but not everyone has a Go compiler installed. If you want to make your CLI tools and apps available to the world, have a look at goreleaser.
Crafting a GopherCon Proposal The Call for Proposals for GopherCon 2021 is closing in less than a week for GopherCon 2021. If you’re reading this, I’m assuming you’re thinking about submitting a proposal.
Crafting a GopherCon Proposal The Call for Proposals for GopherCon 2021 is open! If you’re reading this I’m assuming you’re thinking about submitting a proposal.
An overview of Mugo, a single-pass compiler for a tiny subset of the Go programming language -- just enough to compile itself.
Logging is a very essential part of large software, it’s hard to overstate the importance of logging, be it performance metrics logging, error logging, or debug logging for troubleshooting later.
Introduction You write a server for a massively multiplayer online role-playing game (MMORPG). In the game, players collect keys and you want to design how to store the set of keys each player has. As an example, imagine the set of keys are copper, jade and crystal. You consider...