MSR Turned 15http://research.microsoft.com/aboutmsr/15years/default.aspx
Grid Computing: Powers Unfiltered by John Powershttp://powersunfiltered.com/Grid Computing: dan ciruli's West Coast Gridhttp://westcoastgrid.blogspot.com/
Grid Computing: A Day in the Lifehttp://krgreenlee.blogspot.com/
And who would not love LISP, it’s so simple and self explanatory
by Jeff Bergman
; function select_min(L:list of integers):integer; returns the minimun interger in the list;
; Invariants:(defun select_min(L) (cond ((null (rest L)) (first L )) ( t (let ((min (select_min (rest L)))) (cond ((<= (first L) min) (first L)) (t min))))))
Remember Me