Posts tagged "TypeScript"
Essays, field notes, and engineering write-ups by Al Amin Ahamed covering TypeScript — practical patterns, gotchas from production code, and lessons learned shipping real systems. Topics include architecture decisions, performance tuning, debugging stories, and integration notes you can apply directly to your own TypeScript work.
· 9 min read
React 19 in Production: useTransition, useOptimistic, and the End of forwardRef
How I use the new React 19 hooks in this portfolio's admin — useTransition for non-blocking input, useOptimistic for instant UI, and refs as props.
· 7 min read
Splitting Laravel into Three Vite Bundles for Smaller Pages
How I split this portfolio into three independent Vite bundles (frontend, auth, dashboard) — separate dependencies, separate CSS, working HMR across all three.
· 9 min read
Building a Dark Design System with Tailwind CSS v4
How I designed the D1 "Dark Precision" system for this site — CSS-first @theme config, custom tokens, and a palette that passes WCAG at every level.
· 10 min read
TypeScript for PHP Developers
A practical transition guide for PHP developers picking up TypeScript — mapping familiar PHP concepts to their TypeScript equivalents, from null safety to generics.