Sep 19, 2025 · 1 min read · Tiny free tool I built to spot “performance theater” — pretty scores, lousy feel. • Paste a URL, get TTFB + cache hints + script bloat flags• Client-side probe; no signup, no storage• Works well for sanity-checking dashboards → Try it: https://vibeax...
Join discussionOct 8, 2024 · 5 min read · When working with data mutations in Next.js, one common problem is when the page doesn’t update after adding or editing data. Imagine you’re adding a new to-do item via a server action, and even though the data is updated in the database, the changes...
Join discussion
May 22, 2024 · 5 min read · Imagine you’re running a popular online store. Your store has thousands of products, and each product has its own page with details like its name, price, description, and customer reviews. These details are stored in a database. Now, let’s say a par...
AAnurag commented
Jan 26, 2024 · 3 min read · Caching is a common practice browsers use to store resources locally, enhancing load times. However, it can become problematic when developers make updates to images. Without cache-busting, users might continue to view outdated images from their loca...
Join discussion
Jul 9, 2023 · 3 min read · Asset fingerprinting in React (or in web development in general) is a technique used to manage cache and ensure that the latest version of an asset is served to users when changes are made. It involves appending a unique identifier (often a hash) to ...
SShubhaw commented
Dec 21, 2022 · 2 min read · Whenever you write plain JS without access to external libs, here is a quick hack on how to cache API responses, which I actually used for my homepage and in another small project. The normal way The JS function fetch makes remote calls really easy. ...
Join discussion
Oct 28, 2022 · 4 min read · Introduction Why Caching In production environments, caching the static contents is a well known practice to improve the user experiences and minimise resource utilisation. In most cases caching for static contents implemented in multiple levels from...
Join discussion