28,968 reputation
336122
bio website schwern.net
location Portland, OR
age 38
visits member for 4 years, 8 months
seen yesterday
stats profile views 2,061

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


May
18
comment why perl input record separator set to $/=“__Data__\n” is not working?
@YetimworkBeyene Yes, it's much better now. I've explained the changes at the end of the post as well as commented each line to explain what it does. If you were looking for just something you could paste into your existing code without understanding it, those aren't the sort of answers I like to give. If you have questions about the changes, I'll be happy to answer them.
May
17
revised why perl input record separator set to $/=“__Data__\n” is not working?
added 581 characters in body
May
17
comment why perl input record separator set to $/=“__Data__\n” is not working?
Use split, as I suggested. I'll add that to the code.
May
17
comment why perl input record separator set to $/=“__Data__\n” is not working?
I recommend you two take this to chat. chat.stackoverflow.com/rooms/1531/casual-chat
May
17
answered why perl input record separator set to $/=“__Data__\n” is not working?
May
17
comment why perl input record separator set to $/=“__Data__\n” is not working?
I fixed the formatting. You have to indent code 4 spaces, no less. Silly, I know. So from what I understand your question is how do you avoid capturing the __Data__ part along with everything else?
May
17
revised why perl input record separator set to $/=“__Data__\n” is not working?
added 4 characters in body
May
17
comment why perl input record separator set to $/=“__Data__\n” is not working?
@YetimworkBeyene I'm still not clear about the data. If you open logA.txt in a text editor, do you see \n?
May
17
comment why perl input record separator set to $/=“__Data__\n” is not working?
Is that a literal, visible "\n" in the data?
May
15
comment How can I parse dates and convert time zones in Perl?
@Dfr Yes, this is part of its design. Rather than shipping with a myriad of formatters they are plugins. See Formatters and Stringification in the docs. The downside is DateTime doesn't even provide the simplest formatting out of the box. The upside is there are a lot of formatters.
May
14
awarded  Great Answer
May
12
awarded  Nice Answer
May
11
answered Spaces in links using perl and html
May
9
answered Perl: How to deep copy a blessed object?
May
9
comment Perl: How to deep copy a blessed object?
The bless { %$self }, ref $self technique will only do a shallow copy. Attributes of $self which are references will not be cloned. For example, $obj->{ponies} = [qw(Dash Sparkle Jack)]; $clone = $obj->clone; push @{$clone->{ponies}}, "Pinkie" will modify both objects.
May
5
answered perlcritic: Does not validate syntax
May
4
comment MIME::Lite error attaching file perl
You'll have to check your web server logs for the actual error.
May
1
comment Execute Check in Perl Test if (and only if) test case succeeds
What is the special check you want to do?
May
1
answered Execute Check in Perl Test if (and only if) test case succeeds
Apr
28
revised Threading vs Forking (with explanation of what I want to do)
added 250 characters in body