Louis Proyect: The Unrepentant Marxist

October 26, 2011

Reflections on the passing of John McCarthy and Dennis Ritchie

Filed under: computers — louisproyect @ 7:00 pm

John McCarthy

Dennis Ritchie

Two towering figures in computing died this month, besides Steve Jobs. A good case can be made that their contributions are as great as his, if not greater. The first was Dennis Ritchie who died at the age of 70 on October 13th. Ritchie invented the C programming language and the Unix operating system, two of the technologies that are key to the distributed computing today that makes the Internet possible. The other is John McCarthy who died yesterday at the age of 84. Like Ritchie, McCarthy was a major innovator in both languages and operating systems. He was the father of time-sharing, the key component of mainframe operating systems that allowed multiple users to access the computer as if they were the exclusive owner. McCarthy went on to become a pioneer of artificial intelligence and created a language called LISP that is widely used in this arena.

When I began working on IBM mainframes in 1970, I was trained in something called TSO or time-sharing option. This was the framework for submitting test jobs, editing my COBOL programs, debugging, etc. TSO grew out of a project under John McCarthy’s supervision in 1957 on an IBM 704, the predecessor to the 360 generation of computers that I was introduced to in 1970. Before time-sharing, a computer was used on a serial, one-at-time basis. So an IBM 704 might be loaded with a payroll program to print checks. Afterwards, another program to print checking account statements would be loaded to print statements, etc. If you wanted to make a change to the program that was used for payroll, you had to wait until these jobs were completed. With time-sharing, all three tasks—plus many more—could be run simultaneously. The only limitation was the size of the memory of the computer. It is astonishing to think that the average mainframe in the early 70s, which cost 115 thousand dollars and required mammoth air-conditioning support, typically was shipped with 8 megabytes of memory. By comparison, my wife’s IPod with 8 gigabytes of memory, a thousand times larger than an IBM 360, costs $199.

I had a brief exposure to LISP about 15 years ago when I enrolled in a computing and education program at Teachers College in Columbia. One of the classes I took was titled Cognition and Computers taught by John Black. It was supposed to introduce you to the use of artificial intelligence in primary education. We were required to use a LISP-like meta-language (don’t ask me to explain) for homework exercises, all of which were supposed to “teach” students about highly mechanical tasks such as playing billiards or starting a car. I seem to remember his explanation of how the language would be used:

1. INSERT KEY.

2. TURN KEY.

3. PUT GEAR INTO DRIVE.

4. PUT FOOT ON GAS.

I stupidly tried to use our LISP-like language for an exercise on American history that he told me was inappropriate. I tried again with a more mechanical application, only to be told—after 25 years of programming experience—that I still didn’t get it. I dropped out of the class with a great feeling of relief.

One of the books I have on my shelf at work is titled “LISP Lore: a Guide to Programming the LISP Machine”, a gift of the author Hank Bromley, an MIT graduate who was one of our Tecnica volunteers in Nicaragua. I have opened it once or twice without making heads or tails out of what I was reading.

In the NY Times obituary on McCarthy, the verdict on AI is mixed at best:

Artificial intelligence is still thought to be far in the future, though tremendous progress has been made in systems that mimic many human skills, including vision, listening, reasoning and, in robotics, the movements of limbs. From the mid-’60s to the mid-’70s, the Stanford lab played a vital role in creating some of these technologies, including robotics and machine-vision natural language.

The last time I heard AI being hyped was in the early 80s when Reagan was pushing SDI or “Star Wars”, an anti-ballistic missile system that would supposedly put a shield over the U.S. Breakthroughs in AI would supposedly make the system fail-safe. Fat chance of that after what I saw at Teacher’s College.

Opposition to SDI became part of a broader anti-nuclear movement that opposed both nuclear weapons and nuclear power. Three Mile Island in 1979, Chernobyl in 1986, and the Reagan administration’s talk about surviving nuclear war got lots of people into motion, including the Green Party in Germany. In the U.S., you saw the growth of Computer Professionals for Social Responsibility, a group that was formed primarily to oppose SDI. I was a member briefly until my attention shifted to solidarity work in Central America.

I imagine that John McCarthy would have been gung-ho for SDI even though he started out early in life as a Communist. The Times obit  recounts:

John McCarthy was born on Sept. 4, 1927, into a politically engaged family in Boston. His father, John Patrick McCarthy, was an Irish immigrant and a labor organizer.

His mother, the former Ida Glatt, a Lithuanian Jewish immigrant, was active in the suffrage movement. Both parents were members of the Communist Party. The family later moved to Los Angeles in part because of John’s respiratory problems.

He entered the California Institute of Technology in 1944 and went on to graduate studies at Princeton, where he was a colleague of John Forbes Nash Jr., the Nobel Prize-winning economist and subject of Sylvia Nasar’s book “A Beautiful Mind,” which was adapted into a movie.

At Princeton, in 1949, he briefly joined the local Communist Party cell, which had two other members: a cleaning woman and a gardener, he told an interviewer. But he quit the party shortly afterward.

In the ’60s, as the Vietnam War escalated, his politics took a conservative turn as he grew disenchanted with leftist politics.

Dennis Ritchie went in the reverse direction politically from McCarthy as the NY Times obit reveals:

While a graduate student at Harvard, Mr. Ritchie worked at the computer center at the Massachusetts Institute of Technology, and became more interested in computing than math. He was recruited by the Sandia National Laboratories, which conducted weapons research and testing. “But it was nearly 1968,” Mr. Ritchie recalled in an interview in 2001, “and somehow making A-bombs for the government didn’t seem in tune with the times.”

I first ran into Ritchie’s writings back in the early 90s when Columbia trained us in the C programming language. Ritchie co-authored a book titled “The C Programming Language” with Brian Kernighan that I still have on my shelf from that time. The university was about to go full blast into client-server computing and C was being considered as a front-end to replace COBOL.

I have to confess that I never developed an appreciation for C and could never understand why it would be considered for business-oriented applications of the sort that had been written in COBOL. In Cobol, you would open a file on a disk or on tape for output with this instruction “OPEN OUTPUT EMPLOYEE_MASTER_FILE”. Here is the equivalent command in C:

/* fopen example */
#include <stdio.h>
int main ()
{
FILE * pFile;
pFile = fopen (“myfile.txt”,”w”);
if (pFile!=NULL)
{
fputs (“fopen example”,pFile);
fclose (pFile);
}
return 0;
}

Ughh!

Columbia wisely decided against getting involved with C and used Foxpro instead for a client-server system to handle the school’s basic financial functions (purchasing, budgets, etc.) I never got involved with the Foxpro work but was assigned to support the back-end of the system using Unix and Perl, a fairly high-level language that was simple to use like COBOL but succinct like C. My job consisted mainly of getting data from the mainframe loaded into Sybase tables that were updated by users during the day and sent back to the mainframe at night. Columbia is about to replace this nearly 20 year old system with a package from Peoplesoft. I am in the strange position of supporting a “legacy” system that was bleeding-edge when it was introduced but that’s the way it goes in data processing.

I am glad that I acquired basic skills in Unix since my Macbook—and all Apple computers—run on Dennis Ritchie’s operating system. This means that I am able to write software on the computer using Perl, including a program called compare.prl that reconciles my checking account using a file I download from Chase online. The best thing about Unix, of course, is that it is far more stable than Windows and we have Steve Jobs to thank for that. Jobs went against the grain when he started NeXT back in 1985, a personal computer that used Unix. Apple bought NeXT in 1996 and adapted the computer for the Mac, an architecture that persists to this day.

What a long, strange trip it’s been.

7 Comments »

  1. The Kerninghan and Ritchie book, “The C Programming Language,” at 274 pages is a model of brevity and conciseness compared with other books like Bjarne Stroustrup’s book, “The C++ Programming Language”, which runs more than a thousand pages, or Ander Hejlsberg et., “The C# Programming Language,” which runs over 750 pages.

    John McCarthy was also the inventor of garbage collection which as used technologies like Java and .NET make the problems associated with memory management much more tractable. In both C and C++, programmers had to take care of memory management on their own, which is why so much software written in those languages have memory leaks.

    Comment by Jim FarmelantJ — October 26, 2011 @ 7:46 pm

  2. Marvin Minsky once said “Anyone could learn Lisp in a day unless they knew Fortran in which case it will take 3 days.” Knowing COBOL, Java, C or some other programming language previously is enough to confuse one’s ability to learn Lisp and fulfill the hyperbole.

    Comment by Aaron — October 26, 2011 @ 8:14 pm

  3. Most widely used programming languages of the same day as C were sponsored by corporations or the government. IBM told you which language to use for its mainframes. The Department of Defense tried to make you use Ada. BASIC got what popularity it had by being installed on early personal computers. Pascal was beloved of college computer science instructors.

    With no similar sponsorship in its first years, C became perhaps the most widespread programming language of all. Working programmers loved it and kept putting it on different machines and operating systems.

    Comment by Dennis's fan — October 26, 2011 @ 9:53 pm

  4. It’s nice to hear about innovators other than Apple people.

    I lost respect for Apple after they exposed sweatshop child labor some as young as 15 toiling away at their facilities.

    I’m against exploitation and it doesn’t matter what the company produces, it’s still slavery.

    Comment by Deborah Jeffries — October 26, 2011 @ 11:30 pm

  5. FWIW here in Tucson many of the folks who I service that need their Toyota trucks fixed, modified or upgraded are employed as mechanical engineers for Raytheon, particularly their missile defense systems, and according to these engineers Uncle Sam has finally gotten some payback for the approximate trillion dollars spent on SDI since Reagan initiated it, that is, these engineers swear with confidence that their systems would “nail” with ease any incoming ICBM to the tune of 99%. When I asked what about the abject failure of the Patriot missile to “nail” a SCUD they shrug their shoulders and say that’s an East Coast plant and a SCUD isn’t an ICBM.

    It should be noted that the Tucson economy, which is abysmal, with statistically huge unemployment & crime, would be a city looking more like Juarez, Mexico if it it weren’t for the middle class lifestyle propped up by Uncle Sam’s congenitally degenerate war machine and the beneficiaries at Raytheon as well as the smug federally subsidized pilots and volunteer/paid armed forces at Davis-Monthan Air Force Base.

    When they retire, many with huge “socialist” pensions, they go South to Mexico and occupy the beautiful coastal villages along the Sea of Cortez (like San Carlos where “Catch 22” was filmed) — turning the towns into bastions of reactionary banality.

    The entire SouthWestern United States, from El Paso through New Mexico (Los Alamos) through Tucson (DMAFB) and Phoenix (with Sheriff Joe) all the way to to the Gulf of San Diego — represents some of the most disgusting faux conservatism in the history of faux conservatism.

    Comment by Karl Friedrich — October 27, 2011 @ 1:22 am

  6. Karl wrote:

    ” . . .to the tune of 99%.”

    Yah, it’s that other 1% you got to worry about.

    Comment by Jim Farmelant — October 27, 2011 @ 1:06 pm

  7. Yes Jim, except that ICBM warfare is so irrelevant today that it’s madness for Uncle Sam to keep paying Raytheon billions, unless, of course, it’s really the Generals running the White House?

    Maybe that’s why during all the talk of deficit reduction a few months ago scarely a word was mentioned by the commercial press about slashing defense spending?

    Comment by Karl Friedrich — October 27, 2011 @ 1:27 pm


RSS feed for comments on this post. TrackBack URI

Leave a comment

Blog at WordPress.com.