Posted in 10 February 2010 ¬ 20:06h.Rick
I've had RSI/carpal tunnel syndrome for about ten years now, and last week, I finally found a solution that didn't involve surgery.
A Tiny Bit of History
My freshman year I enjoyed my new-found freedom in a few different ways, but one way playing computer games whenever I felt like it. I played a lot of Quake online. Then [...]
Read the rest of this entry »
Posted in 9 February 2010 ¬ 00:20h.Rick
I Love Gadgets
Anyone who knows me can tell you that I’m that “gadget guy”. I have tons of little devices of all sorts lying around, from digital audio players to full fledged portable media players. Some I thought would be wonderful but never quite worked out as well as I hoped (Cowon O2), while others [...]
Read the rest of this entry »
Posted in 29 January 2010 ¬ 09:17h.Rick
Notice that an independent game development studio, Zero Point, is working with the community fairly closely to produce a space shooter called Interstellar Marines. They are funded largely by pre-sales of the game, and to maintain credibility, they release video and game demo material so the community can see their progress. Their “Bullseye” training area [...]
Read the rest of this entry »
Posted in 23 October 2008 ¬ 22:38h.Rick
My Emacs startup time was stretching beyond 10 seconds, which seemed a bit offputting even for a text editor cum operating system. I do have a fair amount of elisp loading at startup, however, and though I have played with byte-code-cache, I determined there must be an easier way to compile all my elisp [...]
Read the rest of this entry »
Posted in 19 October 2008 ¬ 07:19h.Rick
It took me 30 years, but I woke up this Sunday morning and realized that rational numbers can be expressed as the ratio of two integers.
Read the rest of this entry »
Posted in 18 October 2008 ¬ 19:01h.Rick
By far the most brain-bendingly elegant definition of all the Fibonacci numbers I have ever encountered:
(def fibs (lazy-cat ‘(1 2) (map + fibs (drop 1 fibs))))
Found over an the clojure-euler wiki.
Read the rest of this entry »
Posted in 17 October 2008 ¬ 23:53h.Rick
Just watched the December 2007 Google Authors session with Randall Munroe, creator of the XKCD webcomic. Really good talk; he seems like a real geek, which is awesome. He inspired me to sign up for Project Euler, which I have. I did the first problem in a couple of minutes, and visited the forum to [...]
Read the rest of this entry »
Posted in 11 October 2008 ¬ 16:09h.adminComments Off
Discovered that Wordpress has a great built-in feature that allows you to post entries by email. Setting it up was easy…and it may give me a way to post updates when I’m behind Nazi firewalls.
Read the rest of this entry »
Posted in 11 October 2008 ¬ 13:31h.RickComments Off
Trying to figure out if there is anything in the canonical definition of streams (lazy lists) that says that you need to keep the initial elements of the stream after use (if, for example, you’re recursing down the list and the head elements are getting garbage collected). Can streams be used as iterators when traversed [...]
Read the rest of this entry »
Posted in 11 October 2008 ¬ 11:51h.RickComments Off
Discovered Backpack a while back (February), a service from 37Signals that allows you to manage your data online in a variety of ways. It seems like a shame to use their service when you have your own domain, so I decided that some of their features I could make use of with a “journal” approach [...]
Read the rest of this entry »