KDKrun Devinrust-garbage.hashnode.dev·Apr 24 · 3 min readBeyond the Borrow Checker: Zero-Unsafe Garbage Collection in RustMost Rust developers believe that building a Garbage Collector (GC) without unsafe is impossible. They assume the borrow checker is too rigid for the cyclic graphs and back-references that GCs must ma00
KDKrun Devinkotlin2-4.hashnode.dev·Apr 16 · 5 min readHigh Concurrency IssuesModern backend systems rarely fail in obvious ways. They don’t crash instantly, and they don’t always spike CPU or memory to alarming levels. Instead,high concurrency issues, traffic spike handling fa00
KDKrun Devinkotlin2-4.hashnode.dev·Apr 8 · 3 min readKotlin 2.4Kotlin 2.4 Context Parameters Stable I've been waiting for the death of -Xcontext-parameters since the first previews. Not because the feature was bad — it was always promising — but because "experime00
KDKrun Devinkrunpro.hashnode.dev·Apr 4 · 3 min readAI Code Review ChecklistHow to Build a Better AI Code Review Checklist AI generates code at incredible speed—that part is undeniable. The real challenge is whether that code can survive real-world production, and most often 00
KDKrun Devinkrunpro.hashnode.dev·Apr 1 · 5 min readMojo Internals ExplainedTear Down Mojo Everyone is screaming about Mojo being 35,000x or 68,000x faster than Python. But if you just port your Python script and expect magic, you are in for a hard landing. You’ve probably re00