Languages
34 posts

Go + sqlc + Postgres: The Zero-ORM Stack Behind Cloudflare's 99.99% Uptime
Cloudflare runs Go + sqlc + Postgres in production, bypassing GORM’s N+1 queries and reflection overhead. 85K vs 42K qps, p99 drops from 3.8ms to 1.2ms. Breaking down the design logic, migration patterns, and when it actually makes sense to switch.

How Does Kotlin Code Actually Run on iPhone? The KMP Compilation Pipeline Explained
Kotlin Multiplatform (KMP) compiles Kotlin code into native iOS ARM64 machine code through Kotlin/Native and LLVM. This article breaks down the full 7-step compilation pipeline from Kotlin source to LLVM IR, Objective-C bridging, and Swift interop, with performance insights and build optimization tips.

Just 'Know Python' on Your Resume? Hiring Managers Aren't Buying It in 2026
The 2026 Python job market has changed: writing scripts isn’t enough anymore. This guide breaks down 9 Python skill areas that actually impress interviewers, with a 4-phase learning roadmap and salary benchmarks.

We Compared 6 Outage Reports Before We Understood What Async Rust Actually Prevents
CPU was fine, memory was stable, no recent deploys — but error rates hit 3.4%. After comparing 6 outage reports across Node.js, Go, and Java, we finally understood how async systems actually fail, and where Rust+Tokio’s compiler draws the line.

Go 1.26 Shipped Without JSON v2: 18 of 44 Tasks Still Open
Go 1.26 is out, but JSON v2 remains experimental. With 18 of 44 subtasks still open, unresolved performance regressions, and pending Union type support—this isn’t a delay, it’s the Go team building a solid foundation for the standard library.

Don't Underestimate Rust Enums: A Complete Hands-On Guide
Rust enums are far more than a set of constants. They carry data, drive state machines, replace null, and unify error handling. This guide walks you from basics to recursive enums with real code examples.

500 Lines of Rust, 10 Seconds to Train: How Simple Is Building a Neural Network from Scratch?
Build a spam classifier neural network with Rust and Hugging Face’s Candle framework in just 500 lines of code. From tokenizer to embedding to Softmax, every step explained like a cooking recipe. No GPU, no Python, runs on any laptop.

4000 Pages Per Second: The Rust PDF Library That's Changing the Game
oxidize-pdf: A pure-Rust PDF engine with zero C dependencies, a 5MB binary, and performance that leaves Chromium and Java stacks in the dust.

Brave Browser Rewrites Ad Blocker in Rust, Slashes Memory by 75%
Brave 1.85 rewrites its ad-blocking engine using Rust and FlatBuffers, reducing memory usage from 60MB to 15MB. Here’s how they did it.

Stop Writing Some(...): The impl Into<Option<T>> Trick in Rust
Learn how to use Rust’s Into Trait with Option to let functions accept both raw values and Option types, eliminating tedious Some() wrapping.