Archive for the 'Programming' Category

iPhone Hacking: I’ve ported Dali Clock to the iPhone

Posted by Mike on November 23rd, 2007

Happy Thanksgiving!
First of all: Yes, I’m still alive.

Lately I’ve been messing around with writing native iPhone apps, and the first one I’ve written is a native port of Dali Clock . Here’s the description for those of you who don’t know what that is:
This is a port of the Mac OS X version by Jamie [...]

You know you’re a true geek when…

Posted by Mike on January 7th, 2006

… you see this:

(define (cons a b)
(lambda (pick)
(cond ((= pick 1) a)
((= pick 2) b))))

(define (car x) (x 1))

(define (cdr x) (x 2))

and it makes you laugh hysterically.