185
votes
7answers
38k views
Why does modern Perl avoid UTF-8 by default?
I wonder why most modern solutions built using Perl don't enable UTF-8 by default.
I understand there are many legacy problems for core Perl scripts, where it may break things. But, from my point of ...
146
votes
78answers
27k 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 ...
134
votes
11answers
40k views
Why are scripting languages (e.g. Perl, Python, Ruby) not suitable as shell languages?
What are the differences between shell languages like bash, zsh, fish and the scripting languages above that makes them more suitable for the shell?
When using the command line the shell languages ...
75
votes
27answers
6k 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 ...
51
votes
1answer
1k views
How to implement an IMP function that returns a large struct type determined at run-time?
Background: CamelBones registers Perl classes with the Objective-C runtime.
To do this, every Perl method is registered with the same IMP
function; that function examines its self & _cmd arguments ...
50
votes
5answers
14k views
What are the differences between Perl, Python, AWK and sed?
just want to know what are the main differences among them? and the power of each language (where it's better to use it).
Edit: it's not "vs." like topic, just information.
48
votes
4answers
60k views
How do I use boolean variables in Perl?
I have tried:
$var = false;
$var = FALSE;
$var = False;
None of these work. I get the error message
Bareword "false" not allowed while "strict subs" is in use.
48
votes
10answers
19k 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 ...
44
votes
18answers
7k views
while (1) Vs. for (;;) Is there a speed difference?
Long version...
A co-worker asserted today after seeing my use of while (1) in a Perl script that for (;;) is faster. I argued that they should be the same hoping that the interpreter would optimize ...
43
votes
10answers
2k views
How to reliably guess the encoding between MacRoman, CP1252, Latin1, UTF-8, and ASCII
At work it seems like no week ever passes without some encoding-related conniption, calamity, or catastrophe. The problem usually derives from programmers who think they can reliably process a “text” ...
41
votes
9answers
10k views
How do I tell cpan to install all dependencies?
How do I tell cpan to install all dependencies?
Edit:
After following Sinans link.
I tried setting these in cpan:
cpan> o conf prerequisites_policy follow
cpan> o conf commit
I still had to ...
40
votes
29answers
5k views
Perl - Common gotchas? [closed]
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 ...
39
votes
3answers
2k views
Worst Case Analysis for Regular Expressions
Are there any tools that will take a particular regular expression and return the worst case scenario in terms of the number of operations required for a certain number of characters that the regular ...
39
votes
3answers
4k views
Why are Perl 5's function prototypes bad?
In another question a member asserted "I would advice you not to use prototypes. They have their uses, but not for most cases and definitely not in this one."
Can anyone elaborate on why this might ...
38
votes
12answers
2k 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 ...
37
votes
3answers
3k views
How can I troubleshoot my Perl CGI script?
I have a Perl script that isn't working and I don't know how to start narrowing down the problem. What can I do?
Note: I'm adding the question because I really want to add my very lengthy answer to ...
36
votes
1answer
2k views
The recognizing power of “Modern” Regexes
What class of languages do real modern regexes actually recognise?
Whenever there is an unbounded length capturing group with a back-reference (e.g. (.*)_\1) a regex is now matching a non-regular ...
36
votes
1answer
15k views
How is Perl's @INC constructed? (aka What are all the ways of affecting where Perl modules are searched for?)
What are all the ways of affecting where Perl modules are searched for?
or, How is Perl's @INC constructed?
As we know, Perl uses @INC array containing directory names to determine where to search ...
36
votes
12answers
71k views
How do you round a floating point number in Perl?
How can I round a decimal number (floating point) to the nearest integer?
e.g.
1.2 = 1
1.7 = 2
35
votes
4answers
6k views
Why does Perl think “0 but true” is a number?
Scalar::Util's looks_like_number seems to be the commonly suggested way to determine whether a string is a number.
Why does it consider the string "0 but true" to be a number ?
use Scalar::Util ...
35
votes
10answers
19k views
How can I download all emails with attachments from Gmail?
How do I connect to Gmail and determine which messages have attachments? I then want to download each attachment, printing out the Subject: and From: for each message as I process it.
I never found ...
35
votes
3answers
69k views
How do I break out of a loop in Perl?
I'm trying to use a break statement in a for loop, but since I'm also using strict subs in my Perl code I'm getting an error saying:
Bareword "break" not allowed while
"strict subs" in use at ...
33
votes
23answers
2k views
What features of Perl 6 are you the most excited about? [closed]
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 ...
32
votes
9answers
2k 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 ...
32
votes
5answers
4k 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 ...
32
votes
13answers
43k views
How do I get the full path to a Perl script that is executing?
I have Perl script and need to determine the full path and filename of the script during execution. I discovered that depending on how you call the script $0 varies and sometimes contains the ...
31
votes
7answers
14k views
what is the difference between my and our in Perl?
I know what my is in Perl. It defines a variable that exists only in the scope of the block in which it is defined. What does our do? How does it differ from my?
30
votes
13answers
2k views
Is “map” a loop?
While answering this question, I came to realize that I was not sure whether Perl's map can be considered a loop or not?
On one hand, it quacks/walks like a loop (does O(n) work, can be easily ...
30
votes
11answers
2k 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.
...
30
votes
9answers
7k views
What does “0 but true” mean in Perl?
Can someone explain what exactly the string "0 but true" means in Perl? As far as I understand, it equals zero in an integer comparison, but evaluates to true when used as a boolean. Is this correct? ...
29
votes
1answer
331 views
deobfuscating Perl code
I'm trying to deobfuscate the following Perl code (source):
#!/usr/bin/perl
(my$d=q[AA GTCAGTTCCT
CGCTATGTA ACACACACCA
TTTGTGAGT ATGTAACATA
...
29
votes
10answers
5k views
How do I daemonize an arbitrary script in unix?
I'd like a daemonizer that can turn an arbitrary, generic script or command into a daemon.
There are two common cases I'd like to deal with:
I have a script that should run forever. If it ever ...
29
votes
35answers
8k views
Why learn Perl, Python, Ruby if the company is using C++, C# or Java as the application language?
I wonder why would a C++, C#, Java developer want to learn a dynamic language?
Assuming the company won't switch its main development language from C++/C#/Java to a dynamic one what use is there for ...
29
votes
5answers
2k 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 ...
28
votes
8answers
40k views
How do I remove duplicate items from an array in Perl?
I have an array in Perl:
@my_array = ("one","two","three","two","three")
How do I remove the duplicates from the array?
27
votes
2answers
246 views
Bug in perl's autodie.pm?
I'm expecting:
#!/usr/bin/perl
use autodie;
# autodie in effect here
{
no autodie;
# autodie is not in effect here
}
# autodie should be in effect here because of the supposedly lexical scope
...
27
votes
18answers
2k views
Is there any use for Bash scripting anymore?
I just finished my second year as a university CS student, so my "real-world" knowledge is lacking. I learned Java my first year, continued with Java and picked up C and simple Bash
scripting my ...
26
votes
1answer
307 views
How, in Perl 5, can I get the pid of the process who sent me a signal?
In C, I can say
#include <stdio.h>
#include <unistd.h>
#include <signal.h>
int continue_running = 1;
void handler(int signal, siginfo_t* info, void* data) {
printf("got signal ...
26
votes
2answers
1k views
How do manage your Perl application development, build, and deployment?
I have yet to come up with a satisfactory way to manage the development, build, and deployment of my Perl applications. I'd like to hear how you have solved this problem and/or what you would like ...
26
votes
8answers
2k views
Perl Best Practices: What shouldn't I use?
For those of us who are familiar with Damian Conway's Perl Best Practices, it may be the case that you're applying it somewhat selectively. Which of the Best Practices do you elect not to follow, if ...
26
votes
5answers
22k views
How do you capture stderr, stdout, and the exit code all at once, in Perl?
Is it possible to run an external process from Perl, capture its stderr, stdout AND the process exit code?
I seem to be able to do combinations of these, e.g. use backticks to get stdout, IPC::Open3 ...
25
votes
4answers
1k views
Should one minify server code when it's in production? [closed]
When it comes to the frontend code you always minify it (remove white spaces, comments etc) in production.
Should one do the same with server code? I usually have a lot of comments in my server ...
25
votes
4answers
634 views
How does the #! work?
In a script you must include a #! on the first line followed by the path to the program that will execute the script (e.g.: sh, perl). As far as I know though, the # character denotes the start of a ...
25
votes
6answers
989 views
Is Perl's flip-flop operator bugged? It has global state, how can I reset it?
I'm dismayed. OK, so this was probably the most fun Perl bug I've ever found. Even today I'm learning new stuff about Perl. Essentially, the flip-flop operator .. which returns false until the ...
25
votes
5answers
3k views
How can I install and use ack library on Windows?
I have never used Perl, but I am really impressed by the ack, which I would like to use for source code searching, etc.
Can anyone guide me of how to make use of this excellent library on Windows?
25
votes
13answers
1k views
What are some elegant features or uses of Perl?
What? Perl Beautiful? Elegant? He must be joking!
It's true, there's some ugly Perl out there. And by some, I mean lots. We've all seen it.
Well duh, it's symbol soup. Isn't it?
Yes ...
25
votes
8answers
2k views
Should I learn/play with Perl 6? [closed]
Perl 6 has been under development for over 8 years now, and (as ever) there seems to be no end in sight. However, it has had a reasonable implementation for some time, Pugs, and even has multiple ...
24
votes
4answers
298 views
How can I test when a feature was added to Perl?
Are there any services similar to codepad that will allow you to test Perl constructs on old versions of perl?
Ideally, a system where you could enter an expression and it will tell you the oldest ...
24
votes
2answers
10k views
How can I install a specific version of a Perl module?
I'm tasked with replicating a production environment to create many test/sit environments.
One of the things I need to do is build up Perl, with all the modules which have been installed (including ...
23
votes
7answers
968 views
What is the Perl version of a Python iterator?
I am learning Perl at my work and enjoying it. I usually do my work in Python but boss wants Perl.
Most of the concepts in Python and Perl match nicely: Python dictionary=Perl hash; Python ...