SASahil Ahluwaliainsahilahluwalia.hashnode.dev·Sep 6, 2025 · 2 min readMain Thread is Fragile, use Web WorkersImagine you’re drawing on paper.Every stroke you make, the whole page freezes, no scroll, no click, no animation. That’s JavaScript on the main thread. The Problem: One Thread Rules All Try this: open a webpage with a looping GIF.Then in console, ru...00
SASahil Ahluwaliainsahilahluwalia.hashnode.dev·Aug 24, 2025 · 2 min readSupabase Security ScannerAuditing Supabase Security: How to Detect Misconfigurations Before Hackers Do Supabase makes it easy to build full-stack apps with a Postgres backend. But with great simplicity comes a common problem: misconfigured policies that can expose your data ...00
SASahil Ahluwaliainblog.ahluengineers.com·Apr 6, 2023 · 5 min readPower Press Automation & its IntroductionPower press automation is a highly efficient manufacturing process that uses automated machines to produce stamped metal parts with high precision and accuracy. It is widely used in various industries, such as automotive, aerospace, electronics, and ...00
SASahil Ahluwaliainblog.ahluengineers.com·Mar 31, 2023 · 4 min readPower Press & its IntroductionIntroduction Power presses are machines that use mechanical, hydraulic, or pneumatic power to shape, cut, or form metal materials. These machines are essential to the manufacturing industry, particularly for the production of metal parts used in auto...00
SASahil Ahluwaliainsahilahluwalia.hashnode.dev·Sep 25, 2022 · 2 min readArrays in JavascriptWhat is Arrays in javascript? An Array is Data Structure which can store various data in it with one variable. let myArray=[] Array() In javascript, index of array starts from 0 Properties of Array 1. length() myarray=['ram','sita'] myarray.length()...00