0
votes
Which scripting language should I learn after Perl?
I did much the same thing. I grew annoyed at Perl's oddities with data handling, and "more than one way" concept.. though perl was certainly useful. I started looking into Ruby and Python, reading …
1
vote
Can I use Python as a bash replacement?
In the beginning there was sh, sed, and awk (and find, and grep, and...). It was good. But awk can be an odd little beast and hard to remember if you don't use it often. Then the great camel create …
1
vote
What are the biggest differences between Python and Ruby from a philosophical perspective
They're both really pretty interesting beasts that solve the same problems. Python feels a little more mature, and runs faster currently, but there is a lot of momentum in the Ruby community.
…
1
vote
Lua as a general-purpose scripting language?
I think the answer about it being a "marketing" thing is probably correct, along with the lack of a large set of libraries to choose from. I would like to point out another case of this: Ruby. Rub …
1
vote
Does Python have a bitfield type?
Represent each of your values as a power of two:
testA = 2**0
testB = 2**1
testC = 2**3
Then to set a value true:
table = table | testB
…
0
votes
Python/Ruby IDE (Windows)?
I've looked into this recently as well, and both netbeans and eclipse have rudimentary python support. For whatever reason, ruby seems to have better support in these tools. If you don't mind a sep …
