Dev
3 posts — newest first.
-
Recursion and the Call Stack: Elegant Until It Overflows
Every recursive call costs a stack frame, and runaway depth ends in overflow. Frames, base cases, and why agent loops share the failure mode.
-
Compilers, Interpreters, and JIT: Why Python Is Slow and PyTorch Is Fast
Compiling ahead of time, interpreting, or JIT-compiling hot paths explains why Python is slow and PyTorch is fast — torch.compile is the same idea.
-
REST vs. GraphQL APIs – how to choose?
REST or GraphQL? How the two API styles differ in data fetching, versioning, caching, and tooling — and how to choose for your service.