~/ Dev Notes

things I figured out, written down before I forget them

  1. Jun 12, 2026 · 1 min

    Debounce vs. throttle, and when I reach for each

    Two functions that look identical in the docs and behave nothing alike in production.

    #javascript#perf

  2. May 28, 2026 · 1 min

    Subgrid finally made my card layouts behave

    I spent years faking aligned card internals with fixed heights. Subgrid deleted all of it.

    #css#layout

  3. May 9, 2026 · 1 min

    The abstraction I regret writing the most

    A generic wrapper that saved ten lines once and cost a hundred forever.

    #architecture#opinion

  4. Apr 21, 2026 · 1 min

    git bisect is the debugging tool I forget I own

    A binary search through history that finds the exact commit that broke things.

    #git#debugging

  5. Mar 30, 2026 · 1 min

    I trust logs more than I trust the debugger

    Stepping through code shows you one run. Good logs show you the pattern.

    #debugging#opinion