
Twitter Updates
- great synopsis of a two and a half hour long Alan Moore interview... somewhat different from what you'd expect http://t.co/M1Jq9QCk 13 minutes ago
- for some reason doing minor home repair-type work makes me incredibly anxious and impatient, when I'm not anxious doing most other things. 16 hours ago
- I had no idea. "Unicode's 'Pile of Poo' character" - http://t.co/aWVOSyjG 2 days ago
- "newb Gingrich" #Archer 2 days ago
- back home, cats retrieved, woke up way too early… can barely stay awake now though it bodes well for getting to bed on time tonight #jetlag 2 days ago
flickr/romkey




Categories
Tags
Ajax amazon ambient apple bat blogs brian eno computers dashboard david foster wallace deal Entertainment feed feedcache ie in memoriam internet explorer ios iphone ipod itunes jquery json leopard Life live+press livejournal mac macintosh macos x Music MySQL security sidebar simplify software taxes toilet TV UNIX uvfood web Wordpress world of warcraft writersMeta
Category Archives: Perl
Fixing Perl after MacOS X Security Update 2009-001
Apple's first security update of 2009 for MacOS X may solve some security issues in the OS but it also seriously breaks Perl by installing old versions of some modules along with Perl. It looks like Perl works okay for things that MacOS X uses it for, but if you do development using it or have installed other modules than what it came bundled with you may find that it no longer works.
…You'll probably need to download it from CPAN by hand as the CPAN shell itself is broken by the update.
The current version (as of the time I'm writing this article) is 1.2301 – you can find it at http://search.cpan.org/~gbarr/IO-1.2301/IO.pm
Continue reading
Working Through a Catalyst View Rendering Problem
I’ve been adding some belated email notifications to UVFood and in the process I ran into a frustrating problem: it wasn’t working at all. … Views are for rendering pages, but Catalyst::View::Email takes already-rendered text and then emails it somewhere. … I’ve written templates for the messages I need to send using HTML::Mason, so I need to render these templates before I can send a message.
…The fix is to fully qualify the view name, ie: my $v = $c->view(‘UVFoodApp::View::Mason’); Now I’m getting the correct component. Continue reading