It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
In.
Entering this is now becoming a habit - maybe I should seek help...
See mom, I'm posting here!!
Look ma, no hands!
nmillar's Weekly Entry (2012-04-20).
I'm in
And Xyem said "let there be a giveaway". And there was a giveaway. And it was good.
I am the new god of posting here. Worship me.
In again begin again

thanks as always
I'm in again.
You know I'm in it, sunshine.
In again :) Maybe this time I win
sub generate_random_string
{
my $length_of_randomstring=shift;# the length of
# the random string to generate

my @chars=('a'..'z','A'..'Z','0'..'9','_');
my $random_string;
foreach (1..$length_of_randomstring)
{
# rand @chars will generate a random
# number between 0 and scalar @chars
$random_string.=$chars[rand @chars];
}
return $random_string;
}

#Generate the random string
my $random_string=&generate_random_string(11);

print $random_string."\n";
I shall try my hand at this contest. Good luck to all!
I'm in!