Languages
34 posts

Rust 1.93 Released: musl Upgrade, Assembly Conditional Compilation, Zero-Copy Suite
Rust 1.93 is out with all musl targets upgraded to 1.2.5, #[cfg] conditional compilation in assembly, global allocators can now use TLS, and zero-copy APIs stabilized.

Homebrew Too Slow? Try This Rust Version, 20x Faster
ZeroBrew is a Rust-based Homebrew alternative that installs packages lightning fast. Let’s talk about why it’s so fast and how to safely try it out.

Rust GCC Compiler Backend: Install rustc-codegen-gcc with One Command
rustc-codegen-gcc is now officially part of rustup nightly components. Linux users can now experience GCC-compiled Rust code with a single command. No more manual compilation, no more environment setup hassles—it’s like giving Rust a new engine.

Rust's Standard Library Now Runs on GPUs: What Did They Actually Do
VectorWare team made Rust’s std library work on GPUs. You can now use println!, read files, and get system time inside GPU kernels. Here’s how they pulled it off.

The Truth About Rust Cold Starts on AWS Lambda: Those Scary Numbers
A chat with a friend about the cold start performance differences between Rust and Go on AWS Lambda. Why does Rust seem to lose? When should you use which language? The stories hidden behind those monitoring charts.

Rust Multimedia: A 21-Year-Old Rewriting FFmpeg in Rust—Crazy or Genius?
A 21-year-old developer, Ajay Kumar, is rewriting FFmpeg from scratch in pure Rust. Why would anyone do this, and what does Rust change for multimedia work?

Const Generics: This Rust Feature Cut Our Code by 85%
From 8,347 lines to 1,243 lines — the rebirth of a cryptography library

Xiao Li Rewrote Go Monolith to Rust Axum, Company Saved $800K+ Yearly, His Salary Hit $2M
This isn’t a story about flexing how fast Rust is. It’s about how tech choices translate to real money, and why most rewrite projects can’t replicate this result.

The Rust Async Trap Everyone Steps On Once
It compiles. It runs. It even passes stress tests… until production catches fire. Let’s talk about that classic async Rust pitfall everyone hits.

Rust Design Patterns: 3 Best Practices Senior Backend Engineers Always Use
Discover the Rust design patterns senior engineers swear by: Newtype pattern prevents invalid states, ownership design reflects system boundaries, enum error handling makes failures predictable. Master these Rust best practices to build rock-solid backend code and say goodbye to midnight incidents.