Sending login notifications to users using Auth0 ActionsYou can never be too sure about your security on the internet. The good news is that most companies are becoming proactive in preventing hacking attempts on users by notifying them about suspicious login activity. Some banks even go as far as informi...Aug 21, 2022·3 min read·36
3 worst things you can do in an interviewWhile I was at Canoo, I took around 100 interview calls, ranging from technical screening to behavioral & culture fit tests. I met some great candidates and some who really disappointed me. In this article, we will take a look at three of the worst t...Mar 15, 2022·4 min read·19
Create your own URL shortener with Next.js and MongoDB in 10 MinutesMotivation A few weeks back, I was working on a Twitter bot to post my popular articles and I realized that links of some articles are not parsed well in the Tweet. However, shortening them using Rebrandly worked well. So, I decided to make a URL sh...Mar 14, 2022·5 min read·221
5 String methods every JavaScript developer should knowDealing with Strings is inevitable in all programming languages, so it's great to know that JavaScript provides some amazing String manipulation functions right out of the box. Today we are going to see five such string methods to make your life easy...Mar 7, 2022·3 min read·136
Memoization: the what, why and how?What is Memoization? Imagine, I'm your Math teacher and I gave you a problem to solve. You took 5 minutes to solve it, and the answer was correct. Good job! 10 Minutes later, I give you the exact same problem. What would you do? You'll just tell me t...Feb 28, 2022·3 min read·36
4 ways of finding elements in a JavaScript ArrayArrays are the building blocks for data-based web apps. We can store and manipulate data using an Array easily. Today, we are going to see 4 ways to find an element in an Array, along with some use cases explained with examples. I know, I know... f...Feb 21, 2022·2 min read·107
3 Array methods every JavaScript developer should knowArrays are something all of us come across every day. Today I'll share my picks for 3 of the most uncommonly used Array methods. isArray In JavaScript, we have to infer the data type of variables way too often, even more often in nested Objects. One ...Feb 14, 2022·2 min read·103