VTVijay Thirugnanaminvijayt.hashnode.dev·Nov 21, 2025 · 1 min readFormat numbers using compact notationconst number = 2500000; // Basic usage const formatter = new Intl.NumberFormat('en-US', { notation: 'compact', compactDisplay: 'short' // 'short' or 'long' }); console.log(formatter.format(number)); // "2.5M"00
VTVijay Thirugnanaminvijayt.hashnode.dev·Aug 21, 2025 · 1 min readDifference between ring and border in tailwindIn Tailwind CSS, ring and border utilities both create visual boundaries around elements, but they differ significantly in their underlying implementation and how they affect the element's layout. Border: Implementation: border utilities directly ap...00
VTVijay Thirugnanaminvijayt.hashnode.dev·Apr 21, 2025 · 1 min readShould developers understand AI generated code?Developers who utilize AI for code generation don't necessarily need to understand every line of the generated code. Instead, they should approach it as they would code written by another developer. A thorough review is essential, but it's not requir...00
VTVijay Thirugnanaminvijayt.hashnode.dev·Mar 4, 2025 · 1 min readIntroducing chatblogr.com[https://chatblogr.com](https://chatblogr.com) is a yet another chat pp where you can chat with Cerebras Inference. It allows you to save the chat for future reference. And the best you can convert that into a blog. For example, https://chatblogr.com...00
VTVijay Thirugnanaminvijayt.hashnode.dev·Feb 20, 2025 · 2 min readMeta tags for a web pageAfter building an awesome page or a website, it is usual to share the link in social media to get an audience. Social media sites like Facebook or Twitter use the meta tags in the page to show the link preview. For example, consider sharing the link ...00