Tags
arduino authentication bash best buy copiers cpan deb debian development DNS dynex electronics fingerprint fire free software geek git hunter iphone ipv6 LOGO mac mobileme modules nerd OSX perl piezo python rrd ruby screen shell software spam stupid support thermistor tips ubuntu virus weather wxperl yapc youtubeTwitter...
- slides from my @pghpw talk Devops w/ Perl @Linode finally posted http://t.co/lm43WXlY 32 mins ago
- @jicooo So far so good, have only made it to the 5th chapter though, I has kids :< 1 day ago
- @mftb I have submitted your request to the board of adjudication but have resurrected said comment pending the board decision 2 days ago
- @mftb You sir, have just won yourself a win point. It's on the whiteboard in my office if you wish to claim it. 2 days ago
- @mftb are you a robot? you have to tell me if you are. 2 days ago
- More updates...
Posting tweet...
Powered by Twitter Tools
-
Meta
Tag Archives: perl
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
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
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
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
~/.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
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
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
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
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