DHDan Holloraningrimicorn.hashnode.dev·2h ago · 4 min readReact's Activity Component: Hide UI Without Losing Its StateA user types half a message into the compose tab, flips over to the settings tab to change a notification preference, flips back, and the draft is gone. You know exactly why: {tab === 'compose' && <Co00
DHDan Holloraningrimicorn.hashnode.dev·1d ago · 5 min readrevalidateTag vs updateTag: Next.js Split Cache Invalidation in TwoThere is a bug I have written at least three times. An editor updates a product description in the CMS, hits publish, refreshes the page, and sees the old copy. So I add an on-demand revalidation webh00
DHDan Holloraningrimicorn.hashnode.dev·4d ago · 4 min readCSS text-box-trim: The End of Fudging Vertical PaddingYou give a button padding: 12px and it comes out looking bottom-heavy. So you split it: padding: 10px 12px 14px, squint, nudge the numbers, ship it. Two sprints later design swaps the type family and 00
DHDan Holloraningrimicorn.hashnode.dev·Aug 11 · 4 min readTrusted Types Is Baseline: DOM XSS Is Now a Type ErrorEvery codebase has one. Somewhere in a component nobody has opened in eighteen months, there is a line that reads el.innerHTML = someValue, and nobody can tell you with confidence where someValue come00
DHDan Holloraningrimicorn.hashnode.dev·Aug 10 · 4 min readThe Long Animation Frames API: Find What Actually Broke Your INPYour real user monitoring dashboard says the 75th percentile INP on your product page is 412ms. You open DevTools, click the same button forty times, and every interaction comes back at 60ms. Nothing 00