Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: My First Submission to CPAN (Parallel::ForkControl)

by etcshadow (Priest)
on Dec 15, 2003 at 23:57 UTC ( [id://314934]=note: print w/replies, xml ) Need Help??


in reply to My First Submission to CPAN (Parallel::ForkControl)

Well, one thing (not to sound like a jerk), but you're gonna get reamed if you don't change this line in your example:
my @hosts = map { $_ = qq/host$_/; } (1..400);
Since you're modifying something in a map, which many people will gripe about on style points... but it's also useless and misleading to boot. Try just:
my @hosts = map { qq/host$_/ } (1..400);
Instead. Yeah, I know it's a minor nit-picky point, but, IMHO, when you put something out for the community, you want it to look polished.

Anyway, good luck!

------------ :Wq Not an editor command: Wq

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://314934]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (2)
As of 2024-04-20 03:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found