How to build Perl on Android 4.4
A step by step guide to installing Perl 5.20 on Android KitKat
Read it
Easy application dependency management with Stratopan
Get the right modules and versions everytime
Read it
Shazam! Use Image::Magick with Perlbrew in minutes
How to get a local non-root install of Image::Magick working with Perlbrew
Read it
Schedule jobs like a boss with every
Introducing every, the cron scheduling app written in Perl
Read it
A Stratopan quick start user guide
Learn how to manage your Perl modules in the cloud with Stratopan
Read it
Find CPAN mirrors and configure the local CPAN mirror list
CPAN mirrors are online repositories which host or “mirror” the Perl module distributions on CPAN. There are hundreds of CPAN mirrors dispersed throughout the World. When the CPAN program is run for the first time on a machine, it will configure the CPAN mirror list to use for checking for new versions of modules and downloading Perl distributions. All CPAN mirrors are not created equally though: the distribution list’s age, speed and the geographic location vary from mirror to mirror and so you may want to re-configure your local CPAN mirror list to suit your needs. This article describes how to find CPAN mirrors and edit the local CPAN mirror configuration.
Read it
How to schedule Perl scripts using cron
Cron is a job scheduling program available on UNIX-like platforms. Most system commands can be scheduled including the execution of Perl programs. Once a job is setup, cron will run it as scheduled even if the user is not logged in, which can be a great way to automate sysadmin tasks or repetitive jobs. This article describes how to run Perl scripts with cron.
Read it
How to track new CPAN releases
CPAN is a fantastic Perl resource with thousands of modules and new ones being added all the time. But how do you keep track of what’s being released? This article describes three techniques for keeping tabs on the latest CPAN releases.
Read it
Re-use code with Perl's anonymous functions
An anonymous function in Perl is an unnamed subroutine. But what are they good for? This article shows how through using anonymous functions it’s possible to write more generic, re-usable Perl code.
Read it
List all Perl modules installed via CPAN
A quick way to list all non-core modules installed via CPAN using the command line:
Read it
3 quick ways to find out the version number of an installed Perl module from the terminal
Perl module features and behaviour can change from version to version and so knowing the version number of an installed Perl module can be useful in several scenarios. Below are three different command line methods for finding out the version number of an installed module that work on Bash and Windows Powershell. So fire up the terminal and get typing!