DEV Community

Cover image for What is your favorite productivity tool?
Gilberto Nava Marcos
Gilberto Nava Marcos

Posted on

 

What is your favorite productivity tool?

Mine is definitely Notion, the Swiss Army Knife that can be as complex as you want it to be. From replacing a notebook for pretty notes to keeping track of your accounts in a table.
There are sites that give you a very quick and dynamic introduction such as:

Aprende Notion

Following the inspiration, there are many templates to duplicate and use according to your needs. You can find a lot of them here:

Templates
Notioneverything

Top comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.