User ysth - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T01:13:01Zhttp://stackoverflow.com/feeds/user/17389http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1818769/how-do-i-resolve-this-syntax-error-i-get-when-using-the-perl-conditional-operator/1819070#18190708Answer by ysth for How do I resolve this syntax error I get when using the Perl conditional operator?ysth2009-11-30T10:45:17Z2009-11-30T10:45:17Z<pre><code>$parallel_on=='YES'? my $pid = $pm->start and next; :0;
</code></pre>
<p>There's a lot wrong there. First, there's an extra semicolon; get rid of it.</p>
<pre><code>$parallel_on=='YES'? my $pid = $pm->start and next :0;
</code></pre>
<p>Next, <code>=</code> and <code>and</code> have lower precedence than ?:, so you'd need to enclose the true condition in parentheses:</p>
<pre><code>$parallel_on=='YES'? (my $pid = $pm->start and next) :0;
</code></pre>
<p>At this point, it will compile, but still not work. == is for numeric comparisons, and 'YES', being a string not beginning with digits, has a numeric value of 0, so the condition is almost always going to be true. (For example, 'NO'=='YES' is comparing 0==0, which is true.) Use eq instead:</p>
<pre><code>$parallel_on eq 'YES'? (my $pid = $pm->start and next) :0;
</code></pre>
<p>The next part, I'm not sure how to help you with, since I'm not sure what the rest of your code looks like. <code>my $pid</code> declares a new lexical, with scope to the end of the enclosing block, but as soon as you assign to it, you use <code>next</code> to exit (and perhaps reenter) the block, thus losing the value you stored in $pid. You probably want to declare $pid before the block.</p>
<pre><code>my $pid;
...
$parallel_on eq 'YES'? ( $pid = $pm->start and next) :0;
</code></pre>
<p>Now you have a <code>0;</code> hanging out, serving no purpose, when the condition is false. Get rid of it:</p>
<pre><code> if ( $parallel_on eq 'YES' ) { $pid = $pm->start and next }
</code></pre>
<p>Unless you meant to assign it to $pid when the condition is false?</p>
<pre><code> $pid = $parallel_on eq 'YES' ? $pm->start : 0 and next;
</code></pre>
http://stackoverflow.com/questions/1818093/how-can-i-construct-os-independent-file-paths-in-perl/1818317#18183171Answer by ysth for How can I construct OS-independent file paths in Perl?ysth2009-11-30T07:29:55Z2009-11-30T07:29:55Z<p>It sounds like you are using path separator to mean the character between directory/file name components. But just in case you meant the other meaning:</p>
<p>Some things (notably environment variables like MANPATH or PERL5LIB) take a list of file or directory names, separated by a path separator character. Perl's Config module portably supplies such a character as $Config::Config{'path_sep'}.</p>
http://stackoverflow.com/questions/1817373/how-do-i-take-a-reference-to-an-array-slice-in-perl/1817634#18176342Answer by ysth for How do I take a reference to an array slice in Perl?ysth2009-11-30T02:52:45Z2009-11-30T02:52:45Z<p>That's how you do it, yes. Think about it for a bit and it's not such a hack; it is simply using Perl's feature for assembling arbitrary lvalues into an array and then taking a reference to it.</p>
<p>You can even use it to defer creation of hash values:</p>
<pre><code>$ perl -wle'my %foo; $foo = sub{\@_}->($foo{bar}, $foo{baz}); print "before: ", keys %foo; $foo->[1] = "quux"; print "after: ", keys %foo'
before:
after: baz
</code></pre>
http://stackoverflow.com/questions/1817230/how-can-i-print-a-hash-of-hashes-of-hashes-in-perl/1817336#18173364Answer by ysth for How can I print a hash of hashes of hashes in Perl?ysth2009-11-30T00:44:26Z2009-11-30T00:44:26Z<p>When using % to dereference an expression, the expression must be enclosed in {} unless it's a simple scalar (e.g. <code>%$href</code>).</p>
<p>I recommend you read <a href="http://perlmonks.org/?node=References+quick+reference" rel="nofollow">http://perlmonks.org/?node=References+quick+reference</a>.</p>
http://stackoverflow.com/questions/1814790/join-results-of-two-select-statements/1814801#18148010Answer by ysth for Join results of two select statementsysth2009-11-29T06:09:20Z2009-11-29T06:09:20Z<p>It would help if you showed what output you actually want.
From your "as Added" and "as Removed" I'm guessing that you <em>don't</em> want a union, but maybe something like this:</p>
<pre><code>select
date,
sum(if(action='ADD',qty,0)) as Added,
sum(if(action='REMOVE',qty,0)) as Removed
from `table`
where date='11-23';
</code></pre>
<p>(with a <code>group by date</code> if you are selecting multiple dates.)</p>
http://stackoverflow.com/questions/1806333/are-there-reasons-to-ever-use-the-two-argument-form-of-open-in-perl/1806552#18065526Answer by ysth for Are there reasons to ever use the two-argument form of open(...) in Perl?ysth2009-11-27T02:53:28Z2009-11-29T05:39:18Z<p>One- and two-arg open applies any default layers specified with the <code>-C</code> switch or <code>open</code> pragma. Three-arg open does not. In my opinion, this functional difference is the strongest reason to choose one or the other (and the choice will vary depending what you are opening). Which is easiest or most descriptive or "safest" (you <em>can</em> safely use two-arg open with arbitrary filenames, it's just not as convenient) take a back seat in module code; in script code you have more discretion to choose whether you will support default layers or not.</p>
<p>Also, one-arg open is needed for Damian Conway's file slurp operator</p>
<pre><code>$_ = "filename";
$contents = readline!open(!((*{!$_},$/)=\$_));
</code></pre>
http://stackoverflow.com/questions/1806762/moose-extending-exporter-causes-constructor-to-disappear/1806871#18068714Answer by ysth for Moose: Extending Exporter causes constructor to disappear? ysth2009-11-27T05:09:04Z2009-11-27T21:47:35Z<p>It is assuming you are inheriting from another Moose-based class, so it doesn't inherit from Moose::Object. I'm not sure what the standard answer would be: just manually adding Moose::Object or somehow using MooseX::NonMoose or something else.</p>
<p>But Exporter works just fine even when not inherited; just import its import routine:</p>
<pre><code>use Exporter "import";
</code></pre>
http://stackoverflow.com/questions/1809469/how-do-i-read-paragraphs-at-a-time-with-perl/1810338#18103381Answer by ysth for How do I read paragraphs at a time with Perl?ysth2009-11-27T19:32:59Z2009-11-27T19:32:59Z<p>Using <> that way (interactively) in paragraph mode is going to be confusing. It won't return when you hit "return"; instead, it will read until it gets a non empty line (the start of a paragraph), then read until it gets an empty line (the end of that paragraph), then continue reading until it gets a non-empty line (the start of the following paragraph - which will be buffered, not returned) so it knows that it's discarded any extra empty lines.</p>
<p>Perhaps you should be using:</p>
<pre><code>local $/ = "\n"; <>
</code></pre>
<p>at the end of your loop instead. Or maybe POSIX::getchar().</p>
http://stackoverflow.com/questions/1802757/remove-first-line-in-text-file-without-allocating-memory-for-entire-text-file/1802790#18027901Answer by ysth for Remove first line in text file without allocating memory for entire text fileysth2009-11-26T10:13:00Z2009-11-26T10:13:00Z<p>Assuming tail from GNU coreutils:</p>
<pre><code>tail -n +2 file > newfile
</code></pre>
http://stackoverflow.com/questions/1802233/grep-how-to-search-for-a-value-but-at-the-same-time-exclude-some-matches/1802409#18024090Answer by ysth for GREP: How to search for a value but at the same time exclude some matchesysth2009-11-26T08:58:09Z2009-11-26T08:58:09Z<p>I would have just done this:</p>
<pre><code>grep 'SEARCHTERM' server.log | grep -v -e 'PHHIABFFH' -e 'Stats'
</code></pre>
http://stackoverflow.com/questions/1787892/overflow-over-scanf8s-string/1787965#17879655Answer by ysth for Overflow over scanf("%8s", string)?ysth2009-11-24T05:21:21Z2009-11-24T05:21:21Z<p>See <a href="http://www.opengroup.org/onlinepubs/009695399/functions/scanf.html" rel="nofollow">http://www.opengroup.org/onlinepubs/009695399/functions/scanf.html</a>:</p>
<blockquote>
<p>Each directive is composed of one of the following...An optional non-zero decimal integer that specifies the maximum field width.</p>
<p>s<br>
Matches a sequence of bytes that are not white-space characters. The application shall ensure that the corresponding argument is a pointer to the initial byte of an array of char, signed char, or unsigned char large enough to accept the sequence and a terminating null character code, which shall be added automatically. </p>
</blockquote>
<p>So it won't overflow a 9-byte string buffer.</p>
http://stackoverflow.com/questions/1787466/how-can-i-open-and-close-stderr-in-perl/1787621#17876216Answer by ysth for How can I open() and close() STDERR in Perl?ysth2009-11-24T03:39:19Z2009-11-24T03:39:19Z<p>dup it first, then dup the dup to reopen it (error checking left as an exercise for the reader, though dealing with errors when STDERR is unavailable can be an exercise in frustration):</p>
<pre><code>open(my $saveerr, ">&STDERR");
close(STDERR);
open(STDERR, ">&", $saveerr);
</code></pre>
<p>Note that when you close STDERR you free file descriptor 2; if you open another file and it gets file descriptor 2, any non-Perl libraries you are using may think that other file is stderr.</p>
http://stackoverflow.com/questions/1781253/how-do-i-create-a-dispatch-table-in-perl-with-key-contain-whitespace-and-the-subr/1781282#17812825Answer by ysth for How do I create a dispatch table in Perl with key contain whitespace and the subroutine accepting an array parameter?ysth2009-11-23T05:36:40Z2009-11-23T05:36:40Z<p><code>\&func1</code> is a subroutine reference, but <code>\&func1(\@arraydata)</code> is a reference to the value returned by a call to &func1. Try instead just: <code>"ab 1" => \&func1, ...</code>. The passing of @arraydata is correct in your dispatch code.</p>
<p>Note that <code>/$k/</code> will make metacharacters like . or * have their special effect in the regex; if you don't want that, do <code>/\Q$k/</code> instead. Or possibly you want just <code>eq $k</code>?</p>
http://stackoverflow.com/questions/1778092/how-can-i-determine-the-download-speed-and-amount-from-lwpsimples-getstore/1778148#17781488Answer by ysth for How can I determine the download speed and amount from LWP::Simple's getstore()?ysth2009-11-22T07:57:51Z2009-11-22T21:58:51Z<p>Instead of using <code>LWP::Simple</code>, use <a href="http://search.cpan.org/perldoc/LWP%3A%3AUserAgent" rel="nofollow">LWP::UserAgent</a> directly. For a starting point, look at how LWP::Simple::getstore initializes a $ua and invokes request. You'll want to call <code>$ua->add_handler</code> to specify a <code>response_data</code> handler to do whatever you want; by default (at least for the HTTP protocol) <code>LWP::UserAgent</code> will be reading up to 4Kb chunks and call the <code>response_data</code> handler for each chunk, but you can suggest a different size in the request method parameters.</p>
<p>You may want to specify other handlers too, if you want to differentiate between header data and actual data that will be stored in the file or do something special if there are redirects.</p>
http://stackoverflow.com/questions/1768749/effective-interpreted-programming-language-for-file-image-manipulation/1771700#17717002Answer by ysth for Effective Interpreted Programming Language for File/Image manipulation ysth2009-11-20T16:36:42Z2009-11-20T16:36:42Z<p>Yet another alternative: shell of your choice, using <a href="http://netpbm.sourceforge.net/" rel="nofollow">netpbm</a>.</p>
http://stackoverflow.com/questions/1757918/should-i-use-0-or-copy-the-argument-list-in-perl/1758117#17581175Answer by ysth for Should I use $_[0] or copy the argument list in Perl?ysth2009-11-18T18:36:01Z2009-11-18T21:28:36Z<p>You are micro-optimizing; try to avoid that. Go with whatever is most readable/maintainable. Usually this would be the one where you use a lexical variable, since its name indicates its purpose...but if you use a name like <code>$data</code> or <code>$x</code> this obviously doesn't apply.</p>
<p>In terms of the technical details, for most purposes you can estimate the time taken by counting the number of basic ops perl will use. For your <code>$_[0]</code>, an element lookup in a non-lexical array variable takes multiple ops: one to get the glob, one to get the array part of the glob, one or more to get the index (just one for a constant), and one to look up the element. <code>$hr</code>, on the other hand is a single op. To cater to direct users of @_, there's an optimization that reduces the ops for <code>$_[0]</code> to a single combined op (when the index is between 0 and 255 inclusive), but it isn't used in your case because the hash-deref context requires an additional flag on the array element lookup (to support autovivification) and that flag isn't supported by the optimized op.</p>
<p>In summary, using a lexical is going to be both more readable and (if you using it more than once) imperceptibly faster.</p>
http://stackoverflow.com/questions/1757253/how-can-i-write-a-wrapper-script-to-create-an-svn-branch/1757382#17573823Answer by ysth for How can I write a wrapper script to create an svn branch?ysth2009-11-18T16:47:16Z2009-11-18T17:35:19Z<p>SVN::Client is the official perl interface to the subversion client functionality. The other modules you list don't seem appropriate to your task (and just use the svn binary under the hood, which you seem to want to avoid?).</p>
<p>The script shouldn't need to be <em>invoked</em> on the server to be speedy; it just needs to use repository urls instead of local working directories.</p>
<p>100 lines seems excessive - presumably your script will parse and validate command line parameters and execute a single svn command, which shouldn't be that complicated.</p>
<p>I too question the need for using a module rather than just running svn.</p>
<p>(SVN::Client should come with subversion; the cpan Alien-SVN distribution that includes it is just for convenience - it builds subversion to generate the module.)</p>
http://stackoverflow.com/questions/1747074/removing-files-with-duplicate-content-from-single-directory-perl-or-algorithm/1747343#17473431Answer by ysth for Removing files with duplicate content from single directory [Perl, or algorithm]ysth2009-11-17T08:21:48Z2009-11-17T17:06:18Z<p>Perl is kinda overkill for this:</p>
<pre><code>md5sum * | sort | uniq -w 32 -D | cut -b 35- | tr '\n' '\0' | xargs -0 rm
</code></pre>
<p>(If you are missing some of these utilities or they don't have these flags/functions,
install GNU findutils and coreutils.)</p>
http://stackoverflow.com/questions/1740838/inserting-new-columns-in-the-middle-of-a-table/1740866#17408661Answer by ysth for Inserting new columns in the middle of a table?ysth2009-11-16T08:41:21Z2009-11-16T08:41:21Z<p><a href="http://www.orafaq.com/wiki/SQL_FAQ#How_does_one_add_a_column_to_the_middle_of_a_table.3F" rel="nofollow">http://www.orafaq.com/wiki/SQL_FAQ#How_does_one_add_a_column_to_the_middle_of_a_table.3F</a> says it can't be done, and suggests workarounds of renaming the table and doing a <code>create table as select...</code> or (something I am unfamiliar with) "Use the DBMS_REDEFINITION package to change the structure".</p>
http://stackoverflow.com/questions/1740391/does-mysql-have-any-limitation-on-number-of-databases/1740418#17404180Answer by ysth for Does mysql have any limitation on number of databasesysth2009-11-16T06:28:10Z2009-11-16T06:28:10Z<p>I can't think of any reason why you couldn't have multiple mysqld servers listening on different sockets/ports and using different data directories. But rethinking whatever is causing you to want umpteen thousand databases would be better.</p>
http://stackoverflow.com/questions/1737413/perl-replace-pattern-from-the-current-position-until-the-end-of-a-line/1738565#17385652Answer by ysth for Perl: replace pattern from the current position until the end of a lineysth2009-11-15T19:42:06Z2009-11-16T01:39:40Z<p>From your language, you seem to be imagining your sequence of substitutions are working forward through the string, each substitution taking up where the last one left off. In fact, each substitution will apply to the entire string.</p>
<p>When you say "the position of the last replacement", what should happen if the previous substitution found nothing?</p>
<p>In a script, you can just do:</p>
<pre><code>if ( s/\s\+\d\d\d\d\]// ) { $' =~ s/ /+/g }
</code></pre>
<p>but use of $' should be avoided in reusable code, since it can impact performance of other regular expressions. There, you'd need to do</p>
<pre><code>if ( s/\s\+\d\d\d\d\]// ) { substr($_, $+[0]) =~ s/ /+/g }
</code></pre>
<p>but in either case, you need to make sure that the match or substitution you expect to have set $' or @+ actually succeeded.</p>
http://stackoverflow.com/questions/1736835/how-do-i-do-vertical-alignment-of-lines-of-text-in-perl/1736880#17368805Answer by ysth for How do I do vertical alignment of lines of text in Perl?ysth2009-11-15T07:27:26Z2009-11-15T07:54:08Z<p>From your sample output, it seems what you are trying to do is to add extra
empty string elements where there is just punctuation in one array but not in the other.
This is fairly straightforward to do:</p>
<pre><code>for ( my $i = 0; $i < @array1 && $i < @array2; ++$i ) {
if ( $array1[$i] =~ /\w/ != $array2[$i] =~ /\w/ ) {
if ( $array1[$i] =~ /\w/ ) {
splice( @array1, $i, 0, '' );
}
else {
splice( @array2, $i, 0, '' );
}
}
}
</code></pre>
<p>Or, somewhat more fancy, using flag bits en passant:</p>
<pre><code>given ( $array1[$i] =~ /\w/ + 2 * $array2[$i] =~ /\w/ ) {
when (1) { splice( @array1, $i, 0, '' ) }
when (2) { splice( @array2, $i, 0, '' ) }
}
</code></pre>
http://stackoverflow.com/questions/1713580/separating-unit-and-functional-tests-in-perl/1714194#17141947Answer by ysth for Separating unit and functional tests in Perlysth2009-11-11T10:01:14Z2009-11-11T10:01:14Z<p>You can certainly divide tests into subdirectories under t, with whatever categorization scheme you want. If you use an environment variable, I'd recommend making the default (if the variable is not set) be to run all tests. I've seen situations where t/ contains just the tests that would be routinely run in development and other tests are put under a different directory (e.g. t-selenium/).</p>
<p>I think it comes down to consistency being more important than which choice you make; just about anything will work if you are consistent.</p>
http://stackoverflow.com/questions/1704740/perl-export-symbols-from-module-that-has-1-package/1705377#17053772Answer by ysth for perl: export symbols from module that has > 1 packageysth2009-11-10T02:56:29Z2009-11-10T02:56:29Z<p>At the end of the module, put:</p>
<pre><code>BEGIN { $INC{'foo/wizzy.pm'} = 1 }
</code></pre>
<p>Then code can just say:</p>
<pre><code>use foo::bar;
use foo::wizzy;
</code></pre>
<p>to get foo::wizzy's exports.</p>
http://stackoverflow.com/questions/1699619/artistic-license-v2-0-vs-gpl-v2-differences/1699710#16997100Answer by ysth for Artistic License v2.0 vs GPL v2. Differences?ysth2009-11-09T08:21:14Z2009-11-09T08:21:14Z<p>You ask two questions; one about the differences between two licenses and one about interactions between them.</p>
<p>As far as the first goes, the Artistic license is a very different beast than the GPL.
How about you start by saying what you want the license you use to actually allow/disallow
others to do with your code?</p>
http://stackoverflow.com/questions/1699186/how-can-i-make-modulebuild-install-both-x-and-xy/1699320#16993203Answer by ysth for How can I make Module::Build install both X and X::Y?ysth2009-11-09T06:03:36Z2009-11-09T06:03:36Z<p>Module::Build should automatically find and install both modules, though you should indicate to it (in Build.PL) which one the distribution name/version is taken from.</p>
<p>Try creating your distribution with <a href="http://search.cpan.org/perldoc/module-starter" rel="nofollow">module-starter</a> and let it worry about the details?</p>
<pre><code>module-starter -mb --module=X --module=X::Y --author=Me --email=me@example.com
</code></pre>
http://stackoverflow.com/questions/1697425/how-to-print-out-each-bit-of-a-floating-point-number/1697665#16976651Answer by ysth for how to print out each bit of a floating point number?ysth2009-11-08T19:44:01Z2009-11-09T00:07:28Z<p>While from comments it seems that outputing the bits of the internal representation may be what was wanted, here is code to do what the question seemed to literally ask for, without the lossy conversion to int some have proposed:</p>
<p>Outputing a floating point number in binary:</p>
<pre><code>#include <stdio.h>
#include <stdlib.h>
void output_binary_fp_number(double arg)
{
double pow2;
if ( arg < 0 ) { putchar('-'); arg = -arg; }
if ( arg - arg != 0 ) {
printf("Inf");
}
else {
/* compare and subtract descending powers of two, printing a binary digit for each */
/* first figure out where to start */
for ( pow2 = 1; pow2 * 2 <= arg; pow2 *= 2 ) ;
while ( arg != 0 || pow2 >= 1 ) {
if ( pow2 == .5 ) putchar('.');
if ( arg < pow2 ) putchar('0');
else {
putchar('1');
arg -= pow2;
}
pow2 *= .5;
}
}
putchar('\n');
return;
}
void usage(char *progname) {
fprintf(stderr, "Usage: %s real-number\n", progname);
exit(EXIT_FAILURE);
}
int main(int argc, char **argv) {
double arg;
char *endp;
if ( argc != 2 ) usage(argv[0]);
arg = strtod(argv[1], &endp);
if ( endp == argv[1] || *endp ) usage(argv[0]);
output_binary_fp_number(arg);
return EXIT_SUCCESS;
}
</code></pre>
http://stackoverflow.com/questions/1690654/perl-equivalent-of-postgresql-between-operator/1695656#16956562Answer by ysth for Perl equivalent of (Postgre)SQL BETWEEN operator?ysth2009-11-08T07:25:23Z2009-11-08T18:00:03Z<p>In Perl6, the comparison operators are chainable.</p>
<p><a href="http://perlcabal.org/syn/S03.html#Chained_comparisons" rel="nofollow">http://perlcabal.org/syn/S03.html#Chained_comparisons</a>:</p>
<blockquote>
<p>Perl 6 supports the natural extension to the comparison operators, allowing multiple operands:</p>
</blockquote>
<pre><code>if 1 < $a < 100 { say "Good, you picked a number *between* 1 and 100." }
if 3 < $roll <= 6 { print "High roll" }
if 1 <= $roll1 == $roll2 <= 6 { print "Doubles!" }
</code></pre>
http://stackoverflow.com/questions/1682084/checking-existence-of-a-file-given-a-directory-format-in-perl/1682162#16821624Answer by ysth for Checking existence of a file given a directory format in perlysth2009-11-05T17:19:08Z2009-11-06T04:33:31Z<p>File::Find finds directory names, too. You want to check for when <code>$_ eq 'Setup'</code> (note: eq, not your regular expression, which would also match XXXSetupXXX), and then see if there's a config.txt file in the directory ( <code>-f "$File::Find::name/config.txt"</code> ). If you want to avoid complaining about files named Setup, check that the found 'Setup' is a directory with <a href="http://perldoc.perl.org/functions/-X.html" rel="nofollow">-d</a>.</p>
http://stackoverflow.com/questions/1674163/how-do-i-unaccent-unicode-characters-in-a-perl-string/1678901#16789010Answer by ysth for How do I unaccent Unicode characters in a Perl string?ysth2009-11-05T07:25:38Z2009-11-05T07:25:38Z<p>If all you want to do is remove accents, here's one way, from <a href="http://perlmonks.org/?node_id=318800" rel="nofollow">http://perlmonks.org/?node_id=318800</a>. Haven't retested it with newer perls, but it should still work.</p>
<pre><code>use 5.008;
use charnames ();
sub deaccent {
# split it into characters, then loop through them converting one by one
my @chars = split //, $_[0];
for my $char (@chars) {
# look up the name (e.g. "LATIN SMALL LETTER O WITH TILDE")
my $name = charnames::viacode(ord($char));
# only try to convert it if it was a valid char and had " WITH "
if ($name && $name =~ m/(.*) WITH /) {
# take off the " WITH foo" and see if that is a valid char
my $neword = charnames::vianame("$1");
$char = chr($neword) if $neword;
}
}
return join '', @chars;
}
</code></pre>
http://stackoverflow.com/questions/1818093/how-can-i-construct-os-independent-file-paths-in-perl/1818140#1818140Comment by ysth on How can I construct OS-independent file paths in Perl?ysth2009-11-30T08:48:46Z2009-11-30T08:48:46ZThe new source is basically right, yes, though it appears to be an older copy of <a href="http://search.cpan.org/perldoc/perlport" rel="nofollow">search.cpan.org/perldoc/perlport</a>http://stackoverflow.com/questions/1818093/how-can-i-construct-os-independent-file-paths-in-perl/1818140#1818140Comment by ysth on How can I construct OS-independent file paths in Perl?ysth2009-11-30T07:19:12Z2009-11-30T07:19:12Zno, perl doesn't convert / (except on VMS, maybe?) - it just uses it, and it works fine in most Windows C library calls.http://stackoverflow.com/questions/1817373/how-do-i-take-a-reference-to-an-array-slice-in-perl/1817634#1817634Comment by ysth on How do I take a reference to an array slice in Perl?ysth2009-11-30T03:39:47Z2009-11-30T03:39:47Zno, they don't.http://stackoverflow.com/questions/1817230/how-can-i-print-a-hash-of-hashes-of-hashes-in-perl/1817240#1817240Comment by ysth on How can I print a hash of hashes of hashes in Perl?ysth2009-11-30T00:39:33Z2009-11-30T00:39:33Zunless there are huge performance implications (usually not the case), looping over sorted keys is a very good idea. it frees you from a whole class of perl version/platform/data dependent bugs where the loop body somehow depends on one key being processed before another.http://stackoverflow.com/questions/1816354/decrement-in-mysql-goes-past-zero/1816375#1816375Comment by ysth on Decrement in mysql goes past zeroysth2009-11-29T19:43:13Z2009-11-29T19:43:13Zor if(value,value-1,0)http://stackoverflow.com/questions/1815543/is-there-a-cpan-module-that-allows-me-to-manage-errors-ids-and-i18n-error-messageComment by ysth on Is there a CPAN module that allows me to manage errors ids and i18n error messages and integrates with Exception::Class or Error? ysth2009-11-29T18:36:47Z2009-11-29T18:36:47ZI don't know of one, but seems like you wouldn't have that much work to do to clean up and publish your "hack".http://stackoverflow.com/questions/1806333/are-there-reasons-to-ever-use-the-two-argument-form-of-open-in-perl/1806349#1806349Comment by ysth on Are there reasons to ever use the two-argument form of open(...) in Perl?ysth2009-11-29T08:06:01Z2009-11-29T08:06:01Zequally, if you use 2-arg open, there's no need to "handle conflicting modes"; just specify your mode and filename, separated by a spacehttp://stackoverflow.com/questions/1806333/are-there-reasons-to-ever-use-the-two-argument-form-of-open-in-perl/1806461#1806461Comment by ysth on Are there reasons to ever use the two-argument form of open(...) in Perl?ysth2009-11-29T05:38:07Z2009-11-29T05:38:07Z@Abel: no, you don't. leading spaces can be preserved simply by using a non-relative path or prefixing by ./ or OS-eqivalent. trailing spaces can be preserved by putting \0 after the filename.http://stackoverflow.com/questions/1806333/are-there-reasons-to-ever-use-the-two-argument-form-of-open-in-perlComment by ysth on Are there reasons to ever use the two-argument form of open(...) in Perl?ysth2009-11-29T05:27:20Z2009-11-29T05:27:20Z@sid_com: what do you mean by "null filehandle"?http://stackoverflow.com/questions/1814447/why-is-last-called-last-in-perl/1814479#1814479Comment by ysth on Why is 'last' called 'last' in Perl?ysth2009-11-29T03:31:22Z2009-11-29T03:31:22ZI thought they'd burned all the pictures of him in other than Hawaiian shirts.http://stackoverflow.com/questions/1809469/how-do-i-read-paragraphs-at-a-time-with-perl/1809521#1809521Comment by ysth on How do I read paragraphs at a time with Perl?ysth2009-11-27T19:36:14Z2009-11-27T19:36:14Z@edg: I think it's pretty clear that reading from STDIN is intentional, but that he wants paragraph mode on DATA only, not on STDIN.http://stackoverflow.com/questions/1806762/moose-extending-exporter-causes-constructor-to-disappear/1806871#1806871Comment by ysth on Moose: Extending Exporter causes constructor to disappear? ysth2009-11-27T19:16:11Z2009-11-27T19:16:11Z@perigrin: that was basically what I said.http://stackoverflow.com/questions/1802233/grep-how-to-search-for-a-value-but-at-the-same-time-exclude-some-matches/1802273#1802273Comment by ysth on GREP: How to search for a value but at the same time exclude some matchesysth2009-11-27T10:25:58Z2009-11-27T10:25:58Z@levislevis85: yes, you are going to have a very hard time finding a line-oriented program like awk that will beat the highly IO-optimized grephttp://stackoverflow.com/questions/1806333/are-there-reasons-to-ever-use-the-two-argument-form-of-open-in-perl/1806552#1806552Comment by ysth on Are there reasons to ever use the two-argument form of open(...) in Perl?ysth2009-11-27T07:41:35Z2009-11-27T07:41:35Z@tsee: the "Damian Conway" bit is supposed to warn you that it's not something you'd actually use. File::Slurp::read_file is shorter, anyway.http://stackoverflow.com/questions/1806688/is-there-a-less-hacky-way-to-do-this-in-mysql/1806709#1806709Comment by ysth on Is there a less hacky way to do this in MySQL?ysth2009-11-27T04:36:43Z2009-11-27T04:36:43Zalex: just like your original but with ORDER BY datetime_column_name DESC, id DESC;