Browsing Tag
go
115 posts
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.…
Team-Based Authorization in faynoSync — An Overview for Developers
Before we dive into team authorization, a quick word about faynoSync. It’s a dynamic update server that lets…
Turbocharge Your Go Microservices: Memory Optimization Made Simple
Hey Go developers! If you’re building microservices with Go, you know it’s a powerhouse for concurrency and performance.…
Terraform CDK + Go: Building a Complete Serverless API Project (Part 1)
🚀 Infrastructure as Code in action! If you already use Terraform but want the power of programming languages…
Exploring Heap Memory and Garbage Collector Algorithm in Go Language
Go automatically manages memory with the heap and a concurrent mark-and-sweep garbage collector. Escape analysis decides whether variables…
Using GORM as an ORM in Go: A Quick Overview
GORM is one of the most popular Object Relational Mappers for Go. It provides a clean, expressive API…