Ben Godfrey
19p15 comments posted · 1 followers · following 0
15 years ago @ DesertStandard - Good Morning Ocotillo!... · 1 reply · +1 points
Did you mount the camera on the top or the seat tube? The shot is actually really stable.
There's a short film in the Bike Film Fest this year that does the same thing around London. Which reminds me, if you fancy a trip to LA, the BFF is showing August 26 - 30.
15 years ago @ http://electromute.com/ - Master's Track Nationa... · 0 replies · +1 points
15 years ago @ DesertStandard - First day of Yoga Teac... · 0 replies · +1 points
15 years ago @ aftnn.org: home of aft... - aftnn.org: afternoon's... · 1 reply · +1 points
That said, I really think Turbinado is an important project and I wish you every success with it. A bit of Darwinian selection will be a positive for everybody.
15 years ago @ aftnn.org: home of aft... - aftnn.org: afternoon's... · 0 replies · +1 points
Haskell feels intuitively like it should be able to express input validators simply and concisely. Formlets looks interesting, but again syntactically somewhat scary! I guess I'm just too used to reading Python.
15 years ago @ aftnn.org: home of aft... - aftnn.org: afternoon's... · 1 reply · +1 points
I ignored the idea that HAppS *had* to reinvent the wheel because I simply don't think it's true. I support this argument by pointing to the way Django, Rails and a whole bunch of other frameworks slot very nicely into the LAMP stack. Each of layers in that stack can be switched for your preference MySQL to Apache SimpleDB, Linux to Solaris. This gives the developer freedom and security. HVAC put it's data into SQLite, if HVAC sucks, I can serve data from that exact same DB with PHP, Python, Ruby, Perl, Java, C/C++, Scala, Groovy, Clojure, monkeys, pigeons... I can even run several at the same time.
The unix philosophy: do one thing well.
15 years ago @ aftnn.org: home of aft... - aftnn.org: afternoon's... · 3 replies · +1 points
Would love to see JSON though :-).
15 years ago @ aftnn.org: home of aft... - aftnn.org: afternoon's... · 0 replies · +1 points
Disclaimer: I built Followize to work for me, so that's my judgement call.
Seeing the latest update from a random set of users would be interesting, perhaps better than the latest. There are some people who update so little, they're still hard to see even in a one-person one-vote system. Unfortunately, this isn't the ordering Twitter provide. They order on friendship create date, so I'll always see updates from the 100 most recently followed people. That's interesting, but not the reason I build Followize.
Not sure about sorting at Twitter scale, I don't think their scale is actually that big. If Amazon can do it, and Google can, Twitter should be able to sa well :-). Fair enough that it may not be a trivial undertaking.
15 years ago @ http://electromute.com/ - Recursion in PHP · 0 replies · +1 points
15 years ago @ http://electromute.com/ - Recursion in PHP · 1 reply · +1 points
Recursion is such a beautiful solution.
I just got done reading Programming Erlang. Erlang is all about tail-recursive code, pattern matching and other functional loveliness. Very cool.