DEV Community

Dante Kim
Dante Kim

Posted on

 

Starting the development of my dream app!

Hey guys! I am currently a college student and inspiring entrepreneur. I am extremely hard working and every single day I aim to get better. I love reading self-help/biographies/psychology, and strive to read at least one a week. I am almost done completing a pomodoro app but with a twist, your rewarded every time a session is over. Got the idea from reading atomic habits, "if a habit is not rewarded it will not be repeated" You're given an avatar you level up, so in essence as you work hard and grow in real life so does your avatar.

I learned pixel art and started teaching myself IOS dev 6 months ago, and now I almost done with the app! I would really appreciate it, if you could check it out at https://focusbyte.io and sign up! If you have any suggestions or just want to talk please feel free to reach out!

I also have been documenting my process on medium:
https://medium.com/@tfkim67/starting-the-development-of-my-dream-app-ef6245bb6884

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.