#Frontend.
5 posts filed under this topic.
TypeScript Cheat Sheet: Types, Generics & Utility Types
Complete TypeScript reference — primitive types, interfaces, generics, utility types like Partial, Pick and Omit, type guards, as const, mapped types, and tsconfig options.
Tailwind CSS Cheat Sheet: Every Class You Actually Use
Complete Tailwind CSS v4 reference covering layout, flexbox, grid, spacing, typography, colors, borders, shadows, responsive prefixes, and dark mode — all in one place.
Core Web Vitals Explained: How to Measure and Fix Your Scores
Core Web Vitals are Google's performance metrics that affect your search ranking. Here's what LCP, INP, and CLS actually measure, why your scores are bad, and how to fix them.
How to Export an HTML Canvas to an Image (Without Bloated Libraries)
Stop loading massive charting or PDF libraries just to save a screenshot. Learn how to convert an HTML Canvas directly into PNG, JPEG, or WEBP images using native JavaScript.
Convert Hex Color to RGB or RGBA in PHP
A PHP helper function that converts any hex color code to rgb() or rgba() — handles 3-char shorthand, optional opacity, and the # prefix. With usage examples.