2
votes
List comparison
Your given solution can be simplified quite a bit still.
In the first loop, you can use plain addition since you are only ever ORing with single bits, and you can narrow the scope of …
6
votes
Suggest some good MVC framework in perl
Another alternative besides the ones already mentioned is Continuity; however, it is (as the name is meant to imply) continuation-based rather than MVC in the typical sense. Still, it’s worth menti …
2
votes
Conventions for Perl Test::More module
If you are looking for more XUnit-style testing, check out Test::Class. It provides the Test(setup) and Te …
8
votes
How can I check for a file size and add that result in an Excel spreadsheet in Perl?
You can use the -s operator to obtain the size of a file and the …
12
votes
Is there an elegant zip to interleave two lists in Perl 5?
Assuming you have exactly two lists and they are exactly the same length, here is a solution originally by merlyn (Randal Schwartz), who called it perversely perlish:
sub zip2 {
…
5
votes
Which of these scripting languages is more appropriate for pen-testing?
[Disclaimer: I am primarily a Perl programmer, which may be colouring my judgement. However, I am not a particularly tribal one, and I think on this particular question my argument is reasonably ob …
10
votes
How can you get Perl to stop when referencing an undef value?
Instead of the messy fiddling with %SIG proposed by everyone else, just use Carp::Always and be do …
14
votes
Perl Regex Match and Removal
Your regex is badly chosen on several points:
Instead of matching two slashes specifically, you use .. to match two characters that can be anything at all, presumably …
1
vote
How do I lock a file in Perl?
Ryan P wrote:
In this case the file is actually unlocked for a short period of time while the file is reopened.
So d …
1
vote
How can I capture the stdin and stdout of system command from a Perl script?
A very easy way to do this that I recently found is the IPC::Filter module. It lets you do the job extremely intuitively: …
10
votes
What Perl module would you be lost without?
There are many modules whose absence would make my Perl programmer life quite a lot less comfortable. If I were to enumerate those, the result would be virtually identical to …
0
votes
Regex to replace Boolean with bool
…
…
Do not match if in the middle of a string (thanks nohat).
Do not match if in a comment. (// or /**/)
No ca …
2
votes
Make git-svn work on Slackware 12.1
how do you guys search for those modules
http://search.cpan.org/
…
2
votes
Make git-svn work on Slackware 12.1
now I'm looking for Core.pm
That’s SVN::Core, which is a bit of a problem. Try installing Alien: …
6
votes
In Perl, how do I create a hash whose keys come from a given array?
Note that if typing if ( exists $hash{ key } ) isn’t too much work for you (which I prefer to use since the matter of interest is really the presence of a key rather than the truthines …
