Tag: #ownership
Writing on GPUs, LLMs, MLOps, Kubernetes — and mindset · 3 posts
Rust Ownership, Borrowing, and Lifetimes
How Rust guarantees memory safety with no garbage collector, through its three core ideas — ownership, borrowing, and lifetimes. Move semantics, the borrow checker's "shared XOR mutable" rule, why lifetimes exist, how to
2026-07-03 · 14 min read #rust#ownership#systemsThe Builder Mindset — Makers Change the World
An essay on the builder mindset and the shift from consumer to producer. It covers execution over ideas, starting small and shipping, fast feedback loops, ownership, building in the age of AI, finishing what you start, a
2026-06-16 · 28 min read #builder-mindset#ownership#side-projects#career#executionRust Programming Beginner Guide — Ownership, Lifetimes, and Safe Systems Programming
Why Rust? Ownership system, lifetimes, pattern matching, error handling, async, and Cargo. A safe systems language replacing C/C++.
2026-04-12 · 19 min read #ai#rust#programming#systems#ownership