Last week, Fred R. Shapiro, editor of the The Yale Book of Quotations, inaugurated Our Daily Bleg, with a request to learn the true source of the quote “Read my lips.”
A consensus has yet to be reached on the origin, but your thoughtful comments (to which Fred replied) made some headway — and possibly helped out Netflix.
Fred will keep blegging for quotes here on Thursdays. (You can send your own blegs to: bleg@freakonomics.com.) Here’s his next request:
Our Daily Bleg
by Fred R. Shapiro
There seems to be a strong correlation between interest in technology and interest in quotations, and many of the emblematic sayings of our time are computer sayings, such as “information wants to be free.”
Bartlett’s Familiar Quotations ignores computer culture almost completely (in 1989 the editor said, “There ought to be something about computers and artificial intelligence. Surely somebody somewhere said something memorable.”). In my own book, The Yale Book of Quotations, I tried to pay special attention to computer-related quotes, and, in order to continue this effort in the next edition, I have begun a Computer Quotations Project seeking contributions of information about famous technological adages.
Recently I posted a list of inquiries about famous computer quotations on the Times‘s Bits blog. One of the quotes I asked about was “640K ought to be enough for anybody,” attributed to Bill Gates (the earliest I have found this credited to Gates was in 1990). There were over 100 comments posted, including one that, on its face, appears to be by Mr. Gates himself:
The statement I made about memory space was that we need about one new bit of addressable memory every two years or so. We did our best to get the 68,000 to be used in the IBM P.C. because that would have simplified the address space issues a lot.
The schedule was six months too late for IBM. The VAX already had a clean 32 bit address space. The history is far more complicated in terms of the x86 memory space because we supported both Extended and Enhanced memory (bank switching). At no time was the software the limiting factor — it was always the hardware going from 20 bits to 24 bits segmented (Os/2 and Windows exploited this) and finally 32 bits linear.
I have always found it amusing that that quote is attributed to me but you can read interviews I gave about address space from the 1970′s talking about the growing need for address bits over time. 64 bits is nice but even that will run out.
- Posted by billg
Are any readers of this blog able to verify with Microsoft or Mr. Gates himself whether this was an authentic posting by him? Also, can anyone discover any evidence of the “640K quote” prior to 1990?

“Are any readers of this blog able to verify with Microsoft or Mr. Gates himself whether this was an authentic posting by him?”
You tell us. You’re the ones with IP address!
Nikhil,
Richard Feynman has made a (long term) prediction on the limit of computers (with atoms/molecules being gates) that I’m pretty sure will hold.
Response to #9: I believe the IP address is inconclusive.
I doubt Bill Gates would put a comma in “68,000″ when referring to the Motorola 68000-series of microprocessors. It wasn’t the Intel 8,086 either. But hardly conclusive proof.
Answers to #6, #7 and #8 : Technology has its physical limits, even if the rate of progress of computers in the last decades were incredible.
We are strongly limited by :
1) the minimum atomic size of the transistors and memory cells, and quantic effects
2) the speed of light
3) electromagnetic problems (current leaks, power consumption, frequency limits, …)
3bis) thermic problems (how do you cool the 4x4x4 cm cubic memory efficiently ?)
All the assumptions I made in my calculations were very “generous” with the technology evolution. Best current bandwidth is in the 25 GB/s, far below my 1 million GB/s (see: http://en.wikipedia.org/wiki/List_of_device_bandwidths ).
1 square nm cells may be impossible, due to the fact that it’s too close to atom size.
And a (mono-, multi- or vector-, see below) processor making a complex/parallel operation on 1 KB of data during each single cycle is well above current processor technology.
To #7: multiprocessor-architectures don’t solve the physical limits problem. A 1000 GHz processor writting 1 KB in each cycle is the same as 64 processors with 125 GHz reading/writting each 128 bytes pro cycle. I’m safe, because we have real trouble reaching 10 GHz in high-end servers (at such frequencies, even very small perturbations are difficult to deal with), and I’m quite sure we won’t approach the 100 GHz this century.
Moreover, with multi-processors, you even have more problems, because it does not scale well. How do you manage 64 procs wanting to access the same memory zone at the same time ? You’ll have to include quite a bit of locking technology. And it will be a performance bottleneck.
“Instead, think about the kinds of problems that would require an address space larger than 16 exabytes of storage” : you want to solve EXPSPACE problems ? http://en.wikipedia.org/wiki/EXPSPACE Think about the maximum information speed (speed of light), and about the amount of time you would need to solve such problems.
Another argument: if you have lots of RAM, you’ll need a lot of permanent memory (bands, hard disks, flash) space too, because of paging. And any kind of permanent memory I heard about is so sloooooooooooooooow. But you don’t want to lose the precious 2^64 bytes of data you just got after 1 year of computation because of a power failure, do you ?
And last, but not least : current trend in solving big problems is more to build a cluster of servers, each solving one part of the problem, and having its own memory. The systems exchange only the necessary data through the network. In this case, you don’t need to address more than 2^64 bytes per system, even if the sum is much more than 2^64 bytes.
As a conclusion : I disagree with these comments, and I am really sure that 64-bit addresses are here for a long, very long time.
“And any kind of permanent memory I heard about is so sloooooooooooooooow.”
I wouldn’t be so sure about that. Both MRAM and memristors seem to be promising technologies that might solve this problem…