SSShailendra Sonarinshailendrasonar.hashnode.dev·Jul 3, 2024 · 4 min readBloom Filter (System Design)Suppose you are building the signup page for GMAIL like service and you wanted to make sure that the username is unique, for that you must be checking if the username does not exist already in the database (Username is not taken already) then only yo...00
SSShailendra Sonarinshailendrasonar.hashnode.dev·Jun 28, 2024 · 4 min readCSV data to DynamoDb (Verification)Csv file upload in S3 bucket and processed though lambda and sqs and data will go to dynamodb and got mail of new user and existing user in dynamodb. → S3 Bucket - Upload CSV file. → Dynamo Db - All data will come on out DynamoDB database. → SQS - Fl...00
SSShailendra Sonarinshailendrasonar.hashnode.dev·Jun 11, 2024 · 4 min readHow to create NPM packageNPM is the largest software registry on the internet. There are over a million packages in the NPM Library. How to Choose a Name For Your NPM Package The first thing you need to do before creating your package is to choose a name. This is important b...00
SSShailendra Sonarinshailendrasonar.hashnode.dev·May 13, 2024 · 2 min readcall() apply() & bind()All three of the call, bind, and apply methods are used to set the this argument to a function. The call and apply methods set this to a function and immediately call it. The bind method will only set this to a function and it will need to be invok...00
SSShailendra Sonarinshailendrasonar.hashnode.dev·Apr 29, 2024 · 2 min readPower of Promise1. Promise.all: When You Need Them All Imagine you have a bunch of Promises, and you need all of them to resolve before proceeding. Promise.all comes to the rescue! It ensures that all Promises resolve successfully, or none at all. Perfect for parall...00