Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×
Programming IT Technology

What Makes a Programming Language Successful? 1119

danielstoner writes "The article '13 reasons why Ruby, Python and the gang will push Java to die... of old age' makes an interesting analysis of the programming languages battling for a place in programmers' minds. What really makes a language popular? What really makes a language 'good'? What is success for a programming language? Can we say COBOL is a successful language? What about Ruby, Python, etc?"
This discussion has been archived. No new comments can be posted.

What Makes a Programming Language Successful?

Comments Filter:
  • by Slashdot Suxxors ( 1207082 ) on Thursday May 29, 2008 @12:15PM (#23587607)
    Is directly proportionate to the amount of /. posts talking down on it.

    Fact.
  • Beards (Score:5, Funny)

    by AioKits ( 1235070 ) on Thursday May 29, 2008 @12:16PM (#23587621)
    I thought it was the beards on the creator(s) of the language that determines the success?
  • by steeljaw ( 65872 ) on Thursday May 29, 2008 @12:17PM (#23587623) Homepage Journal
    Portability and scalability are what win it for me, I like to write my code once and it's got to be powerful enough to deliver a complex solution.
    • by OrangeTide ( 124937 ) on Thursday May 29, 2008 @12:32PM (#23587873) Homepage Journal
      I'm mainly a C hacker, but I don't get why people would prefer Python over Java. Dynamic typing where you can create new identifiers implicitly is pretty scary to me. I'm not even sure what Python offers over the dozens of other languages that preceded it.
      • by SatanicPuppy ( 611928 ) * <Satanicpuppy.gmail@com> on Thursday May 29, 2008 @12:38PM (#23587971) Journal
        Well, it's got a better object model than Java, and it's a lot faster to code with. Java just isn't appropriate in every situation.

        Python also plays well with C [python.org], so it's often used in concert with C for interfaces, etc.
        • by OrangeTide ( 124937 ) on Thursday May 29, 2008 @01:51PM (#23589257) Homepage Journal
          Well I think Java's object model is superior. Perhaps it's only a matter of taste rather than cold hard logic.
          • by AnomaliesAndrew ( 908394 ) on Thursday May 29, 2008 @02:17PM (#23589655) Homepage
            I tend to agree with you that personal preference is one of the biggest factors in the choice of a language... but it's the strengths and weaknesses inherent in any language (or more so the language's purpose) that also shapes this. I rarely use only one language/model anymore.

            For instance, in my day to day life, I see a clear distinction as to when procedural/object oriented languages such as C, PHP, and Java should be used, and when a relational language like SQL should be used, and I rarely confuse those two classes of programming. Markup languages (though hardly programming languages) like HTML and CSS also have their essential and distinct roles. Were I forced to select only one, I'd probably quit programming!

            Programming languages are just tools to get the job done. When was the last time you saw a carpenter with only a chisel?

            Everybody's so quick to get into pissing matches.

            (Forgive any flawed terminology, I was just speaking casually.)
        • by kellyb9 ( 954229 ) on Thursday May 29, 2008 @03:36PM (#23590779)

          Java just isn't appropriate in every situation.
          No programming language is.
      • Comment removed (Score:5, Insightful)

        by account_deleted ( 4530225 ) on Thursday May 29, 2008 @12:48PM (#23588125)
        Comment removed based on user account deletion
        • by geekoid ( 135745 ) <dadinportlandNO@SPAMyahoo.com> on Thursday May 29, 2008 @01:41PM (#23589079) Homepage Journal
          And the advantage of it being a sloppy maintenance nightmare developed by noobs.

          Where the hell do you get C and bloat together? If anything written in C has bloat, the developer should be promoted away from coding immediatly.

        • by OrangeTide ( 124937 ) on Thursday May 29, 2008 @02:03PM (#23589447) Homepage Journal
          People are quite capable doing quick things in Java without pulling in giant bloaty enterprise frameworks. Plus Python is bloat, I think it's like 40M+ installed.
          As for banging out quick projects, I tend to do them in C or shell scripts because I know they will either become real projects or they need to be understood by all.

          Also doing things in a scripting language and having C do the heavy lifting... sounds like Tcl, Lua, JavaScript. Python offers nothing new there.
      • by amccaf1 ( 813772 ) on Thursday May 29, 2008 @12:49PM (#23588133)

        I'm mainly a C hacker, but I don't get why people would prefer Python over Java.
        I'm having similar questions, only wondering why people would prefer Ruby over Java. I've had to start learning Ruby for a variety of reasons so I've been reading Ruby tutorials off and on for a week or so.

        I don't think that Ruby is bad, not by a long shot. It's seems fairly decent and it doesn't seem to be lacking anything necessary. I'm just curious as to why someone would pick Ruby over some other language. I'm not quite understanding what the "killer app" of Ruby is. I'm not sure why this language had to be created.

        My understanding is that the main reason for choosing Ruby is to use it with Rails (which I have not looked at yet). And yet it's rare for me to read a good word about Ruby on Rails.

        Does anyone else get the impression that a lot of these newer languages are simply solutions that are looking for problems?
        • by naasking ( 94116 ) <naasking AT gmail DOT com> on Thursday May 29, 2008 @02:37PM (#23589943) Homepage
          Killer apps are overrated. Ruby is an expressive language, period. Studies have shown that software developers can only write a few lines of correct code per day. Making those lines count for as much as possible is important from a correctness, and a maintainability perspective.

          Furthermore, application complexity increases non-linearly with lines of code. The fewer the lines of code, the more maintainable and understandable the program.

          This is one reason why C is a poor choice of application language, because it requires verbose solutions, and why OCaml is a better choice.

          So the winning factor of Ruby over Java is its expressiveness. The big downside is the loss of static typing, and the subsequent loss of certain pre-runtime guarantees. If we could have both, we'd have a real killer language.
          • by WGR ( 32993 ) on Thursday May 29, 2008 @05:18PM (#23592333) Journal

            Killer apps are overrated. Ruby is an expressive language, period. Studies have shown that software developers can only write a few lines of correct code per day. Making those lines count for as much as possible is important from a correctness, and a maintainability perspective.
            That implies that you should be programming in APL.

            There is much more to good programming languages than short code.

            This is one reason why C is a poor choice of application language
            You are under the mistaken impression that C is an application language. It is not. It is a system programing (high level assembler) language. That is why so much buggy code is written in C. It has none of the proper error checking built in to it that an application language should have. This provides the ability to get closer to the machine than other languages, but that is the role os system langages, not application languages.
        • by Yath ( 6378 ) on Thursday May 29, 2008 @02:53PM (#23590221) Journal
          Java is a fraction the complexity of C++. I understand that was one of its main missions - to be as powerful as, but easier to use, than C++.

          Ruby is an order of magnitude lower in complexity compared to C++. Whereas Java continues to mix objects and immediate values (e.g., int and Integer types), Ruby has only objects. Java's mixed model has a cost when programming. You may reply that the immediate int gives you a speed and optimization advantage, and that is true, but it misses the point. Java gave up speed compared to C++ to make things easier on programmers, and Ruby simply continues in that vein. You can't criticize Ruby for continuing what Java accomplished to a much lesser degree.

          There are numerous other examples - Ruby's iterators, for example, are a generation past what Java has to offer. You can find plenty to appreciate in Ruby vs. Java before you even start to talk about advanced language concepts like closures.

          Does anyone else get the impression that a lot of these newer languages are simply solutions that are looking for problems?


          I hear only complacency in the above comment. You've learned a language well, and find it hard to imagine a better way. Well, your lack of imagination does not equal evidence.
        • by RAMMS+EIN ( 578166 ) on Thursday May 29, 2008 @06:44PM (#23593413) Homepage Journal
          ``I don't think that Ruby is bad, not by a long shot. It's seems fairly
          decent and it doesn't seem to be lacking anything necessary. I'm just
          curious as to why someone would pick Ruby over some other language. I'm
          not quite understanding what the "killer app" of Ruby is. I'm not sure
          why this language had to be created.''

          Ruby was inspired by a number of good and useful programming languages, such as Lisp, Smalltalk, Perl, and Python. It combines the good features of those into a single language. The result is a language that is very powerful, has clean syntax, is easy to get started with, and allows a little code to do a lot of work.

          As for a killer app, I don't think there really is one. Ruby is and has always been a general-purpose language. It got its 15 minutes of fame with Rails, but that has since been cloned in other languages. Nowadays, Ruby is just good at many of the same things Perl is good at, and good at many of the same things Python is good at. I personally prefer Ruby, because it is a very well thought out language and, coming from Lisp, it feels natural to me. Still, I don't think Ruby is that much better that people should or will be switching in droves. It's an incremental improvement over already good and useful languages, not a revolution.

          Now, for some specifics.

          From Perl, Ruby takes first-class regular expressions. Many Ruby modules are also ports of Perl modules.

          From Python, Ruby takes clean syntax. There's quite a lot of competition between Ruby and Python, so I imagine there is a lot of "me too" on both sides.

          From Smalltalk, Ruby takes the object system (everything is an object, every object belongs to a class), and blocks (kind of like anonymous functions, but with special syntax). Blocks, especially, are very powerful, as you can use them to (almost, I have to say as a Lisp programmer) implement your own control structures; loops, iterators, etc.

          From Lisp, or maybe from other languages that have these features, Ruby takes garbage collection, anonymous functions, dynamic typing, call/cc, symbols as first-class values, printing of objects in Ruby-readable form, a read-eval-print loop (enter code, have it evaluated and the results printed) and probably a bunch of other features I am too tired to think of right now (but not macros, alas).

          Ruby also has exceptions, the printf family of functions, and a number of other features commonly found in modern programming languages.

          The kicker is that it has all this in a single, coherent language, with a syntax that is easy to understand and learn, and few great pitfalls. Mostly, whether you already know a programming language or not, you can just start coding in Ruby, and it will be easy. There aren't lots of irritating silly parentheses in Ruby, neither is there a difference between scalar and list context. No buffer overflows, no integer overflows, no memory leaks. You don't need to change the way you think, you don't need an IDE. It's easy to get started with, and yet doesn't suffer from problems that languages that are easy to get started with usually have: bad design, limited expressive power, only really being suitable to one domain, etc.

          Finally, some code, just for kicks:

          # Define an array with first names and one with last names
          first_names = [ 'Alice', 'Bob', 'Charlie', 'Deborah', 'Eve' ]
          last_names = [ 'Cooper', 'Jones', 'Smith' ]

          # Define a class Person
          # Each person has a first name and a last name
          # which have to be passed to the constructor
          # and can be accessed using an accessor
          class Person
          def initialize first_name, last_name
          @first_name = first_name
          @last_name = last_name
          end

          attr_accessor :first_name, :last_name
          end

          # Add a pick method to the class Array
          # The pick method returns an element from the array at random
          class Array
          def pick

      • by Kupek ( 75469 ) on Thursday May 29, 2008 @01:46PM (#23589169)
        You've probably never done any coding in Python. Check out the book Dive Into Python (it's free and online): http://www.diveintopython.org/ [diveintopython.org] Even browsing through it will give you a better idea of what Python is good for.

        Personally, I think of Python as a prettier and more coherent version of Perl.
    • by agrounds ( 227704 ) on Thursday May 29, 2008 @12:38PM (#23587967)
      Portability and development speed are what drive it for me. Most of what I code is for log parsing, network device configuration, and reporting. To that end, I have never seen a need to look too far beyond Perl. It does everything I need with very minimal effort and development time, even for reasonably complex projects. Still, when Perl code becomes too large to work with effectively even after breaking down individual tasks, I change languages.

      I think the point is "which tool fits the current need best." Far too many people seem to want to use a hammer when a screwdriver would work better out of potentially misguided allegiances. Languages are no different than any other tool.

      I suspect TFA is more 'overrated' than 'insightful' since it makes some gross generalizations, cites search results as indicators of popularity, and completely neglects some of the nicer features of the popular scripting languages.
      • by Dan667 ( 564390 ) on Thursday May 29, 2008 @01:00PM (#23588379)
        I have always thought of computer languages as tools in the toolbox. After understanding the problem and coming up with a plan, the computer language I pick tends to be the best tool to do the job and require the least amount of effort to develop it. Need CAD speed? Use ANSI C. Need text processing? Use perl.
        • by Schadrach ( 1042952 ) on Thursday May 29, 2008 @01:09PM (#23588541)
          Need code that you KNOW has no errors aside from logic errors on the part of the programmer? Use Ada. That's really where Ada fits. You can do very little wrong without the compiler screaming at you and then failing to compile. Like as in, things that cause C "warnings" cause Ada to fail compilation until you fix it. Need to rapidly produce major components, and easily wrap C for the lower level, more performance intensive stuff? Use Python. No, really. That seems to be Python's main niche. It's a great language for writing large blocks of program logic very quickly, is poor at low-level stuff, but can trivially wrap C to do the things it is very poor at.
      • by ShieldW0lf ( 601553 ) on Thursday May 29, 2008 @01:14PM (#23588605) Journal
        The thing that makes a programming language successful is the existence of a large group of programmers who are familiar enough with the language to use it. That's pretty much it.

        If I can start a project in a particular language, get hit by a bus half way through, and finding someone else to sit in my seat and finish the project isn't a problem, then the language is a success. If I don't have that confidence, then the language is nothing but an interesting curiosity for academics.

        Pretty cut and dried.
      • LOL perl (Score:5, Funny)

        by Anonymous Coward on Thursday May 29, 2008 @01:32PM (#23588921)
        I was on an old dial up bbs once having a fierce argument and was deep into a paragraph lambasting my foe, when a nearby thunderstorm injected about 4 lines of pure static garbage characters into my text, and the techy walked by, glanced at my screen and said "taking up perl?"
  • by JohnnyBGod ( 1088549 ) on Thursday May 29, 2008 @12:17PM (#23587633)

    Java's well organized, has a great standard library and is (mostly) consistent with itself. Its only problems, as far as I can see, was that it was initially slow and that it marketed itself as a web language, when there were better choices for that.

    Disclaimer: I've only coded in Java since 1.5.

    • Re: (Score:3, Insightful)

      by Z00L00K ( 682162 )
      Which is when Java started to be really good.

      Before 1.5 it was harder to avoid those dreaded ClassCastException:s that you could get from Lists and Maps.

      But it's still the NullPointerExceptions left to take care of.

    • by CastrTroy ( 595695 ) on Thursday May 29, 2008 @12:27PM (#23587789)
      PHP is badly organized, has a long history of importing third party components for what should be included in the base, and is completely inconsistent with itself in many ways. Hasn't caused any problems in popularity for them. I would say by virtue of PHP and all the other popular languagues, that it should be easy to get started (free compilers and runtimes), that it should run on multiple platforms, and that it should be easy to install. Nothing gets you more popularity than millions of newbies trying your tool and being able to get it working that they continue to use it even when they get good, simply because it is what they are used to.
      • by JustinOpinion ( 1246824 ) on Thursday May 29, 2008 @01:02PM (#23588403)
        Agreed,a language being easy to install and start using can give it a huge boost in usage.

        I would also note that community can have a huge effect. Obviously the size of a community will have a strong effect on whether usage of the language remains, grows, or shrinks. After all, you are more likely to learn a language if you hear about it, if it's used in many other projects, etc.

        Additionally, community is important in terms of the amount of support you get. Languages with strong communities will have thousands of online tutorials, excellent forums that provide responsive help, freely available code snippets, plenty of libraries and add-ons, and so on. This kind of 'free support' is often more useful than even careful and exact core documentation.

        As a personal example, I (have to) use a programing environment called "Igor Pro [wikipedia.org]" at work. The language syntax bothers me a bit--but on the other hand it is specialized to do some of the things we need it to. But what I really hate about it is the lack of community. When I Google for an answer to a problem I'm having, I get nothing. When I try to find a pre-made package for a non-core feature, it doesn't exist.

        Compare that to solving the same programming problem in, for example, Python. Even if it's not the optimal language, the fact that I get find tons of help online, and that there are so many community-developed packages and libraries, means that I can often solve the problem much faster.

        When evaluating new languages (and new software products), I always take the time to find out what the community is like. It can make all the difference.
      • In more ways than one, PHP and MySQL are the Visual Basic and Access of the open source world.

        They're not very good (or weren't for a long time), they feel cobbled together at best. But they work. They're fast, have a low learning curve, they're accessible and essentially cheap and/or free. They're easy to deploy and shove into production fresh off the prototype phase.

        They have large numbers of people who use them as their primary tools. A large percentage of these people are not exactly what you'd call professional developers (I am not a developer, but I've worked closely with them throughout my career), yet they get "the thing" done somehow, and those systems tend to stay up there driving business for a long time.

        It's just funny that the very phenomenon that for years and years the platform and language purists argued was one of the Really Bad things about Windows is actually now coming to Linux in a big way. What those elitists never realized is that most developers just want to get the business of business done, cash a paycheck and go home to their families. They don't care that there are 19 different ways of escaping a string in the runtime library. No one cares about that, as long as the platform continues to deliver, even if it just sort of limps around.

        All those thousands and thousands of clueless VB/Access/VBA developers don't suddenly become little Donald Knuths because they're looking at a KDE desktop and using Emacs to code curly braces in PHP.

    • by vivin ( 671928 ) <vivin.paliath@g[ ]l.com ['mai' in gap]> on Thursday May 29, 2008 @12:42PM (#23588047) Homepage Journal
      I just started at a new job at the beginning of this year after quitting from my last job where I barely got to do any programming. The place where I work now is a Java shop. I was getting back to Java programming after a hiatus of a few years. For the last few years I mostly doing Perl with a smattering of C (PHP and Javascript on occasion). My experience with Java was mainly from college and a few odd projects I did here and there. The language had changed quite a bit over the last few years and to be honest, I surprised myself by being happy to get back to it (I had some sort of vague dislike for it for a period of time).

      The company sponsored a trip to JavaOne at San Francisco earlier this month, for the Dev Team. I also got to go. This was my first time at JavaOne. It was amazing, exciting, and I learnt a LOT of new stuff. The main thing I got from there was that Java, far from being a programming language, is also a platform. There are a lot of new things being built on TOP of Java. For example, Groovy [codehaus.org], and JavaFX [javafx.com]. Java now has excellent support and frameworks to roll your OWN domain-specific languages.

      Python and Ruby are not going to push Java out of the way. For example, you have mergers of Java with these languages (Jython and JRuby). Essentially you have Python and Ruby using Java resources and libraries. I think instead of "dying", Java is just going to evolve into a stable platform that lets you build stuff on top of it.
    • Re: (Score:3, Informative)

      by hackstraw ( 262471 )
      I have some java hate, but java today is not the java of 1997. Its core class libraries are complete and I would assume consistant.

      My first experiences with java were the stuff that ran like crap as the so called end-all-be all write once run anywhere GUI language. That is not true today. Java is now a middleware language. Its become glue, and more behind the scenes than it was back in the day.

      So, what makes a programming language successful? Well, of course, its success!

      No, seriously, today, a program
    • by lkcl ( 517947 ) <lkcl@lkcl.net> on Thursday May 29, 2008 @01:02PM (#23588405) Homepage
      see http://norvig.com/python-lisp.html [norvig.com] section 10

      the author looks like he is inexperienced, and unaware of the function "reduce", which was added initially as a patch to python 1.5 by an experienced lisp programmer (along with map, lambda and filter) and so his example in section 10 could be replaced with:

      from operator import add
      reduce(add, [1,2,3])

      but the point of mentioning this is that java is extremely verbose - and consequently cumbersome.

      there is a class of programming language which python 2.x, lisp, smalltalk and other extreme-OO languages fall in to, which have an incredible elegance of expression and a level of empowerment that is wayyyy beyond anything else.

      it is not possible to count python 3000 in amongst those languages with extraordinary power, because the developers - primarily guido - believe that the functional-language-based primitives (map, lambda, reduce, filter) are "unnecessary".

      i initially thought that this was a joke - it was announced on april 1st.

      unfortunately it turns out to be true. the removal of these key features is profound: the language (python 3000) is dead before it is completed. it's difficult to explain but these functional-language primitives are extraordinarily powerful, providing a kind of "zeroth dimension" of data manipulation.

      on a single line, you can do incredible data manipulation. i regularly do things like this:

      from string import strip
      for l in open("file.csv").readlines():
            l = l.strip() # take off newline especially
            l = l.split(',') # split by comma
            l = map(strip, l) # strip white space
            l = map(int, l) # convert everything to ints

      of course you could fit that all on one line but i deliberately kept it to 4 lines in order to include the comments. you could also equally do this:

          l = l.strip().split(',')
          l = map(lambda x: int(x.strip(), l)

      the flexibility is just... amazing, in python.

      the other thing about python is that it tends to be self-documenting, and also, there appears to be a tendency of coders to actually write _some_ documentation.

      that, and the fact that it is possible to walk the source code (or, more usually, the object-code) and 'read' it from inside a program, such that you can access the documentation strings and in fact the entire program...

      so things like happydoc can auto-generate you HTML documentation, by walking the code itself and collecting all the module, class and function documentation strings - just .... just... incredible!

      i regularly do things like this:

      import os
      print os.path.__doc__

      i don't bother to look up online how the function os.path works, i print its documentation string!

      you just don't get these kinds of things with java.
      • by leighklotz ( 192300 ) on Thursday May 29, 2008 @01:20PM (#23588697) Homepage

        see http://norvig.com/python-lisp.html [norvig.com] section 10

        the author looks like he is inexperienced, and unaware of the function "reduce", ... (along with map ...)
        Maybe you should send the author [norvig.com] a note about map and reduce. As director of Research at Google, he's probably in a position to influence some of their programmers [python.org] to make use of map and reduce [google.com].

      • by maxume ( 22995 ) on Thursday May 29, 2008 @01:43PM (#23589115)
        Are you talking about the section 10 labeled "Python Pre-2.1 did not have lexical scopes."?

        If so, your criticism is bizarre, the example is written to illustrate that "Python Pre-2.1 did not have lexical scopes.", not to illustrate the shortest way to rewrite the built-in sum function (you realize that right, that the idiomatic implementation of sum in python is the built in function?).

        The reason map and reduce aren't cared about is that most people have an easier time with list comprehensions. Your code:

                l = l.strip().split(',')
                l = map(lambda x: int(x.strip(), l)

        can be written as:

                l = [int(x.strip()) for x in l.strip().split(',')]

        in python 2.4 onwards. Obviously, you could put that on as many lines as you wanted. If you are worried about performance, generator expressions are very similar to list expressions but lazily evaluated:

                g = (int(x.strip()) for x in l)

        g would then create items as they are called for by some consumer (for instance, a for loop or a container object).
      • by Otter ( 3800 ) on Thursday May 29, 2008 @01:45PM (#23589151) Journal
        it is not possible to count python 3000 in amongst those languages with extraordinary power, because the developers - primarily guido - believe that the functional-language-based primitives (map, lambda, reduce, filter) are "unnecessary".

        1) Those capabilities will still exist in the base language, just with different syntax.

        2) If you want the old syntax, it will be available in a standard library.

        Save your hysteria for something genuinely catastrophic, like the loss of the print statement.

  • grmbl. (Score:5, Funny)

    by thhamm ( 764787 ) on Thursday May 29, 2008 @12:17PM (#23587635)
    What Makes a Programming Language Successful?

    those who don't know how to use it.
  • Back to Basic (Score:4, Interesting)

    by Z00L00K ( 682162 ) on Thursday May 29, 2008 @12:19PM (#23587649) Homepage Journal
    Python et.al. are all languages that we who were there in the 80's remember with a combined horror/amusement when we had to write programs in Basic.

    The lack of type-safe variables, the possibility to write unreadable code, hunt for bugs that are caused because two files are incompatible. Interpreting languages has been tried before, and they are never working for large projects that shall live for a long time and has to be maintained by a lot of different programmers.

    Java may be a bastard of Ada, but at least it has some type checks built in. However, it's a bit weak on the side where the user can't control memory management in a good way. Another weakness is that methods can't be declared to allow/disallow the return of 'null' values to be detected at compile-time.

    • Re:Back to Basic (Score:5, Interesting)

      by SatanicPuppy ( 611928 ) * <Satanicpuppy.gmail@com> on Thursday May 29, 2008 @12:31PM (#23587849) Journal
      I think you've got Python confused with Perl. Python was first released in 1991, and one of its core tenets is a formatting structure that makes it a lot more difficult to write illegible code. So I'm just going to assume you were talking about Perl, and I'm going to assume that you're not as ill-informed as it appears.

      Perl is what it is: A quick and dirty language for generating practical programs. It's ugly, it's hard to maintain, and it makes a lot of peoples lives a lot easier by making operations that are extremely complicated in other languages quite trivial to code. Comparing it to C is not an apples to apples comparison. Comparing it to BASIC is like comparing a Pineapple to a Raisin.
    • by D Ninja ( 825055 ) on Thursday May 29, 2008 @12:50PM (#23588155)

      the possibility to write unreadable code
      Hate to break it to you, but that's a possibility in any language.
  • Easy. (Score:5, Insightful)

    by SatanicPuppy ( 611928 ) * <Satanicpuppy.gmail@com> on Thursday May 29, 2008 @12:20PM (#23587673) Journal
    Power: What can it do?
    Performance: How fast can it do it?
    Ease of Development: How fast can quality code be turned out by regular programmers?

    Most modern languages fail on a couple of these. C is first class in Power and Performance, but it's not Easy. Ruby is okay in Power, and its very Easy, but it's slow. Java is Powerful, but doesn't match C for Performance, and it's not the quickest for development.

    I'm sure many fanboys will disagree with my analysis. They'll say "Regular programmers don't matter (C)" or "It's NOT SLOW (Ruby)" or "Development is too quick! (Java)".

    Really though, that's what it comes down to. The problem is, that there are unfortunate tradeoffs that have to be made. Most languages have a strength, but they all make sacrifices to be strong.
  • Aging Engineers (Score:5, Insightful)

    by avandesande ( 143899 ) on Thursday May 29, 2008 @12:21PM (#23587689) Journal
    I think many people fail to recognize that the average age of software engineers has gotten higher and that many have realized that most of the pitfalls in software development have little to do with the language chosen. I would rather concentrate on good engineering practices and refining familiar modules I have developed than learn a new language.
    • Re:Aging Engineers (Score:5, Insightful)

      by sheldon ( 2322 ) on Thursday May 29, 2008 @12:45PM (#23588081)
      My father, just before he retired, got into a big argument with the kids. They had an embedded system, 32K onboard memory, everything was written in straight C.

      The kids wanted to do OOP. My father felt there wasn't enough memory to do this effectively and it was foolish.

      The reality was, that the kids just wanted to pretend they were doing OOP. They still used straight C, they just created structs and organized functions in files as if they were classes. It was actually rather clever and made it easier to maintain.

      It's hard as you get older, I think, you hear about some new idea as the silver bullet and your immediate reaction is negative because you've heard this so many times before. But you have to have an open mind, and watch and see what is happening.

      Otherwise you'll end up as a COBOL developer.

  • by mr_mischief ( 456295 ) on Thursday May 29, 2008 @12:25PM (#23587747) Journal
    Not to sound too much like Obi Wan, but many of the truths we cling to depend a great deal on our own point of view and all that.

    If I was working for O'Reilly, Manning, APress, Wiley, et al I'd say a successful programming language was one which sold lots of books.

    If I was a hiring manager for a large software company, I'd look closely at what language allowed the most cheap new grads to work together an produce something resembling quality code.

    If I was teaching intro to computer science, I'd worry about what was preparing my students for the rest of their education.

    If I was teaching a certificate-level course to people looking to get into the job market quickly, I'd look for the language with the highest placement rate.

    If I was a person of little clue, I'd go largely by the hype. Some would go with the mainstream hype, and some go with the counter cultural "that's the big hype, but our language is better" underdog hype.

    As a programmer, I prefer the language that helps me turn customer requirements into working programs that fastest with the least fuss on my part, and allows decent maintenance and customization later.

    As the owner of a small boutique programming shop, I want my expressive, powerful language to give me an advantage over others using less expressive languages. I'd like to find others who can use it, but a few is alright as I don't need a huge team to work on programs.

  • by neoform ( 551705 ) <djneoform@gmail.com> on Thursday May 29, 2008 @12:25PM (#23587751) Homepage
    Python's success is based on how much python coders bash PHP. The more they attack PHP the better the language gets.
  • Quck! (Score:4, Insightful)

    by Anonymous Coward on Thursday May 29, 2008 @12:26PM (#23587769)
    Every program on your screen and your OS was written in C/C++

  • SOME Answers: (Score:3, Interesting)

    by Jack9 ( 11421 ) on Thursday May 29, 2008 @12:28PM (#23587797)
    The less cryptic the better. This generally means, be C-like in your operators and be easily readable at a loop level.

    Having multiple abstractions available. Multiple ways to do the same complex task efficiently, not just for() or while(). Regex plz.

    Being able to access hardware directly. This includes RAM allocation.

    Few unexpected side effects. Documentation is important for both adoption and maintenance of programs written in the language.

    That's all I got.
  • by ajv ( 4061 ) on Thursday May 29, 2008 @12:29PM (#23587805) Homepage
    I review code for security flaws for a living. I am a pioneer in this field and have literally written the book on it (the OWASP Guide and the OWASP Top 10 2007). I've been doing secure code reviews for the last 10 years.

    I've reviewed 400-500 applications (it's unclear to the total number, but I usually do a review every other week, some shorter, some longer).

    I've never reviewed a Ruby application or been asked to review code written in that language. I have been asked to review a Haskell application.

    I have reviewed:

    * 85-90% Java, usually with shell and ant scripts and occasionally some Perl. Some *years*, this is the only language I am asked to review.
    * 5-10% .NET. I haven't reviewed a .NET application this year.
    * 5% COBOL. Primarily as a side line - there's a lot of old code to review, but most folks never do.

    I've reviewed three PHP applications professionally, all in the last year, even though this is my preferred language to write stuff.

    Java is overwhelmingly used in large commercial settings for high value applications, with .NET a very distant second.

    I don't get to review that many COBOL or other mainframe apps. I've been doing ground breaking research in this area as there's no advice today. There is a false belief that this code is somehow "safe" as it resides on the mainframe. Nothing could be more wrong.

    Ruby and Python, although interesting langauges, has zero commercial penetration, even for worthless brochureware or community apps.

    What they do have is an extremely loud fan base. These languages will not kill COBOL or Java any time in the next forty years or so as the fan base is fickle and will move on to the next big thing when it comes along.
    • by Jaeph ( 710098 ) on Thursday May 29, 2008 @12:46PM (#23588095)
      You didn't review any C either, yet we all know that the language is out there and being used. Same with perl.

      I think your field of work is too narrow to be completely explanatory.

      Btw, I do agree with your general point - I don't see python or ruby bumping aside java. But your personal experience, extensive as it appears, is not enough to derive that conclusion

      -Jeff

      P.S. I really wish java would go. I hate the upper/lower case thing in all the names.
    • by Anonymous Coward on Thursday May 29, 2008 @01:07PM (#23588511)

      Do you ever think that maybe your survey has a heavy self-selection bias? I mean it seems to me that the most likely candidates for security reviews would be applications that have been around long enough to have somebody in management say, "Hey, we need to have a third party review this!". This explains how FIVE PERCENT of your applications are COBOL while only "three" are PHP. By your analysis, it's as if C/C++ doesn't even exist...
  • by tyler.willard ( 944724 ) on Thursday May 29, 2008 @12:30PM (#23587833)
    Jesu effing Christo.

    One thing ain't got nothing to do with the other.

    I can't decide which is worse, this particular bit of idiocy or the all-to-common: "dynamic vs strong typing" arguments.

    Actually, maybe I'm being to hasty.

    The conflation of runtime implementation details with language capabilites, or the above-mentioned typing confusion, does provide a quick and easy way to tell that someone doesn't know what the hell they're talking about.

  • by klubar ( 591384 ) on Thursday May 29, 2008 @12:32PM (#23587871) Homepage
    Don't count out the "dead" languages... IBM estimates that more than 30 billion transactions occur within Cobol programs every day. By contrast, Google averages about 150 million searches each day, or about .5% of Cobol's daily workload.

    Rather than a "gee I need a cool website for my mom" choice, perhaps the number of transactions or dollar value would be a better count.

    Cobol would probably win, followed by java and the Microsoft languages (C++, C#).
    • Re: (Score:3, Insightful)

      by Hoi Polloi ( 522990 )
      From a business perspective there is something to be said for older languages.

      1. They have highly experienced developers that are widely available.
      2. Apps written in them are generally older and have been time-tested and are reliable.
      3. The language and its behavior is well understood and is well honed.
      4. Many libraries are available

      Changing to the latest and greatest language demands that you have a damn good reason. Hopefully you just have to port an existing app but you'll have to start all over with QA
    • by ardor ( 673957 ) on Thursday May 29, 2008 @01:00PM (#23588371)
      Repeat after me:

      C++ is NOT a "Microsoft language".
  • by foobsr ( 693224 ) on Thursday May 29, 2008 @12:44PM (#23588075) Homepage Journal
    TFA: "Some languages made strange mistakes. For example Python is a great language but the idea of using indentation as block demarcation really is a cannon ball chained to its feet. While most of the pythonistas defend this idea with a lot of energy, the truth is this feature makes it really a dangerous tool in big, world wide distributed projects - and most important enterprise projects are big and distributed."

    Elsewhere [oreillynet.com]: "Python Creator Guido van Rossum now working at Google"

    Well. Now I finally know how Google is dangerous.

    CC.
  • by pokeyburro ( 472024 ) on Thursday May 29, 2008 @12:45PM (#23588089) Homepage
    What makes a programming language successful?

    Same thing that makes a religion successful. Adherents.
  • by itsdapead ( 734413 ) on Thursday May 29, 2008 @12:53PM (#23588217)

    Obviously there's more than one factor to a language's success, but the breadth and quality of the libraries and application frameworks is a huge factor - if you "know a bit" about programming then I'd say that learning your way around a new API is just as much work as learning a new language.

    A big plus for C was that it always came with a substantial standard ("de-facto" to start with, then ISO) library based on the Unix API so it was great for writing portable programs - c.f. Pascal where ISTR the core language couldn't even open a named file. C++ was largely popularized by application frameworks like MFC and OWL, and Delphi did the same for Pascal.

    PHP is pretty fugly as a language but comes with a huge library of functions and add-ons that are just what the doctor ordered for web scripting - and when people talk about Ruby, do they really mean Ruby or do they mean Rails?

    I don't know about Python - it seems to be a secret society rather than a language and you can't join unless you pass this initiation test where someone tells you a corny joke (stolen from an ancient email circular about Unix and Makefiles) about a language which uses leading whitespace to delineate blocks. I always laugh and fail the test, so I've no idea what the real language is like. :-)

  • Irony (Score:5, Interesting)

    by w3woody ( 44457 ) on Thursday May 29, 2008 @12:57PM (#23588313) Homepage
    Ironically the biggest problem I've had with Java is that, because it is relatively easy for developers to write code using an IDE such as Eclipse or NetBeans in the core language itself, but there are tons of various classes even within the core JRE, many programmers I know who write Java have created a sort of "ecosystem" of artificial complexity.

    For example, I worked on one project which was a client/server system which handled maybe 10 transactions per second, with each transaction translating into maybe one or two table updates. The application could have been put together using something simple, like Tomcat and MySQL on the back-end, and something easy to use like an XML/RPC link to the client side. (There were only something like 10 remote procedure calls being made, and this was an internal application, which means the total audience was perhaps 100 people.)

    But rather than keep the whole thing simple, we had a whole bunch of "Architecture Astronaut" wannabes who started tossing in third party frameworks like there was no yesterday, without carefully thinking if the framework was needed, and if so, how best to integrate the framework. Before we knew it, the server was broken into 8 separate EJBs, Hibernate and Spring were called in to handle the server side coding framework, and the entire build process was so complicated it no longer could be run or debugged within an IDE--apparently someone on the project didn't understand ant and used makefiles for part of the build. And to top it off, because so many different frameworks were thrown in for no good reason I can determine (there were something like 40 third-party jar files in the build directory), there were all sorts of runtime problems as each jar file was not designed or tested on the full range of Java 1.4 - 6.0 environments.

    Now if this was my first exposure to Java, I'd say that while the core language itself wasn't bad, the entire Java ecosystem sucked hard core. But no; it was the developers: rather than keep it simple, they used the 'refactor' button in NetBeans about 100 times too many, until what should have been a one person-three month job turned into half a million lines of crap, that, to their credit, limped along okay.
  • by dapyx ( 665882 ) on Thursday May 29, 2008 @01:03PM (#23588419) Homepage
    ...the name!

    The most important thing in the programming language is the name. A language will not succeed without a good name. I have recently invented a very good name and now I am looking for a suitable language.
    --Donald Knuth
  • FFS (Score:4, Insightful)

    by Pedrito ( 94783 ) on Thursday May 29, 2008 @01:13PM (#23588591)
    Java isn't going to die any more than C. Nor will Python or Ruby die any time in the foreseeable future.

    Anyone can play Devil's Advocate and make one language look better than another from some point of view, but the fact is, different languages have their different pluses and minuses. I'm sure Ruby and Python have their pluses, but I don't see them being used NEARLY as much as Java. And take into consideration that Ruby has been around just as long as Java and Python has 4 years on both languages. If they were going to kick Java's ass, it would have happened by now.

    I suspect the article is wishful thinking (though I can't read it 'cause the site didn't survive this post). I don't know why people have to make such a big deal about this stuff anyway. Languages evolve and new languages and paradigms will be created in the future. Computer programming is still in its infancy. There's a good possibility that 20-30 years down the road, none of these languages will be around. They may be completely replaced by some far more powerful paradigm we can't even imagine yet.

    These kinds of predictions are old and pointless.
  • Another related case (Score:5, Interesting)

    by richg74 ( 650636 ) on Thursday May 29, 2008 @01:22PM (#23588733) Homepage
    One of the author's suggestions in TFA is that functional languages have a hard time succeeding because of their concise, "math-y" syntax. Speaking as someone who has been in software development since the System/360 days, and also a sometime math teacher, I think he's absolutely right. Expressing things in mathematical terms is powerful, elegant, and concise; what is isn't is intuitive, at least for the majority of people.

    Consider a much earlier example of a math-like language: APL. It allowed concise programs and elegant expression (especially of mathematical ideas, like matrices); it ran in the then-mainstream environment (IBM mainframes); and, it was sponsored by the industry's 800-pound gorilla. And it was the best language for creating write-only programs that I have ever encountered -- think Perl with an extra helping of math and a non-standard character set thrown in. The worst programming assignment I ever had (although I did complete it successfully) was debugging and fixing a financial modeling package written in APL. My take on it was that the programmers who had written it originally fell mainly into two categories:

    • Those who were confused by the syntax and concepts
    • Those who used the syntax in a contest to see who could be "cutest"
    Neither is really what you want going on in an important enterprise-level project.
  • by Grapedrink ( 1298113 ) on Thursday May 29, 2008 @01:25PM (#23588795)
    It's hard not to turn this discussion into a war and I do believe that even from a qualitative perspective, this discussion is entirely subjective. Let me preface my comments by saying I work primarily in C#, Java, Ruby, and Python in my job, and previously was a C, C++, Fortran, and Assembly programmer. I know about a dozen more languages as well, so I feel I've at least had exposure to many languages to guage success from a developer's point of view. Generally, I think being good at a certain job/task makes a language successful. There is a corollary that one should pick the best tool for the job, not because it's the "best" language. C++ is successful because it was very fast at the time, had a lot of features people wanted, and was relatively easy to learn. Would I do a web page in C++ these days? Probably not.

    If I had to pick a language to discuss and deem successful, it would be either Smalltalk or Lisp. Some people find either of those esoteric or "weird," but I rather enjoy writing code in both. Interestingly enough, in many respects neither language is particular successful in a commercial sense, but very much so for most implementations.

    I'll stick to Smalltalk because it's a good example for this discussion. It's a case where popularity in my mind is not equal to success. Smalltalk works because it is simple (there are really only 6 keywords or so and not even really keywords at that) and is designed impeccably. If success is related to imitation and admiration, then Smalltalk is up there. Of course in itself, the language is derivative, but it's well-known enough to claim/steal credit for one of the best implementations of existing ideas. I have to laugh at other languages, especially Ruby, Python, C#, and Java as they are adding language features or libraries that emulate things that have existed in Smalltalk for 20+ years. That's rather laughable, but also an indicator of success.

    As the Smalltalk saying goes, "Files? How quaint." The language just proves you can design something successful by simplifying and focusing on enabling people to design and use their brains. I feel like I can focus on code rather than language constraints. Smalltalk coding is like teaching them to farm rather than giving them food. There are obvious merits to both approaches. The fact that the language is still around 20+ years later and gaining momentum speaks volumes.

    I think what makes it unsuccessful is that a lot of people have no idea it exists in the first place and how it really works. They might look at it and say, "yeah that looks something like Ruby, so what's the point." Usually I find it's lack of understanding of not only Smalltalk, but the fact that the development environment in many ways is the language. Most Smalltalk implementations simply don't have the problems in file-based languages like disorganized code, "too many classes," etc. So many of the plights in other languages don't happen in Smalltalk because of the design and that to me is success, regardless of the number of commercial installations.

    Another issues that has halted the language's success in commercial spaces has been ugly UI. Until recently, most implementations have looked awful. Squeak used to look like a child's toy without customizations (still does to some degree, but there's 100s of customized images floating around the internet now). Visual Works looks like an ugly ms-app sometimes, but is a huge leap over the past. Gemstone Smalltalk has no real UI (but can use Squeak). The list goes on, but the point is that even in dev environments, eye candy has a big influence.

    It gets even weirder when you look at Smalltalk and languages from the perspective of supporting products. Databases are probably the biggest, and Smalltalk can work with just about everything, but the simple support for the RDBMS is pitiful compared to most popular languages. Especially in recent years, a lot of that has to do with the Smalltalk view. In the Smalltalk world, it seems stupid not to use an object database at this poin
  • by SparafucileMan ( 544171 ) on Thursday May 29, 2008 @01:31PM (#23588885)
    I'll take any language that can let me write, read, and understand as fast as the speed of computers is progressing, i.e., exponentially.

    I don't give a crap if language xxxxxxx is more efficient, more hardcore, etc. You know why?

    Because I don't want to spend a year writing an application in C for efficiency and find out at the end that for a mere $1,000 I could have written the same thing in Python in a month and just bought a faster computer 11 months later.

    YOUR time is linear, while the computer's is exponential. You'd be a fool to not take advantage of that and, frankly, type safety, efficiency, platform independence, programming style, power, etc. etc. can all go to hell. Just give me a beautiful language.
  • hands down, if your programming language doesn't have a GOTO statement, it is a miserable failure
  • by sirwired ( 27582 ) on Thursday May 29, 2008 @01:45PM (#23589143)
    I am completely confused as to how the author can even ask the question "Is COBOL a success?"

    Is COBOL old? Certainly.
    Is COBOL outdated? Yes.
    Has COBOL since been replaced by better languages? Yep.
    Would you be insane to start a new, large, application from scratch using COBOL? Of course.

    But "Is COBOL a success?" Without doubt, yes. Countless millions (perhaps) billions of lines of production COBOL code are still in use. It is still the core behind many of the applications that run our day-to-day lives. These applications have been running for decades with downtime records that would put an average "Web 2.0" app to shame.

    Certainly, IBM deserves a lot of credit for this, maintaining pure 100% backward compatibility for those apps for the last forty years or so, but some credit is due to the language itself.

    SirWired

THEGODDESSOFTHENETHASTWISTINGFINGERSANDHERVOICEISLIKEAJAVELININTHENIGHTDUDE

Working...