DEV Community

Play Button Pause Button
Cheuk Ting Ho ๐Ÿ
Cheuk Ting Ho ๐Ÿ

Posted on

 

Python Zero to Hero - Ep.33 - Python ABC (Abstract Base Classes)

I have come across Python ABC a few times and I always wonder what magic power do they processed and what are they used for. Today, we will have a look together. If you have any questions or any suggestions about which Python topics to cover, please leave your comment at my Twitch channel

You can get the slide deck here and the example code and homework form GitHub here. Ask questions at my Twitch channel

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.