John Siracusa

4,864
reputation
309 views

Registered User

name John Siracusa
member for 1 year
seen 1 hour ago
website
location Newton, MA
age 34
Web developer, Ars Technica columnist.
Dec
9
answered How do I schedule a task in Perl?
Dec
8
accepted What happens when you put an array on the right side of a => operator?
Dec
8
answered What happens when you put an array on the right side of a => operator?
Dec
6
awarded  Mortarboard
Dec
4
awarded  Necromancer
Dec
3
comment Does a Perl module know where it is installed?
The example sub in the question is named "findmyself" and uses __PACKAGE__, so I think control of the module is a safe assumption.
Dec
3
answered Does a Perl module know where it is installed?
Dec
2
revised How does the qr/STRING/ operator in Perl decide whether or not to compile STRING?
deleted 21 characters in body
Dec
2
comment How does the qr/STRING/ operator in Perl decide whether or not to compile STRING?
Adding a dummy creation and assignment to $vowel still leaves the hoisted version ~190% faster in my testing. I'm sure there's some internal caching in the implementation of qr//, but it seems to be dwarfed by the overhead of actually invoking the qr// operator, which happens every time.
Dec
2
answered How does the qr/STRING/ operator in Perl decide whether or not to compile STRING?
Dec
2
comment How does the qr/STRING/ operator in Perl decide whether or not to compile STRING?
The qr operator compiles its contents into a regex every time it's encountered. (It does this regardless of the presence of an /o modifier.) Hoisting the $vowel = qr/[aeiou]/ line above the loop roughly doubles the execution speed of you example on my system.
Nov
3
comment How can I use mysql bit from using DBIx
Do you mean DBIx::Class? DBIx:: is the CPAN namespace used for DBI-related extension modules, so question about "using DBIx" doesn't provide enough information.
Oct
22
awarded  Good Answer
Oct
19
awarded  Populist
Oct
19
awarded  Good Answer
Oct
17
awarded  Nice Answer
Oct
7
comment How can I create an HTML drop-down menu from a CSV file in Perl?
Don't forget to escape HTML in the attribute values and inline text.
Sep
17
awarded  Good Answer
Sep
8
awarded  Nice Answer
Sep
8
comment In Perl are there disadvantages to generating getters and setters rather than hard-coding them?
Brad Gilbert: I tried it and it's the slowest by far: eval_alias 1329967/s
Sep
7
comment In Perl are there disadvantages to generating getters and setters rather than hard-coding them?
ysth: Thanks, I think the backslash got eaten while editing locally. I've corrected it.
Sep
7
revised In Perl are there disadvantages to generating getters and setters rather than hard-coding them?
added 1 characters in body
Sep
7
revised In Perl are there disadvantages to generating getters and setters rather than hard-coding them?
added 1411 characters in body; added 16 characters in body
Sep
7
answered In Perl are there disadvantages to generating getters and setters rather than hard-coding them?
Aug
31
comment Is my Rose::DB::Object compile-time too slow?
No, it means that if you load class A and it has a relationship to class B, class B will automatically be loaded if auto_load_related_classes() is true. If you're already manually loading both classes A and B, then obviously this setting won't have any effect.
Aug
25
awarded  Good Answer
Aug
25
revised Is ‘shift’ evil for processing Perl subroutine parameters?
deleted 4 characters in body
Aug
25
revised Is ‘shift’ evil for processing Perl subroutine parameters?
added 1050 characters in body; added 188 characters in body
Aug
25
accepted Is ‘shift’ evil for processing Perl subroutine parameters?
Aug
25
revised Is ‘shift’ evil for processing Perl subroutine parameters?
added 135 characters in body; added 116 characters in body
Aug
25
answered Is ‘shift’ evil for processing Perl subroutine parameters?
Aug
24
revised What are the chances that two messages have the same MD5 digest and the same SHA1 digest?
added 180 characters in body
Aug
24
asked What are the chances that two messages have the same MD5 digest and the same SHA1 digest?
Aug
7
revised Is my Rose::DB::Object compile-time too slow?
added 2447 characters in body
Aug
7
accepted Why isn’t Rose::DB::Object sort_by RAND() doing what I expect?
Aug
6
revised Is my Rose::DB::Object compile-time too slow?
added 22 characters in body
Aug
6
revised Is my Rose::DB::Object compile-time too slow?
added 89 characters in body
Aug
6
answered Is my Rose::DB::Object compile-time too slow?
Aug
3
awarded  Yearling
Jul
29
revised Why isn’t Rose::DB::Object sort_by RAND() doing what I expect?
edited body
Jul
29
revised Why isn’t Rose::DB::Object sort_by RAND() doing what I expect?
added 717 characters in body
Jul
29
answered Why isn’t Rose::DB::Object sort_by RAND() doing what I expect?
Jul
27
comment How do I check if a key exists in a hash in Perl?
Are you sure "==" is the operator your want there? Are $PGkey and $hash{$PGkey} both numbers? If they're strings, use "eq" instead.
Jul
16
awarded  
Jul
15
awarded  Popular Question
Jul
8
awarded  Disciplined