5
votes
2answers
268 views
Run a Ruby library from the command-line
Hi y'all. I've just learned the basics of Ruby after being very happy with Python for several years (I'm still using Python for some things), but I'd like to know if there's an idiom or hack to sol …
13
votes
What are the biggest differences between Python and Ruby from a philosophical perspective
Well, if you really want to know, I'd consult a book called "On Lisp" by Paul Graham, which is available free as a PDF …
2
votes
Solving the shared-server security problem for Python
Well, there is a system called virtualenv which allows you to run Python in a sort of safe environment, and configure/load/shutdo …
5
votes
Backslashes in Single quoted strings vs. Double quoted strings in Ruby?
I'd refer you to this page for a very concise yet comprehensive overview of the differences. …
0
votes
Simple recursion problem
Here's a recursive combination function using Ruby yield statements:
def combinations(values, n)
if n.zero?
yield []
else
combinations(values, n - 1) do |co …
