Tagged Questions
The language-history tag has no wiki summary.
55
votes
28answers
10k views
What ever happened to APL?
When I was at University 30 years ago, I used a programming language called APL. I believe the acronym stood for "A Programming Language",
This language was interpretive and was especially useful ...
32
votes
15answers
2k views
Why didn't Ada make it?
I've read about a really beautiful langauge called "Ada", which seems very powerful to me, with a lot of what we call these days "safety features".
What was wrong with Ada not to make it a ...
16
votes
6answers
1k views
Uppercase Booleans vs. Lowercase in PHP
When I was learning PHP, I read somewhere that you should always use the upper case versions of booleans, TRUE and FALSE, because the "normal" lowercase versions, true and false, weren't "safe" to ...
16
votes
17answers
1k views
How is C# inspired by C++ more than by Java?
When looking at the history of C#, I found out that C# was seen as an update to C and/or C++. This came a bit as a surprise to me, as on the surface, I see much more common ideas between C# and Java ...
14
votes
8answers
519 views
How was the syntax chosen for static methods in Python?
I've been working with Python for a while and I find the syntax for declaring methods as static to be peculiar.
A regular method would be declared:
def mymethod(self, params)
...
return
A ...
13
votes
5answers
1k views
Why do C compilers prepend underscores to external names?
I've been working in C for so long that the fact that compilers typically add an underscore to the start of an extern is just understood... However, another SO question today got me wondering about ...
11
votes
5answers
325 views
What are some specific examples of backward incompatibilities in Perl versions?
It has been 22 years between the initial public release of Perl 1.0 (December 18, 1987) and the current stable release 5.10.1 (2009).
During those 22 years the following notable releases have been ...
6
votes
2answers
156 views
Is the computer language 'Erlang' related to the Chinese deity?
Erlang Shen or Erlang is a Chinese deity who supposedly regulates floods, Erlang a computer language ideal for large volume applications. Is this just some kind of weird coincidence?
5
votes
5answers
114 views
Historic reasons for Left-Handed Coordinate System
I find it a bit non-intuitive that the (0,0) maps to the left-top of the screen. Is there a historic reason for using a left-handed coordinate system in Java Swing?
While mapping this to a ...
4
votes
5answers
689 views
What is the purpose of Java's unary plus operator?
Java's unary plus operator appears to have come over from C, via C++. As near as I can tell, it has the following effects:
unboxes its operand, if it's a wrapper object
promotes its operand to int, ...
3
votes
2answers
108 views
Origin of try/catch/finally syntax
Question for the etymology wizards out there: which programming language was the first to use the try/catch/finally syntax found in today's Java/.NET languages?
3
votes
2answers
119 views
Reasons behind naming in easy-to-confuse Python's classes such as OS and SYS?
I have noticed that considerably amount of questions in SO, relating to Python, are about people messing up Sys -class, OS class and no class. For example, an easy confusing is the case: ...
2
votes
6answers
144 views
When did colspan and rowspan become available for usage in HTML tables?
A co-worker and I are curious about when colspan and rowspan became available for usage in HTML tables.
We tried Google and Wikipedia, but the answer still seems to elude us.
I thought it might have ...
2
votes
5answers
211 views
Why are javascript programs delivered in plain text?
Why was it decided to ship javascript programs in plain text? Was it to achieve performance enhancement or the authors never imagined that javascript will be used in much more complex applications and ...
0
votes
0answers
130 views
How did Javascript become popular? [closed]
In ancient history, Brendan Eich had a language design, and in today's world, Javascript is a popular language implemented and used in many different places.
What caused the language to become ...
0
votes
1answer
117 views
What programming language would James Bond have programmed in? [closed]
Until the recent Bond movies James preferred British made gadgets.
The classic for me is from "You Only Live Twice", as there is real British gyro-copter nicknamed Little Nellie which (in the movie) ...
0
votes
4answers
193 views
What order are the programming languages derived in?
For instance, I know that basically all languages that are object oriented based are basically derivatives of C# or C++ correct? Does anyone know the order they came in? Like C -> C++ -> C# -> PHP, ...