Browsing Tag
go
115 posts
Go + WASM: Run Native Code in Your Browser
I was thinking “Can I run native binaries in the browser?” Naturally, my mind jumped to languages like…
Quick Fix for Debugging Panic Failures in Go 🔧
So I was working on LiveAPI, a tool I built to generate interactive API docs by consuming a…
Go Concurrency: Can You Spot the Bugs Lurking in These Programs?
Hi there! I’m Shrijith Venkatrama, founder of Hexmos. Right now, I’m building LiveAPI, a tool that makes generating…
Error Handling in Go vs. C#: Trading Exceptions for Clarity
As a C# developer, you’re familiar with the convenience of exceptions. When something goes wrong, you throw an…
Deep Dive into Go’s Equality Operator
Leapcell: The Best of Serverless Web Hosting In-depth Analysis of the == Operation in Go Language Overview In…
Call for Contributors
Hey everyone! I’m looking for more contributors for my open source project: Avisen. If you’re interested in Kotlin,…
How I Stopped Restarting My Go Server Every Time I Changed a Config
You know that feeling when you’re debugging something small, and suddenly, it turns into a whole production issue?…
8 Memory-Efficient Go Coding Techniques For Better GC Performance
Go’s garbage collector is impressively engineered for low latency and minimal pauses, but even the best GC can…
Go Concurrency: A Deep Dive to Expertise
Leapcell: The Next-Gen Serverless Platform for Golang app Hosting Analysis of goroutine Concurrency Control Methods in Go Language…
Golang Concurrency: How Confinement Improves Performance Without Locks
Concurrency is one of Go’s greatest strengths, but it can also be a source of many problems if…