Directory Structures!

2001-01-12 Thread Andy Williams
Hi, I'm having a mental block today, so my apologies in advance!! I'm using File::Find to recursively get all the files from a directory structure, then splitting each $File::Find::name into an array. What I need to do is put this into a data structure like:

Re: blibble

2001-01-12 Thread Paul Mison
On 05/01/2001 at 07:54 +, Jonathan Stowe wrote: On Fri, 5 Jan 2001, Michael Stevens wrote: You know you're drunk when, faced with the problem of getting through an underground ticket gate, you get out your house keys and start fiddling with them looking for the right one. Look you can

Re: the list is dead, long live the list

2001-01-12 Thread Steve Mynott
Some people like "bernsteinisms"! ;-) "Paul Makepeace" [EMAIL PROTECTED] writes: From: "David Cantrell" [EMAIL PROTECTED] Exactly. I just can't handle bernsteinisms when there are good alternatives available - exim (easy), postfix (secure), mailman. I can only put up with his

Re: For all you nu meeja types

2001-01-12 Thread Simon Wistow
Greg McCarroll wrote: that was a truly beautiful image *sob*, however here's the good news ^ / \ | \ WE ARE ---+ /\ HERE | | \ | / ^ * | / \ /

Re: XML::Schema, YAPC::Europe, mod_perl, Camel Visit, !RANT!

2001-01-12 Thread David Cantrell
On Thu, Jan 11, 2001 at 11:58:36PM +, Greg McCarroll wrote: so as far as i see it - we have the following projects to be carried out by london.pm and others ... Caml (i'll leave that typo as it might get mjd excited) Visit - David Cross Completion of account creation for initial

Re: Technical Meeting Agenda

2001-01-12 Thread Jo Walsh
Venue: State 51 (full details - and a map? - to follow) State51 is in a disused foam factory at 8-10 rhoda street, bethnal green, near the junction of brick lane and bethnal green road. http://www.streetmap.co.uk/streetmap.dll?G2M?X=533817Y=182479A=YZ=1 tube shoreditch (but closes early),

RE: Technical Meeting Agenda

2001-01-12 Thread Jo Walsh
i could do 5 mins on what fun it is to build a perl jobs database with tangram and template toolkit. (it's in testing atm) if you like. That would be cool. Do you want to publicise the URL or is it a Big Secret? i will do that when it is not not quite finished. like what it is now :) jo

Re: Yet Another Job Email

2001-01-12 Thread Mindaugas Genutis
Hello, I see a lot of job discussions going on here. Maybe someone can accept a Master's student for an internship this summer? The last two years I've been working as a part-time programmer. Visual C++ mostly. I know what is UML and I've been at YAPC::London :-) Best Regards, -- Mindaugas

Re: Technical Meeting Agenda

2001-01-12 Thread Piers Cawley
dcross - David Cross [EMAIL PROTECTED] writes: From: Jo Walsh [EMAIL PROTECTED] Sent: 12 January 2001 12:18 Venue: State 51 (full details - and a map? - to follow) State51 is in a disused foam factory at 8-10 rhoda street, bethnal green,near the junction of brick lane and bethnal

Re: XML::Schema, YAPC::Europe, mod_perl, Camel Visit, !RANT!

2001-01-12 Thread David Hodgkinson
David Cantrell [EMAIL PROTECTED] writes: The Mod Perl Evangelist Site - Dave Hodge.. No. I'm writing a poor man's intro to stapling the TT into a mod_perl handler that will be superceded by Apache::Template when Andy finishes it. -- Dave Hodgkinson,

Re: XML::Schema, YAPC::Europe, mod_perl, Camel Visit, !RANT!

2001-01-12 Thread David Hodgkinson
David Hodgkinson [EMAIL PROTECTED] writes: David Cantrell [EMAIL PROTECTED] writes: The Mod Perl Evangelist Site - Dave Hodge.. No. I'm writing a poor man's intro to stapling the TT into a mod_perl handler that will be superceded by Apache::Template

Re: Directory Structures!

2001-01-12 Thread Shevek
Am I right, now I look again, in thinking this can't be done as it requires that every value be simultaneously a list and a hash? Maybe if you tied things. On Wed, 10 Jan 2001, Andy Williams wrote: $dirstruct{"mydir"}-{dir1}-{dir2}-["A.A","B.B"]

Re: Technical Meeting Agenda

2001-01-12 Thread Leon Brocard
Dave Cross sent the following bits through the ether: We'll start with four or five lightning talks. Currently I've only got Robin talking about Oulipo, but I'm sure we can come up with a couple more between us. I'd like to do: "What my Perl Monger World Map Lightning Talk at yapc::Europe

Re: XML::Schema, YAPC::Europe, mod_perl, Camel Visit, !RANT!

2001-01-12 Thread Greg Cope
David Hodgkinson wrote: David Cantrell [EMAIL PROTECTED] writes: The Mod Perl Evangelist Site - Dave Hodge.. No. I'm writing a poor man's intro to stapling the TT into a mod_perl handler that will be superceded by Apache::Template when Andy finishes

Re: Mailman in Perl (Re: the list is dead, long live the list)

2001-01-12 Thread Aaron Trevena
Following the interest in rope/pope, etc perhaps it would be an idea for some of the more perl / oss oriented companies in london (or wherever) to agree to take part in the project on a semi official basis - much of what the work that the london and UK companies do is replicated because of lack

Re: XML::Schema, YAPC::Europe, mod_perl, Camel Visit, !RANT!

2001-01-12 Thread Andy Wardley
On Jan 12, 3:57pm, Greg Cope wrote: Is such a thing as Apache::Template being done or is it a pipedream [TM] No, it's real, just not officially finished or released. Someone sent me some new code for it which I'll be intergrating and releasing in the next week or so. A -- Andy Wardley

Re: XML::Schema, YAPC::Europe, mod_perl, Camel Visit, !RANT!

2001-01-12 Thread Greg Cope
Andy Wardley wrote: On Jan 12, 3:57pm, Greg Cope wrote: Is such a thing as Apache::Template being done or is it a pipedream [TM] No, it's real, just not officially finished or released. Someone sent me some new code for it which I'll be intergrating and releasing in the next week or

Simultaneously a list and a hash

2001-01-12 Thread Robin Houston
In the "Directory to Data Structure" thread, there's been some talk of a value which is a list *and* a hash, so you can have a structure like $dirstruct{'mydir'}-['file1.txt', 'file2.txt'] $dirstruct{'mydir'}-{'anotherdir'}-['file3.txt', 'file4.txt'] and there was talk of tie(). But really

Re: Simultaneously a list and a hash

2001-01-12 Thread Philip Newton
Robin Houston wrote: local *mydir; @mydir = qw(file1.txt file2.txt); %mydir = (anotherdir = [qw(file3.txt file4.txt)]); my $dirstruct = {mydir = *mydir}; [...] my $mydir = *{gensym}; @$mydir = qw(file1.txt file2.txt); %$mydir = (anotherdir = [qw(file3.txt file4.txt)]);

Re: Mailman in Perl (Re: the list is dead, long live the list)

2001-01-12 Thread Greg McCarroll
* Aaron Trevena ([EMAIL PROTECTED]) wrote: Following the interest in rope/pope, etc perhaps it would be an idea for some of the more perl / oss oriented companies in london (or wherever) to agree to take part in the project on a semi official basis - much of what the work that the london

Re: Mailman in Perl (Re: the list is dead, long live the list)

2001-01-12 Thread David H. Adler
On Fri, Jan 12, 2001 at 02:16:15PM +, Andy Wardley wrote: Said I: In all fairness, I have to say that mailman is an *excellent* mailing list manager. Said David H. Adler: So why haven't you reimplemented it in perl? :) Are you sitting comfortably? :-) Because the tools

Re: Hmmm

2001-01-12 Thread Paul Makepeace
On Fri, Jan 12, 2001 at 10:42:54AM +, Simon Wistow wrote: http://douglas.min.net/~drw/jsr/jsr-daemon.jpg http://amyl.org/img/user/takeittux.jpg Paul

Re: Mailman in Perl (Re: the list is dead, long live the list)

2001-01-12 Thread David Cantrell
On Fri, Jan 12, 2001 at 07:06:00PM +, Steve Mynott wrote: No you would want to build packages (.deb, .rpm and BSD and Solaris packages) of rope for a "binary" type install as well as supplying a "source" tar which works with make, make install. The installation method used by Helix is

Re: Mailman in Perl (Re: the list is dead, long live the list)

2001-01-12 Thread Aaron Trevena
On Fri, 12 Jan 2001, Paul Makepeace wrote: On Fri, Jan 12, 2001 at 08:28:25PM +, David Cantrell wrote: lynx -source http://go-gnome.com/ | sh that would rock. also what would be very valuable would be the ability to install from one config for a cluster or synchronise config changes