LWN: Comments on "Paul Graham on great hackers" https://lwn.net/Articles/95688/ This is a special feed containing comments posted to the individual LWN article titled "Paul Graham on great hackers". en-us Thu, 30 Oct 2025 11:24:42 +0000 Thu, 30 Oct 2025 11:24:42 +0000 https://www.rssboard.org/rss-specification lwn@lwn.net Java not that bad... https://lwn.net/Articles/97065/ https://lwn.net/Articles/97065/ nix What RMS doesn't say in there is that this is more a `VM with bad FFI trap' than anything else. <p> There is an `Emacs trap' in <i>exactly</i> the same way (except that it's free software, so you could add an FFI to it if you wanted to: the Emacs trap's sides are not greased). Sat, 07 Aug 2004 18:16:55 +0000 Paul Graham on great hackers https://lwn.net/Articles/96792/ https://lwn.net/Articles/96792/ rwmj For balance: <p> <a href="http://software.ericsink.com/entries/No_Great_Hackers.html">http://software.ericsink.com/entries/No_Great_Hackers.html</a> Thu, 05 Aug 2004 14:25:00 +0000 Java not that bad... https://lwn.net/Articles/96716/ https://lwn.net/Articles/96716/ halla I rather like java -- I don't have to worry about peformance hits by <br> making things virtual for every method, I have packages, don't have header <br> files, explicit interfaces, garbage collection, a quite clear syntax and <br> so on. All nice to have. And native compilation and relatively easy <br> linking to existing C/C++ code. <br> <br> On the other hand, I find I don't care all that much, in the end, whether <br> I do Qt programming in Java or in C++. The C++ annoyances are something to <br> shrug off and then continue coding. The Java advantages are not compelling <br> enough to start actually using it in real projects like Krita, even though <br> gcj, classpath and qtjava are just about mature enough for that. <br> Thu, 05 Aug 2004 09:34:58 +0000 Java not that bad... https://lwn.net/Articles/95916/ https://lwn.net/Articles/95916/ marduk I don't think he was criticizing the langauge. I think he was merely contrasting hackers' enthusiasm of it versus others.<br> Fri, 30 Jul 2004 22:38:08 +0000 Java not that bad... https://lwn.net/Articles/95905/ https://lwn.net/Articles/95905/ davidw &quot;I hardly have ClassCastExceptions during development, because I make sure to adapt my coding to the limitations of the language.&quot;<p>Which is exactly Paul Graham's point. Fri, 30 Jul 2004 20:44:23 +0000 Java not that bad... https://lwn.net/Articles/95867/ https://lwn.net/Articles/95867/ lacostej <i> Those syntax checks would be useful if Java would have templates. But it doesn't have (currently) </i> <p> You have generic coming with Java 5.0 (aka 1.5). <p> <i> so you have to cast a lot and even though there are static type checks you still end up with lots of ClassCastExceptions during runtime - not much of an improvement over Python or Perl. </i> <p> You can dynamically check the type of your class before casting (instanceof). <p> Those problems are developer errors anyway, and you can always use wrapper objects to enforce use of certain types if you need. <p> I hardly have ClassCastExceptions during development, because I make sure to adapt my coding to the limitations of the language. <p> <i> Really? It takes ages to start the Java VM and it starts with occupying 60MB of RAM - and the program hasn't done anything yet. </i> <p> It depends of the program and its uses. On my machine i start tomcat in less than 5 seconds. I don't consider that to be a problem. Especially as I don't start it often. <p> I don't mean to preach Java. There are things I don't like with it. It's far from perfect. It's history has been strange: targeted to program appliances (e.g. washing machines, ...) then born on the web (applets), made a (unsuccesful) approach with desktop programs, with now a focus on server side. It's "Learn once, Fit everywhere" is too monopolistic, and it's lack of support with external techno is s*cking big time (COM integration anyone?), and deployment problems (ClassLoader issues) are a pain. <p> But it's a nice tool, and it solves some problems very well... Fri, 30 Jul 2004 16:03:17 +0000 Java not that bad... https://lwn.net/Articles/95852/ https://lwn.net/Articles/95852/ NAR <i>Once I switched a project from Python to Java: Better syntax, precompilation and therefore syntax check before it is run</I> <P> Those syntax checks would be useful if Java would have templates. But it doesn't have (currently) so you have to cast a lot and even though there are static type checks you still end up with lots of ClassCastExceptions during runtime - not much of an improvement over Python or Perl. <P> <i>faster execution</i> <P> Really? It takes ages to start the Java VM and it starts with occupying 60MB of RAM - and the program hasn't done anything yet. <P> <CENTER>Bye,NAR</CENTER> Fri, 30 Jul 2004 15:33:35 +0000 Java not that bad... https://lwn.net/Articles/95855/ https://lwn.net/Articles/95855/ mikesalib You know, Python will catch syntax errors at compilation. There are other errors (like mistyping a variable name) that C compilers do catch statically that Python only catches at runtime, but those aren't syntex errors. Looking back at all the bugs I've introduced in all the code I've ever written, none of the ones that mattered would have been caught by a C compiler. Perhaps your experience has been very different. Of course, much of my code had functional tests associated with it, which makes it a lot easier to quickly shake out the silly errors that C compilers catch but Python doesn't.<p>&gt; I personally do *not* like python at all. Might be because I think<br>&gt; interpreted scripting languages to be always a bad choice for huge<br>&gt; projects - while they are second to nothing for smaller tasks!<p>Um, why do you &quot;*not* like python at all&quot;? I don't think its because Python is an &quot;interpreted scripting language&quot; because:<p>1. There are no Python implementations that are interpreted; they all compile Python code into code for a Virtual Machine, just like the vast majority of Java implementations. The VM code is &quot;interpreted&quot; in a sense, but exactly the same thing is true of Java code.<p>2. I have never seen an objective definition of the term &quot;scripting language&quot; and would be delighted if you could provide one; the closest I can come up with is that scripting languages have VM implementations that start up quickly enough to make running small programs from the command line feasible. That criteria includes Python and excludes Java, but I doubt its what you had in mind. In any event, having a fast VM hardly seems like a great deficiency.<p>I don't understand the line you're trying to draw between Python and Java at all; perhaps what bothers you is that one has static typing while the other has dynamic typing? To be fair, I don't think one can say that Java's type system is static given that it allows downcasting to Object and back... Fri, 30 Jul 2004 14:58:55 +0000 Java not that bad... https://lwn.net/Articles/95837/ https://lwn.net/Articles/95837/ coriordan <p>Greasing the sides of the pit to prevent escape is all part of <a href="http://www.gnu.org/philosophy/java-trap.html">the java trap</a>.</p> <p>&quot;<i>If you make decisions about software -- or anything -- based solely on short-term cost and benefit, someone with a longer view can easily manoeuver you into a trap from which it is hard to escape.</i>&quot; quote by same author, different source.</p> Fri, 30 Jul 2004 11:47:06 +0000 Paul Graham on great hackers - Microsoft https://lwn.net/Articles/95804/ https://lwn.net/Articles/95804/ alland &gt;What great things have they hacked? AFAIK they only bought software. MS-DOS was bought, not created by them, for example.<br>&gt;<br>&gt;Other than that, I don't consider &quot;the letter to the hobbyist&quot; anything hacker-like. Hackers have certain ethics, Bill Gates doesn't have those. <p>Billy boy created a BASIC implementation that ran on CP/M, along with M80/L80 assembler/linker, and F80 FORTRAN.<p>None of these were any better than their latest products wrt bugs and &quot;features&quot;. I was able to replace M80/L80 with a product from SLR Systems that was an order of magnitude faster, and did virtual linking to get a program that would fill 62 of the 64K memory space.<br> Fri, 30 Jul 2004 11:02:29 +0000 Java not that bad... https://lwn.net/Articles/95803/ https://lwn.net/Articles/95803/ davidw No, java certainly has its place, but I deeply resent having it shoved down my throat by a billion dollar marketing machine.<p>I also don't like the fact that it doesn't want to play with anything that's not java. Fri, 30 Jul 2004 10:38:14 +0000 Java not that bad... https://lwn.net/Articles/95802/ https://lwn.net/Articles/95802/ dh No, you are not. <br> <br>Once I switched a project from Python to Java: Better syntax, <br>precompilation and therefore syntax check before it is run, faster <br>execution, generally enhanced &quot;nicelyness&quot;. Ok, it was back in 1997, but I <br>never regretted that step. The Java incarnation of the project is up and <br>healty until today - and will be for a long time (I hope). <br> <br>I personally do *not* like python at all. Might be because I think <br>interpreted scripting languages to be always a bad choice for huge <br>projects - while they are second to nothing for smaller tasks! <br> <br>Best regards, <br>Dirk Fri, 30 Jul 2004 10:16:53 +0000 Paul Graham on great hackers - Microsoft https://lwn.net/Articles/95798/ https://lwn.net/Articles/95798/ jeroen <blockquote><i>To some extent, in the old days, Microsoft probably did have a strong culture of good hackers, though with a different emphasis. Now they've just got big and clumsy, as most institutions do eventually.</i></blockquote> <p>What great things have they hacked? AFAIK they only bought software. MS-DOS was bought, not created by them, for example.</p> <p>Other than that, I don't consider "the letter to the hobbyist" anything hacker-like. Hackers have certain ethics, Bill Gates doesn't have those. </p> Fri, 30 Jul 2004 09:04:17 +0000 Java not that bad... https://lwn.net/Articles/95796/ https://lwn.net/Articles/95796/ lacostej I agree with many points of the article, but am I the only one to think that some nice things can be achieved using Java? Or are the other ones afraid to speak, given the consensus in the first comments? :) Fri, 30 Jul 2004 08:51:52 +0000 Paul Graham on great hackers https://lwn.net/Articles/95795/ https://lwn.net/Articles/95795/ davidw Tcl is far from dead, but it has an image problem. The technology is very, very solid stuff (large portions of the Tcl core are very nicely written C code) with a great idea behind it (a small repurposeable and extremely flexible scripting language). The problem is that there are negative perceptions about it in the open source world, and as a consequence, it has little &quot;buzz&quot;. While this in and of itself doesn't matter, what matters a great deal is attracting new blood and people with innovative ideas to your platform, because of the network effects.<p>Image problems also matter to those who sell services based on something. It's pretty easy to find work doing Java (even if, as Mr. Graham puts so well, it's crappy work), but much harder to find Tcl jobs, or even sell products based on it. Word on the street is that you too have caught flack from customers who would prefer to see BitKeeper's GUI in Java instead of Tk, even though Java is no more native looking than Tk (as opposed to something like wxWindows). Fri, 30 Jul 2004 08:30:48 +0000 Paul Graham on great hackers https://lwn.net/Articles/95794/ https://lwn.net/Articles/95794/ davidw Sure, and there will be Perl jobs out there for a long time, lots of new projects written in Perl, and many happy Perl users in general.<p>That said, I was talking about what I feel the trend is, which is away from Perl, towards Python, and in the web world, towards Java and PHP. Fri, 30 Jul 2004 08:20:54 +0000 Paul Graham on great hackers - Microsoft https://lwn.net/Articles/95792/ https://lwn.net/Articles/95792/ piman &gt; There are no more big fortunes to be made in proprietary software.<p>Until someone like Gates shows up and shows people how to do it again. Say, for example, Google... Fri, 30 Jul 2004 08:07:13 +0000 Paul Graham on great hackers https://lwn.net/Articles/95789/ https://lwn.net/Articles/95789/ Cato Last time I looked, there were a lot more Perl than Python jobs advertised on the newsgroups. I think Perl is still far more popular than Python overall, with Python probably more popular amongst open source developers and perhaps Linux users writing new code.<br> Fri, 30 Jul 2004 07:19:17 +0000 Paul Graham on great hackers https://lwn.net/Articles/95775/ https://lwn.net/Articles/95775/ lm &gt; And meanwhile, here I am with Tcl...<p>There are some efforts ongoing to try and fix the tcl/tk problem. Take a<br>look at http://tktable.sourceforge.net/tile/ and see if you like that <br>better. It ought to breath some life into tcl/tk as a toolkit.<p>We use tcl/tk at BitMover (and we're actively looking for more developers<br>who are local to the SF Bay Area, hint, hint) and we're looking at ways of<br>evolving the tcl language to make it more approachable to the average<br>programmer. We're looking at adding per object (command) anonymous <br>arrays (i.e., every object has an $widget array get foo and we'd like to<br>add a -&gt; operator so you can do $widget-&gt;foo to mean $widget array get foo).<br>Other ideas include C style scoping rules so you can do<p>scope {<br> proc I_am_a_global proc {<br> }<br> <br> private proc I_am_visiable_only_in_this_scope {<br> }<br>}<p>perl style regular expression so you can do<p> if ($var =~ /*.o$/) {<br> }<p> $var =~ s/junk/JUNK/<p>and we're wrestling with some sort of reasonable string/list indexing <br>that is shorter than <p> set elem [list index $list 5]<p>If we can fix the parser to support this I'd love to be able to do<p> set elem $list[5]<p>(we've toyed with $list&lt;5&gt; which would be easier to implement but looks <br>pretty weird).<p>Anyway, tcl/tk isn't dead and we're working hard on making sure that it isn't. If you are interested in this sort of thing send me mail, I'm lm &lt;at&gt; bitmover.com.<p><p> Fri, 30 Jul 2004 01:51:20 +0000 Paul Graham on great hackers - Microsoft https://lwn.net/Articles/95776/ https://lwn.net/Articles/95776/ JoeBuck <p> Microsoft's success depended on what is in hindsight a huge error by IBM: IBM did not insist on owning the OS for the IBM PC. If they had so insisted, Microsoft would have collected a one-time payment and consulting fees or else would have lost the business to someone else. Microsoft would then have been just one application developer among many for the PC, with no privileged position. That's what Paul Graham means when he writes: <i>But VCs are mistaken to look for the next Microsoft, because no startup can be the next Microsoft unless some other company is prepared to bend over at just the right moment and be the next IBM.</i> Fri, 30 Jul 2004 00:50:14 +0000 small correction https://lwn.net/Articles/95777/ https://lwn.net/Articles/95777/ smc &gt; This would seem to be the same Paul Graham who wrote <br>&gt; &quot;A Plan for Spam&quot; -- the essay which first proposed <br>&gt; the use of Bayesian analysis for identifying (probable) <br>&gt; spam.<p>He was not the first to suggest Bayesian methods for spam filtering. <p>In one of his essays, he mentions: &quot;the first papers about Bayesian spam filtering per se seem to have been two given at the same conference in 1998, one by Pantel and Lin, and another by a group from Microsoft Research.&quot; Fri, 30 Jul 2004 00:49:41 +0000 Paul Graham on great hackers - Microsoft https://lwn.net/Articles/95770/ https://lwn.net/Articles/95770/ newren <p> Microsoft absolutely and definitely came to their fortune by luck. Granted, it wasn't *just* luck--they've proven time and again that they know how to take great advantage of just about any situation--but nonetheless the fact that certain opportunities were even available at all is nothing short of mind-boggling. </p> <p> Read <a href="http://www.vcnet.com/bms/features/serendipities.html"> http://www.vcnet.com/bms/features/serendipities.html</a> for info about just how lucky they were. (Note that I don't see the last five points in that web page as being as big as they make them out to be, even though they still are important. But point one all by itself is enough to understand that Microsoft effectively won perhaps the largest lottery in history.) </p> Thu, 29 Jul 2004 23:55:40 +0000 Paul Graham on great hackers - Microsoft https://lwn.net/Articles/95757/ https://lwn.net/Articles/95757/ mbp He's right that it's not repeatedly. I humbly submit that he's wrong that it was just a lucky break: it was a pretty good insight, though maybe Gates was just lucky to be the first one to see it and ruthlessly exploit it.<p>One of Microsoft's insights was that since software has no marginal reproduction cost, if you can charge a per-unit price you can make a lot of money. One of Open source's insights is that since the marginal cost is zero, a free market tends to drive the price down to zero, and it's good to look for other models than charging per copy. Thu, 29 Jul 2004 21:59:03 +0000 Paul Graham on great hackers - Microsoft https://lwn.net/Articles/95753/ https://lwn.net/Articles/95753/ tjc I think he's probably right -- Microsoft's success is <i>not</i> reproducible.<p> Bill Gates saw the enormous potential for customer lock-in that proprietary software provides before anyone else did. Or at least he was the first one to exploit it successfully. I really don't think he just walked into it by luck, although he may have found it suprising how far he could take it.<p> Looking back it's very unlikely that anyone will be able to exploit that same opportunity again. There are no more big fortunes to be made in proprietary software. Thu, 29 Jul 2004 21:44:21 +0000 Paul Graham on great hackers - Microsoft https://lwn.net/Articles/95742/ https://lwn.net/Articles/95742/ mbp I like the essay, but that particular sentence smells a bit like &quot;consider the real world as a special case&quot;. <p>To some extent, in the old days, Microsoft probably did have a strong culture of good hackers, though with a different emphasis. Now they've just got big and clumsy, as most institutions do eventually. Thu, 29 Jul 2004 20:36:03 +0000 Paul Graham on great hackers https://lwn.net/Articles/95739/ https://lwn.net/Articles/95739/ davidw I don't think Perl is growing as quickly as it used to be. In the late 90'ies, it seems, it was probably *the* open source programming language, after C. Remember when mod_perl was a happening web technology? I think Java and PHP blew it out of the water (the web).<p>Of course it's still useful, and I really like Paul's comments, but I think Perl is not really the standard to judge by any more. The most popular language right now is probably Python.<p>But there is a huge amount of pressure to use Java for everything. They have managed to get a brand that open source languages don't have, and they have a ton of installed code at this point. Libs, courses, books, and so on. Of course, Paul's right, it tends to be a language that tries to keep stupid people from making mistakes in a large group, rather than helping out the clever ones.<p>And meanwhile, here I am with Tcl... which I still think is a brilliant concept as far as a language. Don't tell me marketing doesn't matter, because bad marketing has hurt Tcl a lot. Thu, 29 Jul 2004 20:05:55 +0000 Paul Graham on great hackers https://lwn.net/Articles/95737/ https://lwn.net/Articles/95737/ allesfresser Out of favor/fashion with who? People that believe banner ads? There's plenty of Perl and Python work being done--it just doesn't have a marketing department attached (and therefore probably gets more done with less hassle.) Thu, 29 Jul 2004 19:18:00 +0000 Paul Graham on great hackers - Microsoft https://lwn.net/Articles/95727/ https://lwn.net/Articles/95727/ tjc I found this comment interesting:<p> <font color=#7f5f3f>It's a mistake to use Microsoft as a model, because their whole culture derives from that one lucky break. Microsoft is a bad data point.</font> Thu, 29 Jul 2004 18:08:40 +0000 ITA https://lwn.net/Articles/95719/ https://lwn.net/Articles/95719/ ncm Probably he mentioned ITA just because it's about the only visible company besides Yahoo Stores that uses Lisp in production. (It's a funny sort of Lisp that goes to great lengths to avoid triggering a GC. ITA also uses a lot of C++ and Python.) Certainly ITA will never issue shares worth $36 billion. <p> They do have good <a href="http://www.itasoftware.com/careers/programmers.php">coding puzzles</a>, though. Tell them I sent you. Thu, 29 Jul 2004 17:36:41 +0000 Re: Paul Graham on great hackers https://lwn.net/Articles/95714/ https://lwn.net/Articles/95714/ ken He only wanted a bigger audience than a fraction of the top 1% hackers that use lisp. Or perhaps you thought he's more of an animal lover than a bean grinder. Thu, 29 Jul 2004 17:07:37 +0000 Re: Paul Graham on great hackers https://lwn.net/Articles/95708/ https://lwn.net/Articles/95708/ allesfresser Yes, the essay is quite good. :-) Thu, 29 Jul 2004 16:30:35 +0000 Paul Graham on great hackers https://lwn.net/Articles/95704/ https://lwn.net/Articles/95704/ AnswerGuy This would seem to be the same Paul Graham who wrote &quot;A Plan for Spam&quot; -- the essay which first proposed the use of Bayesian analysis for identifying (probable) spam.<p>Overall I like his thinking --- but I do wonder at the audacity. I tend to agree that Java is the new Cobol; a language primarily useful for drone work while Python is a language for hackers --- expressive, powerful and elegant.<br>I could drone on about the criteria I'm using for each of those terms, but I shan't<p>JimD Thu, 29 Jul 2004 16:28:35 +0000 Re: Paul Graham on great hackers https://lwn.net/Articles/95703/ https://lwn.net/Articles/95703/ larryr <blockquote><em>the fact that good hackers prefer Python to Java should tell you something about the relative merits of those languages</em></blockquote> <p> The fact that the author posits good hackers prefer Python to Java should tell you something about the relative merit of the essay.</p> <p> Larry </p> Thu, 29 Jul 2004 16:23:16 +0000 Paul Graham on great hackers https://lwn.net/Articles/95700/ https://lwn.net/Articles/95700/ lothar I really enjoyed this great artice. Like someone writes about my life - <br>frightening :-) <br>I certainly will try to get a hand on the book. <br> <br>Lothar Thu, 29 Jul 2004 16:02:30 +0000 Paul Graham on great hackers https://lwn.net/Articles/95695/ https://lwn.net/Articles/95695/ davidw What a great article... I don't like Java, and Paul manages in some ways to put his finger on that feeling of &quot;ick&quot; that it gives me.<p>I don't think Perl is really that healthy right now... I think it's going out of favor/fashion, but then so again so is everything else that is not part of the Java/.NET juggernaut. Thu, 29 Jul 2004 15:18:44 +0000