On February 6, 2024, version 1.22 of Golang was released. There are a number of feature updates, but the most interesting ones for me were related to HTTP server routing, so I thought I’d post about them.
If you’re running an Ubuntu or Linux-based server, you may find yourself shutting down with ports open, either by mistake or for unknown reasons. I’m sure you’ve experienced the problem of trying to restart your server only to find that the ports are already occupied. In this post, I’ll show you how to check the ports you’re using.
In today’s post, we’re going to talk about the heredoc syntax. I’ve been using it a lot in my day-to-day development to make my writing cleaner, but I recently realized that it’s called a heredoc, so I thought I’d clean it up.
DB migration seems to be a constant in any situation, whether it’s at my previous job or my current job. In fact, in my case, I didn’t utilize a tool until now, but rather wrote ad hoc code or scripts. In today’s post, I’d like to introduce Goose, a DB-related migration tool for Golang.