69
votes
25answers
5k views
What does Ruby have that Python doesn’t, and vice versa?
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, …
26
votes
30answers
4k views
Rails or Django? (or something else?)
I'm interested in learning a web framework. The two big ones, as I gather, are Rails and Django. Which one is better/faster? Is one better designed or more logically consistent than the other? Is …
25
votes
21answers
5k views
Why is Lua considered a game language?
I have been learning about Lua in the past month and I'm absolutely in love with the language, but all I see around that is built with lua are games. I mean, the syntax is very simple, there is no …
24
votes
16answers
4k views
Why is Ruby more suitable for Rails than Python?
Python and Ruby are usually considered to be close cousins (though with quite different historical baggage) with similar expressiveness and power. But some have argued that the immense success of the …
22
votes
27answers
5k views
Python Vs. Ruby for Metaprogramming
I'm currently primarily a D programmer and am looking to add another language to my toolbox, preferably one that supports the metaprogramming hacks that just can't be done in a statically compiled …
16
votes
13answers
2k views
Big Web 2.0 sites written in Python?
Hulu, Twitter, Techcrunch, etc are written in Ruby.
Yahoo, Facebook, and tons of big social networks are written in PHP.
But what are some big top-name enterprise sites written in Python?
I am going …
15
votes
13answers
954 views
Best Practices for Architecting Large Systems in a Dynamic Language
From my experiences building non-trivial applications in Java and C#, I know that using good modular design based on known patterns and "coding to interfaces" are keys to success.
What are the …
13
votes
32answers
1k views
IT guy picking up programming - C#, Python, or Ruby [closed]
Hi There (this turned out kinda long but i appreciate you reading),
I've been in IT for about 10 yrs. I've had exposure in everything from rolling out server environments, to routing, to security. …
13
votes
9answers
1k views
Elegant structured text file parsing
I need to parse a transcript of a live chat conversation. My first thought on seeing the file was to throw regular expressions at the problem but I was wondering what other approaches people have …
12
votes
5answers
673 views
Ruby / Perl / Python / etc. tutorial site - only code
A few weeks ago I've run into a site that had tutorials for many languages including Perl, Ruby, Python. The concept was that it basically showed you the code itself of the given language and taught …
12
votes
35answers
3k views
Why learn Perl, Python, Ruby if the company is using C++, C# or Java as the application language?
I wonder why would a C++, C#, Java developer want to learn a dynamic language?
Assuming the company won't switch its main development language from C++/C#/Java to a dynamic one what use is there for …
11
votes
7answers
682 views
How do you make a case for Django [or Ruby on Rails] to non-technical clients.
Businessmen typically want a web application developed. They are aware of .net or J2EE by names, without much knowledge about either.
Altho' Rails and Django offer for a much better and faster …
11
votes
19answers
1k views
When would you use Infinity?
So in Ruby there is a trick to specify infinity:
1.0/0
=> Infinity
I believe in Python you can do something like this
float('inf')
These are just examples though, I'm sure most languages have …
11
votes
8answers
1k views
Can you monkey patch methods on core types in python?
Ruby can add methods to the Number class and other core types to get effects like:
1.should_equal(1)
But it seems like python cannot do this. Is this true? And if so, why? Does it have something …
10
votes
12answers
643 views
Why is (python|ruby) interpreted?
What are the technical reasons why languages like Python and Ruby are interpreted (out of the box) instead of compiled? It seems to me like it should not be too hard for people knowledgeable in this …
