Zig vs Go: constants, variables and basic types
Being two statically and strongly typed languages, Go and Zig share many similarities in how constants and variables are defined. Both require explicit types or...
Being two statically and strongly typed languages, Go and Zig share many similarities in how constants and variables are defined. Both require explicit types or...
Introduction Have you ever felt like you want to code and learn a new programming language, but there are so many languages to choose from: Java, Python, Rust,...
Building a B‑Tree from Scratch in Go Obsessed with database internals lately 🤓. After reading Alex Petrov’s _Database Internals_, I wanted to move from theory...
Initialization In Go we initialize a module with: bash go mod init module-name In Zig the equivalent is simply: bash zig init Zig does not require explicit “mo...
Chapter 14: The Shape of Behavior The archive was unusually cold that Thursday. The radiators hissed and clanked, fighting a losing battle against the draft se...
Build Network Proxies and Reverse Proxies in Go: A Hands‑On Guide Hey Dev.to community! 👋 If you’re a Go developer looking to level up your networking skills,...
!https://i.ytimg.com/vi/23JqUVHV7_Q/maxresdefault.jpg Preface Go Modules were officially introduced in Go 1.11, and they are enabled by default starting with Go...
Introduction As backend engineers we often treat concurrency as a black box: we write go func{} or spawn and expect magic. Understanding how the runtime schedu...
Introduction When I started building PathCraft, I had a simple goal: create a routing engine that I could actually understand, extend, and deploy without vendo...
Introduction Have you ever felt your internet connection dragging, but you aren't sure if it's just a momentary glitch or a consistent pattern? I built Velo, a...
Article URL: https://mitchellh.com/writing/ghostty-memory-leak-fix Comments URL: https://news.ycombinator.com/item?id=46568794 Points: 106 Comments: 32...
Article URL: https://mitchellh.com/writing/ghostty-memory-leak-fix Comments URL: https://news.ycombinator.com/item?id=46568794 Points: 17 Comments: 0...