From smedley358 at btinternet.com Thu Nov 13 20:52:07 2008 From: smedley358 at btinternet.com (Richard Smedley) Date: Thu, 13 Nov 2008 20:52:07 -0000 Subject: [Chester LUG] [Fwd: GeekUp Chester - November] Message-ID: <1226609516.6323.113.camel@GNUPad.home> Not sure I can make it, but then I have a poor GeekUp attendance to uphold anyway. For anyone who's not been, GeekUp is a technical and social meeting for Web and other IT professionals (and anyone interested) in the North West. Regular monthly meetings already happen in Manchester, Liverpool, Leeds, and Preston. Sheffield has just started up and now, Chester :) This is acked up by a mailing list on GoogleGroups with several hundred members. However, at an average of 100 posts a day (for the last couple of years) some might like to skip the list and just attend metings. GeekUp is also linked to Manchester Co-Working, BarCamp (in Manchester, Liverpool, and Leeds), and the BBC Backstage Xmas party... - Richard -------- Forwarded Message -------- From: Dave Verwer To: nwdc-announcements at googlegroups.com Subject: GeekUp Chester - November Date: Thu, 13 Nov 2008 08:30:59 +0000 Bit late announcing this month but it is still on next Tuesday! When: - 6:30pm on Tuesday 18th November Where: - City Bar, 19-21 City Road (http://is.gd/2fIM) Troubles? - Call me on 07515 387799 More details and sign up - http://upcoming.yahoo.com/event/1340442/ See you there Dave From wilp4a at hotmail.co.uk Sat Nov 22 23:38:36 2008 From: wilp4a at hotmail.co.uk (Paul Williams) Date: Sat, 22 Nov 2008 23:38:36 -0000 Subject: [Chester LUG] Published! Message-ID: Got a letter in this months Linux Format. P 105 LXF 113 "Webcam Capture" Woohoo! _________________________________________________________________ See the most popular videos on the web http://clk.atdmt.com/GBL/go/115454061/direct/01/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From stuart.james.burns at gmail.com Sun Nov 23 21:15:22 2008 From: stuart.james.burns at gmail.com (Stuart Burns) Date: Sun, 23 Nov 2008 21:15:22 -0000 Subject: [Chester LUG] Any perl gurus out there ? Message-ID: Hi Everyone, I am in the process of learning perl but need to finish a program quickly but am stuck on something. I am in the process of creating a very simple script to create a gallery from random files and urls. To expand a bit, what I am trying to do is the following: read in a file that is in the following format: 1.jpg|http://www.site1.com/ 2.jpg|http://www.site2.com/ etc all the way up to 500 Then, randomly choose 20 of the images, and put them into a variable so I can spit them out into the format: Can anyone please help me with this. The main problem I am having is splitting up the file with the source information in it, as I dont know how to read it into an array and split it. Any help appreciated. Stu -------------- next part -------------- An HTML attachment was scrubbed... URL: From mark.rowlands at gmail.com Mon Nov 24 00:25:36 2008 From: mark.rowlands at gmail.com (Mark Rowlands) Date: Mon, 24 Nov 2008 00:25:36 -0000 Subject: [Chester LUG] Any perl gurus out there ? In-Reply-To: References: Message-ID: Hi Stu, On Sun, Nov 23, 2008 at 9:15 PM, Stuart Burns wrote: > Hi Everyone, > > I am in the process of learning perl but need to finish a program quickly > but am stuck on something. I am in the process of creating a very simple > script to create a gallery from random files and urls. To expand a bit, what > I am trying to do is the following: > > read in a file that is in the following format: > > 1.jpg|http://www.site1.com/ > 2.jpg|http://www.site2.com/ > > etc all the way up to 500 > > Then, randomly choose 20 of the images, and put them into a variable so I > can spit them out into the format: > > > > Can anyone please help me with this. The main problem I am having is > splitting up the file with the source information in it, as I dont know how > to read it into an array and split it. > Here's a quick example of opening a file, reading in the contents and splitting via a fixed character. This opens the file (which contains data in the format you've specified) and uses the perl split() function on each line, I've not gone any further with it, like choosing random values - the data ought to be accessible but if you'd like more let me know: #!/opt/local/bin/perl -w my ($file ); my (@stuff ); $file = "input.text"; # This is the file we're going to read in open (DATA, "$file") || die "Can't open file ($file) $!"; while (my $line = ) { chomp($line); # Remove newlines # Split based on the delimiter | my ($jpeg, $url) = split(/\|/, $line); push(@stuff, { jpeg => $jpeg, url => $url } ); } close (DATA); # end What this does is construct an array of hashes, if you pass @stuff through Data::Dumper: $VAR1 = { 'url' => 'http://www.site1.com/', 'jpeg' => '1.jpg' }; $VAR2 = { 'url' => 'http://www.site2.com/', 'jpeg' => '2.jpg' }; So you'll be able to access any of the values via: $stuff[$i]{'jpeg'} and $stuff[$i]{'url'} where $x is the array index. Hope that's of some use. Mark -------------- next part -------------- An HTML attachment was scrubbed... URL: From dh at iucr.org Mon Nov 24 12:17:04 2008 From: dh at iucr.org (David Holden) Date: Mon, 24 Nov 2008 12:17:04 -0000 Subject: [Chester LUG] Any perl gurus out there ? In-Reply-To: References: Message-ID: <200811241216.55921.dh@iucr.org> On Sunday 23 November 2008, Stuart Burns wrote: > Just realized how dependent I am on perl modules, but I think this does it (tested once!) -see below. Stuart did you say you had a sparc system going free? Dave. #!/usr/local/bin/perl # REQUIREMENTS use 5.006; use strict; use warnings; use version; our $VERSION = qv('0.0.1'); use Carp; use vars qw(); # GENERAL MODULES # LOCAL MODULES # INITIALIZE my $maxpics = 20; # number of pics to output my $file = 't1.dat'; # name the file my @l = readfile($file); my @pics = getpics(@l); # output pics foreach my $pic (@pics) { print $pic . "\n"; } sub readfile { my ($file) = @_; my @l = (); open( my $fh, '<', $file ) || die "cannot open file \"$file\": $!"; while ( my $line = <$fh> ) { chomp($line); my ( $p1, $p2 ) = split /\|/, $line; my $h = []; push @$h, $p1, $p2; push @l, $h; } close $fh or die "unable to close: $!"; return @l; } sub getpics { my @l = @_; my @rv = (); my $c = 1; my %seen = (); my $numpics = $maxpics; $numpics = $#l if ( $numpics > $#l ); while ( $c <= $numpics ) { my $rand = int rand $numpics; if ( not $seen{$rand} ) { my $h = $l[$rand]; my ( $p1, $p2 ) = @$h; push @rv, qq{}; $c++; } $seen{$rand}++; } return @rv; } 1; -- Dr. David Holden. See: regarding Word or PowerPoint. GPG key available on request. ------------------------------------------------------------- From les.pritchard at gmail.com Wed Nov 26 17:02:42 2008 From: les.pritchard at gmail.com (Les Pritchard) Date: Wed, 26 Nov 2008 17:02:42 -0000 Subject: [Chester LUG] Meet Message-ID: Hi all, A quick reminder that it's meet time again! This Thursday from 7pm at the Old King's Head. See you there. Les -------------- next part -------------- An HTML attachment was scrubbed... URL: From biglynchy at gmail.com Wed Nov 26 18:01:03 2008 From: biglynchy at gmail.com (Dan Lynch) Date: Wed, 26 Nov 2008 18:01:03 -0000 Subject: [Chester LUG] Meet In-Reply-To: References: Message-ID: Is this likely to be our last meet before Christmas then? I'm supposed to be recording the podcast 2moro you see but if this is the last meet till the new year then I'll try to rearrange it so I can show my face and see everyone before the holidays :) Cheers Dan On Wed, Nov 26, 2008 at 5:02 PM, Les Pritchard wrote: > Hi all, > A quick reminder that it's meet time again! This Thursday from 7pm at the > Old King's Head. > > See you there. > > Les > > _______________________________________________ > Chester mailing list > Chester at mailman.lug.org.uk > https://mailman.lug.org.uk/mailman/listinfo/chester > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From rcgibson at talktalk.net Wed Nov 26 23:33:28 2008 From: rcgibson at talktalk.net (Roger Gibson) Date: Wed, 26 Nov 2008 23:33:28 -0000 Subject: [Chester LUG] Meet In-Reply-To: References: Message-ID: <492DDCB5.9060602@talktalk.net> I have another meeting, but I'll come along if that finishes early. Roger Les Pritchard said the following on 26/11/2008 17:02: > Hi all, > > A quick reminder that it's meet time again! This Thursday from 7pm at > the Old King's Head. > > See you there. > > Les > > ______________________________________________________________________ > This email has been scanned by the MessageLabs Email Security System. > For more information please visit http://www.messagelabs.com/email > ______________________________________________________________________ > ------------------------------------------------------------------------ > > _______________________________________________ > Chester mailing list > Chester at mailman.lug.org.uk > https://mailman.lug.org.uk/mailman/listinfo/chester > -------------- next part -------------- An HTML attachment was scrubbed... URL: From iamseawolf at gmail.com Thu Nov 27 00:12:15 2008 From: iamseawolf at gmail.com (Ben Arnold) Date: Thu, 27 Nov 2008 00:12:15 -0000 Subject: [Chester LUG] Meet In-Reply-To: References: Message-ID: <9c3bfa1d0811261612y426bbe6es2c2ac30016aaf321@mail.gmail.com> Afraid I can't make this week as I am somewhere else in the country, where I don't know, on Super Enigma. It's unfortunate it's the last before Christmas but I hope everyone is well and to see you in the new year. Happy holidays! Ben 2008/11/26 Les Pritchard : > A quick reminder that it's meet time again! This Thursday from 7pm at the > Old King's Head. -- | seawolf | | Ben Arnold | | e-mail / msn / icq / web | | ben.arnold.inbox (at) gmail.com | From biglynchy at gmail.com Thu Nov 27 17:14:03 2008 From: biglynchy at gmail.com (Dan Lynch) Date: Thu, 27 Nov 2008 17:14:03 -0000 Subject: [Chester LUG] Meet In-Reply-To: References: Message-ID: Sorry folks it doesn't look like I can make it after all, can't move this recording as I wanted to and it needs to be done before the weekend. I also have a bit of a migraine coming on, nothing serious I get them periodically but it doesn't go well with driving obviously. Really wanted to make it this month as I missed the last one but it'll have to be the new year now. I hope everyone has a great time anyway and a good holiday season whatever you're up to :) I'll catch up with you all soon I'm sure, Dan On Wed, Nov 26, 2008 at 5:02 PM, Les Pritchard wrote: > Hi all, > A quick reminder that it's meet time again! This Thursday from 7pm at the > Old King's Head. > > See you there. > > Les > > _______________________________________________ > Chester mailing list > Chester at mailman.lug.org.uk > https://mailman.lug.org.uk/mailman/listinfo/chester > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From les.pritchard at gmail.com Fri Nov 28 11:46:36 2008 From: les.pritchard at gmail.com (Les Pritchard) Date: Fri, 28 Nov 2008 11:46:36 -0000 Subject: [Chester LUG] Meet In-Reply-To: References: Message-ID: Hi all, Sorry I was out of email contact the last day or so. That was our last regular meet before Christmas, but last year we met up for a meal just before Christmas. Being LUG people of course we ended up having a curry and avoiding the copious roast turkey! How many of you would like to meet up for a meal a week or so before the big day? We'll also hopefully meet up between Christmas and the New Year if you fancy that. Les On Thu, Nov 27, 2008 at 5:14 PM, Dan Lynch wrote: > Sorry folks it doesn't look like I can make it after all, can't move this > recording as I wanted to and it needs to be done before the weekend. I also > have a bit of a migraine coming on, nothing serious I get them periodically > but it doesn't go well with driving obviously. Really wanted to make it this > month as I missed the last one but it'll have to be the new year now. I hope > everyone has a great time anyway and a good holiday season whatever you're > up to :) > > I'll catch up with you all soon I'm sure, > > Dan > > > > On Wed, Nov 26, 2008 at 5:02 PM, Les Pritchard wrote: > >> Hi all, >> A quick reminder that it's meet time again! This Thursday from 7pm at the >> Old King's Head. >> >> See you there. >> >> Les >> >> _______________________________________________ >> Chester mailing list >> Chester at mailman.lug.org.uk >> https://mailman.lug.org.uk/mailman/listinfo/chester >> >> > > _______________________________________________ > Chester mailing list > Chester at mailman.lug.org.uk > https://mailman.lug.org.uk/mailman/listinfo/chester > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From biglynchy at gmail.com Fri Nov 28 11:51:52 2008 From: biglynchy at gmail.com (Dan Lynch) Date: Fri, 28 Nov 2008 11:51:52 -0000 Subject: [Chester LUG] Meet In-Reply-To: References: Message-ID: Yeah a meal sounds good to me, I never liked Turkey that much anyway, let me know if you make any arrangements Cheers Dan On Fri, Nov 28, 2008 at 11:46 AM, Les Pritchard wrote: > Hi all, > > Sorry I was out of email contact the last day or so. That was our last > regular meet before Christmas, but last year we met up for a meal just > before Christmas. Being LUG people of course we ended up having a curry and > avoiding the copious roast turkey! How many of you would like to meet up > for a meal a week or so before the big day? > > We'll also hopefully meet up between Christmas and the New Year if you > fancy that. > > Les > > On Thu, Nov 27, 2008 at 5:14 PM, Dan Lynch wrote: > >> Sorry folks it doesn't look like I can make it after all, can't move this >> recording as I wanted to and it needs to be done before the weekend. I also >> have a bit of a migraine coming on, nothing serious I get them periodically >> but it doesn't go well with driving obviously. Really wanted to make it this >> month as I missed the last one but it'll have to be the new year now. I hope >> everyone has a great time anyway and a good holiday season whatever you're >> up to :) >> >> I'll catch up with you all soon I'm sure, >> >> Dan >> >> >> >> On Wed, Nov 26, 2008 at 5:02 PM, Les Pritchard > > wrote: >> >>> Hi all, >>> A quick reminder that it's meet time again! This Thursday from 7pm at >>> the Old King's Head. >>> >>> See you there. >>> >>> Les >>> >>> _______________________________________________ >>> Chester mailing list >>> Chester at mailman.lug.org.uk >>> https://mailman.lug.org.uk/mailman/listinfo/chester >>> >>> >> >> _______________________________________________ >> Chester mailing list >> Chester at mailman.lug.org.uk >> https://mailman.lug.org.uk/mailman/listinfo/chester >> >> > > _______________________________________________ > Chester mailing list > Chester at mailman.lug.org.uk > https://mailman.lug.org.uk/mailman/listinfo/chester > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From roger.downing at stfc.ac.uk Fri Nov 28 11:53:13 2008 From: roger.downing at stfc.ac.uk (Downing, R (Roger)) Date: Fri, 28 Nov 2008 11:53:13 -0000 Subject: [Chester LUG] Meet In-Reply-To: Message-ID: Turkey curry?? :) In spring its a nice cheap alternative to chicken from the supermarket.... -----Original Message----- From: chester-bounces at mailman.lug.org.uk [mailto:chester-bounces at mailman.lug.org.uk] On Behalf Of Dan Lynch Sent: 28 November 2008 11:52 To: chester at mailman.lug.org.uk Subject: Re: [Chester LUG] Meet Yeah a meal sounds good to me, I never liked Turkey that much anyway, let me know if you make any arrangements Cheers Dan On Fri, Nov 28, 2008 at 11:46 AM, Les Pritchard wrote: Hi all, Sorry I was out of email contact the last day or so. That was our last regular meet before Christmas, but last year we met up for a meal just before Christmas. Being LUG people of course we ended up having a curry and avoiding the copious roast turkey! How many of you would like to meet up for a meal a week or so before the big day? We'll also hopefully meet up between Christmas and the New Year if you fancy that. Les On Thu, Nov 27, 2008 at 5:14 PM, Dan Lynch wrote: Sorry folks it doesn't look like I can make it after all, can't move this recording as I wanted to and it needs to be done before the weekend. I also have a bit of a migraine coming on, nothing serious I get them periodically but it doesn't go well with driving obviously. Really wanted to make it this month as I missed the last one but it'll have to be the new year now. I hope everyone has a great time anyway and a good holiday season whatever you're up to :) I'll catch up with you all soon I'm sure, Dan On Wed, Nov 26, 2008 at 5:02 PM, Les Pritchard wrote: Hi all, A quick reminder that it's meet time again! This Thursday from 7pm at the Old King's Head. See you there. Les _______________________________________________ Chester mailing list Chester at mailman.lug.org.uk https://mailman.lug.org.uk/mailman/listinfo/chester _______________________________________________ Chester mailing list Chester at mailman.lug.org.uk https://mailman.lug.org.uk/mailman/listinfo/chester _______________________________________________ Chester mailing list Chester at mailman.lug.org.uk https://mailman.lug.org.uk/mailman/listinfo/chester -------------- next part -------------- An HTML attachment was scrubbed... URL: From joe.foy at gmail.com Fri Nov 28 12:32:34 2008 From: joe.foy at gmail.com (Joe Foy) Date: Fri, 28 Nov 2008 12:32:34 -0000 Subject: [Chester LUG] Meet In-Reply-To: References: Message-ID: Meal sounds good to me too, but as I said last night I will have to let you know closer to the time whether I can make it or not as money may prevent me. From dh at iucr.org Fri Nov 28 13:59:48 2008 From: dh at iucr.org (David Holden) Date: Fri, 28 Nov 2008 13:59:48 -0000 Subject: [Chester LUG] Meet In-Reply-To: References: Message-ID: <200811281359.37436.dh@iucr.org> On Friday 28 November 2008, Les Pritchard wrote: > Hi all, > > Sorry I was out of email contact the last day or so. That was our last > regular meet before Christmas, but last year we met up for a meal just > before Christmas. Being LUG people of course we ended up having a curry > and avoiding the copious roast turkey! How many of you would like to meet > up for a meal a week or so before the big day? > > We'll also hopefully meet up between Christmas and the New Year if you > fancy that. > > Les Yep, include me. Dave. > > On Thu, Nov 27, 2008 at 5:14 PM, Dan Lynch wrote: > > Sorry folks it doesn't look like I can make it after all, can't move this > > recording as I wanted to and it needs to be done before the weekend. I > > also have a bit of a migraine coming on, nothing serious I get them > > periodically but it doesn't go well with driving obviously. Really wanted > > to make it this month as I missed the last one but it'll have to be the > > new year now. I hope everyone has a great time anyway and a good holiday > > season whatever you're up to :) > > > > I'll catch up with you all soon I'm sure, > > > > Dan > > > > On Wed, Nov 26, 2008 at 5:02 PM, Les Pritchard wrote: > >> Hi all, > >> A quick reminder that it's meet time again! This Thursday from 7pm at > >> the Old King's Head. > >> > >> See you there. > >> > >> Les > >> > >> _______________________________________________ > >> Chester mailing list > >> Chester at mailman.lug.org.uk > >> https://mailman.lug.org.uk/mailman/listinfo/chester > > > > _______________________________________________ > > Chester mailing list > > Chester at mailman.lug.org.uk > > https://mailman.lug.org.uk/mailman/listinfo/chester -- Dr. David Holden. See: regarding Word or PowerPoint. GPG key available on request. ------------------------------------------------------------- From fixitkwiknow at supanet.com Fri Nov 28 18:33:53 2008 From: fixitkwiknow at supanet.com (BRIAN LEES) Date: Fri, 28 Nov 2008 18:33:53 -0000 Subject: [Chester LUG] Meet In-Reply-To: References: Message-ID: <4930398B.7090501@supanet.com> Les Pritchard wrote: > Hi all, > > A quick reminder that it's meet time again! This Thursday from 7pm at > the Old King's Head. > > See you there. > > Les > ------------------------------------------------------------------------ > > _______________________________________________ > Chester mailing list > Chester at mailman.lug.org.uk > https://mailman.lug.org.uk/mailman/listinfo/chester > Despite numerous appeals, I am still being pestered by your memb ers including me in their circulation. PLEASE do something NOW to remove my namen from your lists. Brian Lees From les.pritchard at gmail.com Fri Nov 28 19:07:08 2008 From: les.pritchard at gmail.com (Les Pritchard) Date: Fri, 28 Nov 2008 19:07:08 -0000 Subject: [Chester LUG] Meet In-Reply-To: <4930398B.7090501@supanet.com> References: <4930398B.7090501@supanet.com> Message-ID: I don't know where these appeals have gone as I haven't received any. You can unsubscribe from the mailing list via the same page you subscribed: http://mailman.lug.org.uk/mailman/listinfo/Chester On Fri, Nov 28, 2008 at 6:33 PM, BRIAN LEES wrote: > Les Pritchard wrote: > > Hi all, > > > > A quick reminder that it's meet time again! This Thursday from 7pm at > > the Old King's Head. > > > > See you there. > > > > Les > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > Chester mailing list > > Chester at mailman.lug.org.uk > > https://mailman.lug.org.uk/mailman/listinfo/chester > > > Despite numerous appeals, I am still being pestered by your memb ers > including me in their circulation. PLEASE do something NOW to remove my > namen from your lists. > Brian Lees > > _______________________________________________ > Chester mailing list > Chester at mailman.lug.org.uk > https://mailman.lug.org.uk/mailman/listinfo/chester > -------------- next part -------------- An HTML attachment was scrubbed... URL: From fixitkwiknow at supanet.com Fri Nov 28 22:27:33 2008 From: fixitkwiknow at supanet.com (BRIAN LEES) Date: Fri, 28 Nov 2008 22:27:33 -0000 Subject: [Chester LUG] Meet In-Reply-To: References: <4930398B.7090501@supanet.com> Message-ID: <4930704C.8020501@supanet.com> Les Pritchard wrote: > I don't know where these appeals have gone as I haven't received any. > > You can unsubscribe from the mailing list via the same page you > subscribed: > http://mailman.lug.org.uk/mailman/listinfo/Chester > > On Fri, Nov 28, 2008 at 6:33 PM, BRIAN LEES > wrote: > > Les Pritchard wrote: > > Hi all, > > > > A quick reminder that it's meet time again! This Thursday from > 7pm at > > the Old King's Head. > > > > See you there. > > > > Les > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > Chester mailing list > > Chester at mailman.lug.org.uk > > https://mailman.lug.org.uk/mailman/listinfo/chester > > > Despite numerous appeals, I am still being pestered by your memb ers > including me in their circulation. PLEASE do something NOW to > remove my > namen from your lists. > Brian Lees > > _______________________________________________ > Chester mailing list > Chester at mailman.lug.org.uk > https://mailman.lug.org.uk/mailman/listinfo/chester > > > ------------------------------------------------------------------------ > > _______________________________________________ > Chester mailing list > Chester at mailman.lug.org.uk > https://mailman.lug.org.uk/mailman/listinfo/chester > Les......these were addressed to your mailman more than once! Thanks to BT, living on a country lane gives me a dial up speed of 40kps so I only need a number of emails from your LUG members to almost wipe me out. Would you please ask them all to remove my name from their circulation lists and wish them all Merry Christmas from me!.......Thanks.......Brian Lees. (enjoy your meet!) From les.pritchard at gmail.com Fri Nov 28 22:53:51 2008 From: les.pritchard at gmail.com (Les Pritchard) Date: Fri, 28 Nov 2008 22:53:51 -0000 Subject: [Chester LUG] Meet In-Reply-To: <4930704C.8020501@supanet.com> References: <4930398B.7090501@supanet.com> <4930704C.8020501@supanet.com> Message-ID: I think there's been a bit of a misunderstanding here.....anyway Brian has now been removed from the list so there's no need for you to all remove him from your mailing ;-) On Fri, Nov 28, 2008 at 10:27 PM, BRIAN LEES wrote: > Les Pritchard wrote: > > I don't know where these appeals have gone as I haven't received any. > > > > You can unsubscribe from the mailing list via the same page you > > subscribed: > > http://mailman.lug.org.uk/mailman/listinfo/Chester > > > > On Fri, Nov 28, 2008 at 6:33 PM, BRIAN LEES > > wrote: > > > > Les Pritchard wrote: > > > Hi all, > > > > > > A quick reminder that it's meet time again! This Thursday from > > 7pm at > > > the Old King's Head. > > > > > > See you there. > > > > > > Les > > > > > > ------------------------------------------------------------------------ > > > > > > _______________________________________________ > > > Chester mailing list > > > Chester at mailman.lug.org.uk > > > https://mailman.lug.org.uk/mailman/listinfo/chester > > > > > Despite numerous appeals, I am still being pestered by your memb ers > > including me in their circulation. PLEASE do something NOW to > > remove my > > namen from your lists. > > Brian Lees > > > > _______________________________________________ > > Chester mailing list > > Chester at mailman.lug.org.uk > > https://mailman.lug.org.uk/mailman/listinfo/chester > > > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > Chester mailing list > > Chester at mailman.lug.org.uk > > https://mailman.lug.org.uk/mailman/listinfo/chester > > > Les......these were addressed to your mailman more than once! Thanks > to BT, living on a country lane gives me a dial up speed of 40kps so I > only need a number of emails from your LUG members to almost wipe me > out. Would you please ask them all to remove my name from their > circulation lists and wish them all Merry Christmas from > me!.......Thanks.......Brian Lees. (enjoy your meet!) > > _______________________________________________ > Chester mailing list > Chester at mailman.lug.org.uk > https://mailman.lug.org.uk/mailman/listinfo/chester > -------------- next part -------------- An HTML attachment was scrubbed... URL: From wilp4a at hotmail.co.uk Fri Nov 28 23:37:49 2008 From: wilp4a at hotmail.co.uk (Paul Williams) Date: Fri, 28 Nov 2008 23:37:49 -0000 Subject: [Chester LUG] Meet In-Reply-To: <4930704C.8020501@supanet.com> References: <4930398B.7090501@supanet.com> <4930704C.8020501@supanet.com> Message-ID: Sorry to butt in here, brian. When we email a reply to any post by someone to the forum, it emails everyone on the mailing list with the response. Thus, this email will be sent to everyone, including les. People aren't emailing you because you're on their list. You're getting this because you are on THE LIST and everyone gets it. It's list removal you need, and any further correspondance from a member of the LUG is purely because you're still on the list. Merry christmas btw. > Date: Fri, 28 Nov 2008 22:27:24 +0000 > From: fixitkwiknow at supanet.com > To: chester at mailman.lug.org.uk > Subject: Re: [Chester LUG] Meet > > Les Pritchard wrote: > > I don't know where these appeals have gone as I haven't received any. > > > > You can unsubscribe from the mailing list via the same page you > > subscribed: > > http://mailman.lug.org.uk/mailman/listinfo/Chester > > > > On Fri, Nov 28, 2008 at 6:33 PM, BRIAN LEES > > wrote: > > > > Les Pritchard wrote: > > > Hi all, > > > > > > A quick reminder that it's meet time again! This Thursday from > > 7pm at > > > the Old King's Head. > > > > > > See you there. > > > > > > Les > > > > > ------------------------------------------------------------------------ > > > > > > _______________________________________________ > > > Chester mailing list > > > Chester at mailman.lug.org.uk > > > https://mailman.lug.org.uk/mailman/listinfo/chester > > > > > Despite numerous appeals, I am still being pestered by your memb ers > > including me in their circulation. PLEASE do something NOW to > > remove my > > namen from your lists. > > Brian Lees > > > > _______________________________________________ > > Chester mailing list > > Chester at mailman.lug.org.uk > > https://mailman.lug.org.uk/mailman/listinfo/chester > > > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > Chester mailing list > > Chester at mailman.lug.org.uk > > https://mailman.lug.org.uk/mailman/listinfo/chester > > > Les......these were addressed to your mailman more than once! Thanks > to BT, living on a country lane gives me a dial up speed of 40kps so I > only need a number of emails from your LUG members to almost wipe me > out. Would you please ask them all to remove my name from their > circulation lists and wish them all Merry Christmas from > me!.......Thanks.......Brian Lees. (enjoy your meet!) > > _______________________________________________ > Chester mailing list > Chester at mailman.lug.org.uk > https://mailman.lug.org.uk/mailman/listinfo/chester _________________________________________________________________ See the most popular videos on the web http://clk.atdmt.com/GBL/go/115454061/direct/01/ -------------- next part -------------- An HTML attachment was scrubbed... URL: