Search Results

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 …
2
votes

Is it worth learning BASH when I know Perl?

I'm pretty familiar with the unix command line, and all the utilities (sed, awk, grep, find..) available. My general rule of thumb is if it is a one-liner, or a for loop to catch a bunch of files a …
2
votes

How to master Regular Expressions?

I learned about them by learning Perl, and using it to create a configuration file parser. If you wanted to do something similar these days I would suggest Ruby, which has a similar hook for RE in …
0
votes

Favorite (non-esoteric) Programming Language

Python... I programmed primarily in C/C++ at work, with some Perl to facilitate the build process. Once I learned Python I haven't had as much use for Perl. I'm playing a bit with Ruby, as it has …
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. …
0
votes

Why does Ruby seem to have fewer projects than other programming languages?

I find Ruby very attractive in several ways, but it has some issues holding it back. The biggest I think is that Python already covers much of the same ground, has a larger library of proj …
0
votes

Why is Perl the best choice for most string manipulation tasks?

Perl was the go-to language for a long time. The problem is it can be pretty messy and difficult to maintain (some people can write Perl that avoids this, but it is very easy to wrote ugly code). I …