Standard Search
About 99 results
https://rednafi.com/go/dummy-load-balancer/ · 30 Aug 2023
Build a working round-robin load balancer in Go with goroutines and the standard library. No dependencies needed for this educational prototype.
https://rednafi.com/go/limit-goroutines-with-buffered-channels/ · 23 Aug 2023
Control goroutine concurrency with buffered channels as semaphores. Prevent resource exhaustion with backpressure patterns in Go workers.
https://rednafi.com/go/totp-client/ · 20 Aug 2023
Build a TOTP-based 2FA client in Go using the standard library. Generate time-based one-time passwords like Google Authenticator.
https://rednafi.com/go/interface-guards/ · 18 Aug 2023
Use compile-time interface guards to verify type conformity in Go without runtime overhead. Learn the var _ Interface = (*Type)(nil) pattern.
https://rednafi.com/go/structured-logging-with-slog/ · 10 Aug 2023
Master Go 1.21's log/slog package for structured logging with levels, JSON output, and attribute grouping. No third-party libraries needed.
https://charlesharri.es/stream/go-laravel-rails · 11 Apr 2022
A couple of perspectives on why the Go community eschews monolithic web frameworks.
https://hacdias.com/2020/10/12/rebuilding-eagle-cms/ · 12 Oct 2020
I have been working on updating my website's backend, called Eagle. It is full of new features, such as search and ActivityPub.
https://hacdias.com/2020/01/23/bye-filebrowser/ · 23 Jan 2020 · 🦋 Bluesky
After 5 years of maintaining this project and failing due to my limited time, it was time to say goodbye to File Browser.
https://hacdias.com/2017/09/08/how-to-create-a-web-server-in-go/ · 8 Sep 2017
Go is a relatively new player in the world of programming, having been around since 2009. It was created by Google and many open-source contributors.