From miles at assyrian.org.uk Wed May 1 03:03:13 2013 From: miles at assyrian.org.uk (Miles Gould) Date: Wed, 01 May 2013 11:03:13 +0100 Subject: [Edinburgh-pm] Spot the bug In-Reply-To: References: <517D6304.9070902@assyrian.org.uk> Message-ID: <5180E861.4090601@assyrian.org.uk> On 29/04/13 11:10, Aaron Crane wrote: > I did detect the bug by inspection ? you narrowed it down very > conveniently, after all Yes: as you may have guessed, my code only took on the form shown after several rounds of refactoring for greater testability. But note that this problem would also have occurred if I'd just assigned the result to a variable: $ perl -E 'my $fred = 0 xor 1; say $fred' 0 I conclude from this that Perl's xor operator has the wrong precedence, and one should always bracket it. Miles From perl at aaroncrane.co.uk Wed May 1 07:56:54 2013 From: perl at aaroncrane.co.uk (Aaron Crane) Date: Wed, 1 May 2013 15:56:54 +0100 Subject: [Edinburgh-pm] Spot the bug In-Reply-To: <5180E861.4090601@assyrian.org.uk> References: <517D6304.9070902@assyrian.org.uk> <5180E861.4090601@assyrian.org.uk> Message-ID: Miles Gould wrote: > this problem would also have occurred if I'd just assigned the result > to a variable: > > $ perl -E 'my $fred = 0 xor 1; say $fred' > 0 > > I conclude from this that Perl's xor operator has the wrong precedence, and > one should always bracket it. Another way of looking at it is that Perl's normal (high-precedence) logical-XOR operator is inexplicably absent. The obvious choice for such an operator would be "^^". AFAICT, there's no technical impediment to adding it, in that (I believe) it's impossible for a term to begin with "^", and therefore any occurrence of the string "^^" in operator position in Perl source must currently be a syntax error. I think it would be reasonably easy to add, too, if someone were interested in hacking it into the Perl core. Probably worth speaking to p5p before investing too much time in it, mind. -- Aaron Crane ** http://aaroncrane.co.uk/ From wim.vanderbauwhede at gmail.com Sat May 4 11:28:51 2013 From: wim.vanderbauwhede at gmail.com (Wim Vanderbauwhede) Date: Sat, 4 May 2013 19:28:51 +0100 Subject: [Edinburgh-pm] OT: web hosting Message-ID: Hi all, I'm looking to change my hosting from MyDomain.com, I just need a small amount of space for static pages, and the ability to make two domains point to that space. And preferably for less than ?60/year :-) Any suggestions? Thanks, Wim -------------- next part -------------- An HTML attachment was scrubbed... URL: From barry at orodor.org.uk Sat May 4 11:40:11 2013 From: barry at orodor.org.uk (Barry O'Rourke) Date: Sat, 04 May 2013 19:40:11 +0100 Subject: [Edinburgh-pm] OT: web hosting In-Reply-To: References: Message-ID: <1367692811.839.3.camel@barrington.home> Hi, I use 5quidhost, they'll meet your requirements and depending upon your disk and bandwidth requirements, might even do it for free. I believe they are Edinburgh based too. http://www.5quidhost.co.uk/hosting.php Barry On Sat, 2013-05-04 at 19:28 +0100, Wim Vanderbauwhede wrote: > Hi all, > > > I'm looking to change my hosting from MyDomain.com, I just need a > small amount of space for static pages, and the ability to make two > domains point to that space. And preferably for less than ?60/year :-) > > > Any suggestions? > > > Thanks, > > > Wim > > > > _______________________________________________ > Edinburgh-pm mailing list > Edinburgh-pm at pm.org > http://mail.pm.org/mailman/listinfo/edinburgh-pm From dave at dave.org.uk Tue May 14 03:47:42 2013 From: dave at dave.org.uk (Dave Cross) Date: Tue, 14 May 2013 11:47:42 +0100 Subject: [Edinburgh-pm] Coming to Edinburgh Message-ID: <20130514114742.126343n1natml83y@webmail.mag-sol.com> Hi, Gill and I will be in Edinburgh at the end of the month and would love to meet you all for a beer or two. I'm thinking perhaps Wed 29th of May - but anything between 27-30 could work. Let me know what you think. Cheers, Dave... From stephen at jadevine.org.uk Tue May 14 04:22:42 2013 From: stephen at jadevine.org.uk (Stephen Quinney) Date: Tue, 14 May 2013 12:22:42 +0100 Subject: [Edinburgh-pm] Coming to Edinburgh In-Reply-To: <20130514114742.126343n1natml83y@webmail.mag-sol.com> References: <20130514114742.126343n1natml83y@webmail.mag-sol.com> Message-ID: I reckon I can do that day. I notice there will be a heretics meeting on Wednesday 30th as well though which might be more suitable for some people? Any thoughts on location? I think the Cumberland isn't so good these days. Stephen On 14 May 2013 11:47, Dave Cross wrote: > > Hi, > > Gill and I will be in Edinburgh at the end of the month and would love to > meet you all for a beer or two. I'm thinking perhaps Wed 29th of May - but > anything between 27-30 could work. > > Let me know what you think. > > Cheers, > > Dave... > ______________________________**_________________ > Edinburgh-pm mailing list > Edinburgh-pm at pm.org > http://mail.pm.org/mailman/**listinfo/edinburgh-pm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dave at dave.org.uk Tue May 14 04:43:16 2013 From: dave at dave.org.uk (Dave Cross) Date: Tue, 14 May 2013 12:43:16 +0100 Subject: [Edinburgh-pm] Coming to Edinburgh In-Reply-To: References: <20130514114742.126343n1natml83y@webmail.mag-sol.com> Message-ID: <20130514124316.17021irrerfhd7bo@webmail.mag-sol.com> Yes, of course, if you have a (semi-)regular meeting planned, then we're happy to fit in with that. We're very flexible on location. We're staying just off Queensferry Road (a little south of Dean Village) but we're happy to wander around anywhere in the city. Dave... Quoting Stephen Quinney : > I reckon I can do that day. I notice there will be a heretics meeting on > Wednesday 30th as well though which might be more suitable for some people? > > Any thoughts on location? I think the Cumberland isn't so good these days. > > > Stephen > > > On 14 May 2013 11:47, Dave Cross wrote: > >> >> Hi, >> >> Gill and I will be in Edinburgh at the end of the month and would love to >> meet you all for a beer or two. I'm thinking perhaps Wed 29th of May - but >> anything between 27-30 could work. >> >> Let me know what you think. >> >> Cheers, >> >> Dave... >> ______________________________**_________________ >> Edinburgh-pm mailing list >> Edinburgh-pm at pm.org >> http://mail.pm.org/mailman/**listinfo/edinburgh-pm >> > From perl at minty.org Tue May 14 07:59:33 2013 From: perl at minty.org (Murray) Date: Tue, 14 May 2013 15:59:33 +0100 Subject: [Edinburgh-pm] Coming to Edinburgh In-Reply-To: References: <20130514114742.126343n1natml83y@webmail.mag-sol.com> Message-ID: <20130514145932.GO9740@mooker.vm.bytemark.co.uk> Annoyingly, I'm away that week :( I don't think I've made a Heretics yet. On the other hand, sans-Dave, I'm around next week (23rd) if anyone is free for the "regular" social? On Tue, May 14, 2013 at 12:22:42PM +0100, Stephen Quinney wrote: > I reckon I can do that day. I notice there will be a heretics meeting on > Wednesday 30th as well though which might be more suitable for some people? > > Any thoughts on location? I think the Cumberland isn't so good these days. > > > Stephen > > > > On 14 May 2013 11:47, Dave Cross wrote: > > > > > Hi, > > > > Gill and I will be in Edinburgh at the end of the month and would love to > > meet you all for a beer or two. I'm thinking perhaps Wed 29th of May - but > > anything between 27-30 could work. > > > > Let me know what you think. > > > > Cheers, > > > > Dave... > > ______________________________**_________________ > > Edinburgh-pm mailing list > > Edinburgh-pm at pm.org > > http://mail.pm.org/mailman/**listinfo/edinburgh-pm > > > _______________________________________________ > Edinburgh-pm mailing list > Edinburgh-pm at pm.org > http://mail.pm.org/mailman/listinfo/edinburgh-pm From cyocum at gmail.com Tue May 14 08:24:00 2013 From: cyocum at gmail.com (Chris Yocum) Date: Tue, 14 May 2013 16:24:00 +0100 Subject: [Edinburgh-pm] Coming to Edinburgh In-Reply-To: <20130514145932.GO9740@mooker.vm.bytemark.co.uk> References: <20130514114742.126343n1natml83y@webmail.mag-sol.com> <20130514145932.GO9740@mooker.vm.bytemark.co.uk> Message-ID: <20130514152359.GA13656@gmail.com> On Tue, May 14, 2013 at 03:59:33PM +0100, Murray wrote: > Annoyingly, I'm away that week :( > > I don't think I've made a Heretics yet. > > On the other hand, sans-Dave, I'm around next week (23rd) if anyone is free for > the "regular" social? I will need to talk to the wife but I should be avaliable. Chris > > On Tue, May 14, 2013 at 12:22:42PM +0100, Stephen Quinney wrote: > > I reckon I can do that day. I notice there will be a heretics meeting on > > Wednesday 30th as well though which might be more suitable for some people? > > > > Any thoughts on location? I think the Cumberland isn't so good these days. > > > > > > Stephen > > > > > > > > On 14 May 2013 11:47, Dave Cross wrote: > > > > > > > > Hi, > > > > > > Gill and I will be in Edinburgh at the end of the month and would love to > > > meet you all for a beer or two. I'm thinking perhaps Wed 29th of May - but > > > anything between 27-30 could work. > > > > > > Let me know what you think. > > > > > > Cheers, > > > > > > Dave... > > > ______________________________**_________________ > > > Edinburgh-pm mailing list > > > Edinburgh-pm at pm.org > > > http://mail.pm.org/mailman/**listinfo/edinburgh-pm > > > > > > _______________________________________________ > > Edinburgh-pm mailing list > > Edinburgh-pm at pm.org > > http://mail.pm.org/mailman/listinfo/edinburgh-pm > > _______________________________________________ > Edinburgh-pm mailing list > Edinburgh-pm at pm.org > http://mail.pm.org/mailman/listinfo/edinburgh-pm -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 230 bytes Desc: Digital signature URL: From asmith9983 at gmail.com Tue May 14 09:34:09 2013 From: asmith9983 at gmail.com (A Smith) Date: Tue, 14 May 2013 17:34:09 +0100 Subject: [Edinburgh-pm] Coming to Edinburgh In-Reply-To: <20130514145932.GO9740@mooker.vm.bytemark.co.uk> References: <20130514114742.126343n1natml83y@webmail.mag-sol.com> <20130514145932.GO9740@mooker.vm.bytemark.co.uk> Message-ID: What about Mathers at the top of Broughton Street ? Andrew On 14 May 2013 15:59, Murray wrote: > Annoyingly, I'm away that week :( > > I don't think I've made a Heretics yet. > > On the other hand, sans-Dave, I'm around next week (23rd) if anyone is > free for > the "regular" social? > > On Tue, May 14, 2013 at 12:22:42PM +0100, Stephen Quinney wrote: > > I reckon I can do that day. I notice there will be a heretics meeting on > > Wednesday 30th as well though which might be more suitable for some > people? > > > > Any thoughts on location? I think the Cumberland isn't so good these > days. > > > > > > Stephen > > > > > > > > On 14 May 2013 11:47, Dave Cross wrote: > > > > > > > > Hi, > > > > > > Gill and I will be in Edinburgh at the end of the month and would love > to > > > meet you all for a beer or two. I'm thinking perhaps Wed 29th of May - > but > > > anything between 27-30 could work. > > > > > > Let me know what you think. > > > > > > Cheers, > > > > > > Dave... > > > ______________________________**_________________ > > > Edinburgh-pm mailing list > > > Edinburgh-pm at pm.org > > > http://mail.pm.org/mailman/**listinfo/edinburgh-pm< > http://mail.pm.org/mailman/listinfo/edinburgh-pm> > > > > > > _______________________________________________ > > Edinburgh-pm mailing list > > Edinburgh-pm at pm.org > > http://mail.pm.org/mailman/listinfo/edinburgh-pm > > _______________________________________________ > Edinburgh-pm mailing list > Edinburgh-pm at pm.org > http://mail.pm.org/mailman/listinfo/edinburgh-pm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From miles at assyrian.org.uk Tue May 14 11:34:05 2013 From: miles at assyrian.org.uk (Miles Gould) Date: Tue, 14 May 2013 19:34:05 +0100 Subject: [Edinburgh-pm] Coming to Edinburgh In-Reply-To: References: <20130514114742.126343n1natml83y@webmail.mag-sol.com> Message-ID: <5192839D.6030800@assyrian.org.uk> Thursday 30th would work better for me, but I could make Wednesday 29th if need be. Miles From perl at minty.org Thu May 23 06:37:28 2013 From: perl at minty.org (Murray) Date: Thu, 23 May 2013 14:37:28 +0100 Subject: [Edinburgh-pm] tonight Message-ID: it seemed like there wasn't much interest in beer tonight & given the bonus dave cross / heretics next week ... I'm probably going to skip tonight. -------------- next part -------------- An HTML attachment was scrubbed... URL: From dave at dave.org.uk Thu May 23 06:30:15 2013 From: dave at dave.org.uk (Dave Cross) Date: Thu, 23 May 2013 14:30:15 +0100 Subject: [Edinburgh-pm] tonight In-Reply-To: References: Message-ID: <20130523143015.15006iz1j87qkqnb@webmail.mag-sol.com> Quoting Murray : > it seemed like there wasn't much interest in beer tonight & given the > bonus dave cross / heretics next week ... I'm probably going to skip > tonight. Which reminds me... did we agree a venue? Dave... From perl at aaroncrane.co.uk Thu May 23 07:30:50 2013 From: perl at aaroncrane.co.uk (Aaron Crane) Date: Thu, 23 May 2013 15:30:50 +0100 Subject: [Edinburgh-pm] tonight In-Reply-To: References: Message-ID: Murray wrote: > it seemed like there wasn't much interest in beer tonight & given the bonus > dave cross / heretics next week ... I'm probably going to skip tonight. I'm up for meeting tonight as well as next week, if there's interest. Anyone else? -- Aaron Crane ** http://aaroncrane.co.uk/ From perl at aaroncrane.co.uk Thu May 23 07:30:57 2013 From: perl at aaroncrane.co.uk (Aaron Crane) Date: Thu, 23 May 2013 15:30:57 +0100 Subject: [Edinburgh-pm] tonight In-Reply-To: <20130523143015.15006iz1j87qkqnb@webmail.mag-sol.com> References: <20130523143015.15006iz1j87qkqnb@webmail.mag-sol.com> Message-ID: Dave Cross wrote: > Which reminds me... did we agree a venue? Not to my knowledge. We went to the Bailie last time, right? That's still an option. Or there's the Stockbridge Tap just a few minutes walk from it: https://sites.google.com/site/thestockbridgetap/thestockbridgetap Or I've had the Hanging Bat (133 Lothian Road) recommended highly to me ("great beer selection, good quality pub food"). Sadly, their website now seems to be run by domain squatters, but they're apparently active on Twitter: https://twitter.com/TheHangingBat -- Aaron Crane ** http://aaroncrane.co.uk/ From dave at dave.org.uk Thu May 23 07:28:56 2013 From: dave at dave.org.uk (Dave Cross) Date: Thu, 23 May 2013 15:28:56 +0100 Subject: [Edinburgh-pm] tonight In-Reply-To: References: <20130523143015.15006iz1j87qkqnb@webmail.mag-sol.com> Message-ID: <20130523152856.552352ueb45e6vmw@webmail.mag-sol.com> Quoting Aaron Crane : > Dave Cross wrote: >> Which reminds me... did we agree a venue? > > Not to my knowledge. We went to the Bailie last time, right? That's > still an option. Or there's the Stockbridge Tap just a few minutes > walk from it: > > https://sites.google.com/site/thestockbridgetap/thestockbridgetap > > Or I've had the Hanging Bat (133 Lothian Road) recommended highly to > me ("great beer selection, good quality pub food"). Sadly, their > website now seems to be run by domain squatters, but they're > apparently active on Twitter: > > https://twitter.com/TheHangingBat Happy to do the Bailie or the Stockbridge Tap. But they're both places that we've been to. Somewhere new would be good. So let's try the Hanging Bat (unless anyone has heard anything to contradict the recommendations that Aaron has heard). Dave.. From edwin.brady at gmail.com Thu May 23 07:44:10 2013 From: edwin.brady at gmail.com (Edwin Brady) Date: Thu, 23 May 2013 15:44:10 +0100 Subject: [Edinburgh-pm] tonight In-Reply-To: References: Message-ID: On 23 May 2013, at 15:30, Aaron Crane wrote: > Murray wrote: >> it seemed like there wasn't much interest in beer tonight & given the bonus >> dave cross / heretics next week ... I'm probably going to skip tonight. > > I'm up for meeting tonight as well as next week, if there's interest. > Anyone else? I'll almost certainly be there next week, but alas not tonight. The Hanging Bat sounds worth a visit. Live beer info here: https://twitter.com/TheBatTaps Edwin. From cyocum at gmail.com Thu May 23 07:51:48 2013 From: cyocum at gmail.com (Chris Yocum) Date: Thu, 23 May 2013 15:51:48 +0100 Subject: [Edinburgh-pm] tonight In-Reply-To: References: Message-ID: <20130523145147.GA13357@gmail.com> Sadly, I am a bit tired as well so I will not be going. Hanging Bat sounds good for next week though. Chris On Thu, May 23, 2013 at 03:44:10PM +0100, Edwin Brady wrote: > On 23 May 2013, at 15:30, Aaron Crane wrote: > > > Murray wrote: > >> it seemed like there wasn't much interest in beer tonight & given the bonus > >> dave cross / heretics next week ... I'm probably going to skip tonight. > > > > I'm up for meeting tonight as well as next week, if there's interest. > > Anyone else? > > I'll almost certainly be there next week, but alas not tonight. The Hanging Bat sounds worth a visit. Live beer info here: https://twitter.com/TheBatTaps > > Edwin. > _______________________________________________ > Edinburgh-pm mailing list > Edinburgh-pm at pm.org > http://mail.pm.org/mailman/listinfo/edinburgh-pm -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 230 bytes Desc: Digital signature URL: From perl at aaroncrane.co.uk Thu May 23 08:47:35 2013 From: perl at aaroncrane.co.uk (Aaron Crane) Date: Thu, 23 May 2013 16:47:35 +0100 Subject: [Edinburgh-pm] tonight In-Reply-To: References: <20130523143015.15006iz1j87qkqnb@webmail.mag-sol.com> Message-ID: I wrote: > Or I've had the Hanging Bat (133 Lothian Road) recommended highly to > me ("great beer selection, good quality pub food"). Sadly, their > website now seems to be run by domain squatters The website's now fixed, after a pal nudged them on Twitter ? seems like a good sign to me. http://www.thehangingbat.com/ We said Wednesday 29th, right? -- Aaron Crane ** http://aaroncrane.co.uk/ From dave at dave.org.uk Thu May 23 08:45:07 2013 From: dave at dave.org.uk (Dave Cross) Date: Thu, 23 May 2013 16:45:07 +0100 Subject: [Edinburgh-pm] tonight In-Reply-To: References: <20130523143015.15006iz1j87qkqnb@webmail.mag-sol.com> Message-ID: <20130523164507.199525fh5nmt57cz@webmail.mag-sol.com> Quoting Aaron Crane : > I wrote: >> Or I've had the Hanging Bat (133 Lothian Road) recommended highly to >> me ("great beer selection, good quality pub food"). Sadly, their >> website now seems to be run by domain squatters > > The website's now fixed, after a pal nudged them on Twitter ? seems > like a good sign to me. > > http://www.thehangingbat.com/ > > We said Wednesday 29th, right? I thought Thursday 30th (as that's already your planned Heretics Meeting). Dave... From perl at aaroncrane.co.uk Thu May 23 09:03:01 2013 From: perl at aaroncrane.co.uk (Aaron Crane) Date: Thu, 23 May 2013 17:03:01 +0100 Subject: [Edinburgh-pm] tonight In-Reply-To: <20130523164507.199525fh5nmt57cz@webmail.mag-sol.com> References: <20130523143015.15006iz1j87qkqnb@webmail.mag-sol.com> <20130523164507.199525fh5nmt57cz@webmail.mag-sol.com> Message-ID: Dave Cross wrote: > Quoting Aaron Crane : >> We said Wednesday 29th, right? > > I thought Thursday 30th (as that's already your planned Heretics Meeting). Oops, I must have misunderstood the plan. Either works fine for me, though. -- Aaron Crane ** http://aaroncrane.co.uk/ From dave at dave.org.uk Thu May 23 09:00:52 2013 From: dave at dave.org.uk (Dave Cross) Date: Thu, 23 May 2013 17:00:52 +0100 Subject: [Edinburgh-pm] tonight In-Reply-To: References: <20130523143015.15006iz1j87qkqnb@webmail.mag-sol.com> <20130523164507.199525fh5nmt57cz@webmail.mag-sol.com> Message-ID: <20130523170052.538311yo50yra2b8@webmail.mag-sol.com> Quoting Aaron Crane : > Dave Cross wrote: >> Quoting Aaron Crane : >>> We said Wednesday 29th, right? >> >> I thought Thursday 30th (as that's already your planned Heretics Meeting). > > Oops, I must have misunderstood the plan. Either works fine for me, though. No. It seems that the plan was confusing as Stephen said: "I notice there will be a heretics meeting on Wednesday 30th" Which you read as "Wednesday" and I read as "30th". The Thursday is probably better for us if that's ok with people. Dave... From stephen at jadevine.org.uk Thu May 23 09:27:41 2013 From: stephen at jadevine.org.uk (Stephen Quinney) Date: Thu, 23 May 2013 17:27:41 +0100 Subject: [Edinburgh-pm] tonight In-Reply-To: <20130523170052.538311yo50yra2b8@webmail.mag-sol.com> References: <20130523143015.15006iz1j87qkqnb@webmail.mag-sol.com> <20130523164507.199525fh5nmt57cz@webmail.mag-sol.com> <20130523170052.538311yo50yra2b8@webmail.mag-sol.com> Message-ID: On 23 May 2013 17:00, Dave Cross wrote: > Quoting Aaron Crane : > > Dave Cross wrote: >> >>> Quoting Aaron Crane : >>> >>>> We said Wednesday 29th, right? >>>> >>> >>> I thought Thursday 30th (as that's already your planned Heretics >>> Meeting). >>> >> >> Oops, I must have misunderstood the plan. Either works fine for me, >> though. >> > > No. It seems that the plan was confusing as Stephen said: > > "I notice there will be a heretics meeting on Wednesday 30th" > > Which you read as "Wednesday" and I read as "30th". > > The Thursday is probably better for us if that's ok with people. oops, I meant Thursday 30th, apologies for the confusion. Stephen -------------- next part -------------- An HTML attachment was scrubbed... URL: From miles at assyrian.org.uk Thu May 23 10:30:40 2013 From: miles at assyrian.org.uk (Miles Gould) Date: Thu, 23 May 2013 18:30:40 +0100 Subject: [Edinburgh-pm] tonight In-Reply-To: <20130523170052.538311yo50yra2b8@webmail.mag-sol.com> References: <20130523143015.15006iz1j87qkqnb@webmail.mag-sol.com> <20130523164507.199525fh5nmt57cz@webmail.mag-sol.com> <20130523170052.538311yo50yra2b8@webmail.mag-sol.com> Message-ID: Thursday 30th works for me. Miles On 23 May 2013 17:10, "Dave Cross" wrote: Quoting Aaron Crane : > Dave Cross wrote: >> >> Quoting A... No. It seems that the plan was confusing as Stephen said: "I notice there will be a heretics meeting on Wednesday 30th" Which you read as "Wednesday" and I read as "30th". The Thursday is probably better for us if that's ok with people. Dave... _______________________________________________ Edinburgh-pm mailing list Edinburgh-pm at pm.org http:... -------------- next part -------------- An HTML attachment was scrubbed... URL: From perl at minty.org Sun May 26 08:08:07 2013 From: perl at minty.org (Murray) Date: Sun, 26 May 2013 16:08:07 +0100 Subject: [Edinburgh-pm] tonight Message-ID: it seemed like there wasn't much interest in beer tonight & given the bonus dave cross / heretics next week ... I'm probably going to skip tonight. -------------- next part -------------- An HTML attachment was scrubbed... URL: From dave at dave.org.uk Thu May 30 03:03:37 2013 From: dave at dave.org.uk (Dave Cross) Date: Thu, 30 May 2013 11:03:37 +0100 Subject: [Edinburgh-pm] Hanging Bat Message-ID: <5tv93qdbkk0xol7n2i69s31o.1369908217660@email.android.com> Hi all, Just wanted to confirm that I'll be at the Hanging Bat this evening. I expect I'll be there at about 7 pm (perhaps a little earlier). Cheers, Dave... From perl at aaroncrane.co.uk Thu May 30 05:33:44 2013 From: perl at aaroncrane.co.uk (Aaron Crane) Date: Thu, 30 May 2013 13:33:44 +0100 Subject: [Edinburgh-pm] Hanging Bat In-Reply-To: <5tv93qdbkk0xol7n2i69s31o.1369908217660@email.android.com> References: <5tv93qdbkk0xol7n2i69s31o.1369908217660@email.android.com> Message-ID: Dave Cross wrote: > Just wanted to confirm that I'll be at the Hanging Bat this evening. I expect I'll be there at about 7 pm (perhaps a little earlier). I'll aim to arrive at the same time. I've tried to book a table, but apparently they don't do that. :-( -- Aaron Crane ** http://aaroncrane.co.uk/ From miles at assyrian.org.uk Thu May 30 07:42:02 2013 From: miles at assyrian.org.uk (Miles Gould) Date: Thu, 30 May 2013 15:42:02 +0100 Subject: [Edinburgh-pm] Hanging Bat In-Reply-To: References: <5tv93qdbkk0xol7n2i69s31o.1369908217660@email.android.com> Message-ID: <51A7653A.3010402@assyrian.org.uk> On 30/05/13 13:33, Aaron Crane wrote: > Dave Cross wrote: >> Just wanted to confirm that I'll be at the Hanging Bat this >> evening. I expect I'll be there at about 7 pm (perhaps a little >> earlier). > > I'll aim to arrive at the same time. Me three. Miles