From tony.edwardson at me.com Mon Dec 5 00:29:02 2011 From: tony.edwardson at me.com (Tony Edwardson) Date: Mon, 05 Dec 2011 08:29:02 +0000 Subject: Xmas get together Message-ID: <400A0BCD-D491-4E38-AD67-6F7BAD4D3CB8@me.com> Hi all It was suggested at the last MKPM meet that we replace this months pub meet with a get together at my place for a evening playing games on Wii & PS3 - specifically Guitar Hero If this interests you and you don't mind me hijacking the Pub meet then let me know. I live in Loughton which is fairly convenient The datebwould be Tues 20th Dec Cheers Tony From cjbradford at gmail.com Mon Dec 5 02:07:48 2011 From: cjbradford at gmail.com (Colin Bradford) Date: Mon, 5 Dec 2011 10:07:48 +0000 Subject: Xmas get together In-Reply-To: <400A0BCD-D491-4E38-AD67-6F7BAD4D3CB8@me.com> References: <400A0BCD-D491-4E38-AD67-6F7BAD4D3CB8@me.com> Message-ID: On 5 December 2011 08:29, Tony Edwardson wrote: > It was suggested at the last MKPM meet that we replace this months pub meet with a get together at my place for a evening playing games on Wii & PS3 - specifically Guitar Hero > If this interests you and you don't mind me hijacking the Pub meet then let me know. > I live in Loughton which is fairly convenient > The date would be Tues 20th Dec Tony, I think this would be a great idea - and thanks very much for offering to host it! Thanks, Colin. From hugh at hcgallagher.co.uk Mon Dec 5 05:19:59 2011 From: hugh at hcgallagher.co.uk (Hugh Gallagher) Date: Mon, 5 Dec 2011 13:19:59 +0000 Subject: Xmas get together In-Reply-To: <400A0BCD-D491-4E38-AD67-6F7BAD4D3CB8@me.com> References: <400A0BCD-D491-4E38-AD67-6F7BAD4D3CB8@me.com> Message-ID: Sounds like a good plan. On 5 December 2011 08:29, Tony Edwardson wrote: > Hi all > > It was suggested at the last MKPM meet that we replace this months pub > meet with a get together at my place for a evening playing games on Wii & > PS3 - specifically Guitar Hero > If this interests you and you don't mind me hijacking the Pub meet then > let me know. > I live in Loughton which is fairly convenient > The datebwould be Tues 20th Dec > > Cheers > > Tony > _______________________________________________ > MiltonKeynes-pm mailing list > MiltonKeynes-pm at pm.org > http://mail.pm.org/mailman/listinfo/miltonkeynes-pm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tony.edwardson at gmail.com Sun Dec 11 12:50:38 2011 From: tony.edwardson at gmail.com (Tony Edwardson) Date: Sun, 11 Dec 2011 20:50:38 +0000 Subject: miltonkeynes.pm is alive ! Message-ID: It points a miltonkeynes.pm.org at the moment Cheers Tony From Tony.Edwardson at lchclearnet.com Tue Dec 13 01:09:55 2011 From: Tony.Edwardson at lchclearnet.com (Tony Edwardson) Date: Tue, 13 Dec 2011 09:09:55 +0000 Subject: Adding roles to a CPAN module Message-ID: <8FC4575E52D65D469A9511598C6843F0C908B3A585@EXCPR2.corp.lch.com> I am writing a new CPAN module which uses Moose and I want it to comprise of a base module and a set of optional add-on sub modules which simply add new functionality via Roles. I want these optional roles made available to the base module if they are installed. Anyone got any idea how I can get my base module to include these optional roles once they are installed ? I have toyed with the following ideas but they all have issues :- 1) package 'Whatever'; use Try::Tiny; use Moose; my @optional_roles = qw/ Blah Blah2 /; foreach my $optional_role ( @optional_roles ) { try { with "Whatever::$optional_role"; }; # Ignore errors if with fails 2) package 'Whatever'; use ExtUtils::Installed; use Carp; my $inst = ExtUtils::Installed->new(); my @optional_roles = grep { /Whatever::/ } @{ $inst->modules() }; foreach my $optional_role ( @optional_roles ) { try { with "Whatever::$optional_role"; } catch { croak "Failed to add role $optional_role: $_"; }; 3) Get the installer for my optional roles to maintain a file containing the roles installed and refer to that in my base module Is there a better way to handle this ? Tony Edwardson ForexClear Application Support Tel. +44 (0) 20 7426 7569 Mob. +44 (0) 7712 100283 Email. Tony.Edwardson at lchclearnet.com ForexClear Hotline +44 (0) 207 426 7917 [cid:image001.gif at 01CCB974.63D155B0] ************************************************************************************************* This email is intended for the named recipient(s) only. Its contents are confidential and may only be retained by the named recipient(s) and may only be copied or disclosed with the consent of LCH.Clearnet Limited and/or LCH.Clearnet SA. If you are not an intended recipient please delete this e-mail and notify postmaster at lchclearnet.com. LCH.Clearnet Limited, LCH.Clearnet SA and each other member of the LCH.Clearnet Group accept no liability, including liability for negligence, in respect of any statement in this email. The contents of this email are subject to contract in all cases, and LCH.Clearnet Limited and/or LCH.Clearnet SA makes no contractual commitment save where confirmed by hard copy. Cet e-mail et toutes les pi?ces jointes (ci-apr?s le "message") sont confidentiels et ?tablis ? l'intention exclusive de ses destinataires. Toute utilisation de ce message non conforme ? sa destination, toute diffusion ou toute publication, est interdite, sauf autorisation expresse de LCH.Clearnet Limited et/ou LCH.Clearnet SA. Si ce message vous a ?t? adress? par erreur, merci de le d?truire et d'en avertir imm?diatement postmaster at lchclearnet.com. LCH.Clearnet Limited, LCH.Clearnet SA et les autres entit?s du groupe LCH.Clearnet Group, ne peuvent en aucun cas ?tre tenues responsables au titre de ce message ? moins qu?il n?ait fait l?objet d?un contrat sign?. LCH.Clearnet Limited, Registered Office: Aldgate House, 33 Aldgate High Street, London EC3N 1EA. Recognised as a Clearing House under the Financial Services & Markets Act 2000. Reg in England No.25932 Telephone: +44 20 7426 7000 Internet: http://www.lchclearnet.com LCH.Clearnet SA, Si?ge Social, 18 rue du Quatre Septembre, 75002 Paris, Chambre de Compensation conform?ment au Code Mon?taire et Financier. ************************************************************************************************* -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 1915 bytes Desc: image001.gif URL: From jhthorsen at cpan.org Tue Dec 13 01:22:48 2011 From: jhthorsen at cpan.org (Jan Henning Thorsen) Date: Tue, 13 Dec 2011 10:22:48 +0100 Subject: Adding roles to a CPAN module In-Reply-To: <8FC4575E52D65D469A9511598C6843F0C908B3A585@EXCPR2.corp.lch.com> References: <8FC4575E52D65D469A9511598C6843F0C908B3A585@EXCPR2.corp.lch.com> Message-ID: I suggest using Module::Find: { use Module::Find 'usesub'; with usesub "Whatever::Plugins"; } That way you can see if the roles has conflicts. Adding one-and-one will not detect conflicts in the same way. 2011/12/13 Tony Edwardson > I am writing a new CPAN module which uses Moose and I want it to > comprise of a base module and a set of optional add-on sub modules which > simply add new functionality via Roles.**** > > I want these optional roles made available to the base module if they are > installed.**** > > Anyone got any idea how I can get my base module to include these optional > roles once they are installed ?**** > > ** ** > > I have toyed with the following ideas but they all have issues :-**** > > **1) **package ?Whatever?; > use Try::Tiny; > use Moose; > my @optional_roles = qw/ Blah Blah2 /; > foreach my $optional_role ( @optional_roles ) { > try { > with ?Whatever::$optional_role?;**** > > }; # Ignore errors if with fails**** > > **2) **package ?Whatever?; > use ExtUtils::Installed; > use Carp; > my $inst = ExtUtils::Installed->new(); > my @optional_roles = grep { /Whatever::/ } @{ $inst->modules() }; > foreach my $optional_role ( @optional_roles ) { > try { > with ?Whatever::$optional_role?; > } catch { > croak ?Failed to add role $optional_role: $_?; > };**** > > **3) **Get the installer for my optional roles to maintain a file > containing the roles installed and refer to that in my base module**** > > ** ** > > Is there a better way to handle this ?**** > > ** ** > > ** ** > > *Tony Edwardson* > > ForexClear Application Support**** > > Tel. +44 (0) 20 7426 7569**** > > Mob. +44 (0) 7712 100283**** > > Email. Tony.Edwardson at lchclearnet.com**** > > ** ** > > ForexClear Hotline +44 (0) 207 426 7917**** > > ** ** > > [image: lchclearnet_logo]**** > > ** ** > > > ************************************************************************************************* > > > > This email is intended for the named recipient(s) only. Its contents are > confidential and may only be retained by the named recipient(s) and may > only be copied or disclosed with the consent of LCH.Clearnet Limited and/or > LCH.Clearnet SA. If you are not an intended recipient please delete this > e-mail and notify postmaster at lchclearnet.com. > > LCH.Clearnet Limited, LCH.Clearnet SA and each other member of the > LCH.Clearnet Group accept no liability, including liability for negligence, > in respect of any statement in this email. > > The contents of this email are subject to contract in all cases, and > LCH.Clearnet Limited and/or LCH.Clearnet SA makes no contractual commitment > save where confirmed by hard copy. > > Cet e-mail et toutes les pi?ces jointes (ci-apr?s le "message") sont > confidentiels et ?tablis ? l'intention exclusive de ses destinataires. > Toute utilisation de ce message non conforme ? sa destination, toute > diffusion ou toute publication, est interdite, sauf autorisation expresse > de LCH.Clearnet Limited et/ou LCH.Clearnet SA. Si ce message vous a ?t? > adress? par erreur, merci de le d?truire et d'en avertir imm?diatement > postmaster at lchclearnet.com. > > LCH.Clearnet Limited, LCH.Clearnet SA et les autres entit?s du groupe > LCH.Clearnet Group, ne peuvent en aucun cas ?tre tenues responsables au > titre de ce message ? moins qu?il n?ait fait l?objet d?un contrat sign?. > > LCH.Clearnet Limited, Registered Office: Aldgate House, 33 Aldgate High > Street, London EC3N 1EA. Recognised as a Clearing House under the Financial > Services & Markets Act 2000. Reg in England No.25932 > > Telephone: +44 20 7426 7000 Internet: http://www.lchclearnet.com > > LCH.Clearnet SA, Si?ge Social, 18 rue du Quatre Septembre, 75002 Paris, > Chambre de Compensation conform?ment au Code Mon?taire et Financier. > > > > > ************************************************************************************************* > > > > _______________________________________________ > MiltonKeynes-pm mailing list > MiltonKeynes-pm at pm.org > http://mail.pm.org/mailman/listinfo/miltonkeynes-pm > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Tony.Edwardson at lchclearnet.com Tue Dec 13 01:28:59 2011 From: Tony.Edwardson at lchclearnet.com (Tony Edwardson) Date: Tue, 13 Dec 2011 09:28:59 +0000 Subject: Adding roles to a CPAN module In-Reply-To: References: <8FC4575E52D65D469A9511598C6843F0C908B3A585@EXCPR2.corp.lch.com> Message-ID: <8FC4575E52D65D469A9511598C6843F0C908B3A5B1@EXCPR2.corp.lch.com> Thanks ? that looks like just what I need From: jan.henning at thorsen.pm [mailto:jan.henning at thorsen.pm] On Behalf Of Jan Henning Thorsen Sent: 13 December 2011 09:23 To: Tony Edwardson Cc: miltonkeynes-pm at pm.org Subject: Re: Adding roles to a CPAN module I suggest using Module::Find: { use Module::Find 'usesub'; with usesub "Whatever::Plugins"; } That way you can see if the roles has conflicts. Adding one-and-one will not detect conflicts in the same way. 2011/12/13 Tony Edwardson > I am writing a new CPAN module which uses Moose and I want it to comprise of a base module and a set of optional add-on sub modules which simply add new functionality via Roles. I want these optional roles made available to the base module if they are installed. Anyone got any idea how I can get my base module to include these optional roles once they are installed ? I have toyed with the following ideas but they all have issues :- 1) package ?Whatever?; use Try::Tiny; use Moose; my @optional_roles = qw/ Blah Blah2 /; foreach my $optional_role ( @optional_roles ) { try { with ?Whatever::$optional_role?; }; # Ignore errors if with fails 2) package ?Whatever?; use ExtUtils::Installed; use Carp; my $inst = ExtUtils::Installed->new(); my @optional_roles = grep { /Whatever::/ } @{ $inst->modules() }; foreach my $optional_role ( @optional_roles ) { try { with ?Whatever::$optional_role?; } catch { croak ?Failed to add role $optional_role: $_?; }; 3) Get the installer for my optional roles to maintain a file containing the roles installed and refer to that in my base module Is there a better way to handle this ? Tony Edwardson ForexClear Application Support Tel. +44 (0) 20 7426 7569 Mob. +44 (0) 7712 100283 Email. Tony.Edwardson at lchclearnet.com ForexClear Hotline +44 (0) 207 426 7917 Error! Filename not specified. ************************************************************************************************* This email is intended for the named recipient(s) only. Its contents are confidential and may only be retained by the named recipient(s) and may only be copied or disclosed with the consent of LCH.Clearnet Limited and/or LCH.Clearnet SA. If you are not an intended recipient please delete this e-mail and notify postmaster at lchclearnet.com. LCH.Clearnet Limited, LCH.Clearnet SA and each other member of the LCH.Clearnet Group accept no liability, including liability for negligence, in respect of any statement in this email. The contents of this email are subject to contract in all cases, and LCH.Clearnet Limited and/or LCH.Clearnet SA makes no contractual commitment save where confirmed by hard copy. Cet e-mail et toutes les pi?ces jointes (ci-apr?s le "message") sont confidentiels et ?tablis ? l'intention exclusive de ses destinataires. Toute utilisation de ce message non conforme ? sa destination, toute diffusion ou toute publication, est interdite, sauf autorisation expresse de LCH.Clearnet Limited et/ou LCH.Clearnet SA. Si ce message vous a ?t? adress? par erreur, merci de le d?truire et d'en avertir imm?diatement postmaster at lchclearnet.com. LCH.Clearnet Limited, LCH.Clearnet SA et les autres entit?s du groupe LCH.Clearnet Group, ne peuvent en aucun cas ?tre tenues responsables au titre de ce message ? moins qu?il n?ait fait l?objet d?un contrat sign?. LCH.Clearnet Limited, Registered Office: Aldgate House, 33 Aldgate High Street, London EC3N 1EA. Recognised as a Clearing House under the Financial Services & Markets Act 2000. Reg in England No.25932 Telephone: +44 20 7426 7000 Internet: http://www.lchclearnet.com LCH.Clearnet SA, Si?ge Social, 18 rue du Quatre Septembre, 75002 Paris, Chambre de Compensation conform?ment au Code Mon?taire et Financier. ************************************************************************************************* _______________________________________________ MiltonKeynes-pm mailing list MiltonKeynes-pm at pm.org http://mail.pm.org/mailman/listinfo/miltonkeynes-pm -------------- next part -------------- An HTML attachment was scrubbed... URL: From tony.edwardson at me.com Thu Dec 15 12:01:36 2011 From: tony.edwardson at me.com (Tony Edwardson) Date: Thu, 15 Dec 2011 20:01:36 +0000 Subject: Get together next Tuesday Message-ID: <8241D7E3-82EB-4825-9181-8F488632DFF2@me.com> Hi All As previously communicated, next Tuesday's MKPM meet will now be held at my place which is :- 4 Thorwold Place Loughton MK5 8BH Where we will have various Wii & PS3 games on offer including Guitar Hero Unfortunately, I might not be able to show off my 100MB fibre to property broadband because BT decided to cancel it yesterday because they were unable to install a new phone line even though the phone is on a completely different circuit and my current phone line is being switched to BT. They tell me they can't switch it back on until Jan 4th when the phone gets moved to BT. Negotiations are underway ! If you intend to come along, please being along something to drink and unfortunately it's the chef's night off on Tuesdays so Large mixed grills won't be available ! I will provide some snacky stuff and some booze but not enough for everyone. Please also let me know if you intend to come along so I can get an appropriate amount of stuff Cheers Tony PS: if you have any good Wii, PS3 or even PS1 games - ( ideally multi player)- feel free to bring them along From tony at miltonkeynes.pm Fri Dec 16 05:49:27 2011 From: tony at miltonkeynes.pm (Tony Edwardson) Date: Fri, 16 Dec 2011 13:49:27 -0000 (UTC) Subject: No subject Message-ID: <40934.195.246.229.101.1324043367.squirrel@miltonkeynes.pm> Anyone fancy a @miltonkeynes.pm email address ? I can set one up if you like, which you can get to at http://miltonkeynes.pm/squirrelmail, or using imap at mail.miltonkeynes.pm or I can set it up as a forward to your usual email address Let me know if you are interested Cheers Tony From tony at miltonkeynes.pm Tue Dec 20 03:38:02 2011 From: tony at miltonkeynes.pm (Tony Edwardson) Date: Tue, 20 Dec 2011 11:38:02 -0000 (UTC) Subject: Milton Keynbes Message-ID: <41643.195.246.229.101.1324381082.squirrel@miltonkeynes.pm> Gentle reminder - this is tonight Beer stocks replenished and 100MB broadband is back on-line ! Tony ------------------------------------------------------ Hi All As previously communicated, next Tuesday's MKPM meet will now be held at my place which is :- 4 Thorwold Place Loughton MK5 8BH Where we will have various Wii & PS3 games on offer including Guitar Hero Unfortunately, I might not be able to show off my 100MB fibre to property broadband because BT decided to cancel it yesterday because they were unable to install a new phone line even though the phone is on a completely different circuit and my current phone line is being switched to BT. They tell me they can't switch it back on until Jan 4th when the phone gets moved to BT. Negotiations are underway ! If you intend to come along, please being along something to drink and unfortunately it's the chef's night off on Tuesdays so Large mixed grills won't be available ! I will provide some snacky stuff and some booze but not enough for everyone. Please also let me know if you intend to come along so I can get an appropriate amount of stuff Cheers Tony PS: if you have any good Wii, PS3 or even PS2 games - ( ideally multi player)- feel free to bring them along _______________________________________________ MiltonKeynes-pm mailing list MiltonKeynes-pm at pm.org http://mail.pm.org/mailman/listinfo/miltonkeynes-pm From oliver at cpan.org Tue Dec 20 05:49:34 2011 From: oliver at cpan.org (Oliver Gorwits) Date: Tue, 20 Dec 2011 13:49:34 -0000 Subject: Milton Keynes In-Reply-To: <41643.195.246.229.101.1324381082.squirrel@miltonkeynes.pm> References: <41643.195.246.229.101.1324381082.squirrel@miltonkeynes.pm> Message-ID: <0ba40b1765b2b4d1af836e77e0f53f2e.squirrel@webmail.gorwits.me.uk> > Gentle reminder - this is tonight > Beer stocks replenished and 100MB broadband is back on-line ! I didn't spot a time - from 7pm as usual? (for me it's whenever the traffic permits me to arrive, but I'll try to come early; I'm bringing the guitar hero band set for PS3 :-) > As previously communicated, next Tuesday's MKPM meet will now be held at > my place which is :- > 4 Thorwold Place > Loughton > MK5 8BH > > Where we will have various Wii & PS3 games on offer including Guitar Hero > Unfortunately, I might not be able to show off my 100MB fibre to property > broadband because BT decided to cancel it yesterday because they were > unable to install a new phone line even though the phone is on a > completely different circuit and my current phone line is being switched > to BT. > They tell me they can't switch it back on until Jan 4th when the phone > gets moved to BT. > Negotiations are underway ! > > If you intend to come along, please being along something to drink and > unfortunately it's the chef's night off on Tuesdays so Large mixed grills > won't be available ! > I will provide some snacky stuff and some booze but not enough for > everyone. > > Please also let me know if you intend to come along so I can get an > appropriate amount of stuff > > Cheers > Tony > > PS: if you have any good Wii, PS3 or even PS2 games - ( ideally multi > player)- feel free to bring them along > _______________________________________________ > MiltonKeynes-pm mailing list > MiltonKeynes-pm at pm.org > http://mail.pm.org/mailman/listinfo/miltonkeynes-pm > > _______________________________________________ > MiltonKeynes-pm mailing list > MiltonKeynes-pm at pm.org > http://mail.pm.org/mailman/listinfo/miltonkeynes-pm > From Tony.Edwardson at lchclearnet.com Tue Dec 20 06:05:59 2011 From: Tony.Edwardson at lchclearnet.com (Tony Edwardson) Date: Tue, 20 Dec 2011 14:05:59 +0000 Subject: Milton Keynes In-Reply-To: <0ba40b1765b2b4d1af836e77e0f53f2e.squirrel@webmail.gorwits.me.uk> References: <41643.195.246.229.101.1324381082.squirrel@miltonkeynes.pm> <0ba40b1765b2b4d1af836e77e0f53f2e.squirrel@webmail.gorwits.me.uk> Message-ID: <8FC4575E52D65D469A9511598C6843F0C9090BDB96@EXCPR2.corp.lch.com> >From whenever - I'll be there from 6pm - get there as soon as you like (before I drink all the beer !) -----Original Message----- From: miltonkeynes-pm-bounces+tony.edwardson=lchclearnet.com at pm.org [mailto:miltonkeynes-pm-bounces+tony.edwardson=lchclearnet.com at pm.org] On Behalf Of Oliver Gorwits Sent: 20 December 2011 13:50 To: tony at miltonkeynes.pm Cc: mk at mailman.lug.org.uk; miltonkeynes-pm at pm.org Subject: Re: Milton Keynes > Gentle reminder - this is tonight > Beer stocks replenished and 100MB broadband is back on-line ! I didn't spot a time - from 7pm as usual? (for me it's whenever the traffic permits me to arrive, but I'll try to come early; I'm bringing the guitar hero band set for PS3 :-) > As previously communicated, next Tuesday's MKPM meet will now be held at > my place which is :- > 4 Thorwold Place > Loughton > MK5 8BH > > Where we will have various Wii & PS3 games on offer including Guitar Hero > Unfortunately, I might not be able to show off my 100MB fibre to property > broadband because BT decided to cancel it yesterday because they were > unable to install a new phone line even though the phone is on a > completely different circuit and my current phone line is being switched > to BT. > They tell me they can't switch it back on until Jan 4th when the phone > gets moved to BT. > Negotiations are underway ! > > If you intend to come along, please being along something to drink and > unfortunately it's the chef's night off on Tuesdays so Large mixed grills > won't be available ! > I will provide some snacky stuff and some booze but not enough for > everyone. > > Please also let me know if you intend to come along so I can get an > appropriate amount of stuff > > Cheers > Tony > > PS: if you have any good Wii, PS3 or even PS2 games - ( ideally multi > player)- feel free to bring them along > _______________________________________________ > MiltonKeynes-pm mailing list > MiltonKeynes-pm at pm.org > http://mail.pm.org/mailman/listinfo/miltonkeynes-pm > > _______________________________________________ > MiltonKeynes-pm mailing list > MiltonKeynes-pm at pm.org > http://mail.pm.org/mailman/listinfo/miltonkeynes-pm > _______________________________________________ MiltonKeynes-pm mailing list MiltonKeynes-pm at pm.org http://mail.pm.org/mailman/listinfo/miltonkeynes-pm ************************************************************************************************* This email is intended for the named recipient(s) only. Its contents are confidential and may only be retained by the named recipient(s) and may only be copied or disclosed with the consent of LCH.Clearnet Limited and/or LCH.Clearnet SA. If you are not an intended recipient please delete this e-mail and notify postmaster at lchclearnet.com. LCH.Clearnet Limited, LCH.Clearnet SA and each other member of the LCH.Clearnet Group accept no liability, including liability for negligence, in respect of any statement in this email. The contents of this email are subject to contract in all cases, and LCH.Clearnet Limited and/or LCH.Clearnet SA makes no contractual commitment save where confirmed by hard copy. Cet e-mail et toutes les pi?ces jointes (ci-apr?s le "message") sont confidentiels et ?tablis ? l'intention exclusive de ses destinataires. Toute utilisation de ce message non conforme ? sa destination, toute diffusion ou toute publication, est interdite, sauf autorisation expresse de LCH.Clearnet Limited et/ou LCH.Clearnet SA. Si ce message vous a ?t? adress? par erreur, merci de le d?truire et d'en avertir imm?diatement postmaster at lchclearnet.com. LCH.Clearnet Limited, LCH.Clearnet SA et les autres entit?s du groupe LCH.Clearnet Group, ne peuvent en aucun cas ?tre tenues responsables au titre de ce message ? moins qu?il n?ait fait l?objet d?un contrat sign?. LCH.Clearnet Limited, Registered Office: Aldgate House, 33 Aldgate High Street, London EC3N 1EA. Recognised as a Clearing House under the Financial Services & Markets Act 2000. Reg in England No.25932 Telephone: +44 20 7426 7000 Internet: http://www.lchclearnet.com LCH.Clearnet SA, Si?ge Social, 18 rue du Quatre Septembre, 75002 Paris, Chambre de Compensation conform?ment au Code Mon?taire et Financier. ************************************************************************************************* From tony at miltonkeynes.pm Tue Dec 20 06:07:30 2011 From: tony at miltonkeynes.pm (Tony Edwardson) Date: Tue, 20 Dec 2011 14:07:30 -0000 (UTC) Subject: Milton Keynes In-Reply-To: <0ba40b1765b2b4d1af836e77e0f53f2e.squirrel@webmail.gorwits.me.uk> References: <41643.195.246.229.101.1324381082.squirrel@miltonkeynes.pm> <0ba40b1765b2b4d1af836e77e0f53f2e.squirrel@webmail.gorwits.me.uk> Message-ID: <47181.195.246.229.101.1324390050.squirrel@miltonkeynes.pm> 7pm is fine - I will be there from 6pm so any time after then See you later Tony >> Gentle reminder - this is tonight >> Beer stocks replenished and 100MB broadband is back on-line ! > > I didn't spot a time - from 7pm as usual? > > (for me it's whenever the traffic permits me to arrive, but I'll try to > come early; I'm bringing the guitar hero band set for PS3 :-) > > >> As previously communicated, next Tuesday's MKPM meet will now be held at >> my place which is :- >> 4 Thorwold Place >> Loughton >> MK5 8BH >> >> Where we will have various Wii & PS3 games on offer including Guitar >> Hero >> Unfortunately, I might not be able to show off my 100MB fibre to >> property >> broadband because BT decided to cancel it yesterday because they were >> unable to install a new phone line even though the phone is on a >> completely different circuit and my current phone line is being switched >> to BT. >> They tell me they can't switch it back on until Jan 4th when the phone >> gets moved to BT. >> Negotiations are underway ! >> >> If you intend to come along, please being along something to drink and >> unfortunately it's the chef's night off on Tuesdays so Large mixed >> grills >> won't be available ! >> I will provide some snacky stuff and some booze but not enough for >> everyone. >> >> Please also let me know if you intend to come along so I can get an >> appropriate amount of stuff >> >> Cheers >> Tony >> >> PS: if you have any good Wii, PS3 or even PS2 games - ( ideally multi >> player)- feel free to bring them along >> _______________________________________________ >> MiltonKeynes-pm mailing list >> MiltonKeynes-pm at pm.org >> http://mail.pm.org/mailman/listinfo/miltonkeynes-pm >> >> _______________________________________________ >> MiltonKeynes-pm mailing list >> MiltonKeynes-pm at pm.org >> http://mail.pm.org/mailman/listinfo/miltonkeynes-pm >> > > > From oliver at cpan.org Wed Dec 21 04:14:22 2011 From: oliver at cpan.org (Oliver Gorwits) Date: Wed, 21 Dec 2011 12:14:22 -0000 Subject: Milton Keynbes In-Reply-To: <41643.195.246.229.101.1324381082.squirrel@miltonkeynes.pm> References: <41643.195.246.229.101.1324381082.squirrel@miltonkeynes.pm> Message-ID: <52b936bb00c0350ed20ca45a9c2f3aeb.squirrel@webmail.gorwits.me.uk> Thanks Tony for a fun evening, full of the usual interesting chatter! Some links from the conversations I remember: Small computers: * http://www.pcengines.ch/ * http://www.lantronix.com/device-networking/embedded-device-servers/xport-pro.html Quantum Entanglement: * http://www.davidjarvis.ca/entanglement/ There was a bit of Perl: * https://metacpan.org/module/Hash::Flatten Cavity wall socket back boxes: * http://www.screwfix.com/p/appleby-sfsb619-1-gang-dry-lining-box/44827 Web based AJAX terminal emulator: * http://code.google.com/p/shellinabox/ Custom LiveCD or base install creators: * http://susestudio.com/ * http://www.turnkeylinux.org/ Anything I've missed? regards, oliver.