Community
Guides, notes, and the writers behind them — everything worth exploring.
Python from scratch — every fundamental explained clearly, building up to solving real problems, with links to the Problem Solving patterns and complexity.
Curated guide · updated 2026-06-17
A short reference of the Git commands I actually reach for daily. Not exhaustive, just the ones that earn their keep. Checking state bash git status what cha…
Caching is storing the result of expensive work so you can reuse it instead of redoing it. Done well it is the highest-leverage performance tool you have. Do…
SwiftUI rebuilds views from state. The trick is choosing the right property wrapper so ownership and updates flow the way you expect. The core property wrapp…
Coroutines are Kotlin's answer to asynchronous programming. They let you write concurrent code that reads sequentially, without blocking threads. Suspend fun…
A join combines rows from two tables based on a related column. The join type decides what happens to rows that have no match. Sample tables Say we have user…
An index is a sorted lookup structure that lets the database find rows without scanning the whole table. It is the single biggest lever for query speed, and …
A handful of principles that keep React components easy to change. None of them are rules, but ignoring all of them tends to produce components that are pain…
Naming is the cheapest documentation you will ever write and the first thing the next reader sees. A good name removes the need for a comment. Say what it is…