Blogs1 - 10 of 17 recent posts for tag:"perl programming"
23
Jan
2012
Visualizing the Perl 5 support policy

19 days ago by dagolden

My last post showed historical Perl 5 release cycles, but comments I got on and off the blog suggested that my vaguely positive sentiments about the official support policy were misunderstood. This post expands and clarifies my view. I have redone my Perl 5 release cycle graph again with a few chang ...

dagolden - dagolden.com · Rank: 110,111 · 29 references

Visualizing the Perl 5 support policy

19 days ago by dagolden

My last post showed historical Perl 5 release cycles, but comments I got on and off the blog suggested that my vaguely positive sentiments about the official support policy were misunderstood. This post expands and clarifies my view. I have redone my Perl 5 release cycle graph again with a few chang ...

Perlblogs - perlblogs.com

20
Jan
2012
Visualizing Perl 5 release cycles

21 days ago by dagolden

Beginning with Perl 5, version 12, the Perl 5 language began an annual release cycle, with a new stable release around May of each year. Beginning with version 14, the Perl 5 maintainers also announced a formal support policy and ended support for version 10. This is a significant change from the hi ...

dagolden - dagolden.com · Rank: 110,111 · 29 references

Visualizing Perl 5 release cycles

21 days ago by dagolden

Beginning with Perl 5, version 12, the Perl 5 language began an annual release cycle, with a new stable release around May of each year. Beginning with version 14, the Perl 5 maintainers also announced a formal support policy and ended support for version 10. This is a significant change from the hi ...

Perlblogs - perlblogs.com

18
Jan
2012
Perl Oasis 2012 wrapup

24 days ago by dagolden

Last weekend I attended the Orlando Perl Workshop. While the "hallway track" is one of the best parts of Perl workshops, the talks I saw were also excellent. Here is an overview of the sessions I attended. Doing the Jitterbug Jonathan Leto (dukeleto) presented Jitterbug, a cross language continuous ...

Perlblogs - perlblogs.com

Perl Oasis 2012 wrapup

24 days ago by dagolden

Last weekend I attended the Orlando Perl Workshop. While the "hallway track" is one of the best parts of Perl workshops, the talks I saw were also excellent. Here is an overview of the sessions I attended. Doing the Jitterbug Jonathan Leto (dukeleto) presented Jitterbug, a cross language continuous ...

dagolden - dagolden.com · Rank: 110,111 · 29 references

04
Oct
2011
Yet another taint mode reminder

129 days ago by dagolden

Schwern just posted "How (not) To Load a Module..." that goes into great depth about the security risk in loading modules. The (not) funny thing is that none of what he's saying is a risk would be one when running in taint mode. Consider "/tmp/foo.pm" with this: package foo; print "Loaded foo\n"; 1; ...

dagolden - dagolden.com · Rank: 110,111 · 29 references

14
Sep
2011
How to find files with Path::Class::Rule

150 days ago by dagolden

Path::Class::Rule is what you get when you imagine the love-child of Path::Class and File::Find::Rule. Here is part of the SYNOPSIS: use Path::Class::Rule; my $rule = Path::Class::Rule->new; # match anything $rule->file->size(">10k"); # add/chain rules # iterator interface my $next = $rule->iter( @d ...

dagolden - dagolden.com · Rank: 110,111 · 29 references

29
Aug
2011
Giving thanks as thanks

165 days ago by dagolden

Ricardo wrote an article "promoting little gifts", which @perlbuzz tweeted as "giving little gifts as thanks". I like that idea, and it inspired me to remind people to please also consider just giving "thanks", too. Sure, I'd love a song or a small ebook (and maybe I should set up a wishlist), but I ...

dagolden - dagolden.com · Rank: 110,111 · 29 references

24
Aug
2011
Code munging with vim: if modifier to if block

170 days ago by dagolden

Not infrequently, I discover I want to turn an if modifier into an if block so I can add extra logic when the conditional is true. # from this do_something() if condition(); # to this if ( condition() ) { do_something(); } I decided to automate that with a vim macro: map ,if V:s/\(\s*\) if \(.*\);/\ ...

dagolden - dagolden.com · Rank: 110,111 · 29 references

Previous12