SShriyaingenesisjournal.hashnode.dev路Jul 4 路 14 min readTransfer-Token Anchor Smart ContractIntroduction: The Goal Every blockchain developer starts somewhere. For me, it was building a basic SPL token on Solana using the Anchor framework. I wanted to create a program that could create, mint00
SBSoumyajit Bhattacharyainsoumyajit1216.hashnode.dev路Jun 28 路 4 min readBuilding Gunam: Why Modern Monitoring Should Work Offline FirstProblem Statement While working on kiosk software at Zuchiz, I realized that many production issues cannot be solved from the application layer alone. No matter how well an application is designed, it00
MWMerlin Wellingtoninwizardcraftcode.hashnode.dev路Jun 26 路 5 min readStop Forcing Classes Into Rust: Methods vs. Free FunctionsIf you learned to program in an object-oriented language, you were taught that data and the functions that operate on that data belong together鈥攂ound forever inside a class framework. When you come to00
LLocShadowVNinnexusbrowser.hashnode.dev路Jun 21 路 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
MWMerlin Wellingtoninwizardcraftcode.hashnode.dev路Jun 17 路 3 min readYour Getters are Ruining Your Rust CodeComing to Rust from object-oriented languages like Java, C++, or C# creates a dangerous form of muscle memory. In the object-oriented paradigm, encapsulation dictates a simple rule: hide your struct f00
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