vote up 4 vote down star
7

I used to develop a lot of applications, services and system integrations in perl, and for one reason or another I started moving away from perl (mainly I got a job doing .Net).

The first thing that I loved about perl was CPAN - it is the Apple Appstore for perl. Lots of clever people had already solved problems for me, it allowed me to do a lot of work quickly. When Perl6 was announced (god knows how many years ago) I started to follow it - but lost interest.

So my questions are:

  • Is perl dwindling?
  • Are you using it now?
  • Are there any "figure head" projects?
  • What do you love perl? What frustrated you?
  • Is it only being used to maintain existing perl code-bases?
  • What is the state of the perl community?

I am honestly curious and I don't want to start a flame war, I would like to be re-educated.

Below is a summary of the results from the questions.

Excellent Resources:

Figure Head Projects:

flag
1  
As always, with subjective questions, you should really make it community wiki – 1800 INFORMATION Jun 24 at 10:07
14  
"it is the Apple Appstore for perl" The Apple App Store is a store capriciously managed by a single proprietary vendor and filled mostly with proprietary software. CPAN is a openly managed library with mostly freely licensed software. They couldn't be more different. Also, I think this question is inherently subjective. – Matthew Flaschen Jun 24 at 10:09
2  
Infact - I learnt about two projects through this thread that I have never seen before – Kinlan Jun 24 at 11:31
5  
isperldead.com – Kent Fredric Jun 24 at 19:39
1  
Kent: Love it :) subscribed to the RSS feed so it better be updated :) – Kinlan Jun 24 at 21:40
show 10 more comments

closed as subjective and argumentative by Matthew Flaschen, Neil Butterworth, Manni, Colin Pickard, Sinan Ünür Jun 24 at 11:11

4 Answers

vote up 22 vote down check

No way. Perl is gaining strength, I would say. With Catalyst already increasing in popularity, Perl has appreciated new technologies. The new object system Moose has also welcomes new users and helps existing ones.

Yes, I am using it and trying to propagate its use. :-)

I love Perl because of its huge archive of modules - CPAN. I also like the idea TIMTOWTDI (There Is More Than One Way To Do It). Perl is backed by the community. Have a look at Perlmonks.

Perl community is, as usual, enthusiastic about Perl development. Just by looking at the number of authors and the modules getting uploaded to CPAN each day, will give you a rough idea.

Perl 6 is being actively developed and will be a milestone. :-)

link|flag
1  
I have not seen catalyst I will read about that - this is what I am trying to learn - I have been out of the community for such a long time now. – Kinlan Jun 24 at 10:15
1  
Nice call with Catalyst - I'd never run into that before. – Spedge Jun 24 at 10:17
1  
I would like to note that Catalyst is currently based upon Moose. – Brad Gilbert Jun 24 at 19:37
"based upon" is probably the wrong term, "now built upon" I feel more correct. And thats a "now" thing, ie: a new development, ie: Cat is being progressively migrated to Moose.</nitpick> – Kent Fredric Jun 24 at 19:54
vote up 9 vote down

I finished my final year project recently in Perl. The wealth of CPAN modules and the help available due to the language's maturity meant I could achieve all the goals I set out to during the research phase without compromise. I didn't know a whole lot of Perl starting out (having just thrown together the odd simple IRC bot and the like) but it was easy enough to pick up (I'm finding it difficult to master, of course). I also used it for a project at work - log parsing monster with a web front end... (OK, so I used PHP for the web bit).

That said, the FYP is probably going to get a C rewrite before its open source release - the device access stuff was pretty shaky due to Perl's lack of a smooth native library interface. I do believe that has been adressed in Perl 6... so I could go back to Perl in 2020 or so... ;-)

link|flag
1  
Perhaps you could write XS interface code, instead of rewriting it in C. – Brad Gilbert Jun 24 at 19:40
Rewriting it is probably a waste of time. Profile it, find the bottleneck, write that in C with XS. Rewriting all of it in C will just be a disaster IMHO. – Kent Fredric Jun 24 at 20:35
@Brad: Probably a better idea. I'm thinking about portability too but I reckon Perl is pretty ubiquitous on the target platforms. XS code could be useful to other people too, I suppose. @Kent: Performance wasn't the issue, it was the lack of a (smooth) native library interface. Native calls could be cobbled together with P5NCI and Convert::Binary::C... pain :-) – John Barrett Jun 25 at 5:58
vote up 8 vote down

No, the Perl-community is far from dying away. But I got the feeling in the last time, that the very long development-time of Perl 6 is drawing attention away from Perl. But that will change on the release of Perl 6, Perl will get amass attention at this time.

But at the moment Perl 6 needs to long, so that's a reason why people look elsewhere. Maybe the plans for Perl 6 were too ambitious. Currently a Rakudo*-release is planned, which should bring a Perl-6-implementation near to production-ready.

link|flag
vote up 14 vote down

Is perl dwindling?

No

Are you using it now?

Yes

What do you love perl?

The CPAN — it has everything

What frustrated you?

The CPAN — sometimes it is hard to find what you want

Is it only being used to maintain existing perl code-bases?

No. Plenty of new development being done in Perl

What is the state of the perl community?

Active, helpful, but a bit of an echo chamber (i.e. lots of talk within the community, but not as much communication with the outside)

link|flag
This is probably a crass question - do you have any links to new developments? What is outstanding? – Kinlan Jun 24 at 10:10
Catalyst is still big news: dev.catalystframework.org/wiki/… – David Dorward Jun 24 at 10:13

Not the answer you're looking for? Browse other questions tagged or ask your own question.