I think that's a different question from Alan Kay's, since he made it to confirm his quote, and it only includes inventions since 1980.
My question goes a little bit further. What is the greatest computer science invention of all time for you, and why? I gotta agree with Steve McConnell:
Aside from the invention of the computer, the routine is arguably the single greatest invention in computer science. It makes programs easier to read and understand. It makes them smaller (imagine how much larger your code would be if you had to repeat the code for every call to a routine instead of invoking the routine). And it makes them faster (imagine how hard it would be to make performance improvements in similar code used in a dozen places rather than making all the performance improvements in one routine). In large part, routines are what make modern programming possible.
