vote up -8 vote down star

Earlier I made the argument that general purpose dynamic languages such as Ruby,Python were not as good as they are made out to be. It is not uncommon to hear claims that they are much more (even 10x more) productive than languages such as Java & C#, but it seems to me that at the very least those claims should be qualified with which task the productivity pertains. Central to the case is the seeming lack of impressive programs written in one of these languages.

So excluding web frameworks, what is the single most impressive piece of software written in one of these languages?

edit: Just to reemphasise, embedded javascript is not the subject of the question. Really python, and ruby are. Gmail and google maps could only be written in javascript, as they are embedded in the browser. Essentially the question is which successful and impressive IDE, game, utility... etc. was written in python or ruby. Choose one or two, and give a description about why they are good/impressive.

edit2: Sorry, I forgot perl. Though nobody can claim that perl does not get its fair share of criticism.

flag

58% accept rate
Oh,you are trying to anger the dynamic language gods aren't you? – BobbyShaftoe Jan 11 at 19:51
Why isn't this tagged [argumentative]? – S.Lott Jan 11 at 19:52
Time was, this would have been closed already as a blatant troll attempt, and we wouldn't have needed an [argumentative] tag. – Shog9 Jan 11 at 20:05
Sorry, I am new to stackoverflow, so I do not know which specific tags to give it, however it is a valid observation,criticism and genuine curiosity. Just because things are popular does not mean they should be above criticism. – mike g Jan 11 at 20:07
@mike, your first link (the "impressive software" poll) has 5 of the top 10 voted answers written wholly or partially in a dynamic language. Since you linked to it, i have to assume you read it and are just trying to stir up folks or generate rep from controversy. This isn't a message board. – Shog9 Jan 11 at 20:10
show 22 more comments

closed as subjective and argumentative by Martin York Jan 11 at 20:53

14 Answers

vote up 6 vote down check

Frets On Fire is written in python.

link|flag
vote up 5 vote down
  • Mercurial is written in Python, and is a pretty cool distributed version control system.
  • The Twisted framework, also written in Python, is pretty bad-ass.
  • The original BitTorrent client (written in Python again!) was pretty awesome, for its time. (There are better BitTorrent clients now, of course.)
link|flag
vote up 0 vote down

I hate php but most of the parts of facebook and yahoo is written in php :).

link|flag
vote up 1 vote down

Python: Reddit, Plone

Ruby: Basecamp

link|flag
vote up 0 vote down

Mindmeister, Ruby on Rails / Javascript. (http://www.mindmeister.com)

link|flag
vote up 1 vote down

It sounds like you probably meant dynamic scripting language, but since you didn't qualify, how about almost any Mac OSX application? Objective C is dynamic.

link|flag
Pedant! Not an expert, so I won't argue the specifics of Objective-C (though I believe it has static typing as well). Really our systems of categorisation are imperfect, so in general you do need to take things in context. Ok, so maybe I should have written scripting ... – mike g Jan 11 at 20:24
vote up 0 vote down

Definitely lively, written in JavaScript and SVG.

link|flag
vote up 2 vote down

PyCogent is mostly Python and provides the back end for many heavy weight and computationally intensive bioinformatics applications.

link|flag
vote up 2 vote down

Yahoo web store (formerly viaweb) is pretty impressive and is written in Lisp.

link|flag
According to paulgraham.com/avg.html, the page designers were written in Lisp, but the ordering system was written in C and Perl. When Yahoo purchased Viaweb in 1999, they began converting the code, and I think by 2003 almost all of the original Lisp was replaced with C++. – Juliet Jan 11 at 20:33
Good point. I should ask one of the viaweb founders if converting to C++ was eventually viewed as a mistake. – Norman Ramsey Jan 11 at 20:53
vote up 4 vote down

If you use Debian, most of the OS management tools are written in Perl. Not sexy, but used by millions of people every day.

Emacs is written in Emacs Lisp, a dynamic language.

(There are also lots of Common Lisp applications -- Stumpwm, Swank, Maxima, etc.)

FWIW, I don't use any C++, Java, or .NET applications on my desktop. Everything is C, Haskell, Lisp, or Perl. So while they are certainly useful and popular languages, it is easy to not use apps written in them. (Note that I am not counting web apps here. Although a few are Java and .Net, most are Perl, PHP, Python, or Ruby.)

link|flag
+1: Also Red Hat's management stuff is mostly Python. – S.Lott Jan 11 at 20:22
What web browser are you using? Gecko, Webkit, Opera, and IE are all C++. – Anonymous Coward Mar 21 at 20:33
Firefox is mostly written in Javascript. Sure, the rendering engine is written in C++, but that's only because it's written in C++. (the C++ version from 10 years ago works fine, so there is no reason to change it. The parts of firefox that need to be changed or extended are Javascript, though.) – jrockway Mar 27 at 7:08
vote up 2 vote down

TinyP2P, a 15-line working p2p client written in python to prove how hard it is to regulate p2p. I could only find a link to the annotated version, filled with tons of comments, but you can strip them out and end up with the original 15-line program.

link|flag
Here's original: web.archive.org/web/20071022033519/… – J.F. Sebastian Jan 11 at 20:27
vote up 6 vote down

Frozen Bubble. It's a Perl script.

link|flag
vote up 5 vote down

Blender looks awesome although I'm not sure it's all made in python and here's a list of python software

Eve online is a MMO made in python as well

link|flag
yeah a lot of Blender is written in C – Jason Miesionczek Jan 11 at 20:21
vote up 4 vote down

Most popular web software will fit this bill.

Youtube, gmail, yahoo, etc.

Also firebug is written in a dynamic language, and is on the top of that list.

link|flag
I thought gmail was written with GTK. – PEZ Jan 11 at 19:48
GTK is a library of graphic widgets. Callable from a variety of languages. gtk.org – S.Lott Jan 11 at 19:51
also, gmail is written in Java, which google then compiles to javascript for use on the web. – Claudiu Jan 11 at 20:04
Also, the server side of GMAIL, YouTube and what-not are just as important as the Javascript front-end. – S.Lott Jan 11 at 20:17
Do you mean GWT, not GTK? – Alabaster Codify Jan 11 at 22:02

Not the answer you're looking for? Browse other questions tagged or ask your own question.