
Matthew Persico
- About: I was never in love with C or SQL like this...
Recent Actions
-
Commented on Faster Readonly variables with Const::XS
One of the issues with `use const` is that the implementation of using a subroutine makes those consts difficult to use in quoted situations. Does Const::XS have any such limitations? I can't see any from reading the POD....
-
Commented on Faster Readonly variables with Const::XS
The link is incorrect: https://metacpan.org/pos/Const::XS...
-
Commented on This week in PSC (172) | 2024-12-12
Re: 42 - The branch is at https://github.com/Perl/perl5/tree/psc/ppc0025 . PPC0025 is readable at https://github.com/Perl/PPCs/blob/main/ppcs/ppc0025-perl-version.md ....
-
Commented on MariaDB 10 and Perl DBIx::Class::Schema::Loader
I took the liberty of posting this to r/perl because I thought it was important and needed more eyeballs....
-
Commented on Of Go, C, Perl and fastq file conversion Vol II : the Jedi regex
The text "In contrast to popular and misguided opinion" is underlined but it does not resolve to a link. Is this intended?...
-
Commented on When Saif Met Sarah
I am so upset. I also didn't connect you with your software. That will teach me to make sure I introduce myself to people I don't recognize instead of just hanging with the people I do. I look forward to...
-
Commented on ChatGPT for Perl Learning
And no, I am not *that* Matt. :-)...
-
Commented on ChatGPT for Perl Learning
And yet, that's not how younger generations consume information. They are much more interactive than those of us who you might consider to be "Perl veterans". Think videos and short blogs vs. books and long blocks of text. I'll also...
-
Commented on This week in PSC (099) | 2023-03-03
Is there a link to the RFCs (future PPCs)?...
-
Commented on What does ChatGPT think about improving Perl?
This is scary, scary stuff. At least Curtis should be pleased....
-
Commented on Class::Plain - Class Syntax for Hash-Based Perl OO
The inclusion of a Cookbook (https://metacpan.org/release/KIMOTO/Class-Plain-0.04/source/lib/Class/Plain/Document/Cookbook.pm) is a fine example for others to emulate....
-
Commented on Casting Perls before Splines
What were you drinking when you wrote this... and can I have some? :-)...
-
Commented on Types, Objects, and Systems, Oh my!
Two thoughts: 1) Signatures are now enabled by default in 5.36 onward (https://perldoc.perl.org/perldelta#Core-Enhancements). An OO system (Corinna (https://ovid.github.io/articles/current-corinna-status.html) appears to be making its way into core. How do you see these as affecting Venus? 2) What is the speed penalty,...
-
Commented on RFC: new API for Type::Params
I agree. At the top you can put a blurb like: Note: This module was given a "facelift" in 2022 with a more natural API. These docs have been revamped to feature the new API prominently, but the old API's...
-
Commented on RFC: new API for Type::Params
--modern. I could live with that....
-
Commented on RFC: new API for Type::Params
TIL Type::Params :-) Not having any practical experience with it and referring to just the examples, I feel the second syntax is much cleaner. Certainly, getting rid of compile_named_oo is a win. However, I don't think the Perl world needs...
-
Commented on Numeric Variable Names With Leading Zeroes
Why not publish it? It's valid, no? Or is running it just a waste of time since it's a syntax error?...
-
Commented on Sorting Subroutine Results
Most of the time I use sort BLOCK LIST. I recall having written some rather long blocks that probably should have been refactored as functions. Maybe the explanation of needing & is why I never did. I'll try to remember...
-
Commented on The Perl Advent Calendar 2022 Call for Papers is Now Open
Brilliant. Thank you for stepping up....
-
Commented on Smart Match in CPAN
It's not that stupid; *I* noticed and made a suggestion which you took. Seems like it worked to me! :-)...
-
Commented on Smart Match in CPAN
That's an excellent, important piece of detective work. Are you going to post a link to it in p5p to get their attention? Also, these are the most recent versions as of 6/24, right?...
-
Commented on Core Modules: <code>filetest</code>
Just wanted to say "Thank You". These posts have been quite informative....
-
Posted Enlarging the Perlosphere to Matthew Persico
Although they may be an anthema to many, there are many active Perl communities on Facebook. The primary ones I subscribe to are
Perl Programmers -
Commented on Replay/Debug/Test Cron Events With Cron::Sequencer
I can see the being extremely useful. A quick perusal of the blog and the code doesn't reveal to me how/why the times are in UTC; where are you picking up the delta?...
-
Commented on Начнём пожалуй
Go for it! I wonder why Google Chrome did not offer to translate the page......
-
Commented on The ordering operators
I've been Perling since 1997 and I don't think I ever thought about using the comp operators outside of sort() before today. TIL....
-
Commented on Access the Tesla API with Perl!
Who was the person who showed up with the DeLorean at one of the Perl Conferences (I think it was the DC one)?...
-
Commented on The benefits of change, from an amateur's objective perspective.
Brilliant! A design that evolved into objects instead of cramming the design into objects. That's the right way to write code: get something working. Refactor. Evolve. Nicely done....
-
Commented on The Quickest Way to Set Up HTTPS
https://github.com/blogs-perl-org/blogs.perl.org/issues/410...
-
Commented on berrybrew version 1.36 released!
Talk to these folks: https://ww2.enlightenedperl.org/ EPO SPONSORS THE FOLLOWING PROJECTS Meta::Cpan – CPAN Testers – Strawberry Perl – The Perl Conference – London Perl Workshop – Perl @ FOSDEM...

Comment Threads
-
Robert Acock commented on
Faster Readonly variables with Const::XS
My benchmark measures both instantiation and access. If I were to benchmark only access, Const::Fast and Const::XS would show very similar performance. I include both in the benchmark because it's relevant in scripting scenarios, where the process isn't long-running, and variables/constants are instantiated each run. And yes, I know we're talking about fractions of a second but those add up.
-
Tom Wyant commented on
Faster Readonly variables with Const::XS
Note that Readonly appears to make use of Readonly::XS if that is available.
Readonly::XS
does not declare a Perl version dependency that I can see, but it is installed on my Perl 5.8.9. -
Sebastian Schleussner commented on
Faster Readonly variables with Const::XS
Line 38ff:
"Const::XS::PP::const" should be "Const::PP::const". -
russbrewer commented on
MariaDB 10 and Perl DBIx::Class::Schema::Loader
A Pull Request has been submitted to DBIx::Class::Schema::Loader to add DBIx::Class::Schema::Loader::DBI::MariaDB.
A pull request has been submitted to DBIx::Class to add DBIx::Class::SQLMaker::MariaDB.
-
Mitchell commented on
MariaDB 10 and Perl DBIx::Class::Schema::Loader
Thank you for submitting those pull requests.

About blogs.perl.org
blogs.perl.org is a common blogging platform for the Perl community. Written in Perl with a graphic design donated by Six Apart, Ltd.