Tuesday, December 30, 2008
Monday, December 29, 2008
Sunday, December 28, 2008
Friday, December 26, 2008
Thursday, December 25, 2008
Tuesday, December 23, 2008
Monday, December 22, 2008
Friday, December 19, 2008
Thursday, December 18, 2008
Wednesday, December 17, 2008
Tuesday, December 16, 2008
groats
Don't know why I like these so much, as opposed to the more conventional rolled oats. I do think it was interesting the recent Straight Dope column discussing whether one could survive solely on potatoes and milk. The answer was that eventually, one would die of molybdenum deficiency. However, just a small amount of oatmeal in the diet would prevent that.
Monday, December 15, 2008
Friday, December 12, 2008
Thursday, December 11, 2008
Wednesday, December 10, 2008
Tuesday, December 09, 2008
Downtown Ice (San Jose)
Here's a cute puzzle: find the longest words you can type with just your left hand.
Solution:
#!/usr/bin/python2.4
import sys
import os
DICTIONARY = '/usr/share/dict/american-english'
left_hand_letters = set('qwertasdfgzxcvb')
list_of_words = os.popen("cat %s | tr [A-Z] [a-z]" % DICTIONARY)
longest = 0
for word in list_of_words:
if (not [i for i in word.strip() if i not in left_hand_letters]
and len(word) >= longest):
longest = len(word)
print word,
Solution:
#!/usr/bin/python2.4
import sys
import os
DICTIONARY = '/usr/share/dict/american-english'
left_hand_letters = set('qwertasdfgzxcvb')
list_of_words = os.popen("cat %s | tr [A-Z] [a-z]" % DICTIONARY)
longest = 0
for word in list_of_words:
if (not [i for i in word.strip() if i not in left_hand_letters]
and len(word) >= longest):
longest = len(word)
print word,
Monday, December 08, 2008
Saturday, December 06, 2008
Friday, December 05, 2008
Grrrr!
So... the geese don't actually seem scared of this. Go back to Canadia, hosers!
This coyote decoy is sold on Amazon specifically for scaring Canadian geese.
This coyote decoy is sold on Amazon specifically for scaring Canadian geese.