65
votes
61answers
11k views
Hidden features of Perl?
What are some really useful but esoteric language features in Perl that you've actually been able to employ to do useful work?
Guidelines:
Try to limit answers to the Perl core and not CPAN
Please …
62
votes
15answers
4k views
How to find list of possible words from a letter matrix [Boggle Solver]
Lately I have been playing a game on my iPhone called Scramble. Some of you may know this game as Boggle. Essentially, when the game starts you get a matrix of letters like so:
F X I E
A M L O
E W B …
33
votes
40answers
4k views
Python v. Perl
Okay, so I'm finally making the jump into scripting languages and I have decided to focus on either Python or Perl. The problem is: I don't know which to cut my teeth on.
Most of my programming …
28
votes
10answers
1k views
Perl Myths
I keep seeing people trip over common misconceptions of how Perl exists and what it does.
There are generally 2 types of Perl Myth.
Type 1:
Things that people think about the language itself, …
27
votes
24answers
3k views
Is Perl still a viable language for web development?
I am currently in the process of designing a database-driven website to manage various personal data and some business data. This is primarily a personal app, however it will be used by a few clients …
25
votes
25answers
2k views
Perl - Common gotchas?
The question on Hidden features of Perl yielded at least one response that could be regarded as either a feature or a mis-feature. It seemed logical to follow up with this question: what are common …
23
votes
5answers
1k views
Why does the Perl conditional operator not do what I expect?
This snippet of Perl code in my program is giving the wrong result.
$condition ? $a = 2 : $a = 3 ;
print $a;
No matter what the value of $condition is, the output is always 3, how come?
Edit: I …
21
votes
6answers
280 views
What reasons are there to prefer glob over readdir (or vice-versa) in Perl?
This question is a spin-off from this one. Some history: when I first learned Perl, I pretty much always used glob rather than opendir + readdir because I found it easier. Then later various posts and …
21
votes
10answers
2k views
Which version of Perl should I use on Windows?
The win32.perl.org web site provides references to several Perl distributions for MS Windows.
For a long time I have been using ActivePerl from
ActiveState but recently I switched to
Strawberry …
20
votes
15answers
726 views
Where can I get good answers to my Perl-related questions?
AFAIK one of the objectives of Stack Overflow is to make sure anyone can come here and find good answers to her Perl related questions. Certainly beginners would ask what is the best online source to …
18
votes
7answers
311 views
What are your suggestions for an ideal Vim configuration for Perl development?
There are a lot of threads pertaining to how to configure Vim/GVim for Perl development on PerlMonks.org. My purpose in posting this question is to try to create, as much as possible, an ideal …
17
votes
10answers
643 views
Should I learn Perl 5 OO or Moose first?
I'm still relatively new to Perl Programming, but I know how Perl 5 OO basically works. However, I have never created any project with Perl 5 OO, so I'm quite sure I will run into many pitfalls.
…
17
votes
5answers
866 views
Perl build, unit testing, code coverage: A complete working example
Most Stackoverflow answers that I have found in regards to the Perl build process and unit testing and code coverage simply point me to CPAN for the documentation there. There's absolutely nothing …
17
votes
3answers
794 views
What’s the deal with all the different Perl 6 equality operators? (==, ===, eq, eqv, ~~, =:=, …)
Perl 6 seems to have an explosion of equality operators. What is =:=? What's the difference between "leg" and "cmp"? Or "eqv" and ===?
Does anyone have a good summary?
17
votes
22answers
974 views
What features of Perl 6 are you the most excited about?
Perl 6 has really shaped up in terms of which features we can expect to see implemented in the final language, when it comes. Some of them are already available through Perl 6 modules for Perl 5 from …
