Google Analytics

Sunday, February 20, 2005

Lisp Ahoy!

Well after much beating around the bush I finally whipped up my own Lisp function that does something:

(defun mkreverse (string)
(unless (string= "" string)
(let ((tmp (char string 0)))
(mkreverse (subseq string 1))
(format t (string tmp)))))


I'm quite sure there are better ways to print out strings in reverse (considering there's even a built in REVERSE function in Common Lisp) but it's a start.

Sunday, February 06, 2005

Google's in the Stone Age?

I was having a read of this article by Andrew Orlowski. During the course of the article he mentioned:

By the by, you can begin to see Linux has such appeal to Asian manufacturers. It's not because it's particularly good - it's not. In computer science research it's Stone Age technology.

On the very next page he proceeds to say:

Sun too has complex, multithreaded machines in the pipelines, but only Sun, or maybe Google, has an OS that can bounce processes around the world.

Oops, what OS does Google run? -- Oh, it appears to be Linux!