 |
User since: |
Jun 08, 2009 at 10:50 UTC
(16 years ago) |
Last here: |
Nov 20, 2023 at 09:31 UTC
(1 year ago) |
Experience: |
4552
|
Level: | Priest (14) |
Writeups: |
445
|
Location: | Christchurch, New Zealand |
User's localtime: |
Feb 12, 2025 at 04:43 NZDT
|
Scratchpad: |
View
|
For this user: | Search nodes |
|
Today is June, 6th, 2012, a few days past being a monk for three years!, how time passes. Still, not quite that lonely Perl programmer I had been anymore :)
I joined the Monastery by a mere coincidence (believe it!), ever since I joined and my Perl knowledge skyrocketed in an exponential manner, I so love being here that this is what I've been doing for months now, away from the monks I am interacting here with everyday I am the only Perl programmer and monk I know in the outside world around me. Maybe one day I would get to meet all of ya'll in a YAPC if I ever get to attend one. :) ...
Hisham....
Interesting Nodes and Links:
DEBUGGING AND INTERACTIVE DEBUGGING TUTORIALS:
- %perldoc perldebtut
- %perldoc perldebug
Tutorials:
XP cheers:
- Monked at 9:00 a.m. GMT on ..August, 18th, 2009.
- Reached 500 XP...............August, 27th, 2009.
- Pilgrim......................September, 7th, 2009.
- Friar at 3:24 p.m. GMT on ..October, 16th, 2009.
- Reached 1000..................October, 25th, 2009.
- Hermit.......................November, 21st, 2009.
- Chaplain.....................January, 11th, 2010.
- Deacon..........................April, 05, 2010
- Curate..........................July 13-14, 2010
- Priest at 12:18 a.m. GMT on ..July 02, 2011
#!/usr/local/bin/perl
#Each parameter passed to a subroutine can be named, this enables you
+to pass them to subroutines
#in any order.
#the concept is known as Simulating Named Parameters and it employs ha
+shes.
print "The result is:".addem(OPERAND1=>2, OPERAND2=>8);
sub addem{
my %hash=@_;
return $hash{OPERAND2}+$hash{OPERAND1};
}
Monastic observations
convert .doc to .txt http://apps.phplivedocx.org/convert/doc-to-txt
<!-- location:latitude:21.32.36,longitude:39.10.22>
|