New pages
Appearance
21 November 2025
- 00:5800:58, 21 November 2025 Building a Durable Telemetry Ingestion Pipeline with Rust and NATS JetStream (hist | edit) [13,106 bytes] PC (talk | contribs) (Created page with "500px Ingestion pipelines are often simple to begin with: a device sends a location and an API writes to a database. This approach works until it doesn’t. When you’re ingesting thousands of GPS updates per second from trackers across multiple tenants, that direct-to-database approach becomes your bottleneck and your single point of failure. The symptoms are always the same: timeouts spike during traffic bursts, the database...")
- 00:5500:55, 21 November 2025 Inside Rust’s std and parking lot mutexes: who wins? (hist | edit) [24,701 bytes] PC (talk | contribs) (Created page with "Subtitle: A teardown of Rust’s mutex internals plus real benchmarks so you know when to choose std or parking_lot. A while ago, our team was working on a Rust project where std::sync::Mutex was everywhere. A team member suggested switching to parking_lot::Mutex instead. They heard that it has better performance, smaller memory footprint, and more predictable behavior under contention. I had no idea how to evaluate this claim. A quick search online returned results...")
- 00:4300:43, 21 November 2025 The Hidden Life of a Rust Thread: From std::thread::spawn to the OS Scheduler (hist | edit) [9,845 bytes] PC (talk | contribs) (Created page with "500px When you write std::thread::spawn(|| { ... }) in Rust, it feels simple. Like magic. But behind that one-liner lies a dance between the Rust standard library, the system’s libc, the OS kernel, and your CPU’s scheduler — a dance so tightly choreographed that a single misstep could cost milliseconds… or deadlock your app. This article is the human story of that journey — how Rust spawns a thread, how the O...")
- 00:4200:42, 21 November 2025 Rust 1.80 vs Go 1.23 on Postgres: Same Box, Different Curve (hist | edit) [6,579 bytes] PC (talk | contribs) (Created page with "500px We ran Rust 1.80 and Go 1.23 on the same Postgres box and expected a draw. The first graphs looked close, then the curves drifted as load rose. Our wins and losses came from tiny defaults, not language slogans. We fixed the dials, reran, and one stack held shape longer. Same hardware, clean runs, honest baselines We kept the playground small so differences were visible. One VM, pinned CPU, fixed Postgres config, warm caches, and n...")
- 00:4000:40, 21 November 2025 Why Async Drop Is Still a Dream — The Dark Corners of Rust’s Future (hist | edit) [8,986 bytes] PC (talk | contribs) (Created page with "500px There’s this weird, uncomfortable truth about Rust — the language that gave us safety without garbage collection, concurrency without data races, and performance without compromise. Yet in 2025, it still can’t drop an async object properly. Yeah, we can await, spawn, and select! all day. But when it comes time to clean up — to close a socket, flush a buffer, or gracefully shut down a background task — Rust’s async sto...")
- 00:3800:38, 21 November 2025 How I Built My First CLI Tool in Rust (and Why It Outperformed My Expectations) (hist | edit) [10,281 bytes] PC (talk | contribs) (Created page with "500px When I first decided to learn Rust, I didn’t want to start with a to-do list or yet another “guess the number” game. I wanted to build something real — something I’d actually use. So I built a Command-Line Interface (CLI) tool. Not a fancy one. Just a small utility that automates repetitive tasks in my daily workflow. But what started as a small experiment turned into one of the most rewarding programming experience...")
- 00:3700:37, 21 November 2025 Rust Is Not a General-Purpose Language (And That’s Okay): A candid discussion of Rust’s niche in the tech world (hist | edit) [6,992 bytes] PC (talk | contribs) (Created page with "500px This is not a takedown. It’s a map. Rust excels in a handful of high-leverage places, and pretending it should be everywhere helps no one — not you, not your team, not your users. How to read this (format) We’ll use a Thesis → Anti-thesis → Synthesis format for each point: * Thesis: a commonly held belief about Rust * Anti-thesis: where that belief breaks * Synthesis: the practical guidance you can actua...")
- 00:3400:34, 21 November 2025 Rust: Create SVG Images (hist | edit) [14,925 bytes] PC (talk | contribs) (Created page with "500px Here, let’s check out how we can create some SVGs with the svg crate! However! Before we start, please let me point this out! This svg crate is more like a wrapper! Doesn’t have those Rust-y things you might be looking for! No type checks, nothing! And! If you are not used to how SVGs work themselves, this crate can be fairly hard to use! (If that’s the case, I will seriously recommend giving this Introducing SVG from scratc...")
- 00:3200:32, 21 November 2025 Rust sqlx vs Diesel: The One Check That Killed Our DB Bugs (hist | edit) [6,261 bytes] PC (talk | contribs) (Created page with "500px You trust your ORM until a tiny schema drift wipes out a morning. We thought our Rust DB layer was safe — until a silent column rename passed every test and triggered a live incident. We did not catch the mismatch with types, reviews, or integration tests. Only when we wired one simple check into the build did the pain stop for good. Now, the compiler fails loud the second a query drifts from schema, not hours after deploy. How t...")
- 00:3000:30, 21 November 2025 Why Rust’s Build Artifacts Are So Huge — and What’s Being Done About It (hist | edit) [9,748 bytes] PC (talk | contribs) (Created page with "500px It’s a familiar scene for anyone building Rust in 2025. You finish compiling your project — maybe a small web server or a CLI tool — and open your target/ directory. Your jaw drops. $ du -sh target/debug 412M target/debug Four hundred megabytes… for a command-line tool that prints “Hello, world”? Welcome to one of Rust’s longest-running open secrets: massive build artifacts. But before we blame Cargo...")
- 00:2900:29, 21 November 2025 The Go Scheduler vs Rust Ownership: Two Different Ways to Control Chaos (hist | edit) [7,355 bytes] PC (talk | contribs) (Created page with "500px We were staring at a service that sat in the money path and ate thousands of requests per second. Latency spikes meant refunds. A crash meant angry calls from sales. We had to pick a language and live with it. We went with Go because we cared about shipping fast, and then we lived with a quiet fear that one hidden race would take us down. Why we chose Go when money was on fire We had one job: take load fast, return answers fast, and n...")
- 00:2700:27, 21 November 2025 I Tried Writing a Game Engine in Rust — and Accidentally Learned How Computers Think (hist | edit) [7,539 bytes] PC (talk | contribs) (Created page with "It started as a weekend project. You know, one of those “how hard could it be?” moments that every developer regrets halfway through. I wanted to understand what actually happens between a sprite and a screen. So instead of using Bevy or Unity or Godot, I did something stupidly ambitious: I tried to write my own mini game engine in Rust. Two weeks later, I had: * a black window that sometimes flickered, * a cube that jittered like it was caffeinated, * an...")
- 00:2500:25, 21 November 2025 Rust: Trait With Async Methods (hist | edit) [7,105 bytes] PC (talk | contribs) (Created page with "First of all, I hope that you are familiar with Rust Trait, a type we use to define shared behavior in an abstract way. For me, I see it as an inferior version the Swift Protocol (I am sorry if you don’t agree, but the second we cannot add required properties/fields in trait, it is over)! Anyway! Use async methods with Traits can be inevitable sometimes, but depending on the use case, this can require a bit of trial and error to actually get it to work! In this ar...")
- 00:2200:22, 21 November 2025 How Rust Rewrites Device Drivers: The Real Kernel Abstractions That Work (hist | edit) [8,558 bytes] PC (talk | contribs) (Created page with "500px The Backstory: Why Kernel Devs Finally Gave In For years, Linus Torvalds pushed back against Rust in the Linux kernel. His reasoning? “Show me where C failed first.” But the reality was — C did fail. Not in performance, but in safety. Every modern CVE that haunted Linux’s network, USB, or filesystem drivers shared a common theme: memory corruption from unguarded pointers. When the Rust-for-Linux project quietly...")
- 00:2000:20, 21 November 2025 The Untold Story of NLL: How Rust Learned to Stop Panicking About Lifetimes (hist | edit) [8,855 bytes] PC (talk | contribs) (Created page with "500px If you were a Rust developer before 2018, you remember the pain — the “borrowed value does not live long enough” messages that haunted your every build. You’d write code that seemed perfectly fine, only to get smacked by the compiler: fn main() { let mut s = String::from("hello"); let r1 = &s; let r2 = &s; // fine println!("{r1} and {r2}"); } Then you’d try something slightly different — maybe a s...")
- 00:1800:18, 21 November 2025 Learning Rust Almost Broke Me. Here Are the 3 Concepts That Finally Made It Click (hist | edit) [7,561 bytes] PC (talk | contribs) (Created page with "You’re not alone if the Rust compiler feels like it’s yelling at you. It’s just trying to help. 500px I’m going to be honest: learning Rust was one of the most frustrating, exhilarating, and ultimately rewarding experiences of my programming career. For months, I fel t like I was locked in a perpetual battle with the compiler, a strict, unforgiving guardian angel that seemed determined to prevent me from writing any working...")
- 00:1700:17, 21 November 2025 Rust Won’t Replace C++ — And That’s Exactly Why It’ll Win (hist | edit) [6,604 bytes] PC (talk | contribs) (Created page with "Just Dropped: we slipped a small Rust “seatbelt” in front of a C++ payments path at a bank. No rewrite, no drama. The crashes stopped, reviews got faster — and nobody noticed the language border. The border was the feature. 500px The Replacement Myth We Should Stop Chasing “Rewrite everything in Rust” sounds heroic. It burns quarters and trust. The real win is smaller: keep the C++ you must, subtract the risky parts, a...")
- 00:1500:15, 21 November 2025 Rust for Distributed Systems: Building Reliable Services with Zero-Cost Abstractions (hist | edit) [8,720 bytes] PC (talk | contribs) (Created page with "500px 1. Why I Moved My Distributed Systems to Rust For years, I relied on Python and Go to build distributed systems — message brokers, event streams, background workers, and data pipelines. They worked well enough… until they didn’t. As the system grew, I noticed: * Tiny race conditions causing silent failures * Performance bottlenecks under heavy concurrency * Difficulty ensuring true memory safety in multi-thre...")
- 00:1300:13, 21 November 2025 The Myth of Safety in Concurrency: Why Rust’s Send/Sync Don’t Save You From Logic Bugs (hist | edit) [6,246 bytes] PC (talk | contribs) (Created page with "500px Rust has sold us a dream. The dream that if your code compiles, you’re safe. No data races. No dangling pointers. No shared mutability hell. And to be fair, Rust delivers on that promise more than any other language ever has. But here’s the uncomfortable truth: Rust’s concurrency safety is not the same thing as concurrency correctness. Yes, Send and Sync stop you from doing unsound things like sending raw pointers between...")
- 00:1100:11, 21 November 2025 Inside Rust’s Memory Layout: The Secrets Behind repr(C) and repr(transparent) (hist | edit) [7,205 bytes] PC (talk | contribs) (Created page with "500px When I first started working with Rust FFI, I made a rookie mistake: I assumed my struct would look in memory the same way it looked in code. It didn’t. My C library read garbage bytes, segfaulted, and made me question all my life choices. That’s when I discovered Rust’s representation attributes — repr(C), repr(transparent), and the wild, undocumented world of how the compiler decides where and how yo...")
- 00:1000:10, 21 November 2025 The Future of Backends Is Rust + WebAssembly — And Nobody’s Ready (hist | edit) [8,921 bytes] PC (talk | contribs) (Created page with "500px Introduction: The Web’s Backend Is About to Flip For the last decade, backend architecture has been predictable — Node.js for speed, Go for concurrency, Rust for control, and Python for… well, everything else. But something subtle and revolutionary is happening beneath the surface: WebAssembly (WASM) is creeping out of browsers and into backend servers. And Rust is the language leading that charge. We’re entering a ne...")
- 00:0800:08, 21 November 2025 Upcasting Trait Objects in Rust 1.86: Why You Didn’t Know You Needed It (hist | edit) [8,570 bytes] PC (talk | contribs) (Created page with "500px The “Wait, Why Doesn’t This Work?” Moment Every Rust developer hits this wall at some point. You’ve got a bunch of trait objects (Box<dyn Trait>, maybe nested ones), and you think, “If trait Child extends Parent, surely I can treat a Box<dyn Child> as a Box<dyn Parent>.” Then Rust laughs in your face. No — you can’t just upcast a trait object. For years, this was one of those things we all hand-waved...")
- 00:0600:06, 21 November 2025 Rust Concurrency Simplified: 4 Ownership Patterns That Prevent Race Conditions (hist | edit) [11,427 bytes] PC (talk | contribs) (Created page with "500px Pause. Read that line again. Race conditions are not mysterious beasts. They are a predictable consequence of letting multiple threads mutate the same thing at the same time. Practical code, short benchmarks, and hand-drawn-style architecture diagrams that you can copy into a blog post or talk slide. If the next bug you fix should be the last of its kind, keep reading. TL;DR — Fast map to safe concurrency * Move ownership into...")
- 00:0400:04, 21 November 2025 The Hidden Power of Rust’s Borrow Checker (That No Tutorial Shows You) (hist | edit) [5,288 bytes] PC (talk | contribs) (Created page with "500px Most developers learn Rust’s borrow checker as a set of rules — ownership, lifetimes, references, and the mysterious message: “value borrowed here after move.” But the borrow checker is not just a compiler feature. It is a design mentor that shapes the way you think about data, concurrency, and safety. What looks like a strict set of constraints becomes one of the most powerful tools for building bug-free, predictable sy...")
- 00:0300:03, 21 November 2025 The Hidden Cost of Monomorphization: Why Generics Make Rust Binaries Huge (hist | edit) [8,619 bytes] PC (talk | contribs) (Created page with "500px When I first started using Rust, I was told the same thing every Rustacean hears early on: “Generics are zero-cost abstractions.” And I believed it. Until I built a CLI tool with a few generic data structures and the binary ballooned from 2 MB to 37 MB. I thought I had accidentally compiled in debug mode. Nope — it was Release. Welcome to Rust’s secret heavyweight: monomorphization. Let’s unpack what’s actually goi...")
- 00:0100:01, 21 November 2025 7 Benchmarks That Finally Made Me Leave Python for Rust (hist | edit) [9,700 bytes] PC (talk | contribs) (Created page with "Seven independent benchmarks proved Python was the bottleneck and convinced me to rewrite hot paths in Rust. 500px This is practical, measured work. Short reads and long reads both matter. If a function costs seconds for every request, that function matters. If you are running production code, these benchmarks will give you the data you need to decide. * Test, do not guess. * Replace only the true hot paths. * Rust gave consistent, large...")
20 November 2025
- 22:2322:23, 20 November 2025 The Rust Tool That Finally Made Python Easy: Meet uv (hist | edit) [7,088 bytes] PC (talk | contribs) (Created page with "500px I used to dread the “works on my machine” dance. New laptop? New teammate? New CI image? Something always broke. Then one tool cut the friction to almost nothing. It took my setup from layered rituals to a single, confident command. This isn’t a rant. It’s relief. What I Stopped Doing I stopped guessing which Python was installed. I stopped arguing over pip, pipx, pyenv, virtualenv, and a dozen wrappers. I st...")
- 03:1503:15, 20 November 2025 How Rust Changes the Way You Think About Systems Design (hist | edit) [5,212 bytes] PC (talk | contribs) (Created page with " 500px It started with a crash. Not a small one. A production outage that took down half the pipeline at 2 AM. No warnings, no smoke — just silence. One dangling pointer in a C++ service corrupted a message queue. We rolled back, restarted, patched, and prayed. The fix took one hour. The recovery took three days. The trust took months. That week changed how I thought about system design. It was the week I picked up Rust. ...")
- 03:0903:09, 20 November 2025 Rust’s Type System Is Secretly an Algebra Engine (hist | edit) [9,889 bytes] PC (talk | contribs) (Created page with "500px I remember the exact moment it hit me. I was staring at a Rust compiler error — one of those long, terrifying messages where it prints out half your generic bounds and tells you that “the trait bound T: Add<U> is not satisfied.” I groaned. I’d seen it before. But then… I stopped. Wait a second. That message wasn’t just complaining. It was describing an equation. T + U = Output That’s algebra. And then it dawned on m...")
- 03:0703:07, 20 November 2025 How Rust Rewrites Bootloaders Without Losing Its Soul (hist | edit) [7,859 bytes] PC (talk | contribs) (Created page with " 500px There’s something poetic about writing a bootloader in Rust. It’s like asking a poet to write machine code — in rhyme. A bootloader sits at the very edge of the known world — the first thing your CPU runs after power-on, before any OS, heap, or even std exists. It’s pure metal, pure chaos, and yet… Rust developers are somehow rewriting this primordial mess safely. But how? How can a language obsessed with ownershi...")
- 03:0503:05, 20 November 2025 Rust Trait Bounds — When the Type System Becomes Your Personality (hist | edit) [6,736 bytes] PC (talk | contribs) (Created page with "How I Learned to Stop Worrying About Generic Types and Embrace <T: Clone + Debug + Send> You know what’s great about JavaScript? You can throw literally anything into a function and it’ll figure it out. Maybe it’ll work. Maybe it’ll explode at runtime. It’s exciting! It’s dangerous! It’s like coding on the edge! You know what Rust thinks about that approach? Absolutely not. The First Encounter with Generics 👾 My first attempt at writing generic code in...")
- 03:0303:03, 20 November 2025 Rust Analyzer’s Next Trick: Turning Your IDE Into a Compiler Playground (hist | edit) [7,034 bytes] PC (talk | contribs) (Created page with "500px Most developers think of Rust Analyzer as the little helper that makes VS Code (or Neovim, JetBrains, etc.) bearable when writing Rust. It’s the thing that: * Gives you autocomplete. * Shows inline type hints. * Lets you jump to definitions. * Expands macros without tearing your hair out. It feels like a language server, just like TypeScript’s or Go’s. But here’s the twist: Rust Analyzer is slowly becoming something mo...")
19 November 2025
- 15:5715:57, 19 November 2025 Scaling Cross-Platform Desktop Apps Using Tauri and Rust Modules (hist | edit) [5,946 bytes] PC (talk | contribs) (Created page with "How I Built High-Performance Desktop Apps with a Small Footprint, Fast Startups, and Native Power — All Thanks to Rust and Tauri 500px Discover how using Tauri with Rust modules helped scale my desktop app across platforms, boost performance, and reduce bloat while keeping code maintainable. The Silent Struggles of Cross-Platform Desktop Development When I first started building cross-platform desktop applications, Electron seem...")
- 15:5515:55, 19 November 2025 While Rust Was Busy Winning Twitter Debates, Zig Quietly Became the Perfect WASM Language (hist | edit) [7,785 bytes] PC (talk | contribs) (Created page with "I remember the moment it hit me. It was 2:47 a.m., the kind of hour when you start wondering if the coffee tastes burnt because it is, or because your soul is. I was debugging a WebAssembly module that kept throwing a memory access out of bounds in Chrome DevTools. Rust had promised safety. Rust had promised control. But here I was, neck-deep in lifetimes and feature flags, watching the borrow checker stare at me like a disappointed parent. And then — out of sheer...")
- 15:5315:53, 19 November 2025 Network Programming Battle: io uring in Rust vs epoll in Go (hist | edit) [10,983 bytes] PC (talk | contribs) (Created page with "500px Two approaches to high-performance I/O: raw speed versus operational simplicity. Your production constraints determine which architecture wins, not benchmark numbers alone. Our API gateway — handling 2.8 million requests per second across 47 microservices — was bleeding money. Each 1% latency improvement translated to $240K annually in infrastructure savings. The conventional wisdom was clear: migrate from Go’s epoll to Rust...")
- 15:5015:50, 19 November 2025 Inside the no std Underground: How Rust Devs Are Escaping libc (hist | edit) [6,735 bytes] PC (talk | contribs) (Created page with "500px There’s a secret corner of the Rust ecosystem that doesn’t get much love from the mainstream Rustaceans. No async runtimes. No std::fs. No heap allocations unless you make them happen. Welcome to the no_std underground — a strange and exciting place where developers are deliberately giving up the Rust standard library. It’s not masochism. It’s freedom. This is the world of embedded systems, kernels, and bare-metal firm...")
- 15:4815:48, 19 November 2025 Why Senior Engineers Choose Boring Go Over Exciting Rust (hist | edit) [16,973 bytes] PC (talk | contribs) (Created page with "500px The $3.2M Lesson in Technology Choices Our startup had raised Series B funding and needed to scale our API from 1,000 to 100,000 requests per second. The team was excited: finally, a greenfield project where we could use Rust, the language everyone wanted on their resume. Rust had been voted the most admired programming language for 8+ years in a row, and the performance benefits were undeniable. Follow me for more Go/Rust perfo...")
- 09:4909:49, 19 November 2025 The Debugging Hell No One Warns You About in Rust (hist | edit) [4,186 bytes] PC (talk | contribs) (Created page with "Rust saves you from a thousand mistakes — until it makes you face one that breaks your brain. You remember that first moment, right? When the Rust compiler smiled at your clean build? No segfaults. No null pointers. No memory leaks. It felt like magic. And then one day, everything collapsed. Your async code froze without warning. Your logs showed nothing. Your stack trace looked like a cryptic poem written by a compiler with a sense of humor. You scrolled....")
- 09:4709:47, 19 November 2025 Goodbye Cold Starts: Edge Compute with Rust and Durable Objects (hist | edit) [12,747 bytes] PC (talk | contribs) (Created page with "When milliseconds matter, traditional serverless isn’t enough. Here’s how edge computing with Rust and Durable Objects delivers instant response times and persistent state management. 500px Your user taps “Buy Now” on your e-commerce app. In the background, your serverless function must wake from hibernation, initialize its runtime, access databases, and complete the payment — all while your customer waits, looking at a loadin...")
- 09:4209:42, 19 November 2025 How I Learned Monads: Not Through Haskell But Through Rust (hist | edit) [19,927 bytes] PC (talk | contribs) (Created page with "I approached learning monads in Haskell wrong and failed. Then I discovered I’d been using them in Rust all along without knowing. 500px Introduction About a decade ago, I tried to learn Haskell. I was mesmerized by its elegance — the way types guided you toward correct programs, how pure functions composed so naturally, the terseness that still remained readable. I worked through A Gentle Introduction to Haskell, and everything m...")
- 09:4009:40, 19 November 2025 Inside Chalk: The Next-Gen Type System Solver Powering Rust’s Future (hist | edit) [9,131 bytes] PC (talk | contribs) (Created page with "What happens when your programming language needs a theorem prover just to figure out your generics? Welcome to Chalk — the mathematical heart of Rust’s type system evolution. 500px If you’ve ever stared at a Rust compiler error that looked like it was explaining quantum mechanics — you’ve met Chalk, even if you didn’t know it. It’s not just another compiler module. It’s a logic solver, a system so complex that it might as...")
- 09:3809:38, 19 November 2025 Writing Safer C FFI in Rust: The Secret Patterns Nobody Talks About (hist | edit) [7,299 bytes] PC (talk | contribs) (Created page with "500px I still remember the first time I had to write Rust code that called into a C library. I was sweating bullets. The idea of breaking Rust’s safety guarantees with one bad unsafe block terrified me. But here’s the thing: Rust’s Foreign Function Interface (FFI) is incredibly powerful when used right. And over time, I learned that there are patterns — subtle, undocumented, almost tribal — that make writing FFI not just...")
- 09:3509:35, 19 November 2025 Async Traits, Hidden Allocs: Profiling Rust Futures (hist | edit) [19,702 bytes] PC (talk | contribs) (Created page with "500px Hidden allocations in async traits can silently destroy performance, making profiling essential for identifying and eliminating allocation hotspots. Async traits in Rust promise elegant abstraction over complex concurrent operations. Write clean trait definitions, let the compiler handle the complexity, and watch your async code scale beautifully. Until it doesn’t. When we refactored our service mesh proxy from concrete types to async t...")
- 09:3209:32, 19 November 2025 Rustfmt Is “Effectively Unmaintained” — Are We Shipping Blind? (hist | edit) [7,911 bytes] PC (talk | contribs) (Created page with "Pinned toolchains end style wars — and cut PR time by double digits. 500px I’m making a blunt claim: format drift silently taxes delivery. Last week, format-only failures beat test failures 28% vs 24% on our team. Average PR time fell from 28.4h to 17.9h after we fixed it. The antagonist was drift — IDE defaults vs CI, stale rules, and a toolchain gap. I will show the pins, scripts, and guardrails that restored flow. The map is simple:...")
- 09:3009:30, 19 November 2025 Rust Isn’t the Future — It’s Just Hype (hist | edit) [7,585 bytes] PC (talk | contribs) (Created page with "Rust is the programming equivalent of a luxury sports car that spends 99% of its time stuck in traffic — technically impressive, completely impractical, and owned by people who won’t shut up about it. ☁️ Whenever I write about cloud costs or DevOps, these are some of the quick guides I reference often: • DevOps Interview Guide — 408 Questions → https://gumroad.com/a/416513171/ctqbrx • AWS DevOps Interview Q&A → https://gumroad.com/a/416513171/oxwo...")
- 09:2409:24, 19 November 2025 I’m Amazed by Rust: From Electron + Python to Tauri + Rust (and Why I’m Not Looking Back) (hist | edit) [8,991 bytes] PC (talk | contribs) (Created page with "500px Summary: I tried to ship a cross-platform desktop app with Electron + React + a bundled Python/Flask runtime. It worked… until it didn’t. Managing a separate server, ports, packaging, and updates felt brittle and bloated. So I tried Rust (with Tauri). After ~3–4 days with The Rust Book and ~5–6 days of wrangling my first Tauri app into shape, I’m hooked. The compiler is tough but trustworthy; when it compiles, it runs...")
- 09:2209:22, 19 November 2025 Rust’s Type System Is So Strong, It’s Crushing Creativity (hist | edit) [8,347 bytes] PC (talk | contribs) (Created page with "500px The Paradox of Perfection Rust’s type system is a masterpiece — it’s rigorous, precise, and beautifully designed to make entire classes of bugs impossible. It’s also, sometimes, a creativity killer. When I first started using Rust, I felt invincible. No nulls, no segfaults, no hidden memory leaks. Every line I wrote felt like it was blessed by a mathematical god. Then I tried to build something experimental — a small p...")
- 09:1909:19, 19 November 2025 Typst Studio in Pure Rust: WebAssembly and Rust for Modern Web Applications (hist | edit) [20,919 bytes] PC (talk | contribs) (Created page with "500px 1. The WebAssembly Revolution in the Web Technology Landscape web app: https://automataia.github.io/wasm-typst-studio-rs/ WebAssembly represents one of the most significant paradigm shifts in modern web application architecture that we’ve witnessed in the past decade. Born as an experimental project in 2015 through collaboration between major browser vendors including Mozilla, Google, Microsoft, and Apple, and achieving W3C standard st...")
- 09:1709:17, 19 November 2025 Saving Disk Space Across Multiple Rust Projects with sccache (hist | edit) [5,752 bytes] PC (talk | contribs) (Created page with "500px I don’t know about you, but my laptop disk space is limited. Probably it’s more the limitation itself than the size of the limitation — there’s something about watching that progress bar creep toward red that makes every gigabyte feel precious. And if you’re working with multiple Rust projects, you know exactly what I’m talking about. Each Rust project creates its own target/ directory, filled with compilation artifacts...")
- 09:1309:13, 19 November 2025 Zero-Copy Parsers: Rust Pipelines That Outrun JSON (hist | edit) [10,068 bytes] PC (talk | contribs) (Created page with "500px he conventional wisdom in data processing has always been simple: parse first, optimize later. After careful analysis and several iterations, we implemented a zero-copy parsing strategy in Rust that doubled our throughput while reducing memory usage by 65%. But what if I told you that this “wisdom” has been costing you 200% performance gains? In production systems processing millions of JSON payloads daily, the hidden enemy isn...")