Stories
Slash Boxes
Comments

All the Perl that's Practical to Extract and Report

use Perl Log In

Log In

[ Create a new account ]

TeeJay (2309)

TeeJay
  (email not shown publicly)
http://www.aarontrevena.co.uk/

Working in Truro
Graduate with BSc (Hons) in Computer Systems and Networks
pm : london.pm, bath.pm, devoncornwall.pm
lug : Devon & Cornwall LUG
CPAN : TEEJAY [cpan.org]
irc : TeeJay
skype : hashbangperl
livejournal : hashbangperl [livejournal.com]
flickr :hashbangperl [flickr.com]

Journal of TeeJay (2309)

Tuesday July 01, 2008
06:23 AM

Autodia 2.08 uploaded to CPAN

Just uploaded 2.08 to CPAN - now skip lists work correctly for most input handlers, Java has been entirely removed (it hasn't worked for most of this decade), and author tests are excluded - also graphviz options now include concentrate for tidier output.

Friday May 16, 2008
09:36 AM

Help the Perl 5 Wiki reach 1000 pages

The Official Perl 5 Wiki now has a total of 893 pages, and 284 pages wanted by other pages.

That means that 1000 pages is well within reach - pick from the "most wanted" page or the "wishlist", or even better - add more content to the many short pages already there such as mod_perl, applications, etc.

Other pages that would be cool to add would be

  • Perl usage - collate info about job statistics, cpan growth, surveys, perl monger census (past and current), numbers of conferences, etc
  • Packaging applications using PAR
  • Brief descriptions of each Perl Release, such as name of pumpking, major changes and links to annoucement, changelog, etc
  • Translated pages - currently the entire content is in english - translations of popular and/or big pages would be incredibly useful

The Python wiki has about 4 or 5 thousand pages - it's been around a lot longer than this wiki, but Perl has been around longer than perl and there is a lot more that could and should be covered in the wiki

Tuesday May 06, 2008
06:09 AM

dear lazyweb - I want more metadata when searching cpan

I'd really appreciate more ways to search cpan - there is so much information available that can help you find the right library that aren't currently used anywhere:
* ohloh and other metrics (sloccount, version control churn, bug churn, mailing list activity)
* koala tea
* recomended on the perl 5 wiki
* published articles, slides, advent calender on it
* cpandeps results
* SYNOPSIS
* SEE ALSO suggestions

And that's on top of the current reviews/rating system and bug count available on search.cpan.org.

If I had some spare time I'd give it a go, but I'm busy with work, sprog and current CPAN module workload. It would make a neat showcase for any framework like Maypole or Catalyst tho.

Friday April 18, 2008
05:05 AM

Ohloh

I'm hooked on Ohloh, and am a little disappointed how little perl is represented on there (in proportion to the number of users, projects, etc).

It would be a nice way to showcase both the breadth and quality for more perl projects - it's actually rather good for advocacy in a "just show me the numbers" way

Thursday January 03, 2008
06:55 AM

Perl 6 can has LOLCODE?

Sunday December 30, 2007
12:17 PM

what can I do with perl 6 today?

Following my response to chromatic and post to the perl6-users list - I've started a guide to what you can actually use perl 6 for today :
http://www.perlfoundation.org/perl6/index.cgi?what_can_i_do_with_perl_6_today

Mostly a rough outline, but I'll be filling it in more as I get the chance and would appreciate any help - whether formatting nicely or adding urls or suggestions.

Also I'd really appreciate a 'creating a cpan/cpan6 style module' in perl 6 howto.

Thursday December 20, 2007
10:56 AM

audit2policy - making selinux less painful

http://docs.fedoraproject.org/selinux-faq-fc5/#id2961385

Standard selinux policy in Centos 5 is infuriatingly unhelpful - fortunately 5 commands and it's less awful.

Thursday December 06, 2007
10:42 AM

activecollab fork.. activeCollab BC

Ace!

I was about to download activecollab yesterday when I discovered that you can no longer get it for free - I don't have time to go through the pain of persuading my clients to pay for stuff so I started looking for something else.. today I found just what I wanted..

http://freelanceescape.com/resources/activecollab-bc/

ActiveCollab - free fork, with added basecampyness ! I'll be trying it out for the next couple of days - hopefully it'll be fairly simple to integrate with my client's existing wiki and mantis bugtracker.

Monday November 26, 2007
10:08 AM

Object::InsideOut - why on earth use it?

I'm dealing with a relatively recent codebase where the programmer has decided to use Object::InsideOut - and I'm really getting annoyed with it.

It doesn't offer any actual benefits over using a sane class system, such as Class::Accessor, doesn't provide any persistence (so that's all tacked on seperately via a heath-robinson contraption involving large SQL snippets all over the shop). I'd really like to replace all the Object::InsideOut code with DBIx::Class.

*sigh*

Today's fun problem is that I've added a new attribute, but the getter methods don't seem to exist, despite being specified in exactly the same way as all the others, naturally no useful information is provided about why it doesn't exist - merely that (despite all the code being in place) it doesn't.

Thursday November 15, 2007
10:55 AM

strange error when sending email

Error during compilation of /path/to/docs/emails/el-GR/some_email.mas: Unrecognized character \xCE at /path/to/docs/emails/el-GR/some_email.mas

how odd..

further investigation leads to this gem :

<% Αν ( !$category->αφορά κάποιο event() ){ %>

which should in fact be :
<% if ( !$category->is_event_based() ){ %>

That's right - somebody translated the perl in my clients email into greek, as well as the content.

Oops