Michael Carman

10,799
reputation
227 views

Registered User

name Michael Carman
member for 1 year
seen 3 hours ago
website
location US
age 35
I program mostly in Perl (including Tk/Tkx) and C.
2d
awarded  Enlightened
2d
awarded  Nice Answer
2d
revised What’s the best way to debug third-party Perl script?
added 282 characters in body; deleted 27 characters in body
2d
answered What’s the best way to debug third-party Perl script?
2d
comment What’s the best way to debug third-party Perl script?
He must already have SimFilter or he couldn't run the code. Would perl -MO=Deparse Foo.pm be sufficient? (i.e. would Deparse take the results after SimFilter de-obfuscated it?)
Dec
17
comment How can I dynamically include Perl modules without using eval?
Anyone who uses ' as a package delimiter outside of a JAPH deserves to have their code break.
Dec
16
revised How can I dynamically include Perl modules without using eval?
Added example of loading runtime-defined module.
Dec
16
revised How can I dynamically include Perl modules without using eval?
Made safer usage of $@
Dec
16
comment How can I dynamically include Perl modules without using eval?
@Ether: The standard advice is to make checking $@ the very first thing you do, but you're right that there's a race condition. I'll update the answer.
Dec
16
accepted How can I dynamically include Perl modules without using eval?
Dec
16
answered How can I dynamically include Perl modules without using eval?
Dec
15
revised Can actual Perl Regular Expressions be implemented in Java via existing library?
edited body
Dec
15
answered Can actual Perl Regular Expressions be implemented in Java via existing library?
Dec
15
answered where to play with python and perl?
Dec
13
comment What’s a free Perl IDE for Windows?
@brian: I'm a big fan of unit testing but I think it's disingenuous to suggest it as a debugging technique. Outside of the ideal situation you describe it's likely to be ineffective (or at least inefficient). The power of a debugger is being able to see exactly what the code is doing free of the human bias that selecting what to print and/or test entails. That said, maybe I'm just bitter because I recently had to debug embedded C code via printf over a serial port. The edit-compile-load-run-review cycle was maddening; a working debugger would have sped things up tenfold.
Dec
13
comment What’s a free Perl IDE for Windows?
Calling print a debugging tool is like calling the clapper a "home automation tool." There's really no substitute for being able to stop, look around, and step.
Dec
12
awarded  Nice Answer
Dec
11
comment How can I add time information to STDERR output in Perl?
@macbus: Are you calling warn from your __DIE__ handler? If so, don't. I've updated the answer to include an example.
Dec
11
revised How can I add time information to STDERR output in Perl?
Added __DIE__ handler example and mention of gmtime
Dec
11
comment What do people mean when they say “Perl is very good at parsing”?
@brian: Conversion between the platform newline sequence and a logical "\n" happens on both reading and writing (ignoring binmode, of course). I know that you're well aware of this so I find your comment confusing. I suppose I could have said that "Perl lets you think in terms of logical newlines instead of worrying about whatever sequence your OS uses" without mentioning how it does that.
Dec
11
awarded  Nice Answer
Dec
11
answered What do people mean when they say “Perl is very good at parsing”?
Dec
11
answered How can I obfuscate my Perl script to make it difficult to reverse engineer?
Dec
11
comment How do I install a module and its dependencies in ActivePerl on Windows?
Do you have any rationale for not mixing installation methods? I can see it messing up PPM/cpan's idea of what's installed, but it shouldn't cause any problems with the operation of Perl itself. Sometimes modules aren't available via PPM and you have to fall back on cpan or manual installation.
Dec
11
accepted What’s the modern way of declaring which version of Perl to use?
Dec
10
comment Perl vs Python: Which is better for a simple parsing program?
@Dan: Parsing log files is a very basic task for which the choice is unimportant. It's like asking if you should drink beer from a mug or a glass. By "detailed criteria" I meant situations where you have specific constraints like "must be able to interface with X" where one language might have more mature/robust bindings.
Dec
10
answered Perl vs Python: Which is better for a simple parsing program?
Dec
10
answered How can I add time information to STDERR output in Perl?
Dec
10
comment What are some specific examples of backward incompatibilities in Perl versions?
@Brad Gilbert: Yes and no. Hash randomization was added in 5.8.1 but as of 5.8.2 it only occurs if the key distribution is poor.
Dec
10
awarded  Nice Answer
Dec
10
answered How do I install a module and its dependencies in ActivePerl on Windows?
Dec
10
answered What’s the modern way of declaring which version of Perl to use?
Dec
9
comment How do I present an open folder selection dialog in Perl?
Which GUI toolkit are you using? (Tk, Win32::GUI, wxPerl, etc.)
Dec
8
comment Why can’t my perl find strict.pm when I call it from another program?
@Sinan: The sample code isn't Perl, but the problem appears to be with @INC so I'm willing to consider the "perl" tag as valid. I think there's a real question in there screaming to get out.
Dec
8
comment Should I aggressively release memory while reading a file line by line in Perl?
My source is an old (and possibly outdated) thread on c.l.p.moderated, and this post in particular: groups.google.com/group/comp.lang.perl.moderated/…. I'm quite happy to be proven wrong, but if I am the FAQ should be updated.
Dec
8
comment How can I sort a Perl list in an arbitrary order?
@ephemient: {my %hash = ...; sub bylist {} } only initializes if program flow reaches the block, which means you would have to put the sub definition in the middle of your program logic (and before calling it) rather than at the end as is normal.
Dec
8
comment How can I sort a Perl list in an arbitrary order?
The non-hack work-around is to enclose the sub declaration in a block and define the state variable there. e.g. { my $x; sub foo { $x ||= 1; ... } }
Dec
8
comment How can I show Perl console output in a GUI?
As of 5.10 ActivePerl comes with Tkx instead of Tk, although Tk is still available via PPM. (Tkx is an alternative set of bindings to Tcl/Tk.)
Dec
8
revised How can I sort a Perl list in an arbitrary order?
Fixed sigil typo
Dec
8
comment How can I print list elements separated by line feeds in Perl?
I tend to add a dummy element at the end of the list: print join("\n", @list, '')
Dec
7
awarded  Enlightened
Dec
7
awarded  Nice Answer
Dec
7
awarded  Nice Answer
Dec
7
answered Where do I install Perl modules that I wrote?
Dec
7
comment What are some specific examples of backward incompatibilities in Perl versions?
Hash %foo missing the % in argument... That's a warning I've never seen before. I like perldiag's description: "Really old Perl let you omit the % on hash names in some spots. This is now heavily deprecated." Apparently it's not deprecated heavily enough to actually remove it, though.
Dec
6
awarded  Mortarboard
Dec
6
comment Should I aggressively release memory while reading a file line by line in Perl?
@tsee: From what I've gathered from people with knowledge of the internals that only works for package variables, not lexical ones.
Dec
6
revised What are some specific examples of backward incompatibilities in Perl versions?
added 50 characters in body; added 200 characters in body
Dec
6
answered What are some specific examples of backward incompatibilities in Perl versions?
Dec
6
awarded  Nice Answer