User brian d foy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T13:19:16Zhttp://stackoverflow.com/feeds/user/8817http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language141What are five things you hate about your favorite language?brian d foy2008-11-11T22:14:43Z2009-12-19T21:12:23Z
<p>There's been a cluster of Perl-hate on Stackoverflow lately, so I thought I'd bring my <a href="http://use.perl.org/~brian%5Fd%5Ffoy/journal/32556" rel="nofollow">"Five things you hate about your favorite language"</a> question to StackOverflow. Take your favorite language and tell me five things you hate about it. Those might be things that just annoy you, admitted design flaws, recognized performance problems, or any other category. You just have to hate it, and it has to be your favorite language.</p>
<p>Don't compare it to another language, and don't talk about languages that you already hate. Don't talk about the things you like in your favorite language. I just want to hear the things that you hate but tolerate so you can use all of the other stuff, and I want to hear it about the language you wished other people would use.</p>
<p>I ask this whenever someone tries to push their favorite language on me, and sometimes as an interview question. If someone can't find five things to hate about his favorite tool, he don't know it well enough to either advocate it or pull in the big dollars using it. He hasn't used it in enough different situations to fully explore it. He's advocating it as a culture or religion, which means that if I don't choose his favorite technology, I'm wrong.</p>
<p>I don't care that much which language you use. Don't want to use a particular language? Then don't. You go through due diligence to make an informed choice and still don't use it? Fine. Sometimes the right answer is "You have a strong programming team with good practices and a lot of experience in Bar. Changing to Foo would be stupid."</p>
<p><hr /></p>
<p>This is a good question for code reviews too. People who really know a codebase will have all sorts of suggestions for it, and those who don't know it so well have non-specific complaints. I ask things like "If you could start over on this project, what would you do differently?" In this fantasy land, users and programmers get to complain about anything and everything they don't like. "I want a better interface", "I want to separate the model from the view", "I'd use this module instead of this other one", "I'd rename this set of methods", or whatever they really don't like about the current situation. That's how I get a handle on how much a particular developer knows about the codebase. It's also a clue about how much of the programmer's ego is tied up in what he's telling me.</p>
<p>Hate isn't the only dimension of figuring out how much people know, but I've found it to be a pretty good one. The things that they hate also give me a clue how well they are thinking about the subject.</p>
http://stackoverflow.com/questions/1919232/how-can-i-write-xml-data-to-a-file-with-perl/1932381#19323811Answer by brian d foy for How can I write XML data to a file with Perl?brian d foy2009-12-19T08:48:35Z2009-12-19T08:48:35Z<p>If you want to write UTF-8 data to a file (as you say in your XM declaration, open the file with a UTF-8 encoding:</p>
<pre><code>open my($fh), '>:utf8', 'data.xml' or die "Could not open file: $!";
print $fh qq{<?xml version="1.0" encoding="UTF-8">\n};
</code></pre>
http://stackoverflow.com/questions/1914966/how-can-i-determine-if-a-script-was-called-from-the-command-line-or-as-a-cgi-scri/1917256#19172563Answer by brian d foy for How can I determine if a script was called from the command line or as a cgi script?brian d foy2009-12-16T19:58:32Z2009-12-16T20:05:53Z<p>There's really no way good way to tell if your script was started by a web server or from the command line. Any of the environment variables can be set in both situations. I often run CGI programs straight from the command line to test them, for instance.</p>
<p>Knowing that, if you want to pick one environment variable to use, it just has to be one that you won't set in the other situation, or one that you set in both but give different values to. In that case, choose any environment variable that you like.</p>
<p>If you want to get more sophisicated, you can use something like <a href="http://search.cpan.org/dist/IO-Interactive" rel="nofollow">IO::Interactive</a> to determine if you're connected to a terminal. If you aren't, the filehanandle that <code>is_interactive</code> returns is a null filehandle and the output goes nowhere:</p>
<pre><code> print { is_interactive() } $http_header;
</code></pre>
<p>If you don't like how <a href="http://search.cpan.org/dist/IO-Interactive" rel="nofollow">IO::Interactive</a> decides, you can reimplement <code>is_interactive</code>. It's a very short piece of code and the higher-level interface is very nice.</p>
http://stackoverflow.com/questions/1910699/how-can-i-compare-the-performance-of-php-to-perl/1912499#191249910Answer by brian d foy for How can I compare the performance of PHP to Perl? brian d foy2009-12-16T05:27:01Z2009-12-16T06:14:07Z<p>First, you have to define what you mean by "performance", and how much you're willing to give up to get that.</p>
<p>Most people would tell you that this means something like "completes the task the fastest". That's not very interesting though. If you wanted a really fast solution, you shouldn't be using either PHP or Perl. You want to get as close to the bare metal as possible. Higher level languages waste a lot of time because they are general purpose tools. They have to be ready to do anything, not just what you want to do. As such, they give up some speed for flexibility.</p>
<p>Oh, but programming at such a low level takes too long and isn't portable. So now you have to factor in the development time it takes you to get to the point where you program is merely acceptably fast. If it completes in the blink of an eye, do you need need it to finish in half a blink? Maybe a high-level language is sufficiently speedy.</p>
<p>Some people will tell you Perl (or some other language) is really easy, and it is for the experienced programmer. That doesn't help you if you don't know Perl yet, though. The language doesn't really matter. If you know PHP but not Perl, maybe you can have a PHP solution tonight. If you go through my <a href="http://oreilly.com/catalog/9780596001322/" rel="nofollow">Learning Perl</a> book, which a reasonable person can do in about 40 hours if they do all of the exercises, maybe you have a Perl solution in two weeks. Vice versa, a person with reasonable Perl skills might have a Perl solution tonight, but a PHP solution in a week. That extra developer time might not be worth it.</p>
<p>A common problem I see with any sort of programmer, however, is the root cause of most inefficiency: they simply don't know how to program and neither do they care. Sure, they can make a syntactically valid program, and they can string together a series of Rube Goldbergesque statements that eventually give the desired effect, but they don't know how to design, make efficient use of resources, and so on. </p>
<p>Once such pretender I had to evaluate insisted that the company buy more hardware despite CPU utilization never topping 5%. He made huge in-memory hashes to configure everything, taking up 500 MB per hash and running on 16 apache child processes. His very simple program to upload a file and put it in a database was constrained by the physical amount of RAM in the machine. His performance was really low because he didn't know what he was doing. That he was using Perl didn't matter. </p>
<p>Indeed, a now deleted answer on this site used 16GB to <a href="http://stackoverflow.com/questions/1899362/how-can-i-generate-non-repetitive-random-4-bytes-hex-values-in-perl/1899863#1899863">generate 100 random numbers</a>. If you know how to design programs, you're not going to do stupid things like that in any language.</p>
<p>Some people like to point at benchmarks for toy programs. The problem is that you're never interested in writing toy programs, so the benchmarks are irrelevant. Tim Bray ran a <a href="http://www.tbray.org/ongoing/When/200x/2007/10/30/WF-Results" rel="nofollow">Winde Finder</a> competition, and try as he might to make a Ruby or Erlang solution come out on top, Perl took the prize. Don't get too excited about that though. Notice that the top 20 solutions came from only a handful of people, and that most languages also had very poor solutions. Some of the top solutions were in Erlang, even though Tim himself wasn't skilled enough in Erlang to get those results (and he's no slouch, mind you). He also notes that the Ruby solutions ran faster on a Mac laptop than they did on Sun's T5120. Not only that, but many of the top solutions, no matter the language, used the same technique: they mmapped a file. The programs were basically the same. Getting the picture yet? The programming language isn't even close to being the important decision.</p>
<p>Now maybe some people start to see the productivity angle: how much do I have to put in for what I get out? Many of my Perl colleagues will scoff at PHP, make snide remarks about its design, and so on, but they completely ignore the fact that for some basic things, you have to put in very little to get out what you need. However, they are probably right that you sacrifice a lot tying yourself into PHP's model. Maybe PHP gives you a short-term win, which is completely valid, but betting the farm on it might not be the right long-term solution, say, when you want to move to web services instead of web pages (I'm looking at you, Sourceforge).</p>
<p>And it just keeps going on from there. You have to figure out what you want for "performance", figure out how all of your choices impact that, then choose the solution that's right for you. That's a long way to say that no one can answer this question for you, and that even for you, the answer might change based on new requirements.</p>
http://stackoverflow.com/questions/1677258/what-is-perls-standard-string-comparison-order16What is Perl's "standard string comparison order"?brian d foy2009-11-04T22:55:46Z2009-12-15T21:25:29Z
<p>This is really a double question, my two end goals having answers to:</p>
<ul>
<li>What is the standard string comparison order, in terms of the mechanics?</li>
<li>What's a better name for that so I can update the docs?</li>
</ul>
<p>Perl's documentation for <a href="http://perldoc.perl.org/functions/sort.html" rel="nofollow">sort</a> says that without a block, <code>sort</code> uses "standard string comparison order". But what is that order? There should be a better name for it. For this question, I specifically mean the situation where <a href="http://perldoc.perl.org/perllocale.html" rel="nofollow">locale</a> is not in effect, since that defines its own order.</p>
<p>In years past, we normally called the standard sort order "ASCIIbetically". It's in <a href="http://oreilly.com/catalog/9780596001322/" rel="nofollow">Learning Perl</a> and many other books. However, that term is dated. Perl has been Unicode-aware since 5.6. Talking about ASCII is old school. Since Perl is also Unicode-aware, it knows about character strings. In <em>sv.c</em>, <code>Perl_sv_cmp</code> knows about <code>locale</code>, <code>bytes</code>, and UTF-8. The first two are easy. But I'm not confident about the third.</p>
<pre><code>/*
=for apidoc sv_cmp
Compares the strings in two SVs. Returns -1, 0, or 1 indicating whether the
string in C<sv1> is less than, equal to, or greater than the string in
C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
coerce its args to strings if necessary. See also C<sv_cmp_locale>.
=cut
*/
</code></pre>
<p>When Perl sorts using UTF-8, what is it really sorting? The bytes the string encodes to, the characters it represents (including marks maybe?), or something else? I think this is the relevant line in <em>sv.c</em> (line 6698 for commit 7844ec1):</p>
<pre><code> pv1 = tpv = (char*)bytes_to_utf8((const U8*)pv1, &cur1);
</code></pre>
<p>If I'm reading that right (using my rusty C), <code>pv1</code> is coerced to octets, turned into UTF-8, then coerced to characters (in the C sense). I think that means it's sorting by the UTF-8 encoding (i.e. the actual bytes that UTF-8 uses to represent a code point). Another way to say that is that it doesn't sort on graphemes. I think I've almost convinced myself I'm reading this right, but some of you know way more about this than I do.</p>
<p>From that, the next interesting line is 6708:</p>
<pre><code> const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
</code></pre>
<p>To me that looks like once it has <code>pv1</code> and <code>pv2</code>, which were coerced to <code>char *</code>, now are just compared byte-by-byte because they are coerced to <code>void *</code>. Is that what happens with <code>memcmp</code>, which looks like it's just comparing bits based on the various docs I've read so far? Again, I'm wondering what I'm missing in the trip from bytes->utf8->char->bytes, like maybe a Unicode normalization step. Checking out <code>Perl_bytes_to_utf8</code> in <em>utf8.c</em> didn't help me answer that question.</p>
<p>As a side note, I'm wondering if this is the same thing as the <a href="http://unicode.org/reports/tr10/" rel="nofollow">Unicode Collation Algorithm</a>? If it is, why does <a href="http://search.cpan.org/dist/Unicode-Collate" rel="nofollow">Unicode::Collate</a> exist? From the looks of it, I don't think Perl's <code>sort</code> handles canonical equivalence.</p>
http://stackoverflow.com/questions/1902645/where-should-i-put-the-ack-configuration-file-on-windows/1903817#19038174Answer by brian d foy for Where should I put the ack configuration file on Windows?brian d foy2009-12-14T22:03:09Z2009-12-14T22:03:09Z<p>The <a href="http://search.cpan.org/dist/ack/ack-base#THE%5F.ackrc%5FFILE" rel="nofollow">ack docs</a> answer your question. Always check the docs. :)</p>
http://stackoverflow.com/questions/1897609/non-mainstream-languages-bad-for-your-resume/1903420#19034202Answer by brian d foy for Non-Mainstream Languages, Bad for your resume? brian d foy2009-12-14T20:54:04Z2009-12-14T20:54:04Z<p>Employment is an arrangement where employers trade money and benefits for skills they need and that you have. To get a job, either find the employer that needs your current skills, or get the skills that employers want.</p>
<p>Although you might detect some contempt for your experience, I'd chalk that up more to the wall between research and industry. They are different environments with different skill sets. </p>
<p>As for your résumé, you don't have to put everything on it. If you think that your Haskell experience turns people off, don't mention Haskell. Your résumé has to include the basics, but it doesn't have to be exactly same for every employer. Emphasize the skills you learned in each job that a prospective employer needs.</p>
<p>Despite all that, I recommend not focussing on the language. Find a problem you want to work on, and learn the language you need to get that job. You might have to tough it out in a mind-numbing job to get some cred, but finally landing a job working on an interesting problem is much more satisfying than working on a boring problem with the language you like.</p>
http://stackoverflow.com/questions/1899362/how-can-i-generate-non-repetitive-random-4-bytes-hex-values-in-perl/1899863#18998634Answer by brian d foy for How can I generate non-repetitive random 4 bytes hex values in Perl? brian d foy2009-12-14T09:22:08Z2009-12-14T09:22:08Z<p><a href="http://stackoverflow.com/questions/1899362/how-can-i-generate-non-repetitive-random-4-bytes-hex-values-in-perl/1899437#1899437">Alnitak explained it</a>, but here's a much simpler implementation. I'm not sure how everyone starting reaching for <code>do {} while</code> since that's a really odd choice:</p>
<pre><code>my $max = 0xFFFF_FFFF;
my( %Seen, @numbers );
foreach ( 1 .. 100 )
{
my $rand = int rand( $max + 1 );
redo if $Seen{$rand}++;
push @numbers, $rand;
}
print join "\n", map { sprintf "0x%08x", $_ } @numbers;
</code></pre>
<p>Also, as Alnitak pointed out, if you are generating a lot of numbers, that <code>redo</code> might cycle many, many times.</p>
<p>These will only be pseudorandom numbers, but you're not really asking for real random number anyway. That would involve possible repetition. :)</p>
http://stackoverflow.com/questions/1893067/how-can-i-match-in-a-regular-expression/1894320#18943208Answer by brian d foy for How can I match "/*" in a regular expression?brian d foy2009-12-12T18:38:12Z2009-12-14T06:01:02Z<p>There are various ways to un-meta regex metacharacters. In your case, you need to handle the character that is the default delimiter as well as a meta-character.</p>
<ul>
<li><p>In the case of a delimiter character that you want to be a literal character, you can escape that character with \, although you can get <a href="http://en.wikipedia.org/wiki/Leaning%5Ftoothpick%5Fsyndrome" rel="nofollow">leaning toothpick syndrome</a>:</p>
<pre><code>m/\/usr\/local\/perls/;
</code></pre></li>
<li><p>You can change the delimiter:</p>
<pre><code>m(/usr/local/perl);
</code></pre></li>
<li><p>You can escape meta-characters in the same way:</p>
<pre><code>m(/usr/local/perl\*);
</code></pre></li>
<li><p>If you want a section of your pattern to be only literal characters, you can use <code>\Q</code> to automatically escape them for you:</p>
<pre><code>m(\Q/usr/local/perl*);
</code></pre></li>
<li><p>If you want a smaller section of your pattern to be only literal characters, you can use <code>\Q</code> then turn it off with <code>\E</code>:</p>
<pre><code>m(/usr/local/perl\Q*+?\E/);
</code></pre></li>
<li><p>The <code>\Q</code> is really the same thing as <a href="http://perldoc.perl.org/functions/quotemeta.html" rel="nofollow">quotemeta</a>. Putting your pattern into a variable then interpolating it in the match operator also solves the delimiter problem:</p>
<pre><code>my $pattern = quotemeta( '/usr/local/perl*+?/' );
m/$pattern/;
</code></pre></li>
</ul>
http://stackoverflow.com/questions/1897607/is-there-a-good-reason-many-web-sites-wont-accept-credit-cards-with-spaces-and-d/1897619#18976190Answer by brian d foy for Is there a GOOD reason many web sites won't accept credit cards with spaces and dashes in them?brian d foy2009-12-13T20:24:08Z2009-12-13T20:37:36Z<p>I don't recall anything in my merchant agreement that stipulated what users had to enter in a form field asking for a credit card number. I don't go to great lengths to normalize it, but I do remove whitespace and hyphens. There are rules about what you can re-display though, but that is merely an amount of content and not the precise form.</p>
<p>You'll see similar things for phone numbers and social security numbers, though, so I don't think it's a credit card number problem.</p>
<p>I mostly think that this is mostly a middleware problem. You have the front-end developed by one group, the backend developed by another, and inbetween there is an off-the-shelf middleware component that nobody likes and everyone has to target. The middleware is written as strictly as possible thinking that it's the responsibility of either side to normalize all data. Then the fingerpointing starts and everyone goes home crying, and you can't use spaces in your credit card number.</p>
http://stackoverflow.com/questions/1895879/whats-a-free-perl-ide-for-windows/1896206#18962066Answer by brian d foy for What's a free Perl IDE for Windows?brian d foy2009-12-13T11:16:13Z2009-12-13T11:27:32Z<p><a href="http://www.activestate.com/komodo%5Fedit/" rel="nofollow">Komodo Edit</a> is free.</p>
<p>Perl already comes with the best debuggers in the world: <code>print</code> and <code>Test::More</code>.</p>
<p>However, people keep asking this question, so we've listed all the ones we know about in <a href="http://faq.perl.org/perlfaq3.html" rel="nofollow">perlfaq3</a>.</p>
http://stackoverflow.com/questions/1892254/what-are-the-various-popularity-metrics-and-sites-for-programming-languages-such/1894284#18942841Answer by brian d foy for What are the various popularity metrics and sites for programming languages such as Ruby, Python, Java, etc?brian d foy2009-12-12T18:24:32Z2009-12-13T00:44:26Z<p>One of the more interesting metrics is the <a href="http://radar.oreilly.com/2009/07/state-of-the-computer-book-mar-25.html" rel="nofollow">State of the Computer Book Market</a> posts that Mike Hendrickson posts on <a href="http://radar.oreilly.com/mikeh/" rel="nofollow">his O'Reilly Radar blog</a>. I tend to favor metrics that are tied to the exchange of value rather than spotty things like the number of search engine queries. His latest post doesn't drill down into topic areas, but sometimes they do (using nice TreeMaps even).</p>
http://stackoverflow.com/questions/1893830/how-can-i-break-apart-fixed-width-columns-in-perl/1894093#189409310Answer by brian d foy for How can I break apart fixed-width columns in Perl?brian d foy2009-12-12T17:22:24Z2009-12-12T20:01:42Z<p>I like using <a href="http://perldoc.perl.org/functions/unpack.html" rel="nofollow">unpack</a> for this sort of thing. It's fast, flexible, and reversible.</p>
<p>You just need to know the positions for each column, and <code>unpack</code> can automatically trim the extra whitespace from each column. </p>
<p>If you change something in one of the columns, it's easy to go pack to the original format by repacking with the same format:</p>
<pre><code>my $format = 'A23 A8 A7 A*';
while( <DATA> ) {
chomp( my $line = $_ );
my( $machine, $year, $letter, $sentence ) =
unpack( $format, $_ );
# save the original line too, which might be useful later
push @grades, [ $machine, $year, $letter, $sentence, $_ ];
}
my @sorted = sort { $a->[2] cmp $b->[2] } @grades;
foreach my $tuple ( @sorted ) {
print $tuple->[-1];
}
# go the other way, especially if you changed things
foreach my $tuple ( @sorted ) {
print pack( $format, @$tuple[0..3] ), "\n";
}
__END__
darren.local 1987 A Sentence1
darren.local 1996 C Sentence2
darren.local 1991 E Sentence3
darren.local 1954 G Sentence4
darren.local 1998 H Sentence5
</code></pre>
<p><hr></p>
<p>Now, there's an additional consideration. It sounds like you might have this big chunk of multi-line text in a single variable. Handle this as you would a file by opening a filehandle on a reference to the scalar. The filehandle stuff takes care of the rest:</p>
<pre><code> my $lines = '...multiline string...';
open my($fh), '<', \ $lines;
while( <$fh> ) {
... same as before ...
}
</code></pre>
http://stackoverflow.com/questions/1888577/what-do-people-mean-when-they-say-perl-is-very-good-at-parsing/1890274#18902749Answer by brian d foy for What do people mean when they say “Perl is very good at parsing”?brian d foy2009-12-11T19:17:08Z2009-12-12T17:50:37Z<p>Don't take a statement of Perl's strengths to be a statement of another language's failings. Perl is good for text processing, but that doesn't mean Ruby or Python suck.</p>
<p>When people talk about Perl being "good for parsing", they're mainly echoing Perl's history; it was invented in the day when heavy-duty text processing wasn't easy. Try doing some of that in C or C++ (Java hadn't been invented yet, either!). Back in the day, Larry was trying to do his work with sed and awk, but running into their limitations. He made a tool that made text even easier to work with. </p>
<p>Perl is still very good for text manipulation tasks, but now so are a lot of other languages.</p>
http://stackoverflow.com/questions/1889780/intelligent-regex-in-perl/1890417#18904175Answer by brian d foy for Intelligent RegEx in Perl?brian d foy2009-12-11T19:41:03Z2009-12-11T19:41:03Z<p>This sounds like it might be a job for <a href="http://search.cpan.org/dist/XML-Twig" rel="nofollow">XML::Twig</a>, which can process XML and change parts of it as it runs into them, including adding attributes to tags. I suspect you'd spend as much time getting used to Twig and you would finding a regex solution that only mostly worked. And, at the end you'd know enough Twig to use it on the next project. :)</p>
http://stackoverflow.com/questions/1885081/what-are-some-alternatives-to-persistentperl-or-speedycgi/1890399#18903991Answer by brian d foy for What are some alternatives to PersistentPerl or SpeedyCGI?brian d foy2009-12-11T19:37:38Z2009-12-11T19:37:38Z<p>Although I don't know I would recommend FastCGI for your problem, it's just a process that sits there handling requests. You don't have to put a web front-end on it. mod_perl would be the same sort of thing. Your script turns into a service around which you have a thin wrapper. Again, it depends on what you are doing.</p>
http://stackoverflow.com/questions/1885800/how-can-i-obfuscate-my-perl-script-to-make-it-difficult-to-reverse-engineer/1890345#18903454Answer by brian d foy for How can I obfuscate my Perl script to make it difficult to reverse engineer?brian d foy2009-12-11T19:29:42Z2009-12-11T19:29:42Z<p>Don't try to obfuscate your Perl. You're wasting your time there. I show plenty of people how to break that sort of stuff in <a href="http://oreilly.com/catalog/9780596527242" rel="nofollow">Mastering Perl</a> just so they won't try to do it.</p>
<p>Have you considered implementing the sensitive stuff in C and shipping a pre-compiled binary with a Perl interface? It's relatively easy to do and has the same effect without relying on a clever trick. The determined, skilled person can still reverse engineer it, but that's true for any solution. You do have to compile the library for each platform, but if this stuff is important enough to protect, it important enough to charge enough to people to use it.</p>
<p>Alternatively, put the sensitive stuff behind a web service so they never get the code.</p>
<p>The business answer is to not give the program to people you don't trust, or to make the penalties stiff enough to discourage it. </p>
http://stackoverflow.com/questions/1888723/how-can-i-develop-an-iphone-application-in-perl/1890292#18902924Answer by brian d foy for How can I develop an iPhone application in Perl?brian d foy2009-12-11T19:20:37Z2009-12-11T19:20:37Z<p>Why would you want to use Perl? You'd miss out on everything the iPhone SDK gives you, and you wouldn't be in the iTunes App Store.</p>
<p>If you are trying to use Perl because it's the only language you know, just bite the bullet and learn Objective-C. Use the right tool for the right job. Despite how much I enjoy working in Perl, I don't think it's the answer to every problem.</p>
http://stackoverflow.com/questions/1882101/how-can-i-quickly-check-if-linux-unzip-is-installed-using-perl/1883075#18830752Answer by brian d foy for How can I quickly check if Linux `unzip` is installed using Perl?brian d foy2009-12-10T18:34:36Z2009-12-10T18:34:36Z<p>I just use <a href="http://search.cpan.org/dist/Archive-Extract" rel="nofollow">Archive::Extract</a> and configure it to prefer binaries to Perl modules. If <code>unzip</code> is there, it uses it. Otherwise, it falls back to pure Perl.</p>
http://stackoverflow.com/questions/1880995/how-do-i-install-a-module-and-its-dependencies-in-activeperl-on-windows/1882773#18827732Answer by brian d foy for How do I install a module and its dependencies in ActivePerl on Windows?brian d foy2009-12-10T17:52:42Z2009-12-10T18:27:52Z<p>If you are using ActivePerl, try the <a href="http://aspn.activestate.com/ASPN/Downloads/ActivePerl/PPM/" rel="nofollow">PPM (Perl Package Manager)</a> tool that comes with ActivePerl first. When you tell it to install a module, it should handle all of the dependencies for you. </p>
<p>Note the <a href="http://deps.cpantesters.org/?module=Email%3A%3ASend%3A%3AGmail&perl=any+version&os=any+OS" rel="nofollow">dependency tree</a> for Email::Send::Gmail. Some of those modules require additional installation of third party software, most notably <a href="http://www.openssl.org/" rel="nofollow">OpenSSL</a>, which <code>cpan</code> won't do for you.</p>
http://stackoverflow.com/questions/1881521/using-perls-template-pm-how-can-i-select-a-random-element-from-an-array-and-out/1882986#18829864Answer by brian d foy for Using Perl's Template.pm, how can I select a random element from an array and output it?brian d foy2009-12-10T18:21:26Z2009-12-10T18:21:26Z<p>If I have to do anything complex, I just use <code>[%PERL%]</code> sections and skip the Template Toolkit syntax.</p>
<p>Additionally, I figure out as much as I can in the controller and pass in a data structure of the values to use. I try to never select values or create new values in the template. Once you move logic into the template, you have to redefine it when you have another set of templates.</p>
http://stackoverflow.com/questions/1877638/how-can-i-replace-all-dies-with-confess-in-a-perl-application/1882844#18828442Answer by brian d foy for How can I replace all 'die's with 'confess' in a Perl application?brian d foy2009-12-10T18:00:42Z2009-12-10T18:00:42Z<p>I usually only want to replace the <code>die</code>s in a bit of code, so I localize the <code>__DIE__</code> handler:</p>
<pre><code> {
use Carp;
local $SIG{__DIE__} = \&Carp::confess;
....
}
</code></pre>
<p>As a development tool this can work, but some modules play tricks with this to get their features to work. Those features may break in odd ways when you override the handler they were expecting. It's not a good practice, but it happens sometimes.</p>
http://stackoverflow.com/questions/1878108/whats-the-modern-way-of-declaring-which-version-of-perl-to-use/1882736#18827362Answer by brian d foy for What's the modern way of declaring which version of Perl to use?brian d foy2009-12-10T17:46:36Z2009-12-10T17:46:36Z<p>I just use something like <code>5.010_001</code>. I've grow weary of dealing with version string problems for something that should be mind-numbingly simple. </p>
<p>Since I mostly deal with build systems, I have the constant struggle of <code>Module::Build</code>'s internal <code>version.pm</code> which is out of sync with the <code>version.pm</code> on CPAN. I think that's mostly better now, but I have better things to think about.</p>
<p>The best practice should always be to do the thing that commands the least of your attention, and certainly not take more attention than the value it gives back. In my opinion, v-strings and dotted decimals were a huge distraction with no additional benefit, wasting a lot of valuable programmer time just to get back to the starting point.</p>
<p>I should also note that Perl::Critic has often pushed questionable practices for the higher purpose of reducing the ways that people do things. However, those practices often cause problems, make them un-best. This is one of those cases. A more realistic best practice is to not make Perl::Critic compliance your goal. Use it where it is useful, but in cases like this, don't waste mental time on it.</p>
http://stackoverflow.com/questions/1875276/encapsulating-content-in-a-variable/1876529#18765294Answer by brian d foy for Encapsulating Content In a Variablebrian d foy2009-12-09T20:10:52Z2009-12-09T20:10:52Z<p>I think you want to create an anonymous subroutine that captures the behaviour and references that you want but you don't run until you need it:</p>
<pre><code>my $text; # not yet initialized
my $substr = sub { substr( $text, 12 ) }; # doesn't run yet
... # lots of code, initializing $text eventually
my $string = $substr->(); # now get the substring;
</code></pre>
http://stackoverflow.com/questions/1871655/how-can-i-listen-on-multiple-sockets-in-perl/1874485#18744851Answer by brian d foy for How can I listen on multiple sockets in Perl?brian d foy2009-12-09T15:05:48Z2009-12-09T15:05:48Z<p>You might want to check out <a href="http://rads.stackoverflow.com/amzn/click/0201615711" rel="nofollow">Network Programming with Perl</a>. It's a bit dated, but the topic hasn't changed that much.</p>
http://stackoverflow.com/questions/1873329/how-do-i-install-perl-modules-on-machines-without-an-internet-connection/1874448#18744486Answer by brian d foy for How do I install Perl modules on machines without an Internet connection?brian d foy2009-12-09T15:01:19Z2009-12-09T15:01:19Z<p>You can create a <a href="http://search.cpan.org/dist/CPAN-Mini" rel="nofollow">MiniCPAN</a> that has just the latest versions of everything from CPAN. You can insert additional, non-public modules into it with <a href="http://search.cpan.org/dist/CPAN-Mini-Inject" rel="nofollow">CPAN::Mini::Inject</a>. If you need to greater control over versions (i.e. not choosing the latest versions), you might want to create a <a href="http://search.cpan.org/dist/MyCPAN-App-DPAN" rel="nofollow">DPAN</a>.</p>
<p>With any of these solutions, you can configure your CPAN client to pull from your local source. That could be a directory you know ahead of time or something that you figure out dynamically, like a CD or a thumb-drive. It's just a matter of setting up the configuration correctly.</p>
<p>You might be able to get away with creating operating-system packages for most of your work, but that still means you have to compile them at least the first time.</p>
http://stackoverflow.com/questions/1862220/how-can-i-sync-files-in-two-different-git-repositories-not-clones-and-maintain4How can I sync files in two different git repositories (not clones) and maintain history?brian d foy2009-12-07T19:14:27Z2009-12-07T22:47:56Z
<p>I maintain two different git repos that need to share some files, and I'd like the commits in one repo to show up in the other. What's a good way to do that for ongoing maintenance?</p>
<p>I've been one of the maintainers of the <a href="http://github.com/briandfoy/perlfaq" rel="nofollow">perlfaq (Github)</a>, and recently I fell into the role of maintaining the Perl core documentation, which is also in git. </p>
<p>Long before I started maintaining the perlfaq, it lived in a separate source control repository. I recently converted that to git. Periodically, one of the perl5-porters would sync the shared files in the perlfaq repo and the perl repo. Since we've switched to git, we'e been a bit lazy converting the tools, and I'm now the one who does that. For the time being, the two repos are going to stay separate.</p>
<p>Currently, to sync the FAQ for a new (monthly) release of perl, I'm almost ashamed to say that I merely copy the <em>perlfaq</em>.pod_ files in the perlfaq repo and overlay them in the perl repo. That loses history, etc. Additionally, sometimes someone makes a change to those files in the perl repo and I end up overwriting it (yes, check <code>git diff</code> you idiot!). The files do not have the same paths in the repo, but that's something that I could change, I think.</p>
<p>What I'd like to do, in the magical universe of rainbows and ponies, is pull the objects from the perlfaq repo and apply them in the perl repo, and vice-versa, so the history and commit ids correspond in each.</p>
<ul>
<li>Creating patches works, but it's also a lot work to manage it</li>
<li>Git submodules seem to only work to pull in the entire external repo</li>
<li>I haven't found something like svn's file externals, but that would work in both directions anyway</li>
<li>I'd love to just fetch objects from one and cherry-pick them in the other</li>
</ul>
<p>What's a good way to manage this?</p>
http://stackoverflow.com/questions/1347478/how-can-i-reverse-a-string-that-contains-combining-characters-in-perl/1348800#13488005Answer by brian d foy for How can I reverse a string that contains combining characters in Perl?brian d foy2009-08-28T19:10:03Z2009-12-07T17:42:33Z<p>I modified Chas's example a bit:</p>
<ul>
<li>Set the encoding on STDOUT to avoid "wide character in print" warnings;</li>
<li>Use a positive lookahead assertion (and no separator retention mode) in <code>split</code></li>
</ul>
<p>It's basically the same thing with a couple of tweaks.</p>
<pre><code>use strict;
use warnings;
binmode STDOUT, ":utf8";
my $original = "re\x{0301}sume\x{0301}";
my $wrong = reverse $original;
my $right = join '', reverse split /(?=\X)/, $original;
print <<HERE;
original: [$original]
wrong: [$wrong]
right: [$right]
HERE
</code></pre>
http://stackoverflow.com/questions/1734145/is-this-specific-path-concatenation-in-perl-code-exploitable/1735528#173552810Answer by brian d foy for Is this specific path concatenation in Perl code exploitable?brian d foy2009-11-14T20:39:35Z2009-12-07T17:36:43Z<p>You're asking if your code is exploitable. Yes. All code is exploitable. You might not think it is because you think you've covered the situations that you can think about, but the other side typically finds a situation you haven't thought about.</p>
<p>Security is more than just the code. You have to consider the environment it runs it, what else the user was allowed to do before he ran your code, etc. etc.</p>
<p>If you're truly worried about what might happen with this code, create a risk matrix. Start with the part that you're worried about and list all of its assumptions. For instance, in your case you might start with:</p>
<ul>
<li><em>/home/username</em> is the directory I think it is (i.e. not a mount point, symlink, fake user, etc)</li>
<li>the supplied path is one I expect and is allowed to exist</li>
<li>the path is a regular file (e.g. not a special device)</li>
<li>the path has a certain owner, group, or mode</li>
<li>I'm running the <code>perl</code> I think I am (no path attack in finding executable)</li>
<li><code>PERL5LIB</code>, <code>PERL5OPT</code>, or <code>-I</code> did not front-load module load paths (no path attack in finding modules)</li>
</ul>
<p>And so on and so on. Once you develop all of your assumptions, you ensure that they are valid by locking down those cases. You also find all of their assumptions, and lock down those, and so on. Perl's <a href="http://perldoc.perl.org/perlsec.html" rel="nofollow">taint checking</a> will help with some of those (and I talk about it in more depth in <a href="http://oreilly.com/catalog/9780596527242/" rel="nofollow">Mastering Perl</a>). </p>
<p>Successful attacks are often indirect ones. For instance, I was part of a job to secure some data in a very rich and paranoid bank. We did all the computery stuff we could do, and one of my co-workers, in idle conversation, asked how they did the task before we installed the server. They said, "Oh, the data is on a binder on so-and-so's desk". Despite all of our work, their pay, and everyone's time and effort, anyone on the inside who wanted the data could quite literally walk off with it no matter what we did with the server.</p>
<p>Now that you have your risk matrix, you start developing your risk tolerance. Nothing is ever going to be perfect, and you could work to the heat death of the universe locking everything down. Instead of being perfect, you settle for how much risk you're willing to take on for each part of the code. You figure out what could happen if one part is compromised and how much that would cost you (in dollars, reputation, whatever) and figure out how much work that is worth to you (or your employers). You do just enough work to be below your risk tolerance.</p>
<p>The problem is that even the best people will miss something. Small cracks in security might not seem that important, but if you put enough together you can eventually bootstrap yourself into an exploitable situation. Security is holistic.</p>
http://stackoverflow.com/questions/1571501/how-can-i-iterate-through-nested-arrays-in-perl/1571767#15717679Answer by brian d foy for How can I iterate through nested arrays in Perl?brian d foy2009-10-15T11:27:23Z2009-12-07T17:34:39Z<p>See the <a href="http://perldoc.perl.org/perldsc.html" rel="nofollow">perldsc</a> documentation. That's the Perl Data Structures Cookbook, which has examples for dealing with arrays of arrays. From what you're doing though, it doesn't look like you need an array of arrays. </p>
<p>For your problem of taking two numbers per line and outputting one number per line, just turn the whitespace into newlines:</p>
<pre><code> while( <> ) {
s/\s+/\n/; # turn all whitespace runs into newlines
print; # it's ready to print
}
</code></pre>
<p>With Perl 5.10, you can use the new \h character class that matches only horizontal whitespace:</p>
<pre><code> while( <> ) {
s/\h+/\n/; # turn all horizontal whitespace runs into newlines
print; # it's ready to print
}
</code></pre>
<p>As a Perl one-liner, that's just:</p>
<pre><code> % perl -pe 's/\h+/\n/' file.txt
</code></pre>
http://stackoverflow.com/questions/1920105/how-can-i-open-a-db-handle-in-c-and-pass-it-to-perl-using-swigComment by brian d foy on How can I open a DB handle in C and pass it to Perl using SWIG?brian d foy2009-12-19T09:10:22Z2009-12-19T09:10:22ZWhy do you think doing it in C is going to help anything? Why do you even know what the passwords are?http://stackoverflow.com/questions/1923792/why-cant-xmlschematronxpath-find-xmlxpathComment by brian d foy on Why can't XML::Schematron::XPath find XML::XPath?brian d foy2009-12-19T08:57:21Z2009-12-19T08:57:21ZHow did you install XML::Schematron::XPath?http://stackoverflow.com/questions/1923707/whats-the-best-way-to-debug-third-party-perl-scriptComment by brian d foy on What's the best way to debug third-party Perl script?brian d foy2009-12-19T00:45:11Z2009-12-19T00:45:11ZFor what it's worth, I debug third-party stuff the same way I debug first-party stuff :)http://stackoverflow.com/questions/1920045/how-can-i-get-the-version-and-location-of-an-installed-perl-module/1928988#1928988Comment by brian d foy on How can I get the version and location of an installed Perl module?brian d foy2009-12-18T23:03:54Z2009-12-18T23:03:54Z<code>cpan -D Foo::Bar</code> is slightly shorter. :)http://stackoverflow.com/questions/1910699/how-can-i-compare-the-performance-of-php-to-perlComment by brian d foy on How can I compare the performance of PHP to Perl? brian d foy2009-12-16T20:09:21Z2009-12-16T20:09:21ZIt's not easy to run Perl from <i>any</i> hosting. It's easy to find hosting where it is easy to run Perl, though, but that's a different thing. The problem is that people are too cheap to even buy a basic hosting account that would save them a lot of time and trouble. They'd rather waste time and energy trying to make a crippled free account work.http://stackoverflow.com/questions/1915746/in-perl-how-can-i-find-the-index-of-a-given-value-in-an-array/1916176#1916176Comment by brian d foy on In Perl, how can I find the index of a given value in an array?brian d foy2009-12-16T20:03:36Z2009-12-16T20:03:36Z@daotoad: maybe that's because I keep changing the FAQ on you. :)http://stackoverflow.com/questions/1915746/in-perl-how-can-i-find-the-index-of-a-given-value-in-an-array/1916176#1916176Comment by brian d foy on In Perl, how can I find the index of a given value in an array?brian d foy2009-12-16T20:02:56Z2009-12-16T20:02:56ZI'd be satisfied if most people at least read it once. People constantly ask how relevant the FAQ is, and StackOverflow has been a great natural experiment: everyone re-asks the FAQ questions.http://stackoverflow.com/questions/1915746/in-perl-how-can-i-find-the-index-of-a-given-value-in-an-array/1916549#1916549Comment by brian d foy on In Perl, how can I find the index of a given value in an array?brian d foy2009-12-16T20:01:06Z2009-12-16T20:01:06ZThis answer is a waste of server space. You can delete answers to save your dwindling reputation though. It will still waste server space though. :) http://stackoverflow.com/questions/1915616/how-can-i-elegantly-call-a-perl-subroutine-whose-name-is-held-in-a-variableComment by brian d foy on How can I elegantly call a Perl subroutine whose name is held in a variable?brian d foy2009-12-16T19:58:13Z2009-12-16T19:58:13ZRealize that when you take a reference to something to immediately dereference it, you can skip the middle steps. :)http://stackoverflow.com/questions/1914966/how-can-i-determine-if-a-script-was-called-from-the-command-line-or-as-a-cgi-scri/1915017#1915017Comment by brian d foy on How can I determine if a script was called from the command line or as a cgi script?brian d foy2009-12-16T19:45:59Z2009-12-16T19:45:59ZThat still doesn't really help because you can set any environment variables you like from the command line.http://stackoverflow.com/questions/1913362/how-can-perltidy-align-the-opening-parenthesis-for-method-argumentsComment by brian d foy on How can perltidy align the opening parenthesis for method arguments?brian d foy2009-12-16T11:03:26Z2009-12-16T11:03:26ZThat's the -sfp switch with nothing else going on.http://stackoverflow.com/questions/1910699/how-can-i-compare-the-performance-of-php-to-perl/1912499#1912499Comment by brian d foy on How can I compare the performance of PHP to Perl? brian d foy2009-12-16T06:02:23Z2009-12-16T06:02:23ZCommunity wiki. That's the Suck.http://stackoverflow.com/questions/1910699/how-can-i-compare-the-performance-of-php-to-perl/1912499#1912499Comment by brian d foy on How can I compare the performance of PHP to Perl? brian d foy2009-12-16T05:55:01Z2009-12-16T05:55:01ZIt's actually an entire chapter in Mastering Perl, and a couple of my podcasted talks: <a href="http://www252.pair.com/comdog/" rel="nofollow">www252.pair.com/comdog</a> . And, why can't StackOverflow be my blog. :)http://stackoverflow.com/questions/1899362/how-can-i-generate-non-repetitive-random-4-bytes-hex-values-in-perl/1899431#1899431Comment by brian d foy on How can I generate non-repetitive random 4 bytes hex values in Perl? brian d foy2009-12-15T09:51:26Z2009-12-15T09:51:26ZI like that someone actually provided a solution that gave real random numbers. I remember having to do something similar and making a radiation detector out a computer microphone. :)http://stackoverflow.com/questions/1904420/how-do-i-write-an-http-server-in-perlComment by brian d foy on How do I write an HTTP server in Perl?brian d foy2009-12-15T06:49:23Z2009-12-15T06:49:23ZCuriously, the answers so far point you to the same moudles you would have found by searching "http server" at <a href="http://search.cpan.org" rel="nofollow">search.cpan.org</a> . At least make it look like you're trying to do your own work. :)