avatar

PrintF/ScanF

Coding My Way Out of Burnout

About three months ago, I felt intense pressure in my career. I did not feel like learning anything, and doing my job was a struggle. At that point in time, I didn’t understand what was going on, but now I know I was going through a phase of burnout. Burnouts are quite common in the workforce, and you will find hundreds of people sharing their stories of burnout. One thing you will come across quite often when you search for ‘how to deal with burnouts in tech’ is to just take a break.

Async IO programming with Node js

Introduction 🔗Asynchronous programming is a technique that enables your program to start a potentially long-running task and still be able to be responsive to other events while that task runs, rather than having to wait until that task has finished. Consider Node/ Browser Architecture , When program starts it start a main thread on which wil run your javascript program . While one set of instructions ( code ) is running on this thread the thread is busy