David Precious

1,178
Reputation
116 views

Registered User

name David Precious
member for 1 year
seen 2 days ago
website
location GB
age 28

I'm a professional Perl developer from the UK.

You can contact me on dave@preshweb.co.uk.

More info about me

Nov
12
awarded  Nice Answer
Nov
10
accepted Do you develop your Perl applications as CPAN modules?
Nov
5
revised Do you develop your Perl applications as CPAN modules?
adding link to the blog post the OP was thinking of
Nov
5
answered Do you develop your Perl applications as CPAN modules?
Nov
5
comment Do you develop your Perl applications as CPAN modules?
Actually publishing the code to CPAN wasn't what was asked - "good practice to develop Perl applications just as you would develop a CPAN module" doesn't imply that you actually release it to CPAN, just that you develop in the same way as you would for a module you were planning to release to CPAN.
Sep
25
comment How can I remove non-unique lines from a large file with Perl?
You're still looking to store the entire contents of the file in RAM though, which is the original problem.
Sep
20
answered How can I define constants in a separate file in Perl?
Sep
2
awarded  Yearling
Jul
14
awarded  Enlightened
Jul
14
accepted SVN mark major version
Jul
14
comment SVN mark major version
Any chance of accepting an answer for this rather old question? :)
Jul
14
comment Why doesn’t this Perl regex work?
Don't forget to "accept" an answer :)
Jul
7
comment Why doesn’t this Perl regex work?
Good point Cebjyre. The /x modifier causes whitespace within the regular expression to be ignored, meaning you can use whitespace to make it more readable On long regexes, this can be very valuable, reducing the similarity with line noise. This is one of the many recommendations from Damian Conway's Perl Best Practices book which I agree with.
Jul
7
answered Why doesn’t this Perl regex work?