ysth

10,980
Reputation
364 views

Registered User

Name ysth
Member for 1 year
Seen 23 hours ago
Website
Location Seward Park, Seattle, WA, US
Age 41
What is "basic HTML", anyway?
1d
comment Does a regular expression exist for enzymatic cleavage?
and I copied his error :( - it should be /(?<=[RK])(?=[^P])/ - but since split by default removes trailing empty fields, it would only matter if you were splitting a fixed number of fields or using the regex with something other than split.
1d
comment Does a regular expression exist for enzymatic cleavage?
/(?<[RK])(?=[^P])/ avoids splitting off an empty string at the end
1d
comment How to Install DBD::Oracle in Strawberry Perl
The error you show basically only says that that the compile failed; the errors/warnings before that will say why.
1d
comment Is LWP::UserAgent not thread-safe?
Oh, and use fork instead :)
1d
comment Is LWP::UserAgent not thread-safe?
Strip out as much as possible from a complete test program and still have the problem, and show it to us?
1d
comment Is Tie::File lazily loading a file?
but to find line 1830234, it has to read the entire file up to that point (though not all into memory)
2d
comment How can I get the second-level keys in a Perl hash-of-hashes?
obligatory mention of Data::Diver
2d
revised How can I get the second-level keys in a Perl hash-of-hashes?
make strructure match description
2d
revised How can I get file’s modification date in DDMMYY format in Perl?
error-prone indeed
2d
comment How can I get file’s modification date in DDMMYY format in Perl?
POSIX::strftime('%m%d%y', $mtime) is also easier and less error prone
2d
revised Can I use the y operator to do a non-one-to-one transliteration in Perl?
added 1 characters in body
2d
revised Can I use the y operator to do a non-one-to-one transliteration in Perl?
added 11 characters in body
Dec
2
comment How does the qr/STRING/ operator in Perl decide whether or not to compile STRING?
Yes, those are weasel words.
Dec
2
accepted Is it kosher to assign to $! in Perl?
Dec
2
comment How to send a file to the printer using command line options?
Not just a matter of thanks, it indicates the question was satisfactorily resolved. You should accept an answer.
Dec
2
comment How can I re-establish a network connection in a Perl script?
why the downvote?
Dec
2
comment Is this undefined?
I believe s/he's asking if it is defined in the C/C++ standard whether *ptr on the right of the = is the character pointed at before or after the ++.
Dec
2
answered Finding Perimeter and area of a Rectangle object? (C#)
Dec
2
comment What does this obfuscated Perl code do?
<pedant>the last character is missing its tail</pedant>
Dec
2
comment How can I make Perl functions that use $_ by default?
Note that the _ prototype is new with 5.10
Dec
2
comment How can I make Perl functions that use $_ by default?
@Michael Carman: yes, it works with a lexical $_ in the caller
Dec
2
comment What does this obfuscated Perl code do?
Mike: it may work if you change the first line to: -f$=;
Dec
2
comment What does this obfuscated Perl code do?
it executes it as a system command to cause $! to contain a known error message, from which various characters are extracted and modified to create the japh
Dec
2
revised What does this obfuscated Perl code do?
edited tags
Dec
1
comment How can I get all files in a directory, but not in subdirectories, in Perl?
when doing multiple -X's on the same file, you can use _ as the "filename" on all but the first to reuse the same stat return
Dec
1
accepted How do I resolve this syntax error I get when using the Perl conditional operator?
Dec
1
comment How do I find all lib directories under a Windows path?
please show your actual code. you seem to be missing some parts there
Dec
1
answered How can I re-establish a network connection in a Perl script?
Dec
1
answered Can someone point me to good articles on intermediate-level Perl syntax and idioms?
Dec
1
comment Can someone point me to good articles on intermediate-level Perl syntax and idioms?
s/ /_/ and print lc while <>; works. perl 6 will allow any combinations of statement modifiers, though some will require parentheses, but perl 5 currently only allows 1 per statement.
Nov
30
answered How do I resolve this syntax error I get when using the Perl conditional operator?
Nov
30
comment How can I construct OS-independent file paths in Perl?
The new source is basically right, yes, though it appears to be an older copy of search.cpan.org/perldoc/perlport
Nov
30
answered How can I construct OS-independent file paths in Perl?
Nov
30
comment How can I construct OS-independent file paths in Perl?
no, perl doesn't convert / (except on VMS, maybe?) - it just uses it, and it works fine in most Windows C library calls.
Nov
30
comment How do I take a reference to an array slice in Perl?
no, they don't.
Nov
30
answered How do I take a reference to an array slice in Perl?
Nov
30
answered How can I print a hash of hashes of hashes in Perl?
Nov
30
comment How can I print a hash of hashes of hashes in Perl?
unless 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.
Nov
29
comment Decrement in mysql goes past zero
or if(value,value-1,0)
Nov
29
comment Is there a CPAN module that allows me to manage errors ids and i18n error messages and integrates with Exception::Class or Error?
I don't know of one, but seems like you wouldn't have that much work to do to clean up and publish your "hack".
Nov
29
comment Are there reasons to ever use the two-argument form of open(…) in Perl?
equally, if you use 2-arg open, there's no need to "handle conflicting modes"; just specify your mode and filename, separated by a space
Nov
29
answered Join results of two select statements
Nov
29
comment Are there reasons to ever use the two-argument form of open(…) in Perl?
@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.
Nov
29
revised Are there reasons to ever use the two-argument form of open(…) in Perl?
added 5 characters in body
Nov
29
comment Are there reasons to ever use the two-argument form of open(…) in Perl?
@sid_com: what do you mean by "null filehandle"?
Nov
29
comment Why is ‘last’ called ‘last’ in Perl?
I thought they'd burned all the pictures of him in other than Hawaiian shirts.
Nov
29
accepted Are there reasons to ever use the two-argument form of open(…) in Perl?
Nov
27
revised Are there reasons to ever use the two-argument form of open(…) in Perl?
added 425 characters in body
Nov
27
revised Moose: Extending Exporter causes constructor to disappear?
deleted 10 characters in body
Nov
27
revised What is the difference between new Some::Class and Some::Class->new() in Perl?
code tags seemed to produce an extra empty code paragraph