Make your code run faster with Perl's secret turbo module
Multi-core programming is a breeze with MCE
Read it
Display beautiful Perl code in HTML without JavaScript
PPI::Prettify makes pretty-printing Perl code as HTML easy
Read it
Solve almost any datetime need with Time::Piece
How to parse, print, format, compare and do math with datetimes in Perl
Read it
The easy way to build stand-alone Perl apps
Making dependency-free Perl applications is simple with App::FatPacker
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
The Year in Perl 2013 Retrospective
Perl had a great year in 2013. Here are some highlights.
Read it
Get 30% off the new Perl One Liners book
Happy holidays; enjoy this discount on the latest Perl book until 15th January 2014
Read it
Schedule jobs like a boss with every
Introducing every, the cron scheduling app written in Perl
Read it
An interview with Peteris Krumins
We talk about his favourite Perl one liners, publishing books and Perl on Windows!
Read it
The ultimate guide to Windows and Unix file line ending conversion in Perl
Think you know how to fix CRLF in one line of Perl? There might be more to it than you think …
Read it
Implementing the singleton pattern in Perl
Learn when and how to use this classic “gang of four” code pattern
Read it
An interview with Jeffrey Ryan Thalhammer
Learn about the tools Jeffrey uses to code in Perl, upcoming Stratopan features and more!
Read it
Wear the cloak of invisibility with OpenVPN and Perl
How to covertly screen-scrape behind an encrypted connection and masked identity
Read it
Add Moose-style attribute accessors to your Perl classes
Writing accessors in vanilla object oriented Perl doesn’t have to lead to verbose boilerplate code
Read it
A Stratopan quick start user guide
Learn how to manage your Perl modules in the cloud with Stratopan
Read it
Enable Backtraces with Carp::Always (Modern Perl Tips)
Ever had a program crash and wanted to get more details about where and why? The CPAN module Carp::Always is perfect for this.
Read it
How to redirect and restore STDOUT
STDOUT is the Perl filehandle for printing standard output. Unless a filehandle is specified, all standard printed output in Perl will go to the terminal. Because STDOUT is just a global variable, it can be redirected and restored. Want to implement logging on a program without changing every print statement in the source code? Want to capture the standard output of a perl CRON job? Read on.