Being 32 years old, I did not follow debates in programming, language design, and platforms in the 1960s, 1970s, 1980s, and most of the 1990s. I sometimes hear glimpse of what the major debates were and how they turned the course of history. It makes me wonder what I take for granted.

I am curious, what were the debates. The ones I know are:

  • Procedural vs. Object Oriented Programming
  • Lisp vs. C
  • Software vs. Chips with Embedded Code
link|improve this question
8  
Odd, I didn't find this question that obnoxious. And look, wiki! – Will Apr 15 '10 at 13:55
16  
A note to everyone who wants to close it: this question is not about starting any flamewar. The question is about history of our beloved domain. I think such question is completely legitimate. – Pavel Shved Apr 15 '10 at 14:14
1  
@Pavel: It's arguably off-topic, and is a bit on the subjective side. It's a borderline case, and may wind up being closed and reopened more than once. – David Thornley Apr 15 '10 at 15:00
7  
Completely disagree with closing this. Unfortunately we mere mortals don't have the rep to disagree with the mightly admins. – stusmith Apr 15 '10 at 15:02
3  
@stusmith: The difference between us, for practical purposes, is that I have enough rep to vote to open and close, and you're 100 short. You could get to 3K with a few good answers. There are moderators, but they haven't done anything with this question (no diamonds on the close notice). – David Thornley Apr 15 '10 at 15:15
show 2 more comments
feedback

closed as not constructive by casperOne Apr 5 at 15:09

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

17 Answers

up vote 8 down vote accepted

Integer representation: twos' complement (which won), ones' complement (on the Control Data Cyber series, first computers I programmed in assembler on), and signed magnitude (immortalized in the MIX machine in volume 1 of Knuth).

Whether computer languages should be natural-sounding (like COBOL) or more formal (like FORTRAN or ALGOL or LISP).

I could mention the mainframe vs. minicomputer wars, and the IT department vs. personal computers, but the centralization vs. decentralization struggle is going on now with personal computers and local servers vs. "the cloud". So far, decentralization has won every round, and we'll see if SaaS and cloud apps can offer comparably more business functionality in the way increasingly smaller computers did.

link|improve this answer
feedback

The biggest war was about the GOTO statement, ignited by Djikstra's "Goto considered harmful" letter in March 1968 and masterfully capped by Knuth's "Structured programming with Goto statements" (PDF) essay in December 1974 (of course some people are still debating, but you can usually tell they haven't read Knuth's wonderful essay -- or haven't understood it at all;-). That war can be seen as part of the larger one about structured programming (which is why Knuth's essay's title is so perfect;-).

link|improve this answer
1  
I think you meant 'goto' instead of 'gogo', huh? – Johannes Rudolph Apr 15 '10 at 14:02
5  
Gogo statements? Interesting concept you have there ;) – Alex Apr 15 '10 at 14:03
1  
I liked the humor in Frank Rubin's paper titled 'GOTO Considered Harmful' Considered Harmful :) – Onion-Knight Apr 15 '10 at 15:40
1  
And then there's "Considered Harmful" Essays Considered Harmful. – Jonathan Leffler Apr 17 '10 at 1:34
feedback

Editor wars: vi vs emacs

link|improve this answer
8  
this is still ongoing – rmeador Apr 15 '10 at 14:34
3  
@rmeador: but we won! – Joachim Sauer Apr 15 '10 at 15:04
2  
No you didn't, WE won. – AShelly Apr 15 '10 at 17:14
vim is the one true editor! – regality Jan 23 '11 at 7:32
ha people playing with their toys; real programmers use echo >! – Hawken Apr 14 at 21:19
feedback

I can't remember the name of the war, but Fortran won, and it's still winning.

link|improve this answer
I take the downvote as evidence that while Fortran is still winning there remain pockets of resistance. Come on, you know it's futile. – High Performance Mark Apr 15 '10 at 15:56
+1 for humor sake – dkackman Apr 15 '10 at 15:59
I think Fortran is actually a little more efficient than C if I remember correctly; though not by much. – Hawken Apr 14 at 21:21
feedback

RISC vs. CISC
Big-endian vs. Little-endian
Goto vs. ComeFrom :-)

link|improve this answer
1  
+1 for RISC vs. CISC – uncle brad Apr 15 '10 at 14:49
feedback

OOP versus ... the world, really.

link|improve this answer
feedback

While I am not old enough to remember it, Dijkstra's Go To Statement Considered Harmful was controversial.

link|improve this answer
feedback

As far as I'm concerned, the procedural vs. object-oriented war is still going, or at least should be :)

link|improve this answer
feedback

This probably only counts as a border skirmish, but I'm a sucker for anything involving RMS spouting off, so I'll nominate The Tcl War.

link|improve this answer
1  
The only problem with it is that people keep citing it in a non-historical way. – Donal Fellows Apr 15 '10 at 14:33
feedback

Going back a long while the word size was far from obvious. The IBM 360 chose 8 bit bytes, which was controversial (wasting two bits per byte!).

6502 vs Z80 in micros for many years.

Whether microcomputers were good for anything (mainframe and minicomputer folks assumed personal computers would be useless toys forever).

For many businesses a big decision was whether to go totally IBM or consider an alternative. General purpose computing vs specialized hardware (e.g. when designing a telephone network switch should it be custom hardware or off the shelf components?)

Fail fast versus tolerant computing (e.g. do you leave asserts enabled when your guiding the space shuttle through re-entry).

Ye olden days were just as full of uncertainty, confusion and debate as there are now (unless you were and IBM salesman, of course).

link|improve this answer
feedback

Indentation and bracket placement?

link|improve this answer
1  
That's still going as strong as when I first started programming, back in the 1960s. – David Thornley Apr 15 '10 at 14:55
feedback
  • Structured vs. Unstructured programming (see Dijkstra "goto statement considered harmful")
  • PC vs. Mainframe
  • Shared-state concurrency vs. Asynchronous messages (started at the '70s, still going)
link|improve this answer
feedback

When I was growing up in UK it was...

ZX Spectrum (Z80A) vs Commodore 64 (6510, a modified 6502)

CP/M vs DOS

link|improve this answer
feedback

Amiga vs IBM/PCs Similiar to Apple vs IBM today.

Commodore vs everything else :)

link|improve this answer
feedback

Centralized Servers vs Distributed Computing

(Technically, this is still going on. It's just the marketing people keep changing the name.)

link|improve this answer
feedback

Representing non-integral numbers (fixed point vs. floating point, exponent size vs. significand size, sign bit or complement, etc.) have been debated for a long time. Maybe this doesn't count as "previous generation" because debates continue, but I would say it was mostly settled with IEEE 754 and widespread adoption in hardware within the last 20 years.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.