LLocShadowVNinnexusbrowser.hashnode.dev·2d ago · 3 min readI forced AI to build a 32-Thread Cyberpunk Browser because my 4GB RAM laptop hated Chrome (And I wrote 0 lines of code)🚀 The "Extreme Sport" Features (AI-Generated Brains) Since my laptop only has 4GB RAM, the AI had to sweat blood to invent some insane memory-saving architectures: Ultra-Parallel Turbo Engine (32 Th11T
HYHabib Yusufinmanlikehb.hashnode.dev·Jun 16 · 11 min readHozonDB: Write-Ahead Logging and the Cost of DurabilityThe Problem Before this milestone, HozonDB could lose data silently. A DELETE would mark a row's slot dead in memory, write the dirty page to disk, then remove the corresponding entry from the B+ tree00
HYHabib Yusufinmanlikehb.hashnode.dev·Jun 15 · 14 min readBuilding a Buffer Pool: Why Your Database Shouldn't Talk to Disk DirectlyHozonDB is a relational database engine I'm building from scratch in Rust, mostly as a way to actually understand how databases work instead of just using them. Previous posts covered slotted page sto00
KOKendrick Oloriinkendrickolori.hashnode.dev·Jun 6 · 7 min readIntroduction to Traits in RustTrait Definition Every car has a steering wheel. Some might not but we can all agree that the vast majority of cars do have a steering wheel. We can therefore give instructions to anyone driving a car10
SMSarkis Minrailway-ts-pipelines.hashnode.dev·May 9 · 12 min readIzzo's Lambert solver, in your browserIf you do mission design, you've solved Lambert's problem more times than you can count. You also know the tooling reality: GMAT, STK, MATLAB scripts your advisor wrote in 2007, PyKEP, poliastro, the 00
BKBill Kunyihainbuildwithrust.com·May 3 · 29 min readTauri 2 IPC: How Rust and React Actually TalkPublished May 3, 2026 Just last week, somebody filed a bug against Tauri. Their app pointed a webview at an external URL via tauri::WebviewUrl::External, and invoke() started failing with "Origin head00
SSheerLuckinsheerluck.hashnode.dev·Apr 30 · 20 min readLearn Rust Basics By Building a Brainfuck InterpreterHi, In this series we are going to learn Rust programming language by building exciting projects per article. For every article, we will first learn some concepts and then build a mini project. I prom00
BKBill Kunyihainbuildwithrust.com·Apr 20 · 18 min readFrom Bitcoin Whitepaper to Working Blockchain in RustFrom Bitcoin Whitepaper to Working Blockchain in Rust In 2008, Satoshi Nakamoto published a nine-page paper that described a peer-to-peer electronic cash system. The paper defined what the system shou10
FAFavour Ajayeinrustforsoliditydevelopers.hashnode.dev·Apr 8 · 20 min readRust for Solidity Developers… Article 01Introduction Okay, so I decided to learn Rust. I’ve been writing Solidity smart contracts for a while now and I got to a point where I kept running into Rust everywhere. Foundry is written in Rust. Re00
VVihaaninrustaceansassemble.hashnode.dev·Apr 3 · 6 min readOwnership and Borrowing in RustIntroduction Greetings! Getting straight to the point: as a beginner stepping into the world of Rust, I encountered several highly specific technical terms on day one that felt quite overwhelming. Aft00