sethd.org
this is not the blog you're looking for

Resume
LinkedIn

RECENT ENTRIES

Done With Blogging
MetaCPAN
I Am Now On Twitter. World Officially Ends.
More Info About Perl 5.14
Perl 5.14 has been released
The Year of Perl 5.10
PSGI is the Limit
Magical Moose
Accessor Benchmarks
Reviewing Perl Best Practices After 7 Years
Interesting Modules 2011-03-19
Book Blogging: The Uplift War
Book Blogging: Childhood's End
Interesting Modules 2011-02-20
Perl Programming Best Practices 2011
Modern Perl Available For Free
Bloated Perl Applications
Five Test::More Features You Might Not Be Using Yet
Perl.LA
How To Identify A Good Perl Programmer
Interesting Modules 2011-01-11
Hudson's Future
Moose Ecosystem
Shaking Up Subversion Responses
Dist::Zilla Walkthrough
Mailing Lists vs. IRC
Shaking Up Subversion
Module Count Shmodule Count
Book Blogging: The Definitive Guide To Catalyst
Book Blogging: Blackout / All Clear
Interesting Modules 2010-12-04
Book Blogging: Macroscope
Upcoming Perl Books
Use A String Like A Filehandle
Moose and Build
Running the Bases...Quickly
Pennant
Interesting Modules 2010-10-16
Went to Perl Mongers Last Night
Book Blogging: The Many Deaths of the Firefly Brothers
Book Blogging: Rainbows End
Interesting Modules 2010-09-03
36th Birthday
Book Blogging: Startide Rising
Mar 19, 2011

Interesting Modules 2011-03-19

Exporter::Declare: After yammering about how much I like Sub::Exporter I discover another exporter that, until today, I had not heard of. It looks very promising and I plan on testing it out "sometime soon".

Tags: , , .
[p] Posted @ 20:13 by Seth

Feb 20, 2011

Interesting Modules 2011-02-20

Sub::Exporter: I've started using this module when writing modules that have symbols to be exported. It is much better than the standard Exporter and its documentation has a handy comparison to other CPAN export modules. I've found it to be very easy to use and extremely powerful. It was used as the exporter for Moose for a reason. It is simply the best exporter available.

Tags: , , .
[p] Posted @ 19:40 by Seth

Jan 11, 2011

Interesting Modules 2011-01-11

Reflex: the next generation project being worked on by Rocco Caputo (the author of POE). It seems to be an attempt to remake POE using a more Modern Perl approach (which, of course, means Moose among other things). It can work with existing POE components using a number of adaptor classes.

Tags: , , .
[p] Posted @ 12:46 by Seth

Jan 02, 2011

Mailing Lists vs. IRC

Of late I've noticed a trend with at least a few major projects. Most of the key developers don't read the users mailing list, but instead insist that people come to IRC if they want help (I thought this was an appropriate response). I've seen this on a number of important mailing lists such as DBIx::Class, Catalyst, and Moose.

This is ridiculous. With mailing lists you get easily searchable archives and people can read exchanges at their leisure. When a question or answer is presented everyone on the list can benefit (and, thanks to searchable archives and the miracle of internet search engines, people who aren't subscribed can benefit...even years later). With IRC you get none of that. Only the people who are on-line and paying attention at the time get the benefit. I don't understand the reasoning behind this preference for IRC and shunning of mailing lists. It strikes me as a shift to move closer to the Cathedral and farther from the Bazaar.

One project that seems to have struck a good balance is the Subversion project. Many of their developers talk to one another via IRC, but they also realize that most people aren't on IRC at the time they are on. So what do they do? They post transcripts of important conversations to the mailing list. This sparks new conversations...all of which will be seen by all subscribers and anyone else who is interested.

Tags: .
[p] Posted @ 10:10 by Seth

Dec 04, 2010

Interesting Modules 2010-12-04

With the success of Moose I suppose it was inevitable that people would want to build 'lite' versions of it. Mouse has been around for almost as long as Moose, and now there is Moo which bills itself as 'almost two thirds of Moose' (get it?).

Tags: , , .
[p] Posted @ 23:42 by Seth

Nov 24, 2010

Upcoming Perl Books

I recently ordered, and just received, two Perl-related books. One is the fresh off the presses Modern Perl, and the other is a 2009 book about Catalyst. After I read them I will review them here. I expect them both to be good.

I bought Modern Perl because I think I can learn a thing or two from it and because I'm a follower of the eponymous blog.

I bought the Catalyst book because I need to start using it for a project I'm working on at work. It is the most recent book on the topic and the authors are people who are highly regarded in the Perl community.

Tags: , , .
[p] Posted @ 21:06 by Seth

Nov 15, 2010

Use A String Like A Filehandle

How did I not know that this can be done? Seems like there are any number of places that this could be useful. The blog post also covers some nasty gotchas.

Tags: , .
[p] Posted @ 11:03 by Seth

Oct 16, 2010

Interesting Modules 2010-10-16

Love::Match::Calc. Apparently you can take two names and generate what is known as a love factor. I don't know what that is but it is self-evidently awesome.

Tags: , , .
[p] Posted @ 13:13 by Seth

Sep 03, 2010

Interesting Modules 2010-09-03

Const::Fast: A replacement for using constant and Readonly. The code is ridiculously simple. The primary problems with the other modules? Readonly is built on top of tie() (so can be quite slow), and constant simply wraps the value in a sub call and so (among other things) you don't get interpolation for anything declared with 'use constant' since you aren't dealing with a scalar.

Tags: , , .
[p] Posted @ 16:20 by Seth

Aug 21, 2010

Interesting Modules 2010-08-21

MooseX::POE: A Moose wrapper for POE::Session. Write POE modules using Moose. There is also a set of modules in the POEx namespace that purport to do something similar, but MooseX::POE seems to be maintained.

Tags: , , .
[p] Posted @ 14:52 by Seth

Aug 03, 2010

Interesting Modules 2010-08-03

Parallel::Iterator: A module that provides a 'parallel map' function. It transparently utilizes multiple cores, performs IPC, and other stuff.

Tags: , , .
[p] Posted @ 11:06 by Seth

Jul 30, 2010

Interesting Modules 2010-07-30

Path::Dispatcher: a dispatcher that can work just about anywhere. It works (roughly) analogously to the way mod_perl works when matching URIs and dispatching to URI handlers. This code can work in any context including the command line.

Tags: , , .
[p] Posted @ 22:27 by Seth

Apr 18, 2010

Interesting Modules 2010-04-18

IPC::Run3: the successor to IPC::Open2. A simpler API with the same functionality.

Tags: , , .
[p] Posted @ 17:58 by Seth

Apr 01, 2010

Interesting Modules 2010-04-01

Config::Model: A framework for creating configuration validation and editors. This is something I've wanted to write for awhile now. If I understand the goal of this module correctly it should make writing configuration systems very simple.

Tags: , , .
[p] Posted @ 13:13 by Seth

Mar 29, 2010

Interesting Modules 2010-03-29

App::perlbrew: Manage perl installations in your $HOME. I can see where this can be very useful. Here is an introduction on its use.

Tags: , , .
[p] Posted @ 23:35 by Seth

Next 15 entries

This site uses the very simple and easy to use blosxom blogging software.


Advanced Search

PERL BLOGS

PERL RELATED OTHER SITES