Schwern
|
Registered User
|
I write too much Perl. I'm an independent contractor specializing in Perl, automated testing and software engineering training. If you have a nasty snarl of critical Perl code untangled, or need a perl or CPAN module bug fixed, or want to train your developers in writing tests, or find your development time is in a code 'n' fix loop and need help, I'm your man. Contact schwern@pobox.com |
|
11h |
revised |
Should I use YAML or JSON to store my Perl data? Add in XML, I hear people use that |
|
11h |
comment |
How can I add time information to STDERR output in Perl? SWATCH BEATS! SCREW THE SUN! |
|
1d |
answered | How can I add time information to STDERR output in Perl? |
|
1d |
awarded | ● Nice Answer |
|
1d |
awarded | ● Nice Answer |
|
2d |
comment |
Should I use YAML or JSON to store my Perl data? I've found YAML::Tiny to be reliable, and pure Perl, as long as you're willing to accept its limitations. |
|
2d |
answered | Should I use YAML or JSON to store my Perl data? |
|
2d |
comment |
Why do Perl control statements require braces? Kinda surprised nobody else brought this up. Yes, "statement modifiers" are Perl's answer to the blockless condition. They allow one to write conditions in a single line and to put the thing you're doing first, because sometimes its more important to emphasize what is being done over when or how many times. |
|
2d |
accepted | What are valid Perl module return values? |
|
Dec 8 |
comment |
What are valid Perl module return values? @Ether I can think of reasons not to stick config info into a Perl data structure (its insecure and unportable) but error checking isn't one of them. Perl does the checking for you. do $file || die is sufficient. |
|
Dec 8 |
answered | What are valid Perl module return values? |
|
Dec 7 |
comment |
Formal language expressiveness of Perl patterns Rumor has it some of the more bizarre features were slipped in by Ilya to make Perl patterns Turing complete so he could write a chess program in a regex. (Wish I could find attribution on that) |
|
Dec 7 |
accepted | How to Install DBD::Oracle in Strawberry Perl |
|
Dec 7 |
awarded | ● Nice Answer |
|
Dec 7 |
answered | What are some specific examples of backward incompatibilities in Perl versions? |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 6 |
answered | Should I aggressively release memory while reading a file line by line in Perl? |
|
Dec 6 |
answered | What are some specific examples of backward incompatibilities in Perl versions? |
|
Dec 6 |
comment |
What are some specific examples of backward incompatibilities in Perl versions? Pseudo-hashes were always labeled an experiment. Not my fault if you used them in production code. :P |
|
Dec 6 |
answered | Perl Regexes - Replacing certain instances of matches |
|
Dec 6 |
accepted | Is LWP::UserAgent not thread-safe? |
|
Dec 6 |
comment |
Complete online reference for the C standard library? @James youtube.com/watch?v=5j7ftfRiWlg @uncleo ZOUNDS!! |
|
Dec 6 |
comment |
Complete online reference for the C standard library? That's a C90 reference. |
|
Dec 6 |
comment |
Complete online reference for the C standard library? This is also C90. A quick way to check is to see if the math functions only offer double versions. |
|
Dec 6 |
revised |
Complete online reference for the C standard library? added 34 characters in body |
|
Dec 6 |
comment |
Complete online reference for the C standard library? Watch out, that's C90 and will be missing features and functions. |
|
Dec 6 |
answered | Complete online reference for the C standard library? |
|
Dec 5 |
revised |
How to Install DBD::Oracle in Strawberry Perl added 138 characters in body |
|
Dec 5 |
answered | How to Install DBD::Oracle in Strawberry Perl |
|
Dec 5 |
comment |
Is LWP::UserAgent not thread-safe? They're notorious for patching Perl, throwing experimental patches into stable versions, messing things up and then not releasing a fix. It got particularly bad in the early 5.8's when they broke Unicode fairly hard and then set the default to UTF-8. Things may have improved, I remain wary of any Perl rpm. |
|
Dec 5 |
answered | Is LWP::UserAgent not thread-safe? |
|
Dec 5 |
comment |
What happens on this my declaration? [ Perl ] This is the correct answer. Nothing to do with Perl 6. "Restricted hashes" replaced pseudo-hashes, but they're rarely seen these days. |
|
Dec 5 |
comment |
What happens on this my declaration? [ Perl ] my Dog $spot has been around since 5.005 when it was brought in to allow typed lexicals but never really did anything. All it did was try to optimize pseudo-hashes, and if you don't know what pseudo-hashes are consider yourself lucky. These days the only thing "my Class $obj = Class->new" does is tell you the author used to use pseudo-hashes. |
|
Dec 5 |
answered | How to go about making an untrained speech to text converter ? |
|
Dec 4 |
comment |
Assisting in avoiding assert… always! Well, for one, the program terminates leaving assert() only valid for OMG YOU BROKE THE UNIVERSE errors. Wouldn't it suck to be the user and have the program crash because your count of TPS report headers is off by one? Maybe you just want it to log the failed assertion so the user can continue what they're doing. Maybe you want to be send the assert failure rather than relying on the puzzled and annoyed user to know to do that. |
|
Dec 3 |
comment |
Displaying date/time in user’s timezone - on client side Because it points at a very dubious wad of PHP/SSI/Javascript mish-mash with no further explanation. |
|
Dec 3 |
revised |
Displaying date/time in user’s timezone - on client side added 340 characters in body |
|
Dec 3 |
answered | Displaying date/time in user’s timezone - on client side |
|
Dec 1 |
accepted | How can I match IPv6 addresses with a Perl regex? |
|
Nov 30 |
answered | How can I construct OS-independent file paths in Perl? |
|
Nov 29 |
comment |
How can I prevent Perl Moose Read-Only Attributes being set upon a call to new? users has no default, how does it ever get set? |
|
Nov 28 |
comment |
What is Object-Oriented Methodology? Sounds like Waterfall with UML. |
|
Nov 28 |
revised |
How can I match IPv6 addresses with a Perl regex? added 135 characters in body |
|
Nov 28 |
answered | How can I match IPv6 addresses with a Perl regex? |
|
Nov 28 |
comment |
How can I match IPv6 addresses with a Perl regex? This fails to match 2001:db8:85a3:0:0:8a2e:370:7334 2001:db8:85a3::8a2e:370:7334 2001:0db8:0000:0000:0000::1428:57ab ::ffff:c000:280 and bunches more. |
|
Nov 28 |
comment |
Are there reasons to ever use the two-argument form of open(…) in Perl? 5.6.0. There so few 5.5 users left that unless you specifically need to support 5.5 its not worth it. perldoc.perl.org/perl56delta.html#open%28%29-with… |
|
Nov 28 |
answered | How does Parrot compare to other virtual machines? |
|
Nov 26 |
comment |
why my hyperlink tags display as plain text on the browser? Technically, single quotes are fine according to both HTML 4 and XHTML. See w3.org/TR/REC-xml/#NT-AttValue That said, I trust web browsers to follow standards about as much as I trust politicians to follow their campaign promises. Use double quotes. |
|
Nov 25 |
comment |
Why are Perl source filters bad and when is it OK to use them? @Chris That's a function which you happen to write as a macro for esoteric reasons which side-steps the point. But forget those outer parens and you're in a world of hurt underscoring the danger involved in injecting code. Macros are less dangerous than source filters as they get inserted into the code by the compiler at points where they're used by a the caller. Source filters just rewrite all the code. To best see Brad's point, look at the Perl 5 source code some time. Its more C macros than C. |
|
Nov 25 |
comment |
Why are Perl source filters bad and when is it OK to use them? A module author has to go out of their way to do something really wacky. You choose what's going to effect your caller, everything else is contained. Thus "modular". For a source filter, wackiness is the default. A filter touches every line of code in the caller, you have to be real careful to only effect the ones you mean. Even the simplest source filter contains danger, whereas simple modules do not. |
