This mourning in Roselle I saw a gold Corvette with the license plate "PWNED U" Something is wrong about this, I’m just not sure what.
All posts by Keith Garner
Another argument in favor of Open Source
Not to make light of a sad situation… But here’s our quote of the day.
"Open source means that your software can continue even after you’re arrested for murder!" — MARK
zsh word splitting
Awhile ago, after I showed him how I indexed my mail with mairix, MARK gave me a zsh function to wrap a call to mairix and then invoke mutt. For some reason, when using the function, I was never able to pass multiple search terms to mairix and have it return results. It always failed.
It turns out that this was a zshism that I wasn’t aware of, and Mark might not have been as well. I finally took the time to get to the bottom of this and I found this FAQ which explains how word splitting differs in zsh. (All OTHER shells do it wrong, of course.) In any case, my multiple search terms were being passed to mairix as a single command line argument, so, of course nothing matched. I edit the script to call mairix ${=*}
instead of mairix $*
and it works now.
MARK might not have run into this because he might have SH_WORD_SPLIT
turned on. I do not.
Anyway, here’s the function:
mairix_mail (){
if (( ${#argv} == 0 )); then
# nothing to do
mairix --help
return
fi
# search
mairix ${=*}
# see the results
# assumes results are in ~/Maildir/search_results
mutt -f=search_results
}
alias gm='mairix_mail';
Bunny Block Bid
Welcome to my new section on Our Reading of Killer Bunnies rules.
In a discussion between Melissa, Chris, Mark, and myself, we have deceided that in a Bunny Block Bid the Kaballa go to the auctioneer instead of the discard pile. The rules are silent on this, but in the spirit of being as obnoxious as possible, we feel the money going to the player is the way to go. So let it be written, so let it be done.
Its just suprising how low it is
Ron Moore on Disaster Preparedness.
Ron Moore is the one of the executive producers and visionaries behind the new Battlestar Galactica. I follow his blog to get insight into the story lines and when he randomly answers BSG universe questions. Today, he had a great post looking back at Katrina a year later. Here’s a small excerpt
The subject is the one most likely to inspire yawns and rolling of eyes, so ready your mouse to click onto something else: Disaster Preparedness.
Still awake?
Okay, look, I’m not writing this because I’ve been sentenced to doing PSA’s off some DUI conviction or something, but I do work on a show that’s premised on the idea of an apocalyptic event actually happening to group of people and their struggle to survive in its aftermath, and so the idea of being ready for the unexpected does actually occur to me on occasion.
The third paragaph above is what hooked me. The rest of it is worth the read as well.
Word of the day
I’ve been told that the word of the day is consultapalooza.
A child of the Chicago area
In the morning while preparing to leave we normally have the tv on to catch the weather and a quick blast of news. As usual, because we’re in their home market, an Empire commercial came on. When the familiar 588-2300 jingle came on, my daughter just sang along with it.
Its both a proud moment and one that is kinda scary. However, my child is now officially identifiable as a child of the Chicago area.
That’s my girl!
I see your Nerd ABC and raise you a DORK ABC
Parent Hacks had a post that alerted me to the Nerd ABC flashcards, which I totally want to get for my daugther. I shared this with the folks on IRC and it turned into a discussion, thanks to Steve thinking that Fruit Fly wasn’t nerdy enough, of what a set of Programming Language ABC flash cards should look like.
Steve was kind enough to write up what was created by commitee.