0
votes
4answers
152 views
Is it worth learning Python over Ruby and PHP for Web Development? [closed]
Is it worth learning Python over Ruby and PHP for Web Development? If so why?
Thank you in advance.
EDIT: Related on StackOverflow:
Should I learn Ruby or Python?
Django or RoR
Rails or Django? …
4
votes
4answers
94 views
Programmable transparent forward proxy
I'm looking for a way to script a transparent forward proxy such as the ones that users point their browsers to in proxy settings.
I've discovered a distinct tradeoff in forward proxies between …
0
votes
8answers
374 views
Python, Ruby, Haskell - Do they provide true multithreading?
We are planning to write a highly concurrent application in any of the Very-High Level programming languages.
1) Do Python, Ruby, or Haskell support true multithreading?
2) If a program contains …
6
votes
15answers
540 views
How long should you focus on a programming language?
Okay, so I've been doing web design for about a year or two, and I've decided that I want to learn a Programming Language, because I've figured out that's what interest me more.
I start out learning …
10
votes
12answers
645 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 …
2
votes
2answers
85 views
Compile a string to Ruby bytecode for better performance — like compile() in Python
I have a string (authenticated, trusted, etc.) containing source code intended to run within a Ruby loop, quickly. In Python, I would compile the string into an abstract syntax tree and eval() or …
0
votes
7answers
299 views
What are the various popularity metrics and sites for programming languages such as Ruby, Python, Java, etc?
What are the various sites that offer metrics that compare Ruby, Python, Perl, Smalltalk etc. What are their respective metrics?
Do any of them control or account for the time that Rails was …
1
vote
4answers
66 views
ORM library for automatically mapping foreign keys in Python or Ruby
A frequent task I run into at work is writing scripts against pre-existing databases. Sometimes I'm connecting to Oracle, other times it might be MySql or even sql server.
What I would like is a tool …
1
vote
3answers
123 views
Best dynamic languages for OpenGL/general graphics
Which are the most mature and well supported solutions for writing graphical programs?
I have been using C++ with OpenGL/GLUT, but would like to try a more flexible and expressive approach.
Ruby and …
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, …
7
votes
4answers
442 views
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 …
7
votes
6answers
293 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 …
5
votes
5answers
497 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 …
2
votes
1answer
162 views
Which is better to learn ? Python or Ruby ? [closed]
Possible Duplicate:
Should I learn Ruby or Python?
I know this question pops up every once in a while, however I believe the answer is very dependent on the person who's asking, so I've …
-1
votes
2answers
72 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 = …
