Category ‘Perl‘

 
 

PerlPod gets new home

PerlPod is a command line podcatcher. It will fetch your favorite podcasts. This long dormant project was recently picked by Jonathan Hopkiss. He has extended it to use gnupod to copy the podcasts to your iPod. You can then listen to them at your convenience.

Get PerlPod

Perl File IO

I was amazed to see how simple Perl makes it to read the lines of a file into an array.

#!/usr/bin/perl
open(I, “flavors.txt”);
@flavors = <I>;

With just two lines of code, you are ready to do some string munching. You can then run through the elements in the array with a loop similar to the following.

for($i=0; $i<@flavors.length; $i++) {
@flavors[i] =~ s/•//;
}

I would enjoy seeing some other ways to iterate through the array.


Mmm, I am really impressed with NOVO coffee. Very good! Maybe it's just because I've been drinking the Folgers coffee at the office.

Just saved $290 by changing the damn radiator myself

Doh, I ran out of propane halfway through a brew session. That added an extra hour to an already long brew day.

Follow me on Twitter