
Thoughts on Android, Kotlin, and building real things.
Deep dives into mobile engineering, cross-platform architecture, and the journey of a senior software developer.

Deep dives into mobile engineering, cross-platform architecture, and the journey of a senior software developer.
How I built a high-performance chat API in Rust using Axum, SQLx, and PostgreSQL.
Khuram
Mar 18, 2026 · 8 min read
Rust gives you memory safety without a garbage collector — perfect for high-throughput APIs.
[dependencies]
axum = "0.7"
tokio = { version = "1", features = ["full"] }Axum uses a simple router API similar to Express.js.
[deleted by admin]