Live data from Hacker News

Why Do Some Programming Languages Live and Others Die?

wired.com

1–10 of 27 posts

Re: Why Do Some Programming Languages Live and Others Die?

#4
The key take away from this:

"Part of the problem, he says, is that language designers don’t always have practical objectives. “There’s a tendency in academics of trying to solve a problem when no one actually ever had that problem,” said Rabkin, who recently received his computer science PhD at Berkeley and is now at Princeton working on a post-doc. "

I was at Google when Go was birthing (not part of the project or team, just co-employed :-)) and asked the team "What problem does this solve?" I asked because I had been part of the original Java team at Sun. One of the things I had learned at Sun from James Gosling, who had previously done a language for window systems, NeWS, was that the only reason to have a new language is that it solved a problem you could not easily solve with the existing languages.

If you look at all of the durable languages, they share this heritage. BASIC solved the problem of what you had to learn before you could actually program problem. FORTRAN, solved the problem of converting Formulae into computation, which was later made into high art in Mathematica. COBOL which could express business process in code, and of course C which was a logical follow on to BLIS which was the minimal wrapping over assembly language so you could implement large systems and still read the code later and know what they were doing.

I didn't get any sort of coherent answer from the Go team at the time. Which for me was an indication they were a solution in search of a problem, and thus not likely to be much more than a niche language. But to be completely fair I've seen good languages like Rexx go nowhere even though they solved a huge problem (automating the integration of different programs).

A co-worker at Google suggested that we should start holding meetings in High Elvish, their reasoning was that it would keep people out of meetings who were at least motivated enough to learn elvish, and it sounded better when you swore. But applying a language change to solve a structural problem was never going to fly.

Re: Why Do Some Programming Languages Live and Others Die?

#5
post #2

On the correlation between bearded language designers and language popularity: http://www.alenz.org/mirror/khason/why-microsoft-can-blow-of...

That author needs to either learn English or blog in his native language. It was downright painful to read.

Re: Why Do Some Programming Languages Live and Others Die?

#7
post #4

The key take away from this: "Part of the problem, he says, is that language designers don’t always have practical objectives. “There’s a tendency in academics of trying to solve a problem when no one actually ever had that problem,” said Rabkin, who recently received his computer science PhD at Berkeley and is now at Princeton working on a post-doc. " I was at Google when Go was birthing (not part of the project or…

Go solves almost all of the problems that C introduces, how's that sound?

Re: Why Do Some Programming Languages Live and Others Die?

#8
post #4

The key take away from this: "Part of the problem, he says, is that language designers don’t always have practical objectives. “There’s a tendency in academics of trying to solve a problem when no one actually ever had that problem,” said Rabkin, who recently received his computer science PhD at Berkeley and is now at Princeton working on a post-doc. " I was at Google when Go was birthing (not part of the project or…

How do you explain Java's massive uptake. It can't be it that it solved some problem uniquely that no other language did (whatever that was in 1995). Without the massive marketing and development by Sun, IBM and Oracle who wanted to use it to undermine the windows platform I doubt Java would have taken off the manner it has.

Same thing with C and C++. Without AT&T's backing of Unix and C it is highly unlikely C would have ended up where it is right now. The initial backing of C++ by AT&T was certainly instrumental in pushing it forward.

Similar examples Python -- interesting niche language until Google picked it up and started pushing it around 2004.

FORTRAN -- IBM's muscle

C# -- doesn't solve anything that Java or C++ couldn't do in 2000 except Microsoft wanted their own proprietary language.

It seems that solving some problem might be optional, but commerical backing and long term support is essential.

Re: Why Do Some Programming Languages Live and Others Die?

#9
> “Maybe the solution isn’t entirely technical,”

Gee... you think? Programming languages are designed for humans - computers get by just fine with bits and bytes. And a programming language must not only communicate something to the computer, but also to any other humans who have anything to do with said system, if it's doing its job well.

So the problem is entirely social. I wrote something about it a while back:

http://www.welton.it/articles/programming_language_economics

Re: Why Do Some Programming Languages Live and Others Die?

#10
post #4

The key take away from this: "Part of the problem, he says, is that language designers don’t always have practical objectives. “There’s a tendency in academics of trying to solve a problem when no one actually ever had that problem,” said Rabkin, who recently received his computer science PhD at Berkeley and is now at Princeton working on a post-doc. " I was at Google when Go was birthing (not part of the project or…

It's an instance of market adoption of a product, being a solution to an urgent problem helps. Many programming languages are scripting languages of a platform, and it's the platform that solves the problem. In general it's subject to all the vagrancies of marketing, especially whether it gets publicized/promoted/pushed. If there are competing products, and both do the same job well, probably one will win (e.g. python is used for integration).

BTW: What problem did Java solve? It seemed to be intended for settop boxes; then for web applets; but serendipitously got traction in the enterprise. It sounds almost a counter-example (is it?)

Post reply on HN