DEV Community

Gabor Szabo
Gabor Szabo

Posted on • Originally published at code-maven.com

 

Day 24: CI for perl5-MIME-Types

After the heavy-lifting of the previous entry in the Daily CI series this was a very easy task. Looking at CPAN Digger I saw MIME-Types. That sounded like a simple Perl module and indeed adding CI was straight forward.

Pull-request It was already accepted.

Conclusion

There are many projects that are low-hanging fruits where you can add GitHub Actions in a matter of minutes and get the benefits immediately.

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.