New cPanel Perl Module
Introduction On Monday, cPanel announced the release of a new cPanel::PublicAPI Perl module. It’s a really nice module and this short article will explain how to use it.
Parsing Arguments in Perl
Introduction Throughout my years of working with Perl, I have come across several different ways to parse command-line options. I decided to write an article describing some of the methods as well as some pros and cons to each method. Here are five of them.
Perl Development
Introduction After finishing my Python Development article, I was curious as to how I could create a better Perl development environment for myself. Why Perl? I first learned Perl in 1997 when I was a Sophomore in High School. It has stuck ever since. No matter what other language I learn or focus on, I’m [...]
Perl Virtual Environments
Introduction One nice tool for Python is virtualenv. It allows you to create sandboxed Python library repositories and enable them and disable them at will. By utilizing this, you are able to work on separate projects that can each have their own individual environment and not affect other environments. Perl has something similar called local::lib. [...]
