Axeman

5,297
reputation
264 views

Registered User

name Axeman
member for 1 year
seen 2 days ago
website
location Michigan
age 46
Perl and Java programmer who dabbles in most other scripting languages.
Dec
11
comment Which perl can I use from the Windows command line?
I bullet-pointed your post because it makes more sense that way. +1 for completeness.
Dec
11
revised Which perl can I use from the Windows command line?
bulletpointed list
Dec
11
comment Intelligent RegEx in Perl?
It's not so much your unfamiliarity with the language that is creating a problem, but not understanding that this "dumb" solution solves the only problem you posed. When you present a simple example and don't explain the principle behind the transformation, you're going to get solutions that "solve" the simple example, but might not "solve" the general application. So you really want all your tags to have a CustomAttribute="TRUE" attribute?
Dec
2
answered How can I make Perl functions that use $_ by default?
Dec
1
answered How do I find all lib directories under a Windows path?
Nov
30
accepted How does an object access the symbol table for the current package?
Nov
30
revised How does an object access the symbol table for the current package?
added 382 characters in body
Nov
30
answered How does an object access the symbol table for the current package?
Nov
30
revised Why does my Perl CGI complain about “Premature end of script headers”?
runaway backtick; deleted 1 characters in body
Nov
30
answered Why does my Perl CGI complain about “Premature end of script headers”?
Nov
19
comment Regular expressions performance: Boost vs. Perl
That link is mainly about how basic regular expressions that act as a true FSA have a known performance and that newer features add complexity which can degrade performance. I have used those findings to write more determinant REs using Perl syntax.
Nov
16
revised Why doesn’t Perl support the normal [] operator to index a string?
some style editing
Nov
9
comment Object-Oriented Perl constructor syntax
That's basic Perl to turn a list into a hash. It alternates, taking the first one as the key and the second one as the value. DWIM (do what I mean) is a goal that Perl strives at--and usually hits.
Nov
4
comment Fastest Way To Find Mismatch Positions Between Two Strings of the Same Length
@Kinopiko: They look like genes, so they could be HUGE(!!).
Nov
4
revised What is the usefulness of CHECK, UNITCHECK and INIT blocks in Perl?
then/than
Nov
4
comment How can I convert the stringified version of array reference to actual array reference in Perl?
Don't see how that requires any magic beyond Dumper( $b ). Obviously you want to warn. When do you want to warn? In most places where I can stringify $a, I also have $a to dump.
Nov
4
comment How can I convert the stringified version of array reference to actual array reference in Perl?
Well, if you're willing to increment the reference count, it might be okay--assuming that it still exists when you get the AV.
Nov
4
answered What is the usefulness of CHECK, UNITCHECK and INIT blocks in Perl?
Nov
3
comment Perl: define variables in script
Wow, if that's the answer, then this guy did NO research.
Nov
2
revised Why doesn’t Perl support the normal [] operator to index a string?
clarified sentence.
Nov
2
answered Why doesn’t Perl support the normal [] operator to index a string?
Oct
29
accepted Does Perl perform common subexpression elimination?
Oct
21
comment How can I remove external links from HTML using Perl?
Doesn't handle bare links--I know, bare links are gross, and you'll never find them in HTML I write or write a generator for, but they and single-quoted attributes fit the spec.
Oct
21
comment How can I remove external links from HTML using Perl?
@hobbs: add your objection as an answer--clearly explain that it is an objection, and it won't work as a comment--you'll get at least one upvote from me, and hopefully if you explain it clearly enough, nobody will downvote you.
Oct
21
answered How do I store a 2d array in a hash in Perl?
Oct
21
comment How do I store a 2d array in a hash in Perl?
+1 good future suggestion.
Oct
21
revised How can I remove external links from HTML using Perl?
used english
Oct
21
comment How can I remove external links from HTML using Perl?
@Manni: Agree--and I knew that it did that, but I didn't want to write a complicated pipe when I was altering the tag--but it makes a better solution, if I'm not writing out anything. I'm going to change it.
Oct
21
comment How can I remove external links from HTML using Perl?
@Sinan Ünür: normally I remove debugging code from my finished answers. That's where Smart::Comments shines though, is debugging code.
Oct
21
revised How can I remove external links from HTML using Perl?
removed unused Smart::Comments
Oct
21
answered How can I remove external links from HTML using Perl?
Oct
20
comment How can I sum each column of my data in Perl?
@Sinan Ünür: Got it to work. I'm thinking that it probably runs quicker with the in-place increment.
Oct
20
revised How can I sum each column of my data in Perl?
void pairwise.
Oct
20
comment How can I index a bunch of files in Perl?
This is a complex task, because it's even tougher than HTML documents and key words, because it's with code. You could get false positives if something was left in the comments that no longer applies. And depending on discipline with object names you can match strings of data that do not apply as well. I think you need to start thinking about limiting cases, to start.
Oct
20
revised How can I sum each column of my data in Perl?
lost warning and alternative method.; added 21 characters in body
Oct
20
revised How can I sum each column of my data in Perl?
matched split to prototype.
Oct
20
comment How can I sum each column of my data in Perl?
I wanted to to make it a self-modifying void call to pairwise: pairwise { $a += $b } @totals, ... but it won't let me.
Oct
20
revised How can I speed up my Perl regex matching?
Added negative lookaheads.
Oct
20
answered How can I speed up my Perl regex matching?
Oct
20
answered How can I control the formatting of Data::Dumper’s output?
Oct
20
answered How can I sum each column of my data in Perl?
Oct
20
comment How can I sum each column of my data in Perl?
Are you saying that '==' is your column delimiter?
Oct
20
comment In Perl, how can I do a non-blocking system call?
Fork is the idiom of the OS for processes--there is no reason to avoid forking on nix systems. But there are always reasons to encapsulate and homogenize access points.
Oct
11
accepted How do you localize a number of legacy globals without eval?
Oct
9
awarded  Self-Learner
Oct
8
revised How do you localize a number of legacy globals without eval?
changed to mdash; edited title
Oct
8
comment Connection resets with simple Perl script
@Andy Ross: I was thinking that, but I also wondered about the problem of having two separate processes both thinking they have the same descriptor open. That looks like pretty undefined behavior as well.
Oct
8
answered How do you localize a number of legacy globals without eval?
Oct
8
asked How do you localize a number of legacy globals without eval?
Oct
8
comment perl mysql get number of columns
@An employee: Trust me, your question is cryptic at best. And your answer is something any Perler could have told you had they understood your question. But no one replied because you didn't explain what you wanted clearly enough.