This block + 6,000 more — yours with Pro

Blog Masonry

45/100
Docs

Latest Posts

Browse recent articles

Backend14 min

Understanding Database Sharding

How to horizontally partition your database for scale. We cover hash-based and range-based strategies with real-world trade-offs.

CSS6 min

CSS Container Queries

Component-level responsive design is finally here.

Rust18 min

Error Handling in Rust

Rust's Result and Option types enforce error handling at compile time. Learn idiomatic patterns for propagating errors, custom error types, and the anyhow crate for application code.

Tools5 min

Git Worktrees Explained

Work on multiple branches simultaneously without stashing.

Networking10 min

WebSocket vs SSE

Comparing real-time communication protocols. WebSocket gives full-duplex but SSE is simpler for server-to-client streaming. Choose based on your use case.