02-12-2012, 08:58 AM
|
#2
|
Feeling at Home
Join Date: Feb 2012
Posts: 544
|
Re: How to deal with poor service?
Quote:
Originally Posted by Garbandz
Fiftynine wasted posts on the wall,
Fiftynine wasted posts,
Take one down and pass it around,
And quit your whining and moaning and grow a pair........
Sixty wasted posts on the wall,
Sixty wasted posts,
Take one down and drive it in the ground,.................
|
Couldn't resist..
#!/usr/bin/perl
$wasted_posts = $argv[0];
$wasted_posts = 60 if $wasted_posts eq '' || $wasted_posts < 0;
foreach (1 .. $wasted_posts) {
print "\n$_ wasted posts on the wall,\n";
print "$_ wasted posts,\n";
print "Take one down and drive it in the ground,....\n";
print "And quit your whining and moaning and grow a pair........\n";
}
print "\n*Thread closed*\n";
Last edited by fencefixer; 02-12-2012 at 09:03 AM.
Reason: bugfix in code :P
|
|
|