There was this client from Notre Dame
1 direct reply — Read more / Contribute
|
by perlron
on Oct 26, 2014 at 04:45
|
|
|
There was this client from Notre Dame
who asked to code up something lame
I looked at him with weary eyes
and asked him if that's all he’ll buy
He said its just for fun n games
his actual work didn’t need ITs pain
But yet he feels the web’s a rule
n every business needs this tool
I quickly sketched what came to mind
He liked it and said ill pay u fine
I put my zeal into the work
lest later on he changed the perk
But sad that day he said to me
Ron that project..lets wait n see
i glibly said ok thats fine
and tried to simply pass the time
I prayed to God oh please help me
This delay does not work with me
Please work on him to change his mind
Give me the solace of cash n kind
Few days passed and client replied
Hey Ron the TV crews are nigh
i need that simple site of mine
so might as well get a page out fine
I clapped my hands in earnest glee
and wrote markup with a JS reel
and as the project drew to a close
i mused in silence and repose
But still the bucks took time to brew
while i did the logo, perl and hue
and since the cheque was post dated true
i sat and cried a big boo hoo.
|
What i love..
No replies — Read more | Post response
|
by perlron
on Oct 25, 2014 at 14:02
|
|
|
what i love about strings is they are so mutable
what i love about TT is it makes HTML so usable
what i love about perlbrew is it relieves me of variables
what i love about Moose is it makes those large projects workable
what i love about perl is it starts ugly but ends up beautiful
|
Le Sisters
No replies — Read more | Post response
|
by perlron
on Oct 25, 2014 at 04:35
|
|
|
hail both sisters, sweet and $true
lest your squabbles start to $brew
let there be no valid $case
of s /PL/P ITTING on the $other’s face.
|
You dont get to..
1 direct reply — Read more / Contribute
|
by perlron
on Oct 24, 2014 at 08:51
|
|
|
You don’t get to..
#Facebook you don't get to 100 million friends without making a few enemies
#CPAN you dont get to 140,458 modules without seeing a little baloney
#Cpanm you don’t get to become our fav util without the brew’s company
#Perl you don’t get to be called the dead lang until you finish of us zombies
and #Perl 6- you dont get to be the defacto Perl , without giving a DATE of RELEASE :D woot woot.
Note -thanks to everyone on perlmonks and twitter for their sincere advice, which inspired me to write this piece.
|
Wannabe.PL - my first Poem
No replies — Read more | Post response
|
by perlron
on Oct 24, 2014 at 07:09
|
|
|
#!/usr/bin/perl
print 'true' if ('i wanna be someone great' lt 'i wanna build something great');
|
I wrote my car in Perl
2 direct replies — Read more / Contribute
|
by chacham
on Oct 14, 2014 at 13:37
|
|
|
I wrote my car in Perl, my project for today,
I started with use gas, and proceeded on my way,
But a friend who's eco-friendly, and perhaps a bit eccentric,
Changed it to require, and Acme::clean::electric,
And that's when things got strange, and all about was hectic,
Though, searching through the code i was not able to detect it.
I wrote my bed in Perl, to sleep upon my code,
I dreamt a fairy came, and turned me into a toad,
I hopped upon my pillow, bellowing, "oh gribbit!"
"If my princess frog arrives, the kiss, but who will give it?"
I woke up in a sweat, and after just a minute,
I fixed a nasty bug, and tons of others in it.
I wrote my house in Perl, to save a bit of rent,
I still don't have the money, nor an idea where it went,
But on that fateful day, when my friend came and arrived,
He found so many bugs, we're amazed that i survived,
Well, there was a patch or two, without a thought contrived,
That worked in the short term, but was longevity deprived.
And that's my life of code, which worked until a friend,
Or unconscious source, showed me what had to bend,
I might just try again, but plan before i do,
To use others' advice, (and check on CPAN too,)
For though it's great homemade, and i do adore home brew,
It usually is better, to sit and think things through.
|
I'd code without....
1 direct reply — Read more / Contribute
|
by chacham
on Oct 07, 2014 at 09:30
|
|
|
I'd code without my eyes, if i could still see.
I'd code with no soul, but that wouldn't be me.
I'd code without my head, but how would i think?
I'd code with no mouth, but how would i drink?
I'd code without my ears, but who'd hear me shout?
I code with no hair, i already pulled it out.
I'd code without my hands, but my digits would fall,
I'd make up with my toes, but i don't have the gall.
I'd code without my fingers, but keys must be pressed,
I could peck with my nose, who would have guessed?
I could code with no knees, there's some room to bend,
I could try with no legs, and start a short trend.
I might code with my feet, just don't jump to conclusions,
My clone could take over, but that'd lead to confusion.
I'd code without my heart, no...no, i just couldn't.
|
Welcome to the Monastary
1 direct reply — Read more / Contribute
|
by chacham
on Sep 23, 2014 at 12:32
|
|
|
|
|
Make the world better than you found it.
3 direct replies — Read more / Contribute
|
by ghernandez
on Sep 11, 2014 at 01:49
|
|
|
sub self($) {
$world = shift;
return ++$world;
}
|
Life and death are balanced on the edge of a razor
1 direct reply — Read more / Contribute
|
by ghernandez
on Sep 11, 2014 at 01:47
|
|
|
print "Life and death are balanced on the edge of a razor.\n";
sub razorsEdge {
$life=shift;
$death=shift;
if ($death == $life) {
$life = int(rand($death+1)*2);
$death = int(rand($life+1)*2);
}
$life++ if ($life < $death);
$death-- if ($death > $life);
$life-- if ($life > $death);
$death++ if ($death < $life);
razorsEdge($life, $death);
}
razorsEdge($life, $death);
|
|