Activity Log - 2025-11-21

Learnings

  • Avoid Non-Null Assertions (!): Using ! to bypass TypeScript’s null checks creates hidden dependencies between validation and usage logic. Prefer explicit runtime guards or destructuring with checks to narrow types safely.