From mark.schoonover at gmail.com Fri Feb 1 15:42:52 2008 From: mark.schoonover at gmail.com (Mark Schoonover) Date: Fri, 1 Feb 2008 15:42:52 -0800 Subject: [San-Diego-pm] Converting Time from UTC Message-ID: <125c4f3c0802011542o7497cecm70663d8707313fff@mail.gmail.com> Good Afternoon PMs! I'm trying to convert from UTC to various US timezones. The time data is recorded in UTC in a CSV file. What I need to do is convert that time to the correct US timezone, plus keep in my daylight savings time. I've looked at DateTime, and it will do what I need, but I'm missing something basic. My time is not broken out by hms seperately, but instead is recorded 00:00 in one field, and mm/dd/yyyy in another. I've played around with DateTime, which has an is_dst method, but I have no idea how to put the date and time into the correct format, and have it create a DateTime object so I can convert to the correct timezone. Any ideas? TIA -- Mark Schoonover, CMDBA http://www.linkedin.com/in/markschoonover http://marksitblog.blogspot.com mark.schoonover at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/san-diego-pm/attachments/20080201/4f880b68/attachment.html From chris_radcliff at mac.com Fri Feb 1 15:57:04 2008 From: chris_radcliff at mac.com (Chris Radcliff) Date: Fri, 1 Feb 2008 15:57:04 -0800 Subject: [San-Diego-pm] Converting Time from UTC In-Reply-To: <125c4f3c0802011542o7497cecm70663d8707313fff@mail.gmail.com> References: <125c4f3c0802011542o7497cecm70663d8707313fff@mail.gmail.com> Message-ID: Hi Mark, There may be a DateTime formatter module that includes your particular format. For example: http://search.cpan.org/~schubiger/DateTime-Format-Natural-0.66/lib/DateTime/Format/Natural.pm There are many to choose from, so you might want to try a few and see which one does the best (and possibly fastest) job. Each one will let you go straight from a string to a DateTime object: my $parser = DateTime::Format::Natural->new(); my $dt = $parser->parse_datetime($date_string); ...and from there you can use DateTime functions as you described. Hope that helps. Cheers, ~chris On Feb 1, 2008, at 3:42 PM, Mark Schoonover wrote: > Good Afternoon PMs! > > I'm trying to convert from UTC to various US timezones. The time > data is recorded in UTC in a CSV file. What I need to do is convert > that time to the correct US timezone, plus keep in my daylight > savings time. I've looked at DateTime, and it will do what I need, > but I'm missing something basic. My time is not broken out by hms > seperately, but instead is recorded 00:00 in one field, and mm/dd/ > yyyy in another. I've played around with DateTime, which has an > is_dst method, but I have no idea how to put the date and time into > the correct format, and have it create a DateTime object so I can > convert to the correct timezone. > > Any ideas? > > TIA > > -- > Mark Schoonover, CMDBA From mark.schoonover at gmail.com Fri Feb 1 16:21:53 2008 From: mark.schoonover at gmail.com (Mark Schoonover) Date: Fri, 1 Feb 2008 16:21:53 -0800 Subject: [San-Diego-pm] Converting Time from UTC In-Reply-To: References: <125c4f3c0802011542o7497cecm70663d8707313fff@mail.gmail.com> Message-ID: <125c4f3c0802011621y56d81dadqa7467cd3348bf81f@mail.gmail.com> Thanks Chris. The problem I'm having is creating the $string to begin with. I've been banging my head on this all day today reading cpan, so it's probably something very obvious I'm now too toasted to see... This does look like what I'll need to do. On Feb 1, 2008 3:57 PM, Chris Radcliff wrote: > Hi Mark, > > There may be a DateTime formatter module that includes your particular > format. For example: > > > http://search.cpan.org/~schubiger/DateTime-Format-Natural-0.66/lib/DateTime/Format/Natural.pm > > There are many to choose from, so you might want to try a few and see > which one does the best (and possibly fastest) job. Each one will let > you go straight from a string to a DateTime object: > > my $parser = DateTime::Format::Natural->new(); > my $dt = $parser->parse_datetime($date_string); > > ...and from there you can use DateTime functions as you described. > Hope that helps. > > Cheers, > ~chris > > On Feb 1, 2008, at 3:42 PM, Mark Schoonover wrote: > > > Good Afternoon PMs! > > > > I'm trying to convert from UTC to various US timezones. The time > > data is recorded in UTC in a CSV file. What I need to do is convert > > that time to the correct US timezone, plus keep in my daylight > > savings time. I've looked at DateTime, and it will do what I need, > > but I'm missing something basic. My time is not broken out by hms > > seperately, but instead is recorded 00:00 in one field, and mm/dd/ > > yyyy in another. I've played around with DateTime, which has an > > is_dst method, but I have no idea how to put the date and time into > > the correct format, and have it create a DateTime object so I can > > convert to the correct timezone. > > > > Any ideas? > > > > TIA > > > > -- > > Mark Schoonover, CMDBA > -- Mark Schoonover, CMDBA http://www.linkedin.com/in/markschoonover http://marksitblog.blogspot.com mark.schoonover at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/san-diego-pm/attachments/20080201/9d7d6764/attachment.html From chris_radcliff at mac.com Fri Feb 1 16:49:50 2008 From: chris_radcliff at mac.com (Chris Radcliff) Date: Fri, 1 Feb 2008 16:49:50 -0800 Subject: [San-Diego-pm] Converting Time from UTC In-Reply-To: <125c4f3c0802011621y56d81dadqa7467cd3348bf81f@mail.gmail.com> References: <125c4f3c0802011542o7497cecm70663d8707313fff@mail.gmail.com> <125c4f3c0802011621y56d81dadqa7467cd3348bf81f@mail.gmail.com> Message-ID: If I'm understanding your situation correctly, you should be able to join the date and time strings with a space, then pass the combined string into parse_datetime(). On Feb 1, 2008, at 4:21 PM, Mark Schoonover wrote: > Thanks Chris. The problem I'm having is creating the $string to > begin with. I've been banging my head on this all day today reading > cpan, so it's probably something very obvious I'm now too toasted to > see... This does look like what I'll need to do. > > On Feb 1, 2008 3:57 PM, Chris Radcliff wrote: > Hi Mark, > > There may be a DateTime formatter module that includes your particular > format. For example: > > http://search.cpan.org/~schubiger/DateTime-Format-Natural-0.66/lib/DateTime/Format/Natural.pm > > There are many to choose from, so you might want to try a few and see > which one does the best (and possibly fastest) job. Each one will let > you go straight from a string to a DateTime object: > > my $parser = DateTime::Format::Natural->new(); > my $dt = $parser->parse_datetime($date_string); > > ...and from there you can use DateTime functions as you described. > Hope that helps. > > Cheers, > ~chris > > On Feb 1, 2008, at 3:42 PM, Mark Schoonover wrote: > > > Good Afternoon PMs! > > > > I'm trying to convert from UTC to various US timezones. The time > > data is recorded in UTC in a CSV file. What I need to do is convert > > that time to the correct US timezone, plus keep in my daylight > > savings time. I've looked at DateTime, and it will do what I need, > > but I'm missing something basic. My time is not broken out by hms > > seperately, but instead is recorded 00:00 in one field, and mm/dd/ > > yyyy in another. I've played around with DateTime, which has an > > is_dst method, but I have no idea how to put the date and time into > > the correct format, and have it create a DateTime object so I can > > convert to the correct timezone. > > > > Any ideas? > > > > TIA > > > > -- > > Mark Schoonover, CMDBA -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/san-diego-pm/attachments/20080201/9c2126c4/attachment.html From mark.schoonover at gmail.com Fri Feb 1 17:39:04 2008 From: mark.schoonover at gmail.com (Mark Schoonover) Date: Fri, 1 Feb 2008 20:39:04 -0500 Subject: [San-Diego-pm] Converting Time from UTC In-Reply-To: References: <125c4f3c0802011542o7497cecm70663d8707313fff@mail.gmail.com> <125c4f3c0802011621y56d81dadqa7467cd3348bf81f@mail.gmail.com> Message-ID: <125c4f3c0802011739l55075ac3u5807f1510f13ec9@mail.gmail.com> Yeah, that's what I was thinking on the way home tonight... I was thinking I could just check the date/time to see if it's equal to, or past March 9th, 0200 and go that route, but I think it maybe safer to use DateTime module to do what I need. Thanks for the help Chris. I do appreciate it... On Feb 1, 2008 7:49 PM, Chris Radcliff wrote: > If I'm understanding your situation correctly, you should be able to join > the date and time strings with a space, then pass the combined string into > parse_datetime(). > > On Feb 1, 2008, at 4:21 PM, Mark Schoonover wrote: > > Thanks Chris. The problem I'm having is creating the $string to begin > with. I've been banging my head on this all day today reading cpan, so it's > probably something very obvious I'm now too toasted to see... This does look > like what I'll need to do. > > On Feb 1, 2008 3:57 PM, Chris Radcliff wrote: > > > Hi Mark, > > > > There may be a DateTime formatter module that includes your particular > > format. For example: > > > > > > http://search.cpan.org/~schubiger/DateTime-Format-Natural-0.66/lib/DateTime/Format/Natural.pm > > > > There are many to choose from, so you might want to try a few and see > > which one does the best (and possibly fastest) job. Each one will let > > you go straight from a string to a DateTime object: > > > > my $parser = DateTime::Format::Natural->new(); > > my $dt = $parser->parse_datetime($date_string); > > > > ...and from there you can use DateTime functions as you described. > > Hope that helps. > > > > Cheers, > > ~chris > > > > On Feb 1, 2008, at 3:42 PM, Mark Schoonover wrote: > > > > > Good Afternoon PMs! > > > > > > I'm trying to convert from UTC to various US timezones. The time > > > data is recorded in UTC in a CSV file. What I need to do is convert > > > that time to the correct US timezone, plus keep in my daylight > > > savings time. I've looked at DateTime, and it will do what I need, > > > but I'm missing something basic. My time is not broken out by hms > > > seperately, but instead is recorded 00:00 in one field, and mm/dd/ > > > yyyy in another. I've played around with DateTime, which has an > > > is_dst method, but I have no idea how to put the date and time into > > > the correct format, and have it create a DateTime object so I can > > > convert to the correct timezone. > > > > > > Any ideas? > > > > > > TIA > > > > > > -- > > > Mark Schoonover, CMDBA > > > > -- Mark Schoonover, CMDBA http://www.linkedin.com/in/markschoonover http://marksitblog.blogspot.com mark.schoonover at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/san-diego-pm/attachments/20080201/2bfea2a0/attachment-0001.html From rkleeman at energoncube.net Thu Feb 7 14:27:59 2008 From: rkleeman at energoncube.net (Bob Kleemann) Date: Thu, 7 Feb 2008 14:27:59 -0800 Subject: [San-Diego-pm] Meeting on Monday! Message-ID: <20080207222759.GA30176@energoncube.net> Hey Mongers, Just a reminder that there is a meeting on Monday. It's not at our normal place, it'll be at the Qualcomm building Q auditorium. It sounds like it should be an interesting Perl UI discussion. All the details are available on the website, so come on by Monday night. From chris at chrisgrau.com Fri Feb 8 10:53:54 2008 From: chris at chrisgrau.com (Chris Grau) Date: Fri, 8 Feb 2008 10:53:54 -0800 Subject: [San-Diego-pm] Converting Time from UTC In-Reply-To: <125c4f3c0802011739l55075ac3u5807f1510f13ec9@mail.gmail.com> References: <125c4f3c0802011542o7497cecm70663d8707313fff@mail.gmail.com> <125c4f3c0802011621y56d81dadqa7467cd3348bf81f@mail.gmail.com> <125c4f3c0802011739l55075ac3u5807f1510f13ec9@mail.gmail.com> Message-ID: <20080208185354.GC20663@chrisgrau.com> How annoying. My original reply ended up being rejected by qmail. Better luck this time. And the error message is oh so useful. host 16.mx.develooper.com[216.52.237.216] said: 452 Message denied temporarily (in reply to end of DATA command) On Fri, Feb 01, 2008 at 08:39:04PM -0500, Mark Schoonover wrote: > Yeah, that's what I was thinking on the way home tonight... I was > thinking I could just check the date/time to see if it's equal to, or > past March 9th, 0200 and go that route, but I think it maybe safer to > use DateTime module to do what I need. Ouch. I would never recommend handling Daylight Saving Time manually. Too much room for error. I whipped up something that may do what you want (or may not... I only skimmed this thread). Notice the second two dates fall on the DST switch. -----cut----------cut----------cut----------cut----------cut----- #!/usr/bin/perl -w use strict; use Date::Parse; my @dates = qw(01/01/2007 03/11/2007 11/04/2007); my @times = qw(00:00 08:25 08:09); for my $i ( 0 .. $#dates ) { my $date = join ' ', $dates[$i], $times[$i]; my $time = str2time( $date, 'GMT' ); print "Got date: ", ( scalar gmtime $time ), " GMT\n"; for my $tz ( qw(US/Pacific US/Mountain US/Central US/Eastern) ) { local $ENV{'TZ'} = $tz; print " $tz => ", ( scalar localtime $time ), "\n"; } } -----cut----------cut----------cut----------cut----------cut----- Got date: Mon Jan 1 00:00:00 2007 GMT US/Pacific => Sun Dec 31 16:00:00 2006 US/Mountain => Sun Dec 31 17:00:00 2006 US/Central => Sun Dec 31 18:00:00 2006 US/Eastern => Sun Dec 31 19:00:00 2006 Got date: Sun Mar 11 08:25:00 2007 GMT US/Pacific => Sun Mar 11 00:25:00 2007 US/Mountain => Sun Mar 11 01:25:00 2007 US/Central => Sun Mar 11 03:25:00 2007 US/Eastern => Sun Mar 11 04:25:00 2007 Got date: Sun Nov 4 08:09:00 2007 GMT US/Pacific => Sun Nov 4 01:09:00 2007 US/Mountain => Sun Nov 4 01:09:00 2007 US/Central => Sun Nov 4 02:09:00 2007 US/Eastern => Sun Nov 4 03:09:00 2007 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mail.pm.org/pipermail/san-diego-pm/attachments/20080208/e3888598/attachment.bin From kloomis at bigplanet.com Fri Feb 8 11:09:11 2008 From: kloomis at bigplanet.com (Ken Loomis) Date: Fri, 8 Feb 2008 19:09:11 -0000 Subject: [San-Diego-pm] Converting Time from UTC Message-ID: <380-2200825819911752@bigplanet.com> I'm not sure what all that is about, but since I moved from San Diego to Arizona a couple of years ago, any mention of Daylight Saving Time piques my curiosity. Since Arizona NEVER goes on to DST, I was wondering if your routine took that into account. It is interesting to see which web services/applications give me the option to select "Arizona" when they ask for my time zone. Just wondering. Ken > > > >---- Original Message ---- >From: chris at chrisgrau.com >To: san-diego-pm at pm.org >Subject: Re: [San-Diego-pm] Converting Time from UTC >Date: Fri, 8 Feb 2008 10:53:54 -0800 > >>How annoying. My original reply ended up being rejected by qmail. >>Better luck this time. And the error message is oh so useful. >> >> host 16.mx.develooper.com[216.52.237.216] said: 452 Message >denied >> temporarily (in reply to end of DATA command) >> >>On Fri, Feb 01, 2008 at 08:39:04PM -0500, Mark Schoonover wrote: >>> Yeah, that's what I was thinking on the way home tonight... I was >>> thinking I could just check the date/time to see if it's equal to, >or >>> past March 9th, 0200 and go that route, but I think it maybe safer >to >>> use DateTime module to do what I need. >> >>Ouch. I would never recommend handling Daylight Saving Time >manually. >>Too much room for error. I whipped up something that may do what >you >>want (or may not... I only skimmed this thread). Notice the second >two >>dates fall on the DST switch. >> >>-----cut----------cut----------cut----------cut----------cut----- >> >>#!/usr/bin/perl -w >> >>use strict; >>use Date::Parse; >> >>my @dates = qw(01/01/2007 03/11/2007 11/04/2007); >>my @times = qw(00:00 08:25 08:09); >> >>for my $i ( 0 .. $#dates ) { >> my $date = join ' ', $dates[$i], $times[$i]; >> >> my $time = str2time( $date, 'GMT' ); >> print "Got date: ", ( scalar gmtime $time ), " GMT\n"; >> >> for my $tz ( qw(US/Pacific US/Mountain US/Central US/Eastern) ) >{ >> local $ENV{'TZ'} = $tz; >> print " $tz => ", ( scalar localtime $time ), "\n"; >> } >>} >> >>-----cut----------cut----------cut----------cut----------cut----- >> >>Got date: Mon Jan 1 00:00:00 2007 GMT >> US/Pacific => Sun Dec 31 16:00:00 2006 >> US/Mountain => Sun Dec 31 17:00:00 2006 >> US/Central => Sun Dec 31 18:00:00 2006 >> US/Eastern => Sun Dec 31 19:00:00 2006 >>Got date: Sun Mar 11 08:25:00 2007 GMT >> US/Pacific => Sun Mar 11 00:25:00 2007 >> US/Mountain => Sun Mar 11 01:25:00 2007 >> US/Central => Sun Mar 11 03:25:00 2007 >> US/Eastern => Sun Mar 11 04:25:00 2007 >>Got date: Sun Nov 4 08:09:00 2007 GMT >> US/Pacific => Sun Nov 4 01:09:00 2007 >> US/Mountain => Sun Nov 4 01:09:00 2007 >> US/Central => Sun Nov 4 02:09:00 2007 >> US/Eastern => Sun Nov 4 03:09:00 2007 >> Ken Loomis Consultant Windows, Macintosh, Internet, etc. Helping to make your technology experience more pleasant & profitable ;-) 619-275-6919 Fax: 267-220-6919 KLoomis at BigPlanet.com From chris at chrisgrau.com Fri Feb 8 11:15:42 2008 From: chris at chrisgrau.com (Chris Grau) Date: Fri, 8 Feb 2008 11:15:42 -0800 Subject: [San-Diego-pm] Converting Time from UTC In-Reply-To: <380-2200825819911752@bigplanet.com> References: <380-2200825819911752@bigplanet.com> Message-ID: <20080208191542.GD20663@chrisgrau.com> On Fri, Feb 08, 2008 at 07:09:11PM -0000, Ken Loomis wrote: > Since Arizona NEVER goes on to DST, I was wondering if your routine > took that into account. Of course. By setting the time zone and depending on system calls, the routine in question uses the tzdata system (under Linux, but similar on other systems) to apply the correct time zone rules. Even for Arizona, Indiana, Hawaii, and Alaska (as well as every other known locale on the planet). Incidently, I learned about most of this last year during the run-up to the new DST rules as (non-intelligently) designed by Congress. A lot of older, end-of-life'd Linux systems required patches to the tzdata files to avoid getting the time wrong. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mail.pm.org/pipermail/san-diego-pm/attachments/20080208/5572dccb/attachment.bin From chris at chrisgrau.com Mon Feb 11 09:42:42 2008 From: chris at chrisgrau.com (Chris Grau) Date: Mon, 11 Feb 2008 09:42:42 -0800 Subject: [San-Diego-pm] Reminder: Meeting on Monday (Tonight)! In-Reply-To: <20080207222759.GA30176@energoncube.net> References: <20080207222759.GA30176@energoncube.net> Message-ID: <20080211174242.GK20663@chrisgrau.com> Hey fellow Perlers and Perlettes. Tonight (Monday, February 11) is our monthly meeting. We're in for a treat this month. Brian will be presenting a session on GUIs in Perl. As such, please note the meeting will be held at the Qualcomm auditorium. More information as well as directions are available on our web site . Also, if anyone has a voice recorder (and if Brian agrees), please bring it. It'd be nice for anyone who can't make it (hi Cathy) to hear the presentation as well as see the slides. See you tonight! -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mail.pm.org/pipermail/san-diego-pm/attachments/20080211/94ef16d2/attachment.bin From chris at chrisgrau.com Wed Feb 13 10:23:19 2008 From: chris at chrisgrau.com (Chris Grau) Date: Wed, 13 Feb 2008 10:23:19 -0800 Subject: [San-Diego-pm] Reminder: Meeting on Monday (Tonight)! In-Reply-To: <20080211174242.GK20663@chrisgrau.com> References: <20080207222759.GA30176@energoncube.net> <20080211174242.GK20663@chrisgrau.com> Message-ID: <20080213182319.GP20663@chrisgrau.com> On Mon, Feb 11, 2008 at 09:42:42AM -0800, Chris Grau wrote: > Tonight (Monday, February 11) is our monthly meeting. We're in for a > treat this month. Brian will be presenting a session on GUIs in Perl. > As such, please note the meeting will be held at the Qualcomm > auditorium. More information as well as directions are available on > our web site . For anyone who attended on Monday night, and for anyone who couldn't make it and would like to see what the rest of us enjoyed, I've posted the slides and examples on the web site. http://sandiego.pm.org/presentations/ui-perl/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mail.pm.org/pipermail/san-diego-pm/attachments/20080213/42fe4281/attachment.bin From joel at fentin.com Sun Feb 24 08:54:18 2008 From: joel at fentin.com (Joel Fentin) Date: Sun, 24 Feb 2008 08:54:18 -0800 Subject: [San-Diego-pm] www problem Message-ID: <47C1A13A.2070607@fentin.com> The following was sent by a stuck friend. He would appreciate any help he can get. ========================================= Hi Joel, I have a problem that maybe someone in the perl user group knows the answer. The form action on http://lordsprayerhandson.com/espanol is https://secure.ourshoppingkart.com/shop/sanacion/kart3.cgi. I have an ssl certificate for secure.ourshoppingkart.com. The problem is that clicking the "Para Comprar Oprima Aqui" button causes the browsers to add www and send the form to https://www.secure.ourshoppingkart.com/shop/sanacion/kart3.cgi. As I don't have an ssl certificate for www.secure.ourshoppingkart.com, the browsers generate an error asking the person if they want to continue. Of course, thinking there is a security problem, they don't. The crazy part is that if you "Add To Cart" here: http://gallbladderattack.com/gallbladderproducts.shtml, no error is generated. secure.surf4.net is on the same server as secure.ourshoppingkart.com. Trying to fix this, I installed mod_rewrite and setup rewrite parameters for secure.ourshoppingkart.com. The rewrite works in the browser. If you enter http://www.secure.ourshoppingkart.com in your browser, mod_rewrite changes it to https://secure.ourshoppingkart.com. I don't know why this is happening or how to solve it. One of my customers called and he is having the same problem with oscommerce on my other server. David -- Joel Fentin tel: 760-749-8863 Email: http://fentin.com/me/ContactMe.html Biz Website: http://fentin.com Personal Website: http://fentin.com/me From chris at chrisgrau.com Sun Feb 24 09:17:19 2008 From: chris at chrisgrau.com (Chris Grau) Date: Sun, 24 Feb 2008 09:17:19 -0800 Subject: [San-Diego-pm] www problem In-Reply-To: <47C1A13A.2070607@fentin.com> References: <47C1A13A.2070607@fentin.com> Message-ID: <20080224171719.GA20663@chrisgrau.com> On Sun, Feb 24, 2008 at 08:54:18AM -0800, Joel Fentin wrote: > The form action on http://lordsprayerhandson.com/espanol [...] [cgrau at abydos ~]$ host lordsprayerhandson.com Host lordsprayerhandson.com not found: 3(NXDOMAIN) That's gonna be a tough one for us to debug. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mail.pm.org/pipermail/san-diego-pm/attachments/20080224/de3feba4/attachment.bin From joel at fentin.com Sun Feb 24 10:28:02 2008 From: joel at fentin.com (Joel Fentin) Date: Sun, 24 Feb 2008 10:28:02 -0800 Subject: [San-Diego-pm] [Fwd: www problem solved] Message-ID: <47C1B732.4090408@fentin.com> -------- Original Message -------- Subject: www problem solved Date: Sun, 24 Feb 2008 11:58:51 -0500 From: David Scott To: Joel Fentin Wow! I never would have thought about it, but I decided to let the problem ride until an answer is found. So, I started working on my cookie routine that wasn't working. When I got that fixed, the www problem was solved. I understand why. The cookie program was looping with a Location command that used the www. David -- Joel Fentin tel: 760-749-8863 Email: http://fentin.com/me/ContactMe.html Biz Website: http://fentin.com Personal Website: http://fentin.com/me From naterajj at gmail.com Mon Feb 25 16:42:54 2008 From: naterajj at gmail.com (Juan Jose Natera) Date: Mon, 25 Feb 2008 16:42:54 -0800 Subject: [San-Diego-pm] Meeting with Richard Dice on Thursday Feb 28th @ Ticketmaster Message-ID: <349627440802251642w1ee8547bnb9f3f1cbe47c845f@mail.gmail.com> What: Richard Dice - 7 Stages of a Perl Monger and more When: Thursday Feb. 28th 2008 at 7:00pm Where: Ticketmaster Offices in West Hollywood Richard Dice is a long time Perl Programmer and community activist, he was one of Organizers of YAPC::NA 2005 in Toronto, He has co-authored a few books about Web Programming and currently he is the President of The Perl Foundation. He will be discussing with us about the 7 Stages of a Perl Monger, as well as any other topics that come up! Ticketmaster will be providing pizza and beverages! Ticketmaster is the world's leading ticketing company, operating in 20 global markets, providing ticket sales, ticket resale services, marketing and distribution through www.ticketmaster.com, one of the largest e-commerce sites on the Internet; approximately 6,500 retail outlets; and 20 worldwide call centers. Ticketmaster celebrated its 30th anniversary in 2006 and currently serves more than 9,000 clients worldwide across multiple event categories, providing exclusive ticketing services for hundreds of leading arenas, stadiums, performing arts venues, museums, and theaters. In 2007, the company sold more than 143 million tickets valued at over $8 billion on behalf of its clients. Ticketmaster is headquartered in West Hollywood, California and is an operating business of IAC (NASDAQ: IACI). Ticketmaster 8800 W. Sunset Blvd. West Hollywood, CA 90069 Parking Instructions: Parking is available at the Ticketmaster Building, the entrance is on Palm Ave, right before Sunset Blvd. Please see the map below: http://www.google.com/maps?f=q&hl=en&q=8800+w.+sunset+blvd.+west+hollywood,+ca&ie=UTF8&om=1&ll=34.092934,-118.380542&spn=0.025482,0.054245 The LA.pm Team From naterajj at gmail.com Thu Feb 28 10:27:43 2008 From: naterajj at gmail.com (Juan Jose Natera) Date: Thu, 28 Feb 2008 10:27:43 -0800 Subject: [San-Diego-pm] Meeting With Richard Dice @ Ticketmaster - Tonight! Message-ID: <349627440802281027y20b19d98q332965d1d54d3002@mail.gmail.com> This is a reminder of Tonight's meeting. Richard Dice, the president of The Perl Foundation, will be joining us tonight, Thursday 28th of February at 7:00pm to discuss "The 7 Stages of Perl Monger" as well as other topics that come up. The meeting will be at the Ticketmaster Offices in West Hollywood, there will be pizza and beverages! Please go to http://la.pm.org for details, including parking instructions. The LA.pm Team Alyson Lago - Pablo Velasquez - Juan Natera