2017.05.06 in #302\d does not validate numbers
\d does not always do what you expect; in a Unicode context, it will match on anything that is regarded as a numeral in Unicode!
2017.07.04 in #311The not-so-great escape
Ben wrestles with HTML escaping; the comments discuss some CPAN modules--and their bugs!
2017.08.25 in #318Script to update some modules
What if for some reason you cannot use cpan and cpanm? I think in this case the problem is lack of access to a CPAN mirror.
2017.10.21 in #326Cygwin interesting problems
Cygwin is a special source of Yak Shaving with all kinds of questions one need to answer. I wonder, could AppVeyor be used to test CPAN modules on Cygwin?
2018.10.05 in #376Unicode::Properties slated for removal
Ben announced that he is planning to remove the module Unicode::Propoerties from CPAN, primarily because it is using faulty methodology to get the properties.
2018.11.15 in #382I'm fully covered
In this blog, Ben started the discussion how the newly introduced feature of MetaCPAN i.e. Code Coverage has impacted his distributions.
2018.11.21 in #383Don't use something or another
At the first glance it would seem this is another article in the CGI series, but no, this actually explains why you should (almost) never use 'eval'. The evil eval.
2018.11.22 in #383Be generous, but not very
How do you validate your input? Are you trying to be nice and accept input with a typo? What if it wasn't a typo?
2020.12.09 in #490Bill & Ted's Bogus Journey
Ben started an interesting discussion about putting debug information in a test script.
2020.12.17 in #491Drawing a blank with XS
As Toby Inkster commented: "Python: Let's make whitespace characters syntactically signicifant. Perl: Hold my beer and watch this!"
2021.01.06 in #494ABC Mart
Ben is following the Mojolicious pattern of listing methods and functions in alphabetical order. Even the tests are arranged alphabetically.
2021.03.15 in #503Relatively easy ways to catch memory errors
If you're using XS and C in your Perl module, you might have to worry about memory errors. - Oh personally I have had to deal with memory leaks in pure-Perl modules as well. It is a lot of frustration. And fun, when you finally catch it. But this post is about mallocs.