For questions about the history of programming and computing.
8
votes
5answers
544 views
What were the Design Patterns of the procedural programming era?
Similar: How was programming done 20 years ago?
OOP is quite fashionable nowadays, having it's roots in the C++ birth in 1983, eleven years after C (or it that so?). We have DRY, SOLID, many books ...
-1
votes
0answers
91 views
What are the roots of functional programming style in Scala? [closed]
I am trying to understand functional programming principles in Scala alongside, I would also like to explore from where Scala has drawn its functional programming style?
How far learning such ...
3
votes
3answers
164 views
When did the first “REST”-model and friendly URL web technology come to be?
Everyone knows that the "current" way to do things is to have user-readable URLs. Like:
http://example.com/blog/edit/1234
Rather than:
http://example.com/blog.php?action=edit&id=1234
When ...
-1
votes
0answers
105 views
future of programming language based on history [closed]
Based on my study in Computer Science, I think that it will be normal when we predicted what the future of programming.
I believe that languages is never die. And I see the trend of programming.
in ...
27
votes
6answers
1k views
Why was strict parsing not chosen for HTML?
I am pretty much unaware about the detailed computing history that surrounds internet but it has always made me think why strict parsing was not chosen when creating HTML. Browsers accept any rubbish ...
33
votes
12answers
6k views
Why is 0 false?
This question may sound dumb, but why does 0 evaluates to false and any other [integer] value to true is most of programming languages?
String comparison
Since the question seems a little bit too ...
5
votes
3answers
368 views
Whatever happened to Pascal? [duplicate]
In reading this blog post about Photoshop 1.0 I was surprised to learn that it was written in Pascal (Object Pascal to be exact). But you never hear about Pascal anymore. Why is that?
1
vote
2answers
77 views
Origin of the name “OpenServer” for the SCO Unix operating system
I was looking over the evolutionary history of Unix and Unix-like systems on Wikipedia and one operating system name stood out to me: OpenServer.
Judging from the image, SCO's OpenServer is ...
17
votes
3answers
2k views
Where did the convention of naming command line arguments as 'argv' come from?
It seems like Python, PHP, and Ruby all use the name "argv" to refer to the list of command line arguments. Where does the name "argv" come from? Why not something like "args"?
My guess is that it ...
19
votes
5answers
1k views
How did they debug segmentation faults before protected memory?
Now, when I make a programming mistake with pointers in C, I get a nice segmentation fault, my program crashes and the debugger can even tell me where it went wrong.
How did they do that in the time ...
3
votes
2answers
162 views
How did the term “hypervisor” come into use?
I've read about the "hypervisor" in hardware virtualization. VMs are not my area, so I can't quite see where the term came from.
THe wikipedia article talks about how "the hardware's supervisor ...
4
votes
2answers
1k views
Why is C so high in TIOBE index of popularity, while C++ is just under here too, but not as popular? [closed]
I can't get my head around this. If C is so much used, but C is not C++, can someone explain to me the most important reasons that makes C more used than C++ ? Where is all this C code written for ?
...
9
votes
4answers
1k views
In what programming language did “let” first appear?
I was wondering about the origins of the "let" used in Lisp, Clojure, and Haskell. Does anyone know which language it appeared in first?
2
votes
1answer
160 views
Why did Aiken decided to separate data and instructions in the Harvard Mark I?
When Aiken devised the Mark I, why did he decided to separate data and instructions? It was not mentioned in Wikipedia (or in any other searches I've looked) on how or why Aiken separated data and ...
2
votes
1answer
151 views
Is there genetic relationship between ARM and PDP-11 architectures?
Reading about ARM architecture I found many similarities to PDP-11 architecture which did not exist between ARM and x86.
For example,
General-purpose registers named Rx compared to AX, BX,... for ...
55
votes
8answers
26k views
Why did Alan Kay say, “The internet was so well done, but the web was by amateurs”?
Ok, so I paraphrased. The full quote:
The Internet was done so well that most people think of it as a natural resource like the Pacific Ocean, rather than something that was man-made. When was the ...
16
votes
2answers
772 views
Why is Java boolean primitive type name not 'bool'?
Java has
int and Integer
boolean and Boolean
This seems a bit inconsistent, why not either
bool vs Boolean to use an established shorter name for primitive type?
or
integer vs Integer to ...
2
votes
2answers
332 views
I need some help with defining a shell syntax
I'm trying to understand more about shells, I'm looking to implement one, and want to look at what's been done in the past.
In a regular shell, you have features like aliases and relative paths, and ...
7
votes
3answers
588 views
Why there are no compound assignment operators for logical operators (such as ||, && etc)?
According to ECMA-262, part 11.13, following is the exhaustive list of compound assignment operators: *= /= %= += -= <<= >>= >>>= &= ^= |=.
According to the part 11.11, var c ...
41
votes
4answers
16k views
Why do programming languages, especially C, use curly braces and not square ones? [closed]
The definition of "C-Style language" can practically be simplified down to "uses curly braces ({})." Why do we use that particular character (and why not something more reasonable, like [], which ...
18
votes
3answers
1k views
Why five dining philosophers?
I was wondering why the Dining philosophers problem is based on a five philosophers case. Why not four?
I guess that we can observe all unpleasant issues that can occur when discussing five ...
8
votes
3answers
602 views
Have there been disputes when software identifies genders with a boolean? [closed]
I remember that in our first programming class with Java, while explaining data types, the following occurred (kinda):
Professor: So, what data type would you choose if your program needs
to ...
5
votes
2answers
195 views
Who first coined the term Higher Order Function and/or First Class Citizen?
I've come to understand that long before Haskell, O'Caml or LISP, higher order functions were an academic research subject and in mathematics, Schönfinkel (in 1967) and Haskell Curry (in 1968) already ...
40
votes
3answers
2k views
IPv4 to IPv6. where is IPv5?
As all of us know that after IPv4 it came IPv6. How this transition happened?
I just want to know was there any IPv5 also? or there is any other logic in naming this version of IP as IPv6?
6
votes
1answer
289 views
When was source control invented?
I'm aware of many version control systems: CVS, SVN, TFS etc...
I've googled for the very first "revision control/version control system" and seen various conflicting answers.
When was source ...
-3
votes
2answers
611 views
Why aren't there modern C IDEs? [closed]
Why weren't the features present in modern IDEs for Java & C# (Intellij IDEA, Visual Studio, eclipse) developed in (earlier) IDEs for C language? I mean I don't know any IDE which has modern ...
11
votes
2answers
520 views
Where does the the term “feature creep” come from?
There is a decent Wikipedia article on the "Feature Creep", but it doesn't state an origin. A Google search only leads to some vague article claiming "Earl Rich" coined the term, but there isn't much ...
1
vote
3answers
946 views
How did Python become popular as a scripting language? [closed]
I looked at it in my field of work, which is film and pretty much every software we use comes with python as a scripting language: http://en.wikipedia.org/wiki/List_of_Python_software That made me ...
20
votes
5answers
1k views
When did the standard for packaging Linux source code become .tar.gz?
When browsing open-source projects that are primarily developed for Linux systems and downloading the latest packages, the source code is always stored in a .tar.gz or .tar.bz2 file.
Is there any ...
0
votes
1answer
129 views
Did “Viaweb” work in the browser without JavaScript and somehow use only Lisp?
I just read Beating the Averages, and Mr. Graham writes that they had a significant advantage over competitors because they used Lisp.
From what I understand, Viaweb was a WYSIWYG editor that ran in ...
3
votes
5answers
2k views
Why was Objective-C popularity so sudden on TIOBE index?
I'd like to ask a question that is pretty similar to the one being asked here, but for Objective-C.
According to TIOBE rankings, the rise of popularity of Objective-C is unprecedented. This is ...
23
votes
4answers
1k views
What language was “standard” for Apple development before Objective C?
I don't think Objective C was in use from the beginning of Apple hardware development. What languages did app developers use for the earlier Apple computers, such as Apple II or Mac Classic?
80
votes
11answers
18k views
Why is the sudden increase in number of Git submitters on Debian popcon graph in 2010-01?
Almost every article I've read 1 comparing Git and Mercurial it seems like Mercurial has a better command line UX with each command being limited to one idea only (unlike say git checkout).
But at ...
4
votes
3answers
450 views
Where does the term “Front End” come from?
Where does the term "front-end" come from? Is there a particular presentation/talk/job-posting which is regarded as the first use of the term? Is someone credited with coining the term?
The ...
3
votes
0answers
185 views
Don Knuth and MMIXAL vs. Chuck Moore and Forth — Algorithms and Ideal Machines — was there cross-pollination / influence in their ideas / work? [closed]
Question:
To what extent is it known (or believed) that Chuck Moore and Don Knuth had influence on each other's thoughts on ideal machines, or their work on algorithms?
I'm interested in citations, ...
40
votes
4answers
2k views
Why is Java version 1.X referred to as Java X?
I saw that Java 1.2 is also known as Java 2. Do "Java 1.x" and "Java x" (for example "Java 1.6" and "Java 6") refer to the same version of Java?
And if yes, why the need for this duality?
2
votes
2answers
249 views
Why do different languages have different syntaxes? [closed]
It seems like if every language had the same core syntax but different semantics and features, new programmers or those learning a new language could focus on the theory and more abstract concepts of ...
2
votes
2answers
288 views
History of Associative Array?
In quite a lot of modern scripting languages (e.g. Perl, Python, Ruby, PHP, Lua, JavaScript), associative arrays are supported as a primitive or first-class data type (with various names like map, ...
11
votes
1answer
542 views
Why did object-oriented paradigms take so long to go mainstream?
I read this question and it got me thinking about another fairly recent thing. Object oriented languages. I'm not sure when the first one was created, but why did it take so long before they became ...
78
votes
14answers
14k views
What triggered the popularity of lambda functions in modern mainstream programming languages?
In the last few years anonymous functions (AKA lambda functions) have become a very popular language construct and almost every major / mainstream programming language has introduced them or is ...
40
votes
3answers
20k views
Is there any evidence that drugs can actually help programmers produce “better” code? [closed]
I just read this quote from Steve Jobs:
"Doing LSD was one of the two or three most important things I have done in my life."
Also a quote from that article:
He was hardly alone among computer ...
6
votes
1answer
406 views
Why is the code section called a text section?
The section of an executable that contains code is sometimes called the .text section. In segmented memory architectures, a segment mapped as code is sometimes called a text segment. The unix error ...
24
votes
9answers
2k views
Why didn't “cloud computing” offer appear earlier?
Cloud computing is a model of renting resources - servers and data storage. Both servers and data storage have been around for much more than a decade so far. Yet cloud computing offers only appeared ...
79
votes
2answers
5k views
What is JavaScript, really?
All this started when I was looking for a way to test my webpage for JavaScript conformance like the W3C HTML Validator. I have not found one yet. So let me know if you know of any...
I looked for ...
-1
votes
4answers
1k views
Why does Java have a “bad rap” [closed]
I hear a lot of people speak poorly of Java, especially the ones coming from C/C++. Is there a historical reason why? Is it because it used to be machines were too slow to run the JVM without lag?
16
votes
6answers
624 views
Why did the web win the space of remote applications and X not?
The X Window System is 25 years old, it had it's birthday yesterday (on the 15'th).
As you probably are aware of, one of it's most important features is the separation of the server side and the ...
1
vote
1answer
252 views
Which language came first with parallel assignment?
When I discovered that python has parallel assignment I thought is pretty cool.
Recently I discovered parallel assignment works also in ruby.
For people that don't know it: x,y = y,x in ruby, ...
0
votes
1answer
286 views
Where can I find a punched card simulator? [duplicate]
Possible Duplicate:
Learning to program on punchcards
I wasn't born in the era, but I'd like to experience writing a program with punch cards.
Does anyone know of a program or an online ...
0
votes
3answers
151 views
What was the first consumer-oriented hardware/software solution? [closed]
We all know the story of the personal computer as a consumer-oriented product. But I just thought that real end user solution should have appeared before that time. So a product that was probably ...
24
votes
2answers
1k views
Why was the percent sign (%) chosen as the format specifier for the printf family of functions?
Everyone knows that, at least in C, you use the printf family of functions to print a formatted string. And these functions use a percent sign (%) to indicate the beginning of a format specifier. For ...

