Browsing Tag
go
123 posts
Complete Go Starter Guide: Setup, Syntax & First Program
Have you ever felt like you want to code and learn a new programming language, but there are…
Zig vs Go: init and run
This is the first post about Zig. As a guide for its exploration, I use my knowledge of…
The 15-Minute Goroutine Leak Triage: Two Dumps, One Diff, Zero Guessing
Goroutine leaks rarely announce themselves with a dramatic outage. They show up as “slowly getting worse”: p95/p99 creeps…
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…