SBSatej Bidvaiinsatejbidvai.hashnode.dev·May 28 · 4 min readIt's called a PR "review" for a reasonWrite code however you like. Use AI, use 10 parallel agents, write it by hand.I don't care. But this idea that because we can write code faster, we should lower the bar for merging it? That doesn't ma00
SBSatej Bidvaiinsatejbidvai.hashnode.dev·Nov 11, 2025 · 3 min readSearch on steroids: Using regex in VS CodeWe've all used Command + Shift + F to search across our codebases. There's a hidden gem here which helps us supercharge our search queries — regex (Regular Expression) search: Let's take a look at how can leverage regex to: Find (locate patterns th...00
SBSatej Bidvaiinsatejbidvai.hashnode.dev·Feb 21, 2023 · 4 min readWhy ACID properties matter in database transactions👋 Hey! You might have come across the term 'ACID properties' in your studies. While it's commonly regarded as a topic to mug up for interviews 😶, there's actually a lot more to understand. I have tried to provide an overview and touch upon some key...00
SBSatej Bidvaiinsatejbidvai.hashnode.dev·Jan 12, 2023 · 1 min readUsing async-await with arr.map()While working on a task today, I had to populate my array of objects using my database. Instinctively, I used the map function. The code looked something like this: const dataList = [ { type: "test__1" }, { type: "test__2" }, { type: "tes...00
SBSatej Bidvaiinsatejbidvai.hashnode.dev·Dec 9, 2022 · 5 min readAdvanced topics for JavaScript InterviewsThis is my first post/blog/article of any sort, so any feedback will be appreciated. These are my notes which I prepared to revise for JavaScript interviews. Some of the topics are advanced but are a must-know for a intermediate JavaScript developer....01S