documenting my code and learnings

1.  

How to create a custom debounce react hook using useEffect

Mon Sep 13 2021

Introduction When you type into google docs, does it save your changes at every keystroke? No, it does not, it waits, holds on for some time after your last keystroke/change and then fires up the save functionality. That right there was debouncing. ...

READ MORE

2.  

How to write raw HTTP requests using Netcat 🌐

Thu Sep 23 2021

As a web developer, having a decent understanding of HTTP request methods, headers and status codes increases your overall productivity as a developer in the long run by helping you debug 🐞, develop and understand code faster⚡. What better way to ga...

READ MORE