Raining

Got my little hard-drive rigged up to roll. I'm pleased with the results, even if a little incident between me and grub wasted an hour or so because I didn't read the man page sooner.
It seems grub has grown a boot-pile of more features since I last tried using it for any purpose.
The ability to ls a drive,partition is immensely awesome when trying to determine which one your other OS's are on according to it's equally awesome UUID support.
Suddenly adding/removing drives, or moving the drive to a different machine won't blow up what's where requiring a constant need to drop to it's command-line.
Anyway, that's enough rambling.

Completely random amusing link of the month:
Colors! I'm tempted to get this for my DS, as the thought of having something small and portable to scribble on strikes me as a strangely attractive prospect, and I just can't justify an iPhone for said convenience.
Having come to this realization, I see that the official site no-longer provides their app for the DS, though some kind chap over here provides a place to snag it from.
Win!

This article about Microsoft Exchange's little (little?) foibles is a really great read.
I can somewhat relate to a lot of these little issues as my workplace recently made the change to Exchange for corporate messaging and scheduling.
I say recently, but it's been about 8 months or so now I guess, and though it pains me to admit it - the shared calendar and scheduling Exchange can offer is pretty awesome.
E-Mail however... that's a different matter entirely. To say it was appalling would be an understatement me thinks.

No music today.

<edit>New title image. I love that face for some reason... it amuses me so.</edit>

<edit2>WHO IN GODS NAME INVENTED SENDMAIL!??!!? Geezus!

On the grounds that I'll never remember these steps in a hojillion fricking years; sendmail steps to emulate qmails control/smtproutes:

root@memnarch:~ # cd /usr/share/sendmail
root@memnarch:/usr/share/sendmail # cp cf/openbsd-localhost.mc cf/my-localhost.mc
root@memnarch:/usr/share/sendmail # vi cf/my-localhost.mc
root@memnarch:/usr/share/sendmail # diff -u cf/openbsd-localhost.mc cf/my-localhost.mc
--- cf/openbsd-localhost.mc     Mon Mar  7 00:41:52 2011
+++ cf/my-localhost.mc  Mon Mar  7 00:41:20 2011
@@ -23,6 +23,7 @@
FEATURE(nouucp, `reject')dnl
FEATURE(`accept_unresolvable_domains')dnl
FEATURE(`no_default_msa')dnl
+FEATURE(`mailertable', `hash -o /etc/mail/mailertable')dnl
MAILER(local)dnl
MAILER(smtp)dnl
DAEMON_OPTIONS(`Family=inet, address=127.0.0.1, Name=MTA')dnl
root@memnarch:/usr/share/sendmail # m4 m4/cf.m4 cf/my-localhost.mc > localhost.cf
root@memnarch:/usr/share/sendmail # mv localhost.cf /etc/mail/localhost.cf
root@memnarch:/usr/share/sendmail # echo 'mail.sarlok.com smtp:172.16.0.100' >> /etc/mail/mailertable
root@memnarch:/usr/share/sendmail # cd /etc/mail
root@memnarch:/etc/mail # makemap hash /etc/mail/mailertable < /etc/mail/mailertable
root@memnarch:/etc/mail # ps -waux | grep sendmail
root     29992  0.0  0.4  1264  2064 ??  Ss    12:38AM    0:00.03 sendmail: accepting connections (sendmail)
root      2393  0.0  0.1   448   748 p0  S+    12:47AM    0:00.01 grep sendmail
root@memnarch:/etc/mail # kill -HUP 29992
root@memnarch:/etc/mail # syslogc all | grep sm-mta | tail -1 | cut -d : -f1-4,9
Mar  7 00:47:08 memnarch sm-mta[13113]: p27901EZ024239:00, mailer=smtp, pri=30685, relay=172.16.0.100. [172.16.0.100], dsn=2.0.0, stat=Sent (ok 1299488402 qp 22729)

</edit2>