From laweber at switch.com Thu Jul 1 08:55:09 2004 From: laweber at switch.com (Weber, Larry A) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] Perl DBI Message-ID: <03F517C72D42284EBB48800AEF3E7D1D84D037@exchptc1.switch.com> I was running ActiveState Perl version 5.6, Win98. I had written a number of DBI scripts that I tested and ran great with MySQL. I upgraded to Perl 5.8 and now none of the DBI scripts run. I get a rather lengthly error message that I find useless: Can't load 'C:/Perl/site/lib/auto/DBI/DBI.dll' for module DBI: load_file:One of the library files needed to run this application cannot be found at C:/Perl/lib/DynaLoader.pm line 230. at C:/perl/site/lib/DBI.pm line 236 BEGIN failed==compliation aborted at C:/Perl/site/lib/DBI.pm line 236. Compilation failed in required at gridwork.pl line 11. BEGIN failed--compilation aborted at gridwork.pl line 11. gridwork.pl is my script and line 11 is "use DBI;" Any idea where I should start looking for my problem? From andy at hybridized.org Thu Jul 1 08:58:48 2004 From: andy at hybridized.org (Andy Grundman) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] Perl DBI In-Reply-To: <03F517C72D42284EBB48800AEF3E7D1D84D037@exchptc1.switch.com> References: <03F517C72D42284EBB48800AEF3E7D1D84D037@exchptc1.switch.com> Message-ID: <40E41898.8090208@hybridized.org> Weber, Larry A wrote: > I was running ActiveState Perl version 5.6, Win98. I had written a number > of DBI scripts that I tested and ran great with MySQL. I upgraded to Perl > 5.8 and now none of the DBI scripts run. I get a rather lengthly error > message that I find useless: > > Can't load 'C:/Perl/site/lib/auto/DBI/DBI.dll' for module DBI: load_file:One > of the library files needed to run this application cannot be found at > C:/Perl/lib/DynaLoader.pm line 230. > at C:/perl/site/lib/DBI.pm line 236 > BEGIN failed==compliation aborted at C:/Perl/site/lib/DBI.pm line 236. > Compilation failed in required at gridwork.pl line 11. > BEGIN failed--compilation aborted at gridwork.pl line 11. > > gridwork.pl is my script and line 11 is "use DBI;" > > Any idea where I should start looking for my problem? My guess is when you upgraded it lost all of your old modules for some reason. You probably just need to install DBI and DBD::mysql again using ppm. -Andy From Dan at DWright.Org Thu Jul 1 09:58:20 2004 From: Dan at DWright.Org (Daniel J. Wright) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] Perl DBI In-Reply-To: <40E41898.8090208@hybridized.org> References: <03F517C72D42284EBB48800AEF3E7D1D84D037@exchptc1.switch.com> <40E41898.8090208@hybridized.org> Message-ID: <4169.24.50.157.212.1088693900.squirrel@24.50.157.212> > My guess is when you upgraded it lost all of your old modules for some > reason. You probably just need to install DBI and DBD::mysql again > using ppm. > > -Andy And to make sure that there aren't any other modules in a similar situation, just run this: perl -MCPAN -e recompile That command will rebuild all of the modules on your system that include a binary library. Regards, -Dan From terrymcintyre at yahoo.com Thu Jul 1 11:15:10 2004 From: terrymcintyre at yahoo.com (terry mcintyre) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] Perl DBI In-Reply-To: <03F517C72D42284EBB48800AEF3E7D1D84D037@exchptc1.switch.com> Message-ID: <20040701161510.67194.qmail@web90102.mail.scd.yahoo.com> odds are, the new version of Perl is not looking in the right place for the old libraries. It's probably not a bad idea to recompile, as a previous poster suggested, but you can also do some tricks to modify the search path. See http://faq.perl.org/perlfaq8.html --- "Weber, Larry A" wrote: > I was running ActiveState Perl version 5.6, Win98. > I had written a number > of DBI scripts that I tested and ran great with > MySQL. I upgraded to Perl > 5.8 and now none of the DBI scripts run. I get a > rather lengthly error > message that I find useless: > > Can't load 'C:/Perl/site/lib/auto/DBI/DBI.dll' for > module DBI: load_file:One > of the library files needed to run this application > cannot be found at > C:/Perl/lib/DynaLoader.pm line 230. > at C:/perl/site/lib/DBI.pm line 236 > BEGIN failed==compliation aborted at > C:/Perl/site/lib/DBI.pm line 236. > Compilation failed in required at gridwork.pl line > 11. > BEGIN failed--compilation aborted at gridwork.pl > line 11. > > gridwork.pl is my script and line 11 is "use DBI;" > > Any idea where I should start looking for my > problem? > _______________________________________________ > pgh-pm mailing list > pgh-pm@mail.pm.org > http://mail.pm.org/mailman/listinfo/pgh-pm > ===== Terry McIntyre UNIX for hire software development / systems administration / security (412)334-1006 terrymcintyre@yahoo.com From jo2y at midnightlinux.com Tue Jul 6 15:51:31 2004 From: jo2y at midnightlinux.com (James O'Kane) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] use of require and full paths Message-ID: Has the semantics of 'require' changed in recent versions of perl? I have someone else's code, (RT3.0.11 specifically), that does this: $SITE_CONFIG_FILE = "/home/rt/rt3/etc/RT_SiteConfig.pm"; [...] require $SITE_CONFIG_FILE; This results in: Can't locate /home/rt/rt3/etc/RT_SiteConfig.pm in @INC (@INC contains: /home/rt/rt3/local/lib /home/rt/rt3/lib /home/rt/rt3/etc/ /home/rt/perl/lib/ /usr/lib/perl5/5.8.4/i686-linux /usr/lib/perl5/5.8.4 /usr/lib/perl5/site_perl/5.8.4/i686-linux /usr/lib/perl5/site_perl/5.8.4 . ) at /home/rt/rt3/lib/RT.pm line 105. =========== I've seen the same use in some inherited code from the 5.00x era. I think I understand what is happening, what I don't understand is why and what changed? Did I accidentally turn on some setting that makes require only append its arguements to things in @INC? thanks -james From Dan at DWright.Org Tue Jul 6 17:28:41 2004 From: Dan at DWright.Org (Daniel J. Wright) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] use of require and full paths In-Reply-To: References: Message-ID: <3478.216.92.130.24.1089152921.squirrel@216.92.130.24> I don't think it has changed. I don't think that ever should have worked. The only way that should work is if "/" is in @INC. Your options are: 1. put "/" in @INC 2. change SITE_CONFIG_FILE to just be 'RT_SiteConfig.pm' 3. change your "require" command to a "do" command. I'm running RT 3.0.7, and I can't find the SITE_CONFIG_FILE variable in the source code anywhere. It must be something new. Regards, -Dan > Has the semantics of 'require' changed in recent versions of perl? > > I have someone else's code, (RT3.0.11 specifically), that does this: > > $SITE_CONFIG_FILE = "/home/rt/rt3/etc/RT_SiteConfig.pm"; > [...] > require $SITE_CONFIG_FILE; > > This results in: > > Can't locate /home/rt/rt3/etc/RT_SiteConfig.pm in @INC (@INC contains: > /home/rt/rt3/local/lib > /home/rt/rt3/lib > /home/rt/rt3/etc/ > /home/rt/perl/lib/ > /usr/lib/perl5/5.8.4/i686-linux > /usr/lib/perl5/5.8.4 > /usr/lib/perl5/site_perl/5.8.4/i686-linux > /usr/lib/perl5/site_perl/5.8.4 > . > ) at /home/rt/rt3/lib/RT.pm line 105. > > =========== > > I've seen the same use in some inherited code from the 5.00x era. > I think I understand what is happening, what I don't understand is why and > what changed? Did I accidentally turn on some setting that makes require > only append its arguements to things in @INC? > > thanks > > -james > > _______________________________________________ > pgh-pm mailing list > pgh-pm@mail.pm.org > http://mail.pm.org/mailman/listinfo/pgh-pm > From jo2y at midnightlinux.com Tue Jul 6 19:29:47 2004 From: jo2y at midnightlinux.com (James O'Kane) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] use of require and full paths In-Reply-To: <3478.216.92.130.24.1089152921.squirrel@216.92.130.24> References: <3478.216.92.130.24.1089152921.squirrel@216.92.130.24> Message-ID: On Tue, 6 Jul 2004, Daniel J. Wright wrote: > > I don't think it has changed. I don't think that ever should have worked. > The only way that should work is if "/" is in @INC. > > Your options are: > > 1. put "/" in @INC Is this a common thing to do? > 2. change SITE_CONFIG_FILE to just be 'RT_SiteConfig.pm' > 3. change your "require" command to a "do" command. I'd rather not do these if I don't have to. > I'm running RT 3.0.7, and I can't find the SITE_CONFIG_FILE variable in > the source code anywhere. It must be something new. I have an installation of 3.0.7_01 and it has this. (If I remember right, _01 was only to fix a postgresqlism bug.) Look in rt3/lib/RT.pm line 52. -james From Dan at DWright.Org Tue Jul 6 19:48:40 2004 From: Dan at DWright.Org (Daniel J. Wright) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] use of require and full paths In-Reply-To: References: <3478.216.92.130.24.1089152921.squirrel@216.92.130.24> Message-ID: <3576.216.92.130.24.1089161320.squirrel@216.92.130.24> > On Tue, 6 Jul 2004, Daniel J. Wright wrote: > > I have an installation of 3.0.7_01 and it has this. (If I remember right, > _01 was only to fix a postgresqlism bug.) > > Look in rt3/lib/RT.pm line 52. I stand corrected. It is there. Not only that, the code works in 5.8.0, even though the perldoc says it shouldn't. -Dan From chris at cwinters.com Tue Jul 13 09:23:39 2004 From: chris at cwinters.com (Chris Winters) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] meeting tomorrow? Message-ID: <2865.198.144.36.66.1089728619.squirrel@mail.cwinters.com> I just realized that tomorrow is the second Wednesday of the month -- and Bastille Day to boot! Are we having a meeting? Chris -- Chris Winters (chris@cwinters.com) Building enterprise-capable snack solutions since 1988. From casey at geeknest.com Tue Jul 13 08:56:52 2004 From: casey at geeknest.com (Casey West) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] meeting tomorrow? In-Reply-To: <2865.198.144.36.66.1089728619.squirrel@mail.cwinters.com> References: <2865.198.144.36.66.1089728619.squirrel@mail.cwinters.com> Message-ID: <20040713135652.GA24667@geeknest.com> It was Tuesday, July 13, 2004 when Chris Winters took the soap box, saying: : I just realized that tomorrow is the second Wednesday of the month -- and : Bastille Day to boot! Are we having a meeting? Yes, at Cepstral on the North Side. Sadly, I've been too busy to come up with an agenda. I'm up for talking about Perl's cool new email handling modules, if there are any votes to listen. :-) Anyone else feel like talking about anything? Ranting? 2-25 minute slots available. :-) As for me, I'd be talking about some really cool things you can do with MIME messages. I'd include nifty examples of filtering on local delivery. Anyone game? Casey West -- "I need a strongly typed language because I can't help myself. I just LOVE multiplying my integers by 'A'!" I don't like Java but let's be clear on its purpose - mitigating the impact of the foolish and inexperienced. The kind who *would* multiply by "A" and then complain that the computer let them From chris at cwinters.com Tue Jul 13 11:33:38 2004 From: chris at cwinters.com (Chris Winters) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] meeting tomorrow? In-Reply-To: <20040713135652.GA24667@geeknest.com> References: <2865.198.144.36.66.1089728619.squirrel@mail.cwinters.com> <20040713135652.GA24667@geeknest.com> Message-ID: <3475.198.144.36.66.1089736418.squirrel@mail.cwinters.com> > Yes, at Cepstral on the North Side. ... South Side! :-) > I'm up for talking about Perl's cool new email handling modules, if > there are any votes to listen. :-) I'm very interested -- you mean the stuff Simon's been working on, right? > Anyone else feel like talking about anything? Ranting? 2-25 minute > slots available. :-) I can always rant (or even talk), but I hate to be the only one talking all the time... That said, I did a lightning talk about the CPAN Workflow module at YAPC::NA that I can go over and expand with examples. Chris -- Chris Winters (chris@cwinters.com) Building enterprise-capable snack solutions since 1988. From shawn at djernes.org Tue Jul 13 14:03:04 2004 From: shawn at djernes.org (Shawn L. Djernes) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] Re: Meeting Tomorrow In-Reply-To: <200407131701.i6DH19eQ005543@www.pm.org> References: <200407131701.i6DH19eQ005543@www.pm.org> Message-ID: <200407131503.04874.shawn@djernes.org> Hello, I would like to come to the meeting tomorrow but do not know where Cepstral is and how you get their via the bus. Please respond directly because I get mailing list in digest form (thought it was going to have more traffic) so the digest may get here after I have to leave tomorrow. Also what time is the meeting. Thanks, Shawn On Tuesday 13 July 2004 01:01 pm, pgh-pm-request@mail.pm.org wrote: > Message: 2 > Date: Tue, 13 Jul 2004 09:56:52 -0400 > From: Casey West > Subject: Re: [pgh-pm] meeting tomorrow? > To: Chris Winters > Cc: pgh-pm@mail.pm.org > Message-ID: <20040713135652.GA24667@geeknest.com> > Content-Type: text/plain; charset=us-ascii > > It was Tuesday, July 13, 2004 when Chris Winters took the soap box, saying: > : I just realized that tomorrow is the second Wednesday of the month -- and > : Bastille Day to boot! Are we having a meeting? > > Yes, at Cepstral on the North Side. Sadly, I've been too busy to come > up with an agenda. > > I'm up for talking about Perl's cool new email handling modules, if > there are any votes to listen. :-) > > Anyone else feel like talking about anything? Ranting? 2-25 minute > slots available. :-) > > As for me, I'd be talking about some really cool things you can do > with MIME messages. I'd include nifty examples of filtering on > local delivery. > > Anyone game? > > Casey West > > -- > "I need a strongly typed language because I can't help myself. I > just LOVE multiplying my integers by 'A'!" > I don't like Java but let's be clear on its purpose - mitigating > the impact of the foolish and inexperienced. The kind who *would* > multiply by "A" and then complain that the computer let them > > > > ------------------------------ > > Message: 3 > Date: Tue, 13 Jul 2004 11:33:38 -0500 (EST) > From: "Chris Winters" > Subject: Re: [pgh-pm] meeting tomorrow? > To: casey@geeknest.com > Cc: pgh-pm@mail.pm.org > Message-ID: <3475.198.144.36.66.1089736418.squirrel@mail.cwinters.com> > Content-Type: text/plain;charset=iso-8859-1 > > > Yes, at Cepstral on the North Side. ... > > South Side! :-) > > > I'm up for talking about Perl's cool new email handling modules, if > > there are any votes to listen. :-) > > I'm very interested -- you mean the stuff Simon's been working on, right? > > > Anyone else feel like talking about anything? Ranting? 2-25 minute > > slots available. :-) > > I can always rant (or even talk), but I hate to be the only one talking > all the time... That said, I did a lightning talk about the CPAN Workflow > module at YAPC::NA that I can go over and expand with examples. > > Chris > -- -- Shawn L. Djernes shawn@djernes.org | sdjernes@telerama.com http://www.djernes.org 519 Washington Ave. Apt 2, Bridgeville, PA 15017 PH: (412) 257-3252 (412) 894-0039 VOIP: sip:s@djernes.org YahooID: WizardWlf MSN Messenger: WizardWlf@hotmail.com From casey at geeknest.com Tue Jul 13 14:20:04 2004 From: casey at geeknest.com (Casey West) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] meeting tomorrow? In-Reply-To: <3475.198.144.36.66.1089736418.squirrel@mail.cwinters.com> References: <2865.198.144.36.66.1089728619.squirrel@mail.cwinters.com> <20040713135652.GA24667@geeknest.com> <3475.198.144.36.66.1089736418.squirrel@mail.cwinters.com> Message-ID: <20040713192004.GE24667@geeknest.com> It was Tuesday, July 13, 2004 when Chris Winters took the soap box, saying: : > Yes, at Cepstral on the North Side. ... : : South Side! :-) : : > I'm up for talking about Perl's cool new email handling modules, if : > there are any votes to listen. :-) : : I'm very interested -- you mean the stuff Simon's been working on, right? Yeah, and me. :-) : > Anyone else feel like talking about anything? Ranting? 2-25 minute : > slots available. :-) : : I can always rant (or even talk), but I hate to be the only one talking : all the time... That said, I did a lightning talk about the CPAN Workflow : module at YAPC::NA that I can go over and expand with examples. Sounds like we have an agenda. I'll get the website updated. It it possible to get some kind of head count? I'm just curious how many folks plan to show up. :-) Casey West -- Shooting yourself in the foot with Ada After correctly packaging your foot, you attempt to concurrently load the gun, pull the trigger, scream and shoot yourself in the foot. When you try, however, you discover that your foot is of the wrong type. From robertblackwell at yahoo.com Tue Jul 13 14:24:38 2004 From: robertblackwell at yahoo.com (Robert Blackwell) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] meeting tomorrow? In-Reply-To: <20040713192004.GE24667@geeknest.com> Message-ID: <20040713192438.53730.qmail@web90101.mail.scd.yahoo.com> I wil be there. I will be coming from the North Side if anyone needs a lift. Robert --- Casey West wrote: > It was Tuesday, July 13, 2004 when Chris Winters > took the soap box, saying: > : > Yes, at Cepstral on the North Side. ... > : > : South Side! :-) > : > : > I'm up for talking about Perl's cool new email > handling modules, if > : > there are any votes to listen. :-) > : > : I'm very interested -- you mean the stuff Simon's > been working on, right? > > Yeah, and me. :-) > > : > Anyone else feel like talking about anything? > Ranting? 2-25 minute > : > slots available. :-) > : > : I can always rant (or even talk), but I hate to be > the only one talking > : all the time... That said, I did a lightning talk > about the CPAN Workflow > : module at YAPC::NA that I can go over and expand > with examples. > > Sounds like we have an agenda. I'll get the website > updated. > > It it possible to get some kind of head count? I'm > just curious how > many folks plan to show up. :-) > > Casey West > > -- > Shooting yourself in the foot with Ada > After correctly packaging your foot, you attempt to > concurrently load > the gun, pull the trigger, scream and shoot yourself > in the foot. When > you try, however, you discover that your foot is of > the wrong type. > > _______________________________________________ > pgh-pm mailing list > pgh-pm@mail.pm.org > http://mail.pm.org/mailman/listinfo/pgh-pm > ===== Robert Blackwell robertblackwell@yahoo.com AIM: robertdblackwell Yahoo!: robertblackwell Jabber: robertblackwell@jabber.com http://www.robertblackwell.com From chris at cwinters.com Tue Jul 13 14:45:10 2004 From: chris at cwinters.com (Chris Winters) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] Re: Meeting Tomorrow In-Reply-To: <200407131503.04874.shawn@djernes.org> References: <200407131701.i6DH19eQ005543@www.pm.org> <200407131503.04874.shawn@djernes.org> Message-ID: <2650A10A-D505-11D8-8C21-000A95DBDB3A@cwinters.com> On Jul 13, 2004, at 3:03 PM, Shawn L. Djernes wrote: > I would like to come to the meeting tomorrow but do not know where > Cepstral is and how you get their via the bus. Please respond > directly because I get mailing list in digest form (thought it was > going to have more traffic) so the digest may get here after I have to > leave tomorrow. Also what time is the meeting. Cepstral is at 18th and Carson, directly above the Brugger's Bagel place on the NE corner. Entrance is on the 18th St side. Lots of buses go by or near there -- off the top of my head there's the 54C (from Oakland/Strip) and most/all of the 51 (from Downtown). You could also take the trolley to Station Square and hoof it if you're into walking. Chris -- Chris Winters Creating enterprise-capable snack systems since 1988 From chris at cwinters.com Tue Jul 13 14:45:55 2004 From: chris at cwinters.com (Chris Winters) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] meeting tomorrow? In-Reply-To: <20040713192004.GE24667@geeknest.com> References: <2865.198.144.36.66.1089728619.squirrel@mail.cwinters.com> <20040713135652.GA24667@geeknest.com> <3475.198.144.36.66.1089736418.squirrel@mail.cwinters.com> <20040713192004.GE24667@geeknest.com> Message-ID: <4197AE6D-D505-11D8-8C21-000A95DBDB3A@cwinters.com> On Jul 13, 2004, at 3:20 PM, Casey West wrote: > : I'm very interested -- you mean the stuff Simon's been working on, > right? > > Yeah, and me. :-) Even better! Simon's good at publicizing :-) Chris -- Chris Winters Creating enterprise-capable snack systems since 1988 From casey at geeknest.com Tue Jul 13 14:56:52 2004 From: casey at geeknest.com (Casey West) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] meeting tomorrow? In-Reply-To: <4197AE6D-D505-11D8-8C21-000A95DBDB3A@cwinters.com> References: <2865.198.144.36.66.1089728619.squirrel@mail.cwinters.com> <20040713135652.GA24667@geeknest.com> <3475.198.144.36.66.1089736418.squirrel@mail.cwinters.com> <20040713192004.GE24667@geeknest.com> <4197AE6D-D505-11D8-8C21-000A95DBDB3A@cwinters.com> Message-ID: <20040713195652.GF24667@geeknest.com> It was Tuesday, July 13, 2004 when Chris Winters took the soap box, saying: : On Jul 13, 2004, at 3:20 PM, Casey West wrote: : >: I'm very interested -- you mean the stuff Simon's been working on, : >right? : > : >Yeah, and me. :-) : : Even better! Simon's good at publicizing :-) I always get nervous when I say "look at me!", but then, that's the point of this open source stuff, to get people to use it. I should do that more often. Casey West -- Good Idea: Whistling while you work. Bad Idea: Whistling while you eat. From chris at cwinters.com Tue Jul 13 15:01:29 2004 From: chris at cwinters.com (Chris Winters) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] meeting tomorrow? In-Reply-To: <20040713195652.GF24667@geeknest.com> References: <2865.198.144.36.66.1089728619.squirrel@mail.cwinters.com> <20040713135652.GA24667@geeknest.com> <3475.198.144.36.66.1089736418.squirrel@mail.cwinters.com> <20040713192004.GE24667@geeknest.com> <4197AE6D-D505-11D8-8C21-000A95DBDB3A@cwinters.com> <20040713195652.GF24667@geeknest.com> Message-ID: <6E12A4D0-D507-11D8-8C21-000A95DBDB3A@cwinters.com> On Jul 13, 2004, at 3:56 PM, Casey West wrote: > I always get nervous when I say "look at me!", but then, that's the > point of this open source stuff, to get people to use it. > > I should do that more often. I hear that. I think the important distinction to make so you're not annoying people is "Look at this cool stuff!" versus "Look at my cool stuff!" Part of that is thinking about what your audience would find interesting rather than what you find interesting. Most people don't give two hoots about how the module was built or how it works under the hood, just that it's easy to use and focused on what they want. I say that having transgressed multiple times in this area :-) Chris -- Chris Winters Creating enterprise-capable snack systems since 1988 From casey at geeknest.com Tue Jul 13 22:29:46 2004 From: casey at geeknest.com (casey@geeknest.com) Date: Mon Aug 2 21:34:59 2004 Subject: [pgh-pm] Pittsburgh Perl Mongers | Meeting | 07.14.2004 Message-ID: <20040714032946.0AF97FDAE@caseywest.com> *Technical Gathering* Talks on Email and Workflow *Location* Cepstral 1801 East Carson Street Second Floor (Door on 18th Side) Pittsburgh, Pa 15203 USA http://cepstral.com 07.14.2004 19:00 *Talks* *Grab Your Email By the Parts!* Casey West An up-to-date overview of all the cool new Email Handling toys Perl has gained in the last few months. Cool hacks and local delivery filters will be discussed. *Workflow* Chris Winters Chris expands his five minute lighting talk from YAPC with examples and more. -- Casey West (via automation) From casey at geeknest.com Thu Jul 15 06:41:41 2004 From: casey at geeknest.com (Casey West) Date: Mon Aug 2 21:35:00 2004 Subject: [pgh-pm] Email Project Slides Message-ID: <20040715114141.GJ24667@geeknest.com> PDF is attached. Casey West -- f u cn rd ths, u cn gt a gd jb n cmptr prgmmng. -------------- next part -------------- A non-text attachment was scrubbed... Name: pep.pdf Type: application/pdf Size: 243649 bytes Desc: not available Url : http://mail.pm.org/pipermail/pgh-pm/attachments/20040715/8be79c30/pep.pdf From casey at geeknest.com Thu Jul 15 06:46:49 2004 From: casey at geeknest.com (Casey West) Date: Mon Aug 2 21:35:00 2004 Subject: [pgh-pm] Email Project Slides In-Reply-To: <20040715114141.GJ24667@geeknest.com> References: <20040715114141.GJ24667@geeknest.com> Message-ID: <20040715114649.GK24667@geeknest.com> It was Thursday, July 15, 2004 when Casey West took the soap box, saying: : PDF is attached. Also, check out Buscador, Simon's archiving project: http://buscador-dev.simon-cozens.org/ Casey West -- Computers aren't intelligent, they only think they are. From lenzo at cepstral.com Thu Jul 15 14:41:24 2004 From: lenzo at cepstral.com (Kevin Lenzo) Date: Mon Aug 2 21:35:00 2004 Subject: [pgh-pm] My apologies Message-ID: Dear Pittsburgh PM -- I must apologize to you all for not being present last night. I should have gotten word to you and made arrangements; my father passed away last week, and that has had a big impact. Please know that our office is still available for meetings! ... and there will be no surprises in the future (that I'm aware of), Kevin