User Michael Carman - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T23:38:40Zhttp://stackoverflow.com/feeds/user/8233http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1923707/best-way-to-debug-3rd-party-perl-script/1923778#19237781Answer by Michael Carman for Best way to debug 3rd party Perl script?Michael Carman2009-12-17T18:49:06Z2009-12-17T18:54:32Z<p>Use <code>$SIG{__DIE__} = \&Carp::confess;</code> instead of overriding <code>die</code>.</p>
<p>Unfortunately the "encryption" is likely to screw up any stack traces. The good news is that you must already have the key (SimFilter) or you wouldn't be able to run the script in the first place. Try deparsing it:</p>
<pre><code> perl -MO=Deparse scriptname.pl
</code></pre>
http://stackoverflow.com/questions/1917261/dynamically-including-modules-without-eval/1917276#191727610Answer by Michael Carman for Dynamically including modules without evalMichael Carman2009-12-16T20:01:07Z2009-12-16T20:58:26Z<p>Use <a href="http://perldoc.perl.org/functions/require.html" rel="nofollow"><code>require</code></a> to load modules at runtime. It often a good idea to wrap this in a block (not string) <code>eval</code> in case the module can't be loaded.</p>
<pre><code>eval {
require My::Module;
My::Module->import();
1;
} or do {
my $error = $@;
# Module load failed. You could recover, try loading
# an alternate module, die with $error...
# whatever's appropriate
};
</code></pre>
<p>The reason for the <code>eval {...} or do {...}</code> syntax and making a copy of <code>$@</code> is because <code>$@</code> is a global variable that can be set by many different things. You want to grab the value as atomically as possible to avoid a race condition where something else has set it to a different value.</p>
<p>If you don't know the name of the module until runtime you'll have to do the translation between module name (My::Module) and file name (My/Module.pm) manually:</p>
<pre><code>my $module = 'My::Module';
eval {
(my $file = $module) =~ s|::|/|g;
require $file . '.pm';
$module->import();
1;
} or do {
my $error = $@;
# ...
};
</code></pre>
http://stackoverflow.com/questions/1910147/can-actual-perl-regular-expressions-be-implemented-in-java-via-existing-library/1910384#19103845Answer by Michael Carman for Can actual Perl Regular Expressions be implemented in Java via existing library?Michael Carman2009-12-15T21:02:41Z2009-12-15T21:07:57Z<p>For maximum Perl compatibility you would need to actually use Perl. You can do that using
<a href="http://search.cpan.org/perldoc?Inline%3A%3AJava%3A%3ACallback" rel="nofollow">Inline::Java::Callback</a>, which is distributed as part of the <a href="http://search.cpan.org/perldoc?Inline%3A%3AJava" rel="nofollow">Inline::Java</a> module.</p>
<p>See also: <a href="http://stackoverflow.com/questions/274840/how-can-i-call-perl-from-java">How can I call Perl from Java?</a></p>
http://stackoverflow.com/questions/1908572/where-to-play-with-python-and-perl/1908903#19089031Answer by Michael Carman for where to play with python and perl?Michael Carman2009-12-15T17:05:28Z2009-12-15T17:05:28Z<p>Find an itch and scratch it. Many of my scripts fall into one of these two categories:</p>
<ul>
<li>Automating a task that I'm tired of doing by hand</li>
<li>Parsing some text files and generating a report</li>
</ul>
<p>There's a lot more that you can do -- Perl and Python are well-suited to a wide variety of tasks -- but small tasks like these are excellent places for learning the language.</p>
http://stackoverflow.com/questions/1883318/how-can-i-add-time-information-to-stderr-output-in-perl/1883347#188334710Answer by Michael Carman for How can I add time information to STDERR output in Perl?Michael Carman2009-12-10T19:24:52Z2009-12-11T20:40:42Z<p>Define custom handlers for handling warnings and fatal errors:</p>
<pre><code>use strict;
use warnings;
$SIG{__WARN__} = sub { warn sprintf("[%s] ", scalar localtime), @_ };
$SIG{__DIE__} = sub { die sprintf("[%s] ", scalar localtime), @_ };
warn;
die;
</code></pre>
<p>Output: </p>
<pre><code>[Fri Dec 11 14:35:37 2009] Warning: something's wrong at c:\temp\foo.pl line 7.
[Fri Dec 11 14:35:37 2009] Died at c:\temp\foo.pl line 8.
</code></pre>
<p>You might want to use <code>gmtime</code> instead of <code>localtime</code>.</p>
http://stackoverflow.com/questions/1888577/what-do-people-mean-when-they-say-perl-is-very-good-at-parsing/1889004#188900419Answer by Michael Carman for What do people mean when they say “Perl is very good at parsing”?Michael Carman2009-12-11T15:57:59Z2009-12-11T15:57:59Z<p>They mean that Perl was originally designed for processing text files and has many features that make it easy:</p>
<ul>
<li>Perl has many functions for string processing: <code>substr</code>, <code>index</code>, <code>chomp</code>, <code>length</code>, <code>grep</code>, <code>sort</code>, <code>reverse</code>, <code>lc</code>, <code>ucfirst</code>, ...</li>
<li>Perl automatically converts between numbers and strings depending on how a value is used. (e.g. you can read the character string '100' from a file and add one to it without needing to do an string to integer conversion first)</li>
<li>Perl automatically handles conversion to and from the platform encoding (e.g. CRLF on Windows) and a logical newline ("\n") within your program.</li>
<li>Regular expressions are integrated into the syntax instead of being a separate library.</li>
<li>Perl's regular expressions are the "gold standard" for power and functionality.</li>
<li>Perl has full Unicode support.</li>
</ul>
<p>Python and Ruby also have good facilities for text processing. (Ruby in particular took much inspiration from Perl, much as Perl has shamelessly borrowed from many other languages.) There's little point in asking which is better. Use what you like.</p>
http://stackoverflow.com/questions/1885800/how-can-i-obfuscate-my-perl-script-to-make-it-difficult-to-reverse-engineer/1888051#18880516Answer by Michael Carman for How can I obfuscate my Perl script to make it difficult to reverse engineer?Michael Carman2009-12-11T13:25:27Z2009-12-11T13:25:27Z<p>See perlfaq3: <a href="http://perldoc.perl.org/perlfaq3.html#How-can-I-hide-the-source-for-my-Perl-program%3f" rel="nofollow">How can I hide the source for my Perl program?</a></p>
http://stackoverflow.com/questions/1883492/perl-vs-python-which-is-better-for-a-simple-parsing-program/1883559#18835597Answer by Michael Carman for Perl vs Python: Which is better for a simple parsing program?Michael Carman2009-12-10T19:56:40Z2009-12-10T19:56:40Z<p>You should use whichever language you're more comfortable with or -- since you aren't very familiar with either one -- whichever you're more interested in learning, whichever one is more widely used where you work, etc.</p>
<p>I'd advise all programmers to learn a dynamic programming language, but which language (Perl, Python, Ruby, etc.) isn't terribly important. They're all quite capable. Asking which language is better (without specifying detailed criteria) amounts to little more than a popularity contest and possibly the outbreak of an unproductive Holy War.</p>
http://stackoverflow.com/questions/1880995/how-do-i-install-a-module-and-its-dependencies-in-activeperl-on-windows/1881431#18814316Answer by Michael Carman for How do I install a module and its dependencies in ActivePerl on Windows?Michael Carman2009-12-10T14:43:16Z2009-12-10T14:43:16Z<p>This is partially dependent on which distribution of Perl you're using.</p>
<p>ActivePerl includes a utility called PPM (Perl Package Manager) for installing modules. It handles dependency resolution automatically. PPM is particularly nice for installing XS modules on Windows where a compiler isn't typically available. The downside to PPM is that it some CPAN modules aren't available (probably because they fail ActiveState's automated build process). You can run PPM from either the start menu or by typing <code>ppm</code> at a command prompt.</p>
<p>A more general option is to use the interactive <a href="http://search.cpan.org/perldoc?CPAN" rel="nofollow">CPAN</a> shell. Note that you must have a compiler to install XS modules using this method. You can access the cpan shell by typing <code>cpan</code> at a command prompt.</p>
<p>The brute-force approach of last resort is to download tarballs from CPAN and manually install them one at a time. When an install aborts due to unsatisfied dependencies download and install them then go back to the first module and try again.</p>
http://stackoverflow.com/questions/1878108/whats-the-modern-way-of-declaring-which-version-of-perl-to-use/1878289#18782894Answer by Michael Carman for What's the modern way of declaring which version of Perl to use?Michael Carman2009-12-10T02:27:28Z2009-12-10T02:27:28Z<p>There are really only two options: decimal numbers and v-strings. Which form to use depends in part on which versions of Perl you want to "support" with a meaningful error message instead of a syntax error. (The v-string syntax was added in Perl 5.6.) The accepted best practice -- which is what perlcritic enforces -- is to use decimal notation. You should specify the minimum version of Perl that's required for your script to behave properly. Normally that means declaring a dependency on language features added in a major release, such as using the <code>say</code> function added in 5.10. You should include the patch level if it's important for your script to behave properly. For example, some of my code specifies <code>use 5.008001</code> because it depends on the fix for a bug that 5.8.0 had which was fixed in 5.8.1.</p>
http://stackoverflow.com/questions/1596803/how-do-i-do-a-non-blocking-ipc-read-on-windows2How do I do a non-blocking IPC read on Windows?Michael Carman2009-10-20T19:26:56Z2009-12-08T23:38:35Z
<p>I have a Perl script that uses an external tool (cleartool) to gather information about a list of files. I want to use IPC to avoid spawning a new process for each file:</p>
<pre><code>use IPC::Open2;
my ($cin, $cout);
my $child = open2($cout, $cin, 'cleartool');
</code></pre>
<p>Commands that return single-lines work well. e.g.</p>
<pre><code>print $cin "describe -short $file\n";
my $description = <$cout>;
</code></pre>
<p>Commands that return multiple lines have me at a dead end for how to consume the entire response without getting hung up by a blocking read:</p>
<pre><code>print $cin "lshistory $file\n";
# read and process $cout...
</code></pre>
<p>I've tried to set the filehandle for non-blocking reads via <code>fcntl</code>:</p>
<pre><code>use Fcntl;
my $flags = '';
fcntl($cout, F_GETFL, $flags);
$flags |= O_NONBLOCK;
fcntl($cout, F_SETFL, $flags);
</code></pre>
<p>but Fcntl dies with the message "Your vendor has not defined Fcntl macro F_GETFL."</p>
<p>I've tried using IO::Handle to set <code>$cout->blocking(0)</code> but that fails (it returns <code>undef</code> and sets <code>$!</code> to "Unknown error").</p>
<p>I've tried to use <code>select</code> to determine if there's data available before attempting to read:</p>
<pre><code>my $rfd = '';
vec($rfd, fileno($cout), 1) = 1;
while (select($rfd, undef, undef, 0) >= 0) {
my $n = read($cout, $buffer, 1024);
print "Read $n bytes\n";
# do something with $buffer...
}
</code></pre>
<p>but that hangs without ever reading anything. Does anyone know how to make this work (on Windows)?</p>
http://stackoverflow.com/questions/1858762/where-do-i-install-perl-modules-that-i-wrote/1860053#18600533Answer by Michael Carman for Where do I install Perl modules that I wrote?Michael Carman2009-12-07T13:41:35Z2009-12-07T13:41:35Z<p>For application-specific libraries the common approach is to use the <a href="http://perldoc.perl.org/FindBin.html" rel="nofollow"><code>FindBin</code></a> module to locate the application directory and then <code>use lib</code> to add the application's library to <code>@INC</code>:</p>
<pre><code>use FindBin;
use lib "$FindBin::Bin/lib";
use AppModule;
</code></pre>
<p>For general-purpose modules, I recommend developing them the same way you would for a CPAN release (e.g. start with <a href="http://search.cpan.org/perldoc?Module-Starter" rel="nofollow"><code>module-starter</code></a>) and install them with perl (usually under <code>site/lib</code>). See also: <a href="http://stackoverflow.com/questions/73889/which-framework-should-i-use-to-write-modules">Which framework should I use to write modules?</a></p>
<p>If you can't install with perl (i.e. you don't have the necessary permissions) you can have a personal library instead. See <a href="http://perldoc.perl.org/perlfaq8.html#How-do-I-keep-my-own-module/library-directory%3F" rel="nofollow">How do I keep my own module/library directory?</a> in perlfaq8.</p>
http://stackoverflow.com/questions/1855493/what-are-some-specific-examples-of-backward-incompatibilities-in-perl-versions/1855534#185553410Answer by Michael Carman for What are some specific examples of backward incompatibilities in Perl versions?Michael Carman2009-12-06T14:29:47Z2009-12-06T14:36:43Z<p>Yes. There are many, although they're usually minor. Sometimes this is due to deprecation cycles ultimately ending in removal. Sometimes it's due to changing semantics for new (and experimental) features. Sometimes it's bug fixes for things that didn't work correctly. The Perl developers take great pains to preserve backwards compatibility between versions wherever possible. I can't recall ever having a script that was broken by upgrading to a new version of Perl.</p>
<p>The internal hash order has changed several times. While this isn't something you should depend on, it can cause problems if you unwittingly do.</p>
<p>Binary incompatibility between major (5.x) releases is common, but that usually just means that any XS extensions need to be recompiled.</p>
<p>The complete list is far too long to list here. You can get it by checking the "Incompatible Changes" section of each version's <a href="http://perldoc.perl.org/index-history.html" rel="nofollow">history</a>.</p>
http://stackoverflow.com/questions/1853872/should-i-aggressively-release-memory-while-reading-a-file-line-by-line-in-perl/1853951#18539519Answer by Michael Carman for Should I aggressively release memory while reading a file line by line in Perl?Michael Carman2009-12-05T23:59:47Z2009-12-05T23:59:47Z<p>No. See perlfaq3 for more on what you should (and shouldn't) do with regards to memory usage in Perl.</p>
<ul>
<li><a href="http://perldoc.perl.org/perlfaq3.html#How-can-I-make-my-Perl-program-take-less-memory%3f" rel="nofollow">How can I make my Perl program take less memory?</a></li>
<li><a href="http://perldoc.perl.org/perlfaq3.html#How-can-I-free-an-array-or-hash-so-my-program-shrinks%3f" rel="nofollow">How can I free an array or hash so my program shrinks?</a></li>
</ul>
http://stackoverflow.com/questions/1848223/perl-puzzle-unexpected-behavior-w-r-t-m-m/1848330#18483305Answer by Michael Carman for Perl puzzle: unexpected behavior w.r.t. m/$./mMichael Carman2009-12-04T17:03:57Z2009-12-04T17:15:48Z<p>The <code>$.</code> in your regex is being parsed as the value of the special variable <code>$.</code> (<code>$INPUT_LINE_NUMBER</code>) rather than "end of line followed by any character."</p>
<p>Also note that the <code>/m</code> modifier changes the meaning of <code>$</code> from matching at the end of the string to matching a line-ending anywhere within the string. See <a href="http://perldoc.perl.org/perlre.html#Modifiers" rel="nofollow">Modifiers</a> in perlre. This means that it is possible to have something after it (with the appropriate modifiers):</p>
<pre><code>say "a\nb\n" =~ m/$ ./msx;
</code></pre>
<p>prints "1". The <code>/x</code> modifier permits the use of embedded whitespace so we can separate the <code>$</code> from the <code>.</code> to avoid it being interpreted as a variable.</p>
http://stackoverflow.com/questions/743137/does-a-perl-module-know-where-it-is-installed/1840181#18401812Answer by Michael Carman for Does a Perl module know where it is installed?Michael Carman2009-12-03T14:26:27Z2009-12-03T14:26:27Z<p>You can use the <code>__FILE__</code> token to get the name (including the path) of the current file. If you want to know the path to a different module (one that's already loaded) check the contents of the <code>%INC</code> hash.</p>
http://stackoverflow.com/questions/1839825/what-should-i-put-in-my-starter-template-for-my-perl-programs/1839879#183987917Answer by Michael Carman for What should I put in my starter template for my Perl programs?Michael Carman2009-12-03T13:30:23Z2009-12-03T13:30:23Z<p>Replace the <code>-w</code> with <code>use warnings</code>. It allows you to disable warnings lexically should you need to. See <a href="http://perldoc.perl.org/perllexwarn.html" rel="nofollow">perllexwarn</a>.</p>
<p>The <code>use utf8</code> pragma is for when your source code is in UTF-8. If it is, great. If not... I don't recommend adding things that you don't actually use. Similarly, don't set STDOUT to UTF-8 unless you're actually producing it.</p>
<p>Disabling buffering will reduce performance. Don't do it unless you need to, and then limit the scope to the block where it's necessary.</p>
<p>I like to include a statement to explicitly state the minimum version of Perl required to run the script. This makes the error messages more meaningful if it doesn't compile due to someone using an older version of Perl. e.g.</p>
<pre><code>BEGIN { require 5.00801 }
</code></pre>
<p>I use that particular incantation instead of something like <code>use v5.8.1</code> because it's backwards-compatible with the versions of Perl I'm trying to "support" with a meaningful error message.</p>
http://stackoverflow.com/questions/1835034/why-does-this-c-code-print-only-the-first-last-node-entered/1835135#18351354Answer by Michael Carman for Why does this C code print only the first & last node entered?Michael Carman2009-12-02T19:10:31Z2009-12-02T19:34:46Z<p>You want to move <code>current</code> while walking the list instead of changing the value of <code>current->next</code>. Change this:</p>
<pre><code>while (current->next != NULL) {
current->next = current->next->next;
}
</code></pre>
<p>to this:</p>
<pre><code>while (current->next != NULL) {
current = current->next;
}
</code></pre>
<p>That said, it would be better to move <code>current</code> while adding new nodes instead of walking the linked list from the start every time. For example (skeleton code):</p>
<pre><code>Hinfo *current;
while (...) {
Hinfo *new = malloc(sizeof(Hinfo));
// initialize new node
if (current != NULL) {
current->next = new;
}
current = new;
// prompt to enter more nodes
}
</code></pre>
http://stackoverflow.com/questions/1833554/how-does-the-qr-string-operator-in-perl-decide-whether-or-not-to-compile-string/1833896#18338961Answer by Michael Carman for How does the qr/STRING/ operator in Perl decide whether or not to compile STRING?Michael Carman2009-12-02T16:05:03Z2009-12-02T18:30:52Z<p>Edit: This answer is wrong (or at least misguided) but there's some interesting discussion in the comments that's worth preserving. <a href="http://stackoverflow.com/questions/1833554/how-does-the-qr-string-operator-in-perl-decide-whether-or-not-to-compile-string/1834304#1834304">John Siracusa's answer</a> appears to be on the right track.</p>
<p><hr></p>
<p>The documentation for <code>qr//</code> states that </p>
<blockquote>
<p>STRING is interpolated the same way as
PATTERN in m/PATTERN/.</p>
</blockquote>
<p>which presumably includes the behavior of not recompiling regular expressions for which the pattern hasn't changed, or can't change in the case of not including interpolated variables. For example, you don't need to recompile this pattern on each iteration of the loop:</p>
<pre><code>foreach my $char ('a' .. 'z') {
my $vowel = qr/[aeiou]/;
say "$char is a vowel" if $char =~ $vowel;
}
</code></pre>
http://stackoverflow.com/questions/1785852/why-are-perl-source-filters-bad-and-when-is-it-ok-to-use-them/1785970#178597014Answer by Michael Carman for Why are Perl source filters bad and when is it OK to use them?Michael Carman2009-11-23T21:07:09Z2009-11-23T21:07:09Z<p>Why source filters are bad:</p>
<ol>
<li>Nothing but perl can parse Perl. (Source filters are fragile.)</li>
<li>When a source filter breaks pretty much anything can happen. (They can introduce subtle and very hard to find bugs.)</li>
<li>Source filters can break tools that work with source code. (PPI, refactoring, static analysis, etc.)</li>
<li>Source filters are mutually exclusive. (You can't use more than one at a time -- unless you're psychotic).</li>
</ol>
<p>When they're okay:</p>
<ol>
<li>You're experimenting.</li>
<li>You're writing throw-away code.</li>
<li>Your name is Damian and you <em>must</em> be allowed to program in latin.</li>
<li>You're programming in Perl 6.</li>
</ol>
http://stackoverflow.com/questions/1759172/why-does-my-perl-unit-test-fail-in-epic-but-work-in-the-debugger/1785249#17852491Answer by Michael Carman for Why does my Perl unit test fail in EPIC but work in the debugger?Michael Carman2009-11-23T19:00:16Z2009-11-23T19:00:16Z<p>Both Exporter and Test::MockModule work by manipulating the symbol table. Things that do that don't always play nicely together. In this case, Test::MockModule is installing the mocked version of <code>slurpFile</code> into UtilityModule <em>after</em> Exporter has already exported it to MainModule. The alias that MainModule is using still points to the original version.</p>
<p>To fix it, change MainModule to use the fully qualified subroutine name:</p>
<pre><code> my $file_contents = UtilityModule::slurpFile($file_name);
</code></pre>
<p>The reason this works in the debugger is that the debugger <em>also</em> uses symbol table manipulation to install hooks. Those hooks must be getting installed in the right way and at the right time to avoid the mismatch that occurs normally.</p>
<p>It's arguable that it's a bug (in the debugger) any time the code behaves differently there than it does when run outside the debugger, but when you have three modules all mucking with the symbol table it's not surprising that things might behave oddly.</p>
http://stackoverflow.com/questions/1759172/why-does-my-perl-unit-test-fail-in-epic-but-work-in-the-debugger/1759294#17592940Answer by Michael Carman for Why does my Perl unit test fail in EPIC but work in the debugger?Michael Carman2009-11-18T21:45:20Z2009-11-18T21:45:20Z<p>Does your mocking manipulate the symbol table? I've seen a <a href="http://rt.perl.org/rt3/Public/Bug/Display.html?id=48332" rel="nofollow">bug in the debugger</a> that interferes with symbol table munging. Although in my case the problem was reversed; the code broke under the debugger but worked when run normally.</p>
http://stackoverflow.com/questions/1734385/how-do-i-define-private-or-internal-methods-in-object-oriented-perl/1734419#17344195Answer by Michael Carman for How do I define private or internal methods in object oriented Perl?Michael Carman2009-11-14T14:45:16Z2009-11-14T14:50:36Z<p>Sort of. You can't hide a subroutine that's installed into the symbol table, but you can use a lexical variable to hold a reference to an anonymous subroutine:</p>
<pre><code>package SOD::MyOOInterface;
my $some_method = sub { ... }
$some_method->();
</code></pre>
<p>Because <code>$some_method</code> is only visible in the file implementing the class, the subroutine can't be called externally. The drawback is that it can't be called as a method, it must be called as a function. If you want to use it as a method you'll have to pass the object reference explicitly:</p>
<pre><code>$some_method->($obj, @args);
</code></pre>
http://stackoverflow.com/questions/1730749/how-can-i-format-columns-without-using-perls-format/1730942#17309423Answer by Michael Carman for How can I format columns without using Perl's format?Michael Carman2009-11-13T18:10:11Z2009-11-13T18:10:11Z<p>The robust solution requires two passes: one to determine the length of the longest key, the other to print the output:</p>
<pre><code>my $l = 0;
foreach my $key (keys %hash) {
$l = length($key) if length($key) > $l;
}
foreach my $key (keys %hash) {
printf "%-${l}s %s\n", $key, $hash{$key};
}
</code></pre>
<p>If you know the upper limit of the key lengths ahead of time, you can avoid the first loop.</p>
http://stackoverflow.com/questions/1729542/uncommon-regular-expressions/1729637#17296376Answer by Michael Carman for Uncommon regular expressionsMichael Carman2009-11-13T14:42:11Z2009-11-13T14:42:11Z<p>Your discoveries are non-capturing groups <code>(?:...)</code> and negative look-ahead assertions <code>(?!...)</code>. There aren't any "secret" regex tricks, but there are many features that you may not know about. I recommend a thorough reading of <a href="http://perldoc.perl.org/perlre.html" rel="nofollow">perlre</a>.</p>
http://stackoverflow.com/questions/1719990/perl-subroutine-call/1722701#17227012Answer by Michael Carman for perl subroutine callMichael Carman2009-11-12T14:47:35Z2009-11-12T14:47:35Z<p>The lack of a warning on the call to <code>f2()</code> from <code>f3()</code> appears to be a bug.</p>
<pre><code>use strict;
use warnings;
f1();
sub f1 {
my @a = qw(a b c);
f2(@a);
}
sub f2(\@) { print $_[0] }
</code></pre>
<p>This prints "a". If you either predeclare <code>f2()</code> or swap the order of the subroutine definitions, it prints "ARRAY(0x182c054)".</p>
<p>As for resolving the situation, it depends. My preferences (in order) would be:</p>
<ol>
<li>Remove the prototypes from the subroutine definitions. Perl's prototypes don't do
what most people expect them to. They're really only useful for declaring subs that
act like builtins. Unless you're trying to extend Perl's syntax, don't use them.</li>
<li>Predeclare the subroutines before using them. This lets Perl know about the prototype
before the encountering any calls.</li>
<li>Reorder the code so that the subroutine definitions appear before any calls.</li>
<li>Call the subroutines using the <code>&foo()</code> notation to bypass prototype checking.</li>
</ol>
http://stackoverflow.com/questions/1710353/how-to-distribute-native-perl-scripts-without-custom-module-overhead/1710419#17104194Answer by Michael Carman for How to distribute native perl scripts without custom module overhead?Michael Carman2009-11-10T19:08:21Z2009-11-10T19:08:21Z<p>The right way is to tell them "Don't do that!" I would hope that they wouldn't expect to move an exe file and have the program continue to work. This is no different.</p>
<p>That said, there are a couple of alternatives. One is replacing the script with a wrapper (e.g. pl2bat) that knows the full path to the real script. Another is to use <a href="http://search.cpan.org/perldoc?PAR" rel="nofollow">PAR</a>, but that would require PAR and/or parl (from PAR::Packer) to be installed.</p>
http://stackoverflow.com/questions/1703046/object-oriented-perl-constructor-syntax/1703065#17030654Answer by Michael Carman for Object-Oriented Perl constructor syntaxMichael Carman2009-11-09T19:07:36Z2009-11-09T19:20:40Z<p>In Perl, all arguments to subroutines are passed via the predefined array <code>@_</code>.</p>
<p>The <code>shift</code> removes and returns the first item from the <code>@_</code> array. In Perl OO, this is the method invocant -- typically a class name for constructors and an object for other methods.</p>
<p>Hashes flatten to and can be initialized by lists. It's a common trick to emulate named arguments to subroutines. e.g.</p>
<pre><code>Employee->new(name => 'Fred Flintstone', occupation => 'quarry worker');
</code></pre>
<p>Ignoring the class name (which is shifted off) the odd elements become hash keys and the even elements become the corresponding values.</p>
<p>The <code>my $self = {}</code> creates a new hash <em>reference</em> to hold the instance data. The <code>bless</code> function is what turns the normal hash reference <code>$self</code> into an object. All it does is add some metadata that identifies the reference as belonging to the class.</p>
http://stackoverflow.com/questions/1689453/looking-for-some-library-to-extract-html-pages-from-chm-files/1689490#16894900Answer by Michael Carman for Looking for some library to extract HTML pages from CHM filesMichael Carman2009-11-06T18:42:18Z2009-11-06T18:42:18Z<p>A quick search on CPAN found <a href="http://search.cpan.org/perldoc?Archive%3A%3AChm" rel="nofollow">Archive::Chm</a> and <a href="http://search.cpan.org/perldoc?Text%3A%3ACHM" rel="nofollow">Text::CHM</a>.</p>
http://stackoverflow.com/questions/1661796/why-doesnt-perl-support-the-normal-operator-to-index-a-string/1662096#166209618Answer by Michael Carman for Why doesn't Perl support the normal [] operator to index a string?Michael Carman2009-11-02T15:51:15Z2009-11-02T15:51:15Z<p>Using <code>[]</code> to index into a string is a side effect of the way many programming languages treat strings: as arrays of characters (or wide characters, in the case of Unicode). In Perl, strings are first-class entities. Perl provides a wealth of ways for working with whole strings as a single value. If you're trying to index into a string you're probably doing something wrong. (e.g. writing C in Perl rather than using Perl idioms.) For the cases where you really do need to index into a string, use <a href="http://perldoc.perl.org/functions/substr.html" rel="nofollow"><code>substr</code></a>.</p>
http://stackoverflow.com/questions/1923707/best-way-to-debug-3rd-party-perl-script/1923743#1923743Comment by Michael Carman on Best way to debug 3rd party Perl script?Michael Carman2009-12-17T18:48:00Z2009-12-17T18:48:00ZHe must already have SimFilter or he couldn't run the code. Would <code>perl -MO=Deparse Foo.pm</code> be sufficient? (i.e. would Deparse take the results after SimFilter de-obfuscated it?)http://stackoverflow.com/questions/1917261/dynamically-including-modules-without-eval/1917276#1917276Comment by Michael Carman on Dynamically including modules without evalMichael Carman2009-12-17T00:04:37Z2009-12-17T00:04:37ZAnyone who uses <code>'</code> as a package delimiter outside of a JAPH deserves to have their code break.http://stackoverflow.com/questions/1917261/dynamically-including-modules-without-eval/1917276#1917276Comment by Michael Carman on Dynamically including modules without evalMichael Carman2009-12-16T20:39:51Z2009-12-16T20:39:51Z@Ether: The standard advice is to make checking <code>$@</code> the very first thing you do, but you're right that there's a race condition. I'll update the answer.http://stackoverflow.com/questions/1895879/whats-a-free-perl-ide-for-windows/1896206#1896206Comment by Michael Carman on What's a free Perl IDE for Windows?Michael Carman2009-12-13T22:14:25Z2009-12-13T22:14:25Z@brian: I'm a big fan of unit testing but I think it's disingenuous to suggest it as a debugging technique. Outside of the ideal situation you describe it's likely to be ineffective (or at least inefficient). The power of a debugger is being able to see <i>exactly</i> what the code is doing free of the human bias that selecting what to print and/or test entails. That said, maybe I'm just bitter because I recently had to debug embedded C code via <code>printf</code> over a serial port. The edit-compile-load-run-review cycle was maddening; a working debugger would have sped things up tenfold.http://stackoverflow.com/questions/1895879/whats-a-free-perl-ide-for-windows/1896206#1896206Comment by Michael Carman on What's a free Perl IDE for Windows?Michael Carman2009-12-13T15:11:28Z2009-12-13T15:11:28ZCalling <code>print</code> a debugging tool is like calling the clapper a "home automation tool." There's really no substitute for being able to stop, look around, and step.http://stackoverflow.com/questions/1883318/how-can-i-add-time-information-to-stderr-output-in-perl/1883347#1883347Comment by Michael Carman on How can I add time information to STDERR output in Perl?Michael Carman2009-12-11T20:42:06Z2009-12-11T20:42:06Z@macbus: Are you calling <code>warn</code> from your <code>__DIE__</code> handler? If so, don't. I've updated the answer to include an example.http://stackoverflow.com/questions/1888577/what-do-people-mean-when-they-say-perl-is-very-good-at-parsing/1889004#1889004Comment by Michael Carman on What do people mean when they say “Perl is very good at parsing”?Michael Carman2009-12-11T19:55:44Z2009-12-11T19:55:44Z@brian: Conversion between the platform newline sequence and a logical "\n" happens on both reading and writing (ignoring <code>binmode</code>, of course). I know that you're well aware of this so I find your comment confusing. I suppose I could have said that "Perl lets you think in terms of logical newlines instead of worrying about whatever sequence your OS uses" without mentioning how it does that.http://stackoverflow.com/questions/1880995/how-do-i-install-a-module-and-its-dependencies-in-activeperl-on-windows/1884156#1884156Comment by Michael Carman on How do I install a module and its dependencies in ActivePerl on Windows?Michael Carman2009-12-11T02:48:30Z2009-12-11T02:48:30ZDo you have any rationale for not mixing installation methods? I can see it messing up PPM/cpan's idea of what's installed, but it shouldn't cause any problems with the operation of Perl itself. Sometimes modules aren't available via PPM and you have to fall back on cpan or manual installation.http://stackoverflow.com/questions/1883492/perl-vs-python-which-is-better-for-a-simple-parsing-program/1883559#1883559Comment by Michael Carman on Perl vs Python: Which is better for a simple parsing program?Michael Carman2009-12-10T21:06:45Z2009-12-10T21:06:45Z@Dan: Parsing log files is a very basic task for which the choice is unimportant. It's like asking if you should drink beer from a mug or a glass. By "detailed criteria" I meant situations where you have specific constraints like "must be able to interface with X" where one language might have more mature/robust bindings.http://stackoverflow.com/questions/1855493/what-are-some-specific-examples-of-backward-incompatibilities-in-perl-versions/1855534#1855534Comment by Michael Carman on What are some specific examples of backward incompatibilities in Perl versions?Michael Carman2009-12-10T17:36:37Z2009-12-10T17:36:37Z@Brad Gilbert: Yes and no. Hash randomization was added in 5.8.1 but as of 5.8.2 it only occurs if the key distribution is poor.http://stackoverflow.com/questions/1871290/how-do-i-present-an-open-folder-selection-dialog-in-perlComment by Michael Carman on How do I present an open folder selection dialog in Perl?Michael Carman2009-12-09T03:16:45Z2009-12-09T03:16:45ZWhich GUI toolkit are you using? (Tk, Win32::GUI, wxPerl, etc.)http://stackoverflow.com/questions/1868388/why-cant-my-perl-find-strict-pm-when-i-call-it-from-another-programComment by Michael Carman on Why can't my perl find strict.pm when I call it from another program?Michael Carman2009-12-08T18:43:54Z2009-12-08T18:43:54Z@Sinan: The sample code isn't Perl, but the problem appears to be with <code>@INC</code> so I'm willing to consider the "perl" tag as valid. I think there's a real question in there screaming to get out.http://stackoverflow.com/questions/1853872/should-i-aggressively-release-memory-while-reading-a-file-line-by-line-in-perl/1853880#1853880Comment by Michael Carman on Should I aggressively release memory while reading a file line by line in Perl?Michael Carman2009-12-08T15:53:18Z2009-12-08T15:53:18ZMy source is an old (and possibly outdated) thread on c.l.p.moderated, and this post in particular: <a href="http://groups.google.com/group/comp.lang.perl.moderated/msg/4c967366e3273474" rel="nofollow">groups.google.com/group/comp.lang.perl.moderated/…</a>. I'm quite happy to be proven wrong, but if I am the FAQ should be updated.http://stackoverflow.com/questions/1864267/how-can-i-sort-a-perl-list-in-an-arbitrary-order/1864399#1864399Comment by Michael Carman on How can I sort a Perl list in an arbitrary order?Michael Carman2009-12-08T15:32:28Z2009-12-08T15:32:28Z@ephemient: <code>{my %hash = ...; sub bylist {} }</code> only initializes if program flow reaches the block, which means you would have to put the sub definition in the middle of your program logic (and before calling it) rather than at the end as is normal.http://stackoverflow.com/questions/1864267/how-can-i-sort-a-perl-list-in-an-arbitrary-order/1864399#1864399Comment by Michael Carman on How can I sort a Perl list in an arbitrary order?Michael Carman2009-12-08T13:50:01Z2009-12-08T13:50:01ZThe non-hack work-around is to enclose the sub declaration in a block and define the state variable there. e.g. <code>{ my $x; sub foo { $x ||= 1; ... } }</code>