Hacker News new | ask | show | jobs
by galois198 4955 days ago
I do wonder why such a powerful language such as Lisp has such a small community and number of libraries. There may exist some trade off between the level abstraction and number of users for languages. You may have to 'hang around' long enough before the penny drops and you're a proper Lisper that can use the language productively. What other languages have for them, in my small experience at least, is that you can grasp all the essentials and get a general feel for the language very early on- allowing you to 'hit the ground running'. With Lisp, it takes a while (I started learning a few months ago) to grasp concepts such as macros, closures, and continuations, which really give Lisp its power, and then effectively implement them on the fly. A few bloggers out there write about the 'moment of clarity' that they get once they understand Lisp macros, etc.
2 comments

There was an article posted here a while ago that made the case that Lisp is so powerful that it makes it feasible to do much more yourself rather than relying on libraries, and thus it attracts a higher level of hacker that wants to do things their own way and is more intolerant of compromises made in the name of standardization. Sort of the opposite of the lowest common denominator approach of successful enterprise languages like Java. The failure to thrive of Common Lisp is strong evidence of the worse-is-better phenomenon.
I would say this is also highly driven by non-hackers. Many schools are nothing more than Java certification shops and many companies select technologies pushed through salespeople.

I'm fairly sure languages such as Lisp and SmallTalk would be much more widespread today if the industry wasn't told what to use by clueless people driven by profits.

Interestingly, looking within the Lisp hacker community, individual hackers seem to be doing quite well. It seems as though the language is geared towards empowering the individual. Even though Lisp is hard to learn, once you 'get it' the pay-off seems to be rather large.
Couldn't agree more on that one. When given a task, people who take programming just as a job will look for a open source project to hack around and taylor it to do a job, instead of doing the hard implementation by themselves.
Proportional to its number of users, Common Lisp probably has more libraries than any other language in history. The problem is described in the article: all of the libraries are half-baked "trivial" implementations that cover the author's use case. Very few, if any, CL libraries are continuously maintained. Even fewer have usable documentation. Fewer still are feature complete.

Check out the list of EIGHT GTK+ bindings for Common Lisp: http://www.cliki.net/GTK%20binding

And yet, the last time I attempted to write a trivial GUI application using GTK and CL, I could not find a single usable library. I tried four and they were all unusably broken on my platform. (This was some years ago. Clearly at least four more implementations have come around since then.)

There has been a call from within the Common Lisp community to work toward consolidating libraries. http://fare.livejournal.com/169346.html

I think this is a step in the right direction. If the XKCD comic is true that every generation produces a handful of lisp hackers, I hope this is the generation that looks to Quicklisp as a foundation to build a modern, consolidated set of batteries.