Mar 20 · 5 min read · Originally published at Gothar Tech Part of our 2025 software architecture series. Beyond Framework Maximalism: HTMX, Hono, and WebAssembly in Production How Oxide uses HTMX, Hono, and WebAssembly to build a faster, clearer web architecture Teams r...
Join discussionMar 11 · 6 min read · Introduction Zig has long been celebrated as a “systems programming language with a single source of truth.” In recent years the community has rolled out a suite of major updates that tighten that promise, especially when it comes to type resolution ...
Join discussionDec 27, 2025 · 10 min read · Introduction Logging is one of the most critical yet underestimated parts of any software system. As applications scale, logs evolve from simple print statements into structured telemetry that powers debugging, monitoring, auditing, and incident resp...
Join discussion
Sep 27, 2025 · 2 min read · The next release of MufiZ, Echo release is planned to be released hopefully by October or November 2025, and with it comes many new features to the language, after lots of releases of mainly focusing on fixing up the language (well this brings more s...
Join discussion
Sep 23, 2025 · 12 min read · Introduction So when it comes to memory management there are two terms you really need to know, the stack and the heap. The stack is a region of memory that stores temporary data that is only needed for a short period of time. It operates in a last-i...
Join discussionAug 19, 2025 · 2 min read · Programming languages come and go, but every once in a while, a new one emerges that disrupts how developers think about code. Zig is one such language. Built as a modern alternative to C, Zig is lightweight, predictable, and designed to put develope...
Join discussion
Aug 7, 2025 · 2 min read · ⚡ What is Zig? Zig is a modern, low-level programming language designed to be a better alternative to C. It offers: Manual memory management Cross-compilation out of the box No hidden control flow or allocations Compile-time metaprogramming (comp...
Join discussionMay 10, 2025 · 4 min read · Libuv describes itself as a multi-platform support library with a focus on asynchronous I/O. It is widely used in many web servers (e.g., Kestrel) and runtimes such as Node.js and Python (via uvloop). As of Zig 0.14.0, there is no native async I/O, s...
Join discussion
Mar 25, 2025 · 10 min read · When most people start programming, they're drawn to languages that make things easy. Python, JavaScript, and other high-level languages abstract away the messy details of memory management, system calls, and hardware interaction. This abstraction is...
Join discussion