Chas. Owens

17,087
reputation
1109 views

Registered User

name Chas. Owens
member for 9 months
seen 13 hours ago
website
location Sterling, VA
age 35
UNIX, Perl, what more is there to say?
Dec
17
awarded  Enlightened
Dec
17
accepted Obtain a switch/case behaviour in perl 5
Dec
10
comment What is the best way to create a class attribute in Moose?
@Robert P Probably, I was just starting to use MooseX::Declare when I wrote this.
Dec
10
accepted What’s the minimal set of characters I need to filter before passing a string to a system call?
Dec
6
awarded  Mortarboard
Dec
2
accepted How do I get a list of custom fields in JIRA with Perl SOAP?
Dec
2
comment How does the qr/STRING/ operator in Perl decide whether or not to compile STRING?
@John Siracusa There does seem to be a cache though, examine this code: gist.github.com/247337 If it recompiled every time, then runtime of diff and same would be the same, but same is about three times faster. I think the time difference you are seeing is the time it takes to create the $vowel variable and assign the cached, compiled regex to it.
Dec
2
comment How does the qr/STRING/ operator in Perl decide whether or not to compile STRING?
What does that have to do with the section I quoted? The fact that Perl is caching the compile doesn't mean $vowel won't be handed a quoted and compiled version of STRING. The phrase I am asking about seems to say it is possible for qr/STRING/ to return a quoted, but not compiled, version of STRING. I am asking if there is any case currently or in the past where qr/STRING/ does not return a compiled regex. If there is no case where it does, then I should probably submit a patch to clarify that statement.
Dec
2
comment How does the qr/STRING/ operator in Perl decide whether or not to compile STRING?
If this is what it means then it is phrased very badly.
Dec
2
asked How does the qr/STRING/ operator in Perl decide whether or not to compile STRING?
Nov
25
awarded  Nice Answer
Nov
24
awarded  Notable Question
Nov
21
awarded  Nice Answer
Nov
21
accepted How can I handle secondary authentication in Google Mail from Perl?
Nov
6
comment How does Perl decide which order to evaluate terms in an expression?
@David Thornley It isn't a matter of doing it. It is a matter of understanding it. I am writing an article that involves precedence and associativity of operators and I don't want to state anything that is false. This means I need to understand what Perl does much better than is normally necessary; hence the bad, but legal, code as I look for inconsistencies in my understanding.
Nov
5
awarded  Nice Answer
Nov
5
comment How does Perl decide which order to evaluate terms in an expression?
I too came from ANSI C, and yeah, this isn't code I would write, it is me trying to make sure I understand precedence in Perl before I explain it to someone else. Using side-effects like this is a major no-no, but still legal in Perl. In ANSI C, if you had more than one side-effect in an expression the results were undefined, in Perl side-effects are better defined, but still a really bad idea.
Nov
5
answered How does Perl decide which order to evaluate terms in an expression?
Nov
5
asked How does Perl decide which order to evaluate terms in an expression?
Nov
4
comment How do I make OS X 10.6 compile JSON::XS as 32-bit instead of 64-bit?
Hmm, an upgraded version of GCC could be the problem, but the fact that it is producing a 64-bit version of the library is definitely a problem (32-bit programs can't load 64-bit libraries).
Nov
4
asked How do I make OS X 10.6 compile JSON::XS as 32-bit instead of 64-bit?
Oct
14
comment Fast algorithm to check membership of a pair of numbers in large (x,y) coordinates in Perl
Just make sure you don't use the keys function on the tied hash (you will get back every key in the database). If you want to iterate over the entries you will need to use each instead.
Oct
14
comment Fast algorithm to check membership of a pair of numbers in large (x,y) coordinates in Perl
Yes, the DBM is stored on disk, not in memory. Converting the file will take a long time, but once it is converted look ups will be very fast (it uses a disk based hash table by default).
Oct
14
revised Fast algorithm to check membership of a pair of numbers in large (x,y) coordinates in Perl
added 653 characters in body
Oct
14
answered Fast algorithm to check membership of a pair of numbers in large (x,y) coordinates in Perl
Oct
13
revised How can I sync two directories with Perl?
added 1476 characters in body; added 1 characters in body
Oct
13
answered How can I sync two directories with Perl?
Oct
13
revised How can I sync two directories with Perl?
added 66 characters in body
Oct
5
comment How can I create a TCP server daemon process in Perl?
duplicate of stackoverflow.com/questions/766397
Sep
29
accepted How do I get values by Perl string operations?
Sep
27
awarded  Favorite Question
Sep
25
revised How do I find a user’s home directory in Perl?
added 143 characters in body
Sep
25
comment How do I find a user’s home directory in Perl?
He posted a link to it, which is morally (if not legally) the same to me.
Sep
25
comment How do I find a user’s home directory in Perl?
That is almost certainly a pirated copy of the book, please don't post author's work without their permission.
Sep
25
answered How do I find a user’s home directory in Perl?
Sep
22
comment What’s wrong with my merge sort implementation in Perl?
Yeah, but the only reason to do that is if you know in advance that the data is likely to be pathological for quicksort. There are valid reasons to use a custom built version of mergesort (e.g. low memory systems that need to use files instead of memory). Of course, there are modules in CPAN that already do most of the heavy lifting for you.
Sep
22
revised What’s wrong with my merge sort implementation in Perl?
added 1282 characters in body
Sep
22
accepted What’s wrong with my merge sort implementation in Perl?
Sep
22
answered What’s wrong with my merge sort implementation in Perl?
Sep
22
comment What’s wrong with my merge sort implementation in Perl?
Providing the data you are using might help.
Sep
22
revised Is it okay to use modules from within subroutines?
edited tags
Sep
22
revised Is it okay to use modules from within subroutines?
added 288 characters in body
Sep
22
answered Is it okay to use modules from within subroutines?
Sep
21
accepted Why does my Perl program complain about needing explicit package names?
Sep
20
awarded  Nice Answer
Sep
20
revised Why does my Perl program complain about needing explicit package names?
added 1 characters in body
Sep
20
comment How can I define constants in a separate file in Perl?
Readonly::Scalar is pretty fast as well if you have Readonly::XS installed. Hashes and Arrays are still slower though.
Sep
20
comment Why does my Perl program complain about needing explicit package names?
Ditch the &, it is unnecessary in this context and can cause problems in others. Never use the & prefix to a function called unless you know what it does and why you want to use it.
Sep
20
revised Why does my Perl program complain about needing explicit package names?
added 682 characters in body
Sep
20
answered Why does my Perl program complain about needing explicit package names?