Tag Archives: perl

Devops w/ Perl @ Linode PPW Talk Slides

Earlier this month a gave a talk about Linode’s use of Perl for devopsy things at the Pittsburgh Perl Workshop. Finally getting around to posting the slides online. I wanted to add some details so more of the slides made … Continue reading

Posted in General | Tagged , , | Leave a comment

Local Growl Notifications from Remote Irssi

What I’ve tried, What I want Skip to the next section if you just care about the end result. In the past, I’ve had my remote Irssi client send UDP Growl packets to my static home IP that were then … Continue reading

Posted in General | Tagged , , | 1 Comment

Task Management with Hiveminder and Perl

This is how I manage my tasks with Hiveminder on a weekly basis and the Perl script that helps me do it. I don’t really expect the Perl script to be useful to anyone as-is but portions of it may … Continue reading

Posted in General | Tagged , , | Leave a comment

WebService::MobileMe uploaded to the CPAN

Just a quick post to announce a new perl module I uploaded to the CPAN the other day. It’s still to be considered alpha quality as it is lacking error checking and other such necessary stuffs but is working for … Continue reading

Posted in General | Tagged , , , | Leave a comment

YAPC|10

I will be at YAPC|10 in Pittsburgh the end of June. Here’s a schedule of the talks I plan to attend. There are a few holes not because the talks at those time suck but because they rock so hard … Continue reading

Posted in General | Tagged , , | Leave a comment

~/.bashrc Perl Module Version Tip

I often need to quickly check the version of a perl module currently installed. A while back I got tired of running: $ perl -MPOE::Filter -E ‘say $POE::Filter::VERSION’ 1.2357 So I added a quick function to .bashrc: pm-vers () { … Continue reading

Posted in General | Tagged , , , | Leave a comment

Geeky Weather Station Stuffs

http://weather.thegrebs.com/ I recently received a nice Honeywell weather station. It turns out they are actually manufactured by a company called Irox which also sells stations under it’s own name but they seem to be more popular in Europe. Being a … Continue reading

Posted in General | Tagged , , , | 3 Comments

dh-make-perl will rock your socks

dh-make-perl is the most awesome Debian package /ever/. dh-make-perl –cpan Some::Module –build sudo dpkg -i libsome-module-0.1-1_all.deb Done. Dependencies If you have apt-file installed and Some::Module requires Lib::Foo for which a Debian package is available, the dependancy will automatically be created. … Continue reading

Posted in General | Tagged , , , , | 4 Comments

Module::Signature Rocks My Socks

Just discovered the perl module Module::Signature by 唐鳳 (Audrey Tang) the other day. It’s pretty spiffy. Implementing is easy (stolen from the docs): MakeMaker: WriteMakefile( (MM->can(‘signature_target’) ? (SIGN => 1) : ()), # … original arguments … ); Module::Build: Module::Build->new( … Continue reading

Posted in General | Tagged , , , | 2 Comments

Adding a Datastore to an RRD File

Mainly for personal future reference. Adding a DS to a bunch of RRD files is a big pain, RRD doesn’t have any sort of native mechanism for doing this. The usual procedure is exporting the RRD data to XML, creating … Continue reading

Posted in geek, neat | Tagged , , | 6 Comments