Tagged Questions
259
votes
36answers
27k views
What does Ruby have that Python doesn't, and vice versa? [closed]
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, ...
169
votes
36answers
25k views
Rails or Django? (or something else?) [closed]
This post is from the early days of Stack Overflow, and while we recognize its historical significance, we also recognize that the current community of users will likely close similar posts. Please ...
125
votes
9answers
40k views
Why are scripting languages (e.g. Perl, Python, Ruby) not suitable as shell languages?
What are the differences between shell languages like bash, zsh, fish and the scripting languages above that makes them more suitable for the shell?
When using the command line the shell languages ...
89
votes
20answers
20k views
Why don't they implement Python and Ruby in the web browsers?
I wonder, why don't they implement other languages like Python and Ruby in the web browsers?
Don't they fit as client programming languages or did it just happen to be that JavaScript was the first ...
82
votes
28answers
24k views
Why is Lua considered a game language? [closed]
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, ...
63
votes
32answers
22k 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 ...
57
votes
15answers
8k 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 ...
46
votes
5answers
6k views
Learning Python from Ruby; Differences and Similarities
I know Ruby very well. I believe that I may need to learn Python presently. For those who know both, what concepts are similar between the two, and what are different?
I'm looking for a list similar ...
39
votes
13answers
5k views
Which key value store is the most promising/stable?
I'm looking to start using a key/value store for some side projects (mostly as a learning experience), but so many have popped up in the recent past that I've got no idea where to begin. Just listing ...
29
votes
20answers
15k views
Should I learn Ruby or Python? [closed]
I'm a C(++)/C# programmer and I would like to learn a scripting language to create small tools (text processing, build scripts, a little web development, etc). I would like to learn either Ruby or ...
28
votes
35answers
7k 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 ...
26
votes
6answers
3k views
What blocks Ruby, Python to get Javascript V8 speed?
Are there any Ruby / Python features that are blocking implementation of optimizations (e.g. inline caching) V8 engine has?
Python is co-developed by Google guys so it shouldn't be blocked by ...
26
votes
18answers
14k views
Best PHP/Ruby/Python e-commerce solution [closed]
I'm looking for an easy-to-skin and customizable e-commerce package.
I've been reading good reviews about Magento, but it seems to have problems with performance. I've tried osCommerce before and ...
26
votes
13answers
2k 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 ...
25
votes
4answers
1k views
Should one minify server code when it's in production? [closed]
When it comes to the frontend code you always minify it (remove white spaces, comments etc) in production.
Should one do the same with server code? I usually have a lot of comments in my server ...
25
votes
22answers
3k views
Find the longest common starting substring in a set of strings
This is a challenge to come up with the most elegant JavaScript, Ruby or other solution to a relatively trivial problem.
This problem is a more specific case of the Longest common substring problem. ...
24
votes
2answers
3k views
Ruby equivalent of virtualenv?
Is there something similar to the Python utility virtualenv?
Basically it allows you to install Python packages into a sandboxed environment, so easy_install django doesn't go in your system-wide ...
22
votes
10answers
599 views
Catching typos in scripting languages
If your scripting language of choice doesn't have something like Perl's strict mode, how are you catching typos? Are you unit testing everything? Every constructor, every method? Is this the only way ...
18
votes
9answers
3k 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 ...
17
votes
4answers
2k views
Ruby HAML with Django?
Ok, so I really love HAML. Particularly, I love the integration with RedCloth and BlueCloth, so I can use Markdown and Textile intermixed with my HAML.
I also love Python and Django.
So, I would ...
17
votes
11answers
8k views
Parallel processing from a command queue on Linux (bash, python, ruby… whatever)
I have a list/queue of 200 commands that I need to run in a shell on a Linux server.
I only want to have a maximum of 10 processes running (from the queue) at once. Some processes will take a few ...
17
votes
21answers
7k 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 ...
17
votes
11answers
5k 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 ...
17
votes
4answers
4k views
How can I graph the Lines of Code history for git repo?
Basically I want to get the number of lines-of-code in the repository after each commit.
The only (really crappy) ways I have found is to use git filter-branch to run "wc -l *", and a script that run ...
16
votes
7answers
4k views
What are the biggest differences between Python and Ruby from a philosophical perspective
What are the key differences between the "python way" and the "ruby way"
15
votes
4answers
1k views
Why is equivalent Python code so much slower
can somebody explain why is the following trivial code (implementation of Euclid's algorithm to find greatest common denominator) about 3 times slower then equivalent code in Ruby ?
contents of ...
15
votes
19answers
13k views
Python vs Groovy vs Ruby? (based on criteria listed in question)
Considering the criteria listed below, which of Python, Groovy or Ruby would you use?
Criteria (Importance out of 10, 10 being most important)
Richness of API/libraries available (eg. maths, ...
14
votes
15answers
1k views
Bash scripting “common gotchas” for Python/Perl/Ruby programmers
Background:
I grew up on using Perl/Python/Ruby for sysadmin-type tasks and shell scripting. I always avoided Bash scripting whenever I needed anything programmer-ish, like functions, looping or ...
14
votes
2answers
2k views
`if __name__ == '__main__'` equivalent in Ruby
I am new to Ruby. I'm looking to import functions from a module that contains a tool I want to continue using separately. In Python I would simply do this:
def a():
...
def b():
...
if ...
14
votes
12answers
957 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 ...
14
votes
3answers
937 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 ...
13
votes
9answers
812 views
Web application admin generators
Since Symfony 1.x's admin generator, I found this kind of tool really useful to prototype applications, show something very quickly to customers etc.
Now for Symfony2, admin generator does not seems ...
13
votes
4answers
2k views
Is there any Ruby or Python interpreter for Lego Mindstorm?
I want to start coding in Python or Ruby. Since I own a Lego Midstorms kit I thought it would be nice to program against it. Are there any good translators / interpeters for the Mindstorms brick?
13
votes
7answers
1k 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 ...
12
votes
3answers
196 views
Personalizing Online Assignments for a Statistics Class
I teach undergraduate statistics, and am interested in administering personalized online assignments. I have already solved one portion of the puzzle, the generation of multiple version of a question ...
12
votes
7answers
7k views
Python or Ruby Interpreter on iOS
I found this application on the app store: iLuaBox
and I wondered if there was anything else like this for the iPhone without jailbreaking but instead for Python or Ruby?
Lua is probably similar for ...
12
votes
10answers
964 views
Which scripting language is better for embedding in multi-threaded C/C++ application
Considering the following requirementes:
Must be supported on Windows. Preferably works also on other platforms.
Must support multi threading. By that I mean that the engine can work in parallel ...
12
votes
3answers
647 views
What language is this program written in?
This looks like code in the C language, but I am not completely sure ...
# define v putchar
# define print(x) main(){v(4+v(v(52)-4));return 0;}/*
...
12
votes
9answers
784 views
How do you use scripting language (PHP, Python, etc) to improve your productivity?
I'm a Delphi developer on the Windows platform, recently read the PHP tutorial at W3CSchools, it looks interesting.
We all know scripting languages are very good at web site development, but I also ...
12
votes
12answers
2k views
Please advise on Ruby vs Python, for someone who likes LISP a lot
I am a C++ developer, slowly getting into web development. I like LISP a lot but don't like AllegroCL and web-frameworks available for LISP. I am looking for more freedom and ability to do cool hacks ...
12
votes
24answers
3k views
Which scripting language should I learn after Perl?
I have used Perl for many years now, mostly for doing all kinds of file parsing and system scripting jobs. Several newer scripting languages (python, ruby) are now available, that all in part tend to ...
12
votes
32answers
5k views
Text Editor For Linux (Besides Vi)?
Let me preface this question by saying I use TextMate on Mac OSX for my text needs and I am in love with it. Anything comparable on the Linux platform? I'll mostly use it for coding python/ruby.
...
11
votes
6answers
498 views
Is string interning really useful?
I was having a conversation about strings and various languages a while back, and the topic of string interning came up. Apparently Java and the .NET framework do this automatically with all strings, ...
11
votes
2answers
487 views
Anything like bpython for Ruby?
IRb is pretty plain compared to bpython, even when using wirble.
Is there any ruby equivalent of bpython?
11
votes
8answers
910 views
Scripting language for trading strategy development
I'm currently working on a component of a trading product that will allow a quant or strategy developer to write their own custom strategies. I obviously can't have them write these strategies in ...
11
votes
9answers
2k views
Ruby equivalent of Python's “dir”?
In Python we can "dir" a module, like this:
>>> import re
>>> dir(re)
And it lists all functions in the module. Is there a similar way to do this in Ruby?
11
votes
7answers
9k views
Parse HTML via XPath
In .Net, I found this great library, HtmlAgilityPack that allows you to easily parse non-well-formed HTML using XPath. I've used this for a couple years in my .Net sites, but I've had to settle for ...
11
votes
9answers
696 views
Linking languages
I asked a question earlier about which language to use for an AI prototype. The consensus seemed to be that if I want it to be fast, I need to use a language like Java or C++, but that Python / Perl / ...
10
votes
4answers
317 views
What programming language features are well suited for developing a live coding framework?
Ok real quick... before you down vote or vote to close this question... take a second and read the bold text. Also, I've re-stated the question so that it is less subjective. Keep in mind that is has ...
10
votes
2answers
253 views
Learning Ruby from Python; Differences and Similarities
Inspired by Learning Python from Ruby; Differences and Similarities.
I'm in the exact opposite boat - I'm pretty well-versed in Python, but I need to start learning Ruby soon (and Rails later, but ...