Browsing Tag
go
120 posts
The Secret Life of Go: Goroutines and Channels
Chapter 8: Concurrency Without Fear Wednesday morning arrived cold and bright. Ethan descended to the archive carrying coffee…
The Secret Life of Go: Functions
Chapter 3: Functions and Multiple Returns The Wednesday morning air carried a hint of cinnamon. Ethan descended the…
Error handling in Go
Each programming language has it’s own way of dealing with errors. Popular languages such as JavaScript, Java, C#,…
How to create a REST API in seconds
Quick Start (30 Seconds to Running API) # Clone and setup git clone https://github.com/nicolasbonnici/gorest.git cd examples/basic-api cp .env.dist…
Create a Text Editor in Go – Text Viewer
You can access the code of this chapter in the Kilo-Go github repository in the movingaround branch Currently…
Create a Text Editor With Go – Welcome Screen
You can access the code of this chapter in the Kilo-Go github repository in the welcomescreen branch Currently…
Wails as Electron Alternative
What is Electron and Why is it Bad?? Electron is an open-source framework that combines the Chromium rendering…
The CPU Cost of Signing NXDOMAINs
TL;DR The CoreDNS dnssec plugin guidance to prefer ECDSA is there for a reason. In this post we…
🚀 Concurrency Made Simple and Safe in Go with go-pool
Go-Pool Go-Pool is a lightweight, type-safe, and high-performance worker pool for Go. It simplifies managing concurrent workloads, providing…
Golang Fundamentals: Master Multidimensional Arrays, Strings, and Constants with 4 Hands-On Labs
Ready to dive into Go? Golang is the language of choice for building fast, scalable, and concurrent systems.…