funny / gtd / linux / projects — 5 comments
10
Nov 06
I like to give all my computers original, easy to remember names. I think people cop-out if their computer name is XP-PRO or LAPTOP or LINUX. Here’s a few ideas I’ve gathered for naming schemes. Make sure you leave yours in the comments.
- The Seven Deadly Sins (My current naming scheme)
- lust
- gluttony
- greed
- sloth
- wrath
- envy
- pride (hubris)
- Mythical Creatures
- gryphon
- dragon
- hydra
- unicorn
- pegasus
- gargoyle
- chimera
- sphinx
- phoenix
- cerberus
- kraken
- leviathan
- wyvern
- Happy Words (thanks Carey)
- abandonment
- isolation
- hate
- despair
- revenge
- Trees
- juniper
- maple
- oak
- cedar
- pine
Update: I thought of one other one:
- alpha
- bravo
- charlie
- delta
- etc…
gtd / reading — No comments
06
Nov 06

I have quite a few RSS feeds in my reader that generate somewhere around 100 articles a day to process. When someone suggests a new blog or I stumble upon a good article and the website looks promising it goes in the probation category.
If it doesn’t generate enough interesting content within a month to appease me it gets deleted. I’ve found this is a great way sort out only the highest quality feeds and weed out the time wasters and the ones that generate no content.
[tags]gtd, rss, probation, google reader[/tags]
programming / wordpress — No comments
02
Nov 06
Smilies aren’t always a good thing, depending on the professional level of your blog, you might want to turn them off, here’s how.
In your wp-config.php file, below the database stuff, add this line:
$wpsmiliestrans = array();
[tags]wordpress, php[/tags]
gtd / rants — No comments
01
Nov 06

In September my wife and I finally moved gyms to one that would be on the way home from work. This saved us from driving about a half hour in the wrong direction.
Our billing date was September 15th and I canceled on the 12th and was told that I wouldn’t get charged. Of course I was charged but I had everything written down in my Moleskine.
It rescued me because on the notebook half I had written down in detail who I had talked to and what they said, at what time and obviously the date. I’ve had too much trouble before with sort of thing so I’ve learned my lesson.
I wrote the gym a letter detailing my transactions with all these people plus including a copy of the cancellation letter and the fax receipt saying they received it. The next day I got a calling saying they would refund my money and sorry for the trouble. It’s very hard to argue when you can present a detailed time line.
Here’s a list of other things to write down:
- Canceling anything, write down who you talked to and the time and your cancellation number (This saved me when I canceled DSL and they continued to charge me and didn’t refund the previous month of service, even though it didn’t work)
- Ordering a major item or service
- Bills paid and when you mailed them
- Any inquiries you make about services – write down who told you, what they said and the price quote
If you think of any others, leave them in the comments.
[tags]moleskine, gtd, record keeping, saving money, money[/tags]
gtd / rants — No comments
17
Oct 06

New Features:
Google made some major updates to Google Reader which makes it really usable. Before it was a bit awkward and didn’t make a whole lot of sense. Now it looks great and functions exactly how you think it should, here are the features I really like:
- You can access it anywhere
- Good HTML Support (you’d think this would be obvious but then you must not have used embedded IE)
- Embedded mp3 Support – I have a lot of podcasts in my feeds, this makes it really handy to listen to the short ones as I process my articles
- Keyboard shortcuts – this is probably the best feature – my hands don’t leave the keyboard
My Workflow:
Here’s how I work. I process first, I just determine whether the article is interesting and open it, I read later:
- Shift + N -> Move to the next feed
- Shift + O -> Open that feed
- Spacebar -> page through the feed (Possibly doing a Shift + A to mark all read if it bores me)
- v -> opens that articles link in a new tab (with Firefox obviously)
Summary:
Google Reader has replaced SharpReader which was my desktop feed reader for years (Rant: To mark all read in SharpReader its Ctrl+Shift+R – human hands weren’t meant to contort like that!) It’s a very efficient way of managing my current RSS feeds and has saved me quite a bit of time. Google always amazes me. I thought Reader was a very mediocre product but they really redeemed themselves and pulled off an excellent transformation with this release.
[tags]google, google reader, rss, sharpreader, gtd, feeds[/tags]
funny / linux / programming / rants — No comments
11
Oct 06

Firefox has some very weird licensing going on with their artwork so you can’t patch Firefox and release it yourself with the original artwork. Debian’s solution was to create their own GPL’ed artwork and rename Firefox to IceWeasel. I really can’t blame Debian for forking it plus IceWeasel is a cool name. Some of the best software in the Open Source community has been created when one programmer saw a different direction to take a piece of software.
Here are 5 Reasons to Support IceWeasel.
And then 5 Reasons to Kill it.
[tags]firefox, iceweasel, gpl, debian, artwork[/tags]
linux / programming — 1 comment
25
Sep 06
Here’s a quick script that can convert m4a (AAC encoded music files) to mp3. This is a nice example of how powerful the command line can be.
It uses mplayer to write out the raw wave file, then uses lame to encode the mp3′s. After that it cleans up the file endings using sed. This script requires mplayer and lame to be installed.
It should work well on Fedora Core 5 and Ubuntu 6.
#!/bin/bash
for i in *.m4a
do
mplayer -vc null -vo null -ao pcm:fast:waveheader “${i}”
mv audiodump.wav “${i}.wav”
done
for i in *.wav
do
lame –preset fast standard “$i” “$i.mp3″
rm -rf “$i”
done
for i in *.mp3
do
x=`echo “$i”|sed -e ‘s/m4a.wav.mp3/mp3/’`
mv “$i” “$x”
done
[tags]programming, bash, linux, fedora, ubuntu, lame, mplayer, command line[/tags]
rants — 1 comment
30
Jun 06
I shut down my forums due to tons and tons of spammers creating accounts. I’m really sick of this crap. Eventually I’ll find a nice solution (I don’t think it will be in phpBB, I think I’ll end up switching software). If you need support for either Dragonsong or Suroden, just email me.