Perl Maven
107 FOLLOWERS
A maven is a trusted expert in a particular field, who seeks to pass knowledge on to others. The site contains lots of articles available free of charge, several Perl books and video courses for sale, and the Perl Maven Pro subscription with even more articles.
Perl Maven
8M ago
I have lots of documents written in Markdown format and I was looking for a way to convert them to HTML ..read more
Perl Maven
11M ago
My son works at a company where they analyze source code and report on potential data privacy violations. For this they need to parse source code in various programming languages. He mentioned that one day they might need to support Perl too. I thought about the difficulties in parsing Perl and one case came to my mind was the strange implicit return from a function that Perl has.
Then I also thought that Rust also has some strange ideas. BTW Do you know that I have a new web site called Rust Maven where I write about Rust? Now you know.
Anyway, back to Perl ..read more
Perl Maven
1y ago
I recommend always turning warnings on from the beginning of each Perl file.
However sometime we might want to avoid some warnings. We can selectively turn off warnings inside lexical scopes, that is, till the end of the current pair of curly braces ..read more
Perl Maven
1y ago
GitHub Actions is a system provided by GitHub to automate virtually any process you like. Including the possibility to create Continuous Integration (CI) systems for CPAN distributions.
While Perl developers who upload their code to CPAN will greatly benefit from the volunteers behind CPAN Testers setting up a CI system has a number of benefits even for CPAN developers ..read more
Perl Maven
1y ago
In a project creating a Ladino dictionary in which I have a few thousands of YAML files. They used to include lists of values, but a while ago I split them up into individual entries. I did this because the people who are editing them are not used to YAML files and it makes it a lot easier to explain them what to do.
However the previous change left me with 1-item lists in each file. I wanted to clean that up ..read more
Perl Maven
1y ago
At a client we have a networked disk with millions of files. I was trying to list the first few files to see what's going on.
ls -l | head takes ages, but here is a Perl one-liner to make it work ..read more
Perl Maven
1y ago
Perl has several module on several levels of abstraction to interact with web sites using HTTP requests. One of the nice modules is WWW::Mechanize that is built on top of LWP::UserAgent. In this example we'll see how to set the header in the HTTP request using WWW::Mechanize.
We'll use the service provided by the httpbin.org web site to see the headers we set.
It has many end-points. We use the one that will send back the header the client sent as its content. It makes it very easy to see what was in our header ..read more
Perl Maven
2y ago
There are several modules on CPAN that help your read an Excel file. In this article we'll look at handling dates that are in Excel files ..read more
Perl Maven
2y ago
The CPAN Digger provides a list of recently uploaded Perl modules and indicates, among several other things, if they have some kind of a Continuous Integration configured. That's how I arrived to App::Puppet::Environment::Updater and it took me quite some time till I noticed that it has GitHub Action configured, but not in the default branch ..read more