Maine Root Sarsaparilla Well defined licorice tone, otherwise nice and mellow. Would definitely recommend to others, but not to my taste.
Author Archives: admin
Rootbeer – Oldtown
I thought it would be fun and useful to keep some notes on the root beer I try out. Oldtown Rootbeer Company Very birch-y flavor, nice bite. A touch of sweetness from the honey. Would definitely buy again.
KSP – Fun diversions in Rocketry
Not so much an organized report, rather a random sampling of small adventures.
KSP – Space Station and Mun base
This week has been a week of learning. And failures. Lots of failures.
KSP – Falling (challenge)
The /r/kerbalspaceprogram subreddit holds a weekly Kerbal Space Program challenge. This week challenge, “Fall with style,” is to rescue a Kerbal that’s gone EVA on a suborbital trajectory — without reentering a vehicle. Here are my results:
KSP – To the Mün and back again
It took me quite a number of tries, but I’ve finally made it to Mün, Kerbin’s moon, and back again. The entire crew survived, though perhaps a bit shaken up:
KSP – Achieved orbit!
I’m having *way* too much fun with an pre-release game, Kerbal Space Program. If you’ve ever played something like Microsoft Space Simulator … it’s nothing like that .
How do you stop 50 bad programmers?
Every programmer has it… you know how there’s that one day every couple weeks where nothing works and all your ideas are bad? It’s no more than 5% of your time. In a team of five, you don’t even have 1/4 of a programmer worth of bad ideas, so there’s no power there. Imagine a …
Engineering triangle – PLT
Minimality, Expressive power, Performance. Pick two?
Diversion
A little Python snippet, good for a diversion. I couldn’t fit it into a tweet though: s=[];op=dict((o,eval(‘lambda a,b:b%sa’%o)) for o in ‘+-*/%’) while not any(s.append(op[w](s.pop(),s.pop())if w in op else float(w)) for w in raw_input().split()): print ‘=’,s[-1] Just a simple 4-function RPN calculator, accepting input from console: 1 = 1.0 2 2 + = 4.0 1 …