Spent a few hours fucking around with code (lack of hacking this week getting to me), and put together a scrabble generator. Almost a direct copy of
pholph's, but this one works right now... meh, simple app. Hardest bit was finding decent tiles. Still not happy. If anyone's got a better set, you know where to find me.
Wrote a short python hack to decode the latest Thinkgeek binary t-shirt
It's practically bloody Perl. Sent it off to them as a suggestion for the backprint
Wrote a short python hack to decode the latest Thinkgeek binary t-shirt
import sys x = reduce(lambda x,y:x+y,[x.strip() for x in sys.stdin.readlines()]) for z in range(0,len(x),8): sys.stdout.write(chr(reduce(lambda x,y:(x<<1)+y,[int(c) for c in x[z:z+8]])))
It's practically bloody Perl. Sent it off to them as a suggestion for the backprint