4
votes
4answers
212 views
+100
What are the advantages and disadvantages of the require vs. import methods of loading code?
Ruby uses require, Python uses import. They're substantially different models, and while I'm more used to the require model, I can see a few places where I think I like import more. I'm curious what …
8
votes
13answers
2k views
Best php/ruby/python e-commerce solution
I'm looking for an easy to skin and customize 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 found …
7
votes
6answers
266 views
Reasons for this disparity in execution speed?
I wrote a quick Python script to compare two files, each containing unordered hashes, in order to verify that both files are identical aside from order. Then I rewrote it in Ruby for educational …
-1
votes
2answers
64 views
python crypt.crypt in ruby?
hi i need this code in ruby I don't know how I write the crypt.crypt method in ruby, any ideas?
(I want to simulate the linux comand .htpasswd)
import random
import crypt
letters = …
0
votes
7answers
123 views
Objective reasons for using Python or Ruby for a new REST Web API
So this thread is definitely NOT a thread for why Python is better than Ruby or the inverse. Instead, this thread is for objective criticism on why you would pick one over the other to write a RESTful …
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, …
5
votes
5answers
459 views
What algorithm to use to solve this simple mathematical problem efficiently?
I am puzzled with the following simple problem:
Given positive integers b, c, m where (b < m) is True it is to find a positive integer e such that
(b**e % m == c) is True
where ** is …
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 …
8
votes
10answers
577 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 …
1
vote
21answers
892 views
Which language is most like PHP?
I am a PHP dev looking to pickup a new language, I have tried and failed on C++ several times (possibly for my overall lack of interest).
I've been hearing a lot about Python, and Ruby and my question …
0
votes
5answers
174 views
Perl to Python/Ruby code translator
I was asked to write a Perl-to-Python and Perl-to-Ruby (and vice versa) code translator by an evil boss, and therefore I'm curious to know if some automatic code translators between them exist …
5
votes
12answers
656 views
Which out of Python, Ruby, F# is better for learning as first programming language with dynamic type system?
I am thinking to learn programming language with dynamic type system.
Which one should I learn first?
Criteria:
I can learn and start programming in a day or two
Easy, Concise
In few days I …
-2
votes
5answers
217 views
Python on Rails?
Would it be possible to translate the Ruby on Rails code base to Python?
I think many people like Python more than Ruby, but find Ruby on Rails features better (as a whole) than the ones in Python …
1
vote
12answers
238 views
Parsing XML - right scripting languages / packages for the job?
I know that any language is capable of parsing XML; I'm really just looking for advantages or drawbacks that you may have come across in your own experiences. Perl would be my standard go to here, …
1
vote
3answers
834 views
PyQt: No such slot
I am starting to learn Qt4 and Python, following along some tutorial i found on the interwebs. I have the following two files:
lcdrange.py:
from PyQt4 import QtGui, QtCore
class …
