From doug.miles at bpxinternet.com Tue Dec 5 14:30:55 2000 From: doug.miles at bpxinternet.com (Doug Miles) Date: Thu Aug 5 00:16:18 2004 Subject: Phoenix.pm: Meeting 12/07/2000 Message-ID: <3A2D507F.F4B492D5@bpxinternet.com> This will be the last meeting of this year. Happy Holidays! We'll be having a Phoenix.pm meeting Thursday, December 7th at 7:00PM. It will be held at Bowne, which is located at 1500 N. Central Avenue, which is on the Southwest corner of Central and McDowell. The parking lot is gated, so just press the button on the intercom, and tell the receptionist that you are there for the Perl meeting. Park in the lot that is straight ahead from the entrance on the South side of McDowell. Park in any uncovered, non-reserved space. Proceed to the main lobby, which is on the Northeast side of the parking lot. I'll be presenting a server side alternative to image maps, and if I have time, my maze module. -- - Doug Don't anthropomorphize computers. They hate that. From doug.miles at bpxinternet.com Thu Dec 7 11:32:11 2000 From: doug.miles at bpxinternet.com (Doug Miles) Date: Thu Aug 5 00:16:18 2004 Subject: Reminder: Phoenix.pm: Meeting 12/07/2000 Message-ID: <3A2FC99B.5720146C@bpxinternet.com> Please RSVP. This will be the last meeting of this year. Happy Holidays! We'll be having a Phoenix.pm meeting Thursday, December 7th at 7:00PM. It will be held at Bowne, which is located at 1500 N. Central Avenue, which is on the Southwest corner of Central and McDowell. The parking lot is gated, so just press the button on the intercom, and tell the receptionist that you are there for the Perl meeting. Park in the lot that is straight ahead from the entrance on the South side of McDowell. Park in any uncovered, non-reserved space. Proceed to the main lobby, which is on the Northeast side of the parking lot. I'll be presenting a server side alternative to image maps, and if I have time, my maze module. -- - Doug Don't anthropomorphize computers. They hate that. From Bryan.Lane at VITALPS.COM Thu Dec 7 14:26:07 2000 From: Bryan.Lane at VITALPS.COM (Bryan Lane) Date: Thu Aug 5 00:16:18 2004 Subject: Reminder: Phoenix.pm: Meeting 12/07/2000 Message-ID: <219B26AF200FD411A11200805FE6EF25F211E6@tef00021.vitalps.com> I will be there. See you at 7:00:) -----Original Message----- From: doug.miles@bpxinternet.com [mailto:doug.miles@bpxinternet.com] Sent: Thursday, December 07, 2000 10:32 AM To: Phoenix.pm Cc: Rose Keys Subject: Reminder: Phoenix.pm: Meeting 12/07/2000 Please RSVP. This will be the last meeting of this year. Happy Holidays! We'll be having a Phoenix.pm meeting Thursday, December 7th at 7:00PM. It will be held at Bowne, which is located at 1500 N. Central Avenue, which is on the Southwest corner of Central and McDowell. The parking lot is gated, so just press the button on the intercom, and tell the receptionist that you are there for the Perl meeting. Park in the lot that is straight ahead from the entrance on the South side of McDowell. Park in any uncovered, non-reserved space. Proceed to the main lobby, which is on the Northeast side of the parking lot. I'll be presenting a server side alternative to image maps, and if I have time, my maze module. -- - Doug Don't anthropomorphize computers. They hate that. From lajandy at yahoo.com Thu Dec 7 15:36:58 2000 From: lajandy at yahoo.com (Andrew Johnson) Date: Thu Aug 5 00:16:18 2004 Subject: Reminder: Phoenix.pm: Meeting 12/07/2000 Message-ID: <20001207213658.80870.qmail@web2007.mail.yahoo.com> Alas, again I will be unable to attend. I am deploying pieces of our infrastructure to Oracle today (death to Sybase!) and will probably be working pretty late tonight. Have fun without me though! --- Doug Miles wrote: > Please RSVP. > > This will be the last meeting of this year. Happy Holidays! > > We'll be having a Phoenix.pm meeting Thursday, December 7th at > 7:00PM. > It will be held at Bowne, which is located at 1500 N. Central Avenue, > which is on the Southwest corner of Central and McDowell. The > parking > lot is gated, so just press the button on the intercom, and tell the > receptionist that you are there for the Perl meeting. Park in the > lot > that is straight ahead from the entrance on the South side of > McDowell. > Park in any uncovered, non-reserved space. Proceed to the main > lobby, > which is on the Northeast side of the parking lot. > > I'll be presenting a server side alternative to image maps, and if I > have time, my maze module. > > -- > - Doug > > Don't anthropomorphize computers. They hate that. ===== __________________________________________________ Do You Yahoo!? Yahoo! Shopping - Thousands of Stores. Millions of Products. http://shopping.yahoo.com/ From eric at thelin.org Fri Dec 15 15:08:44 2000 From: eric at thelin.org (Eric Thelin) Date: Thu Aug 5 00:16:18 2004 Subject: Phoenix.pm: Perl Christmas Carol Message-ID: I know most of you probably read user friendly so you may have already seen this but I thought that it was worth posting for anyone who hasn't. By Saucepan #!/usr/bin/perl # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # $snow = new Fields(type => 'snowy'); $sleigh= new Sleigh(horses => 1, roof => 'open'); $sleigh->dash_through($snow); $_->laugh foreach @{ $sleigh->get_occupants }; # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # BEGIN { package Person; sub new { shift; bless { @_, idx => $idx++ } } sub laugh { print "Person ", $_[0]->{idx}, " is laughing " } package Fields; sub new { shift; bless { @_} } package Sleigh; sub new { shift; bless { occupants => [new Person, new Person], @_ } } sub get_occupants { $_[0]->{occupants} } sub dash_through { my($self,$what)=@_; print $self->{horses}, " horse ", $self->{roof}," sleigh "; print "is dashing through ", $what->{type}, "fields "; } } -- Eric Thelin erict@aztechbiz.com AZtechBiz.com: Where Arizona Does Tech Business Voice: 480-377-6743 Fax: 480-377-6755