Close

Miscellaneous Linkapalooza

Wild Card based domain search
http://www.ratite.com/whois/whois.cgi

Data Analysis, Statistics, and Probability online video oriented course (free)
http://www.learner.org/channel/courses/learningmath/data/

Dr.
Dobbs ASP.NET Cross-Page Postbacks

Scott takes a look at ASP.NET cross-page postbacks. In ASP.NET 2.0, it's easy
to build a form on one page and post the information returned to a different
page.

MSR Turned 15
http://research.microsoft.com/aboutmsr/15years/default.aspx

Grid Computing: Powers Unfiltered by John Powers
http://powersunfiltered.com/

Grid Computing:  dan
ciruli's West Coast Grid
http://westcoastgrid.blogspot.com/

Grid Computing: A Day in the Life
http://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))))))

Share

1 thought on “Miscellaneous Linkapalooza

  1. Wild Card based domain search
    http://www.ratite.com/whois/whois.cgi

    Data Analysis, Statistics, and Probability online video oriented course (free)
    http://www.learner.org/channel/courses/learningmath/data/

    Dr. Dobbs ASP.NET Cross-Page Postbacks
    Scott takes a look at ASP.NET cross-page postbacks. In ASP.NET 2.0, it's easy to build a form on one page and post the information returned to a different page.

    MSR Turned 15
    http://research.microsoft.com/aboutmsr/15years/default.aspx

    Grid Computing: Powers Unfiltered by John Powers
    http://powersunfiltered.com/

    smart haha

Comments are closed.