From mike at oakleyweb.com Wed Oct 1 17:47:50 2003 From: mike at oakleyweb.com (Michael Wood) Date: Wed Aug 4 00:05:01 2004 Subject: OC-PM: Next Meeting Message-ID: <003301c3886e$0adf91f0$f02b14ac@guavasmobile> Greetings, Next meeting is scheduled for October 7th, 7pm here at Oakley. Please refer to http://oc.pm.org for details. The meeting will entail common (and perhaps not so common) uses for the ubiquitous perl module File::Find. Pizza, soda and coffee of course. Hope to see you there - Michael -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/archives/oc-pm/attachments/20031001/572f387a/attachment.htm From mike at oakleyweb.com Thu Oct 2 16:03:36 2003 From: mike at oakleyweb.com (Michael Wood) Date: Wed Aug 4 00:05:01 2004 Subject: OC-PM: Website error Message-ID: <001401c38928$a5bfbf50$f02b14ac@guavasmobile> Greetings, There was an error on the oc.pm.org website that stated that the next meeting was scheduled for TODAY. Thursday? It was really weird, plus some formatting issues were at play with the html. I can't imagine typing the word Thursday for our next meeting without all kinds of red flags going off in my head. The mtime of the file looked proper as well. Anyway, it's been corrected, although the occurance of this error is quite odd. The next meeting is NOT tonight, but next Tuesday (the 7th). Sorry for any grief this may have caused. -Michael -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/archives/oc-pm/attachments/20031002/a2537abe/attachment.htm From mike at oakleyweb.com Mon Oct 6 12:38:22 2003 From: mike at oakleyweb.com (Michael Wood) Date: Wed Aug 4 00:05:01 2004 Subject: OC-PM: Tomorrow night's meeting Message-ID: <00a601c38c30$a36219a0$f02b14ac@guavasmobile> Greetings, Just a quick reminder about tomorrow night's meeting...I'll scrape up some dirt on our good friend File::Find. Please refer to http://oc.pm.org for details. Hope to see you there - Michael -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/archives/oc-pm/attachments/20031006/971ea081/attachment.htm From mike at oakleyweb.com Tue Oct 7 15:19:35 2003 From: mike at oakleyweb.com (Michael Wood) Date: Wed Aug 4 00:05:01 2004 Subject: OC-PM: tonight's meeting Message-ID: <011701c38d10$53a74490$f02b14ac@guavasmobile> Greetings, As you all may (or may not) know, we have our meeting tonight at 7:00pm here at Oakley. Please refer to oc.pm.org for details on directions or anything you may need. If you have any questions, email me... See you tonight- Michael -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/archives/oc-pm/attachments/20031007/6e153616/attachment.htm From bill at daze.net Wed Oct 8 05:11:33 2003 From: bill at daze.net (bill@daze.net) Date: Wed Aug 4 00:05:01 2004 Subject: OC-PM: tonight's meeting In-Reply-To: <011701c38d10$53a74490$f02b14ac@guavasmobile> References: <011701c38d10$53a74490$f02b14ac@guavasmobile> Message-ID: <20031008030904.Q21951@droid.daze.net> Michael et al, Thanks for the insights on File::Find, the perl debugger and File::Find::Rule. The discussion gave me some good ideas for some upcoming projects. - Bill -- <=> ASK and you shall receive <=> From mike at oakleyweb.com Wed Oct 8 15:43:50 2003 From: mike at oakleyweb.com (Michael Wood) Date: Wed Aug 4 00:05:01 2004 Subject: OC-PM: Follow up.. Message-ID: <001a01c38ddc$e134c7c0$f02b14ac@guavasmobile> Greetings, Had a great time last night...some new faces are always welcome. We went over some simple uses for File::Find and how it could trivialize work that requires recursive directory traversal...then after that we dived into a quick, yet dirty tour of the perl debugger and showed how it just might help with that untracable bug. Thereafter, Doug Wilson introduced us all to File::Find::Rule ( http://search.cpan.org/~rclamp/File-Find-Rule-0.24/lib/File/Find/Rule.pm ) and gave a brief overview on how File::Find::Rule may be a much better alternative in some circumstances over File::Find. Tenatively for now, Doug will be showing us what Wx is all about for our next meeting ( Tuesday, November 4th ) 'till next time- Michael -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/archives/oc-pm/attachments/20031008/20937cb0/attachment.htm From dgwilson at sonomasystems.net Wed Oct 8 16:24:49 2003 From: dgwilson at sonomasystems.net (Wilson, Douglas) Date: Wed Aug 4 00:05:01 2004 Subject: OC-PM: Follow up.. Message-ID: <8FFBCE8C59BF814B8258905C9B4D831701D396@sonoma-main.sonoma.local> > Thereafter, Doug Wilson introduced us all to File::Find::Rule > ( http://search.cpan.org/~rclamp/File-Find-Rule-0.24/lib/File/Find/Rule.pm ) > and gave a brief overview on how File::Find::Rule may be a much better > alternative in some circumstances over File::Find. And just to save typing, especially on those 'or' or 'any' rules, I usually stick this at the top: use constant FFR => 'File::Find::Rule'; so that those rules become: FFR->or( FFR->blah_blah..., FFR->blah_blah..., )-> etc... -Doug From andrew at sweger.net Wed Oct 8 17:47:53 2003 From: andrew at sweger.net (Andrew Sweger) Date: Wed Aug 4 00:05:01 2004 Subject: OC-PM: Follow up.. In-Reply-To: <8FFBCE8C59BF814B8258905C9B4D831701D396@sonoma-main.sonoma.local> Message-ID: On Wed, 8 Oct 2003, Wilson, Douglas wrote: > And just to save typing, especially on those 'or' or 'any' rules, > I usually stick this at the top: > > use constant FFR => 'File::Find::Rule'; > > so that those rules become: > FFR->or( > FFR->blah_blah..., > FFR->blah_blah..., > )-> etc... Any reason not to do it like this? my $rule = File::Find::Rule->new; $rule->or($rule->new ->directory ->name('CVS') ->prune ->discard, $rule->new); (taken from an example in the perldocs) -- Andrew B. Sweger -- The great thing about multitasking is that several things can go wrong at once. From dgwilson at sonomasystems.net Wed Oct 8 18:13:37 2003 From: dgwilson at sonomasystems.net (Wilson, Douglas) Date: Wed Aug 4 00:05:01 2004 Subject: OC-PM: Follow up.. Message-ID: <8FFBCE8C59BF814B8258905C9B4D831701D397@sonoma-main.sonoma.local> From: Andrew Sweger [mailto:andrew@sweger.net] > Any reason not to do it like this? > my $rule = File::Find::Rule->new; > $rule->or($rule->new > ->directory > ->name('CVS') > ->prune > ->discard, > $rule->new); I guess not, except to save myself a bit of typing ('FFR' vs. '$rule->new' or even 'FFR' vs. '$rule'), and the fact that I haven't yet needed to use 'new' for this module (mostly since the module checks to see whether it needs to call new itself on every method call, so you may as well let it do the work whenever possible, though the above is a case where you actually do need a 'new') :-) -Doug