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...
- @MLACitation he feels the same about you \o/ in reply to MLACitation 6 days ago
- @ambassadorawsum don't forget the excedrin for the neighbors 1 week ago
- @ambassadorawsum urmom thinks my beefaroni is delicious 2 weeks ago
- @mlacitation \o/ I hope your favorite developer gets to try one this time <3 2 weeks ago
- sidereal even 2 weeks ago
- More updates...
Posting tweet...
Powered by Twitter Tools
-
Meta
Tag Archives: perl
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