2011.08.27 in #5IO::Async and AnyEvent
Another AnyEvent related article. In this one Paul Evans (LeoNerd) writes about adding the AnyEvent loop to IO::Async.
2011.11.15 in #17LPW2011 Talk Slides
Paul Evans (LeoNerd) links to his 'A Protocol for Protocols' and 'Tickit' talk slides.
2012.02.29 in #32Patches^W Unit Tests Welcome
LeoNerd (aka Paul Evans) has a very good point. Getting unit tests to a code base is very, very useful in the open source community. Maybe even more useful than getting patches to fix the code. Tests are probably the best way to express what your expectation is from a piece of code.
2012.07.10 in #51Dear Perl users on Windows...
If you are using Perl on Windows and have been complaining that some of the CPAN modules don't install or don't work, this is for you. LeoNerd complains that he hardly gets test reports from Windows users. We have this beautiful system called CPAN Testers, generating and collecting millions of reports about CPAN modules on all kinds of operating system, but hardly from Windows. So, if you are using Windows for Perl development, please consider setting up a smoke machine, or at least configuring your CPAN client to send out the reports *when* you install a module.
2014.06.06 in #150List::Util additions in Perl 5.20
List::Util and List::MoreUtils are a cornucopia of useful functions. LeoNerd tells us about the latest changes that come to them for, and in the wake of, the 5.20.0 release.
2015.06.09 in #203Turning a Hard Problem Into an Easy One
Paul is working on adding a 'pairsort' function to List::Util. Something that, at first, looked rather daunting, until he began to look at the problem from a different angle...
2020.09.27 in #479UV grant progress report 2020-09
Added the UV::TCP and UV::UDP types (and a few others), which now makes the library wrapping capable of most networking tasks.
2021.02.22 in #501Writing a Perl Core Feature - part 9: Tests
Adding a feature or making any changes to code isn't ready till you also wrote tests that verify the new feature and ensure that future changes will not break this feature.
2021.07.30 in #523Perl UV binding hits version 2.000
libuv is a cross-platform event handling library, which focuses on providing nicely portable abstractions for things like TCP sockets, timers, and sub-process management between UNIX, Windows and other platforms. UV is the Perl bindings for it.