How does a new programming language get established? How could I design one and be famous? What steps would I need to take to get it 'Out There'?
|
feedback
|
|
Read Paul Graham's essays, especially Being Popular. | |||||||
feedback
|
|
This reminds me of Seth Godin addressing a conference of real estate agents. He told them to quit. He said the market was just too hard and they'd be better off looking for a different job. Many of the agents got up and left. Then... Since he had the truly dedicated agents, he jumped right in to all the amazing real estate opportunities out there. I imagine writing a programming language is like that. If you're going to do it, you have to get to a point where it doesn't matter what anyone else says. Are there too many programming languages? Maybe. Are you going to get famous? Probably not. But you do it anyway. If you're going to write a new and famous programming language, there's probably nothing anyone can say to help because: "Talent hits a target no one else can hit; Genius hits a target no one else can see." - Arthur Schopenhauer | |||||||
feedback
|
|
First of all, find a need which is not supported adequately by current languages. Design a language specific to handling that situation. | |||||
feedback
|
|
Why not try designing a library for an existing language? jQuery, for example, makes JavaScript so much easier to use that it almost feels like a different language. Some advantages in "getting it out there:" *People already use the target language, so you have a built-in audience - all you have to do is show them that doing things your way is faster/easier/more powerful. *If the above argument is sound, it's easy to try it out - just substitute the New Method for the Old Method a little at a time. *You can improve your library incrementally - if there's not a way to do X with it, there's probably a fallback way to do it in the existing language. | |||
|
feedback
|
|
Create it and put it online. If it's got something new and interesting then people will start to adopt it (e.g. ruby). Or you could become a multi-billion multi-national company, create a standard and then start to provide more or exclusive support to developers that use your new language(s) over the non-proprietry alternatives. | |||
|
feedback
|
|
Steve Yegge addresses this topic rather extensively ("extensive", in this case, referring to the length of prose).
| |||||
feedback
|
|
Many of the popular languages were initially designed in-house by a major technology company:
Languages that haven't taken this route have generally been slower to gain a following: Python and Ruby are both older languages than Java and C#, but have taken many more years to gain popularity. So if your motivation for creating a language is fame, the quicker route is to create it for a technology leader. | |||||||||||
feedback
|
|
If you're more concerned with getting people to adopt your language, think of it as new technology. I'm reminded of a quote from Why Your Favorite Language Is Unpopular on arcfn: New technologies aren’t adopted because they are great, new, and disruptive; they are adopted only if the user’s crisis solved by the technology is greater than the perceived pain of adoption. | |||
|
feedback
|
|
Before you start designing an entire language from scratch think about whether it could not be easier done by creating a DSL (Domain Specific Language) for an already existing language thus leveraging tools and compiler of that language. For example it's pretty easy to create a very specialized DSL for Groovy, while no one will ever recognize that the underlying technology is actually Groovy. | ||||
|
feedback
|
|
Either become bald, or grow a beard. There is research: original and followup... By the look of it you are neither bald nor bearded so good luck ... Failing that a time machine and some hindsight wouldn't hurt. | |||
|
feedback
|
|
There are too many procedural / imperative / object-oriented languages. Learn Prolog and Haskell and see how different they are from C++ / Java / VB etc. Think up a new execution / evaluation strategy, or a whole new programming paradigm - preferably one that lets you do more in less code (more high-level). | |||
|
feedback
|
|
Please just lend your time to make tools or documentation for an existing language. We really have enough right now. This would also be a great way to get into 'the know'. | |||
|
feedback
|
|
In what kind of language are you interested? There is a great difference between a General Purpose language (C, Java, etc.) and a Domain Specific language, if you want to be famous try with a general purpose one (but beware of the fierce competition!). Also, what paradigm are you thinking of? Imperative, procedural, functional, nameyouwhat, etc... So, first think of a problem not well addressed by current languages, then try to solve it creating a new language! :) | |||
|
feedback
|
|
Just build it anyway, with features you want, and make you more productive, and don't worry about how popular it is (not) going to be. Languages are cheaper to design and implement than they used to be, what with all the parser generators and collection/graph manipulation libraries out there. The biggest advantage you have is that your language will not be designed by committee and will not have to maintain backwards compatibility with anything. And it would be crazy not to target an existing platform like .NET, so you get a decent standard library for free (the only other realistic alternative I can think of is to translate to C and borrow native libraries from an interpreter such as PHP.) | |||||||||
feedback
|
oh yeah and: Seriously, creating a new language is a nowhere near trivial task. Not just because it takes a variety of skills but because it's a hard problem in each of those skills. Choosing what to put in your language to start with is a hard marketing problem in it's own right as well as a very hard technical challenge. Building a community around it is a hard social problem. And once you have a community, it becomes a hard political challenge; interacting with them, keeping them happy by fixing the bug bugs they care about and adding the features they want without destroying what you've created. Each of these in it's own right is a hard problem. If I absolutely had to get fame and recognition somehow, I think creating a programming language would come a good dozen steps below getting stuck in the mountains, freeing my self by cutting my foot off with a pocket knife and then writing a book about it. If, after all that, you still want to do it; as this guy and check out these NG's. He's done it and that NG has ~10 years worth of documentation on how. | ||||
|
feedback
|
|
I agree with James, Find a niche and fill it. There are NEVER enough languages, thats why there are such things as XML. Theres always a need in specialized areas, wether its to struture data or functionality. EDIT: I do agree with others here that there are many poorly implemented languages, that there is no doubt; but to use that as the agrument that there are too many in general is shortsighted. | |||||||
feedback
|
promote
| |||
|
feedback
|
|
Do have any idea of how many programming languages are already out there, including the ones written as someone's hobby, side project or Master's degree? Wikipedia claims that there are "thousands", but that sounds low to me. Like rock bands, only a few outliers make it to the big time. To make it big you have to have had lots of practice already, do something new but don't make any big mistakes, be at the right place at the right time, and be very lucky. This applies to taking up the guitar or the code. | ||||
|
feedback
|