[no subject]

2013-05-03 Thread Christine Wong
Hello! Hope everyone enjoyed themselves last night at the Perl meet up. It was a very enjoyable experience for me. For those who didn't get my contact details I am reachable on my email addy: christine.w...@squareoneresources.com and my number is 0

[no subject]

2009-02-18 Thread Norman Cobley
>I'm getting older again, and I've made a tradition of going to the >Windsor Castle pub. Traditions must continue[1]. Come to the pub with >me and celebrate surviving an extra year. i cant be there either Leon but happy birthday, 21 is it?

Re: Select Re: (no subject)

2003-09-09 Thread Piers / Lot105
(Apologies to the list for no subject field on my original post, btw.) Steve Keay said: > I went that route in an SMTP server that had to deal with > line-at-a-time commands as well as looking for "\r\n.\r\n" in the > middle of the data. You have to buffer the data you get f

Re: Select Re: (no subject)

2003-09-09 Thread Steve Keay
On Tue, Sep 09, 2003 at 12:22:49PM +0100, Jonathan Stowe wrote: > On Tue, 9 Sep 2003, David Cantrell wrote: > > > On Tue, Sep 09, 2003 at 11:35:08AM +0100, Piers / Lot105 wrote: > > > > > > Where what I really want is, if any handle has a line waiting, give it me, > > > otherwise wait. I guess I'd

Re: (no subject)

2003-09-09 Thread Peter Sergeant
> Does anyone know of a module or a technique or incantation I can use to > achieve what I really mean by the following: I've always liked the examples of using IO::Select and friends in the WebMonkey article on how to write a chat-server (from 1997, no less)... http://hotwired.lycos.com/webmonk

Select Re: (no subject)

2003-09-09 Thread Jonathan Stowe
On Tue, 9 Sep 2003, David Cantrell wrote: > On Tue, Sep 09, 2003 at 11:35:08AM +0100, Piers / Lot105 wrote: > > > > Where what I really want is, if any handle has a line waiting, give it me, > > otherwise wait. I guess I'd also want some fairness, but forget that for a > > moment!! > > > > Obvious

Re: (no subject)

2003-09-09 Thread Merijn Broeren
Quoting Piers / Lot105 ([EMAIL PROTECTED]): > > Where what I really want is, if any handle has a line waiting, give it me, > otherwise wait. I guess I'd also want some fairness, but forget that for a > moment!! > use POE; -- Merijn Broeren | Sometime in the middle ages, God got fed up with us S

Re: (no subject)

2003-09-09 Thread David Cantrell
On Tue, Sep 09, 2003 at 11:35:08AM +0100, Piers / Lot105 wrote: > Does anyone know of a module or a technique or incantation I can use to > achieve what I really mean by the following: > > for(;;) { > $line = || || ; # I KNOW THIS IS WRONG > > # process $line; > } > > Where what I real

(no subject)

2003-09-09 Thread Piers / Lot105
Hi all Does anyone know of a module or a technique or incantation I can use to achieve what I really mean by the following: for(;;) { $line = || || ; # I KNOW THIS IS WRONG # process $line; } Where what I really want is, if any handle has a line waiting, give it me, otherwise wait. I

Re: (no subject)

2003-06-30 Thread Nicholas Clark
On Mon, Jun 30, 2003 at 11:30:02AM +0100, Daniel Glyn-Jones wrote: > Hi Nicholas, > > I appreciate your feedback on this one. First time using the site was just > now so apologies if I've blundered ! > As a recruitment agency, would you recommend that I do not advertise via > this site at all or

RE: (no subject)

2003-06-30 Thread Daniel Glyn-Jones
onday, June 30, 2003 11:26 AM To: [EMAIL PROTECTED] Subject: Re: (no subject) On Mon, Jun 30, 2003 at 10:48:46AM +0100, Daniel Glyn-Jones wrote: http://london.pm.org/about/faq.html How do I advertise a job on the list? If you're a recruiter, you don't. Anyone else should ad

Re: (no subject)

2003-06-30 Thread Nicholas Clark
On Mon, Jun 30, 2003 at 10:48:46AM +0100, Daniel Glyn-Jones wrote: http://london.pm.org/about/faq.html How do I advertise a job on the list? If you're a recruiter, you don't. Anyone else should advertise it with a subject line containing [JOB]. Not having a subject at all is a reall

(no subject)

2003-06-30 Thread Daniel Glyn-Jones
Calling all Mod Perl developers.. "Working for this groundbreaking independent company, this is an excellent position for a talented web developer with the full range of skills and experience. The ideal candidate will have flawless Perl/mod_perl(5.005+), Apache & Linux skills. Day to day you

Re: (no subject)

2002-11-08 Thread David Cantrell
On Fri, Nov 08, 2002 at 05:26:58PM +, Leo Lapworth wrote: > On Fri, Nov 08, 2002 at 05:27:57PM -, Kevin Gurney wrote: > > Anyone able to shed some light on how i can compare 2 arrays. > > > > I've tried ==, and this don't seem to work. > You might try: > > Array::Compare > http://search.c

Re: (no subject)

2002-11-08 Thread David H. Adler
On Fri, Nov 08, 2002 at 05:54:32PM +, Richard Clamp wrote: > On Fri, Nov 08, 2002 at 05:42:33PM +, Jasper McCrea wrote: > > Ifin they ain't too big, try > > > > "@array1" eq "@array2" > > @array1 = qw( foo bar ); > @array2 = qw( foob ar ); > > They're not big, but they are still wrong :)

Re: (no subject)

2002-11-08 Thread Greg McCarroll
* Jasper McCrea ([EMAIL PROTECTED]) wrote: > Kevin Gurney wrote: > > > > Anyone able to shed some light on how i can compare 2 arrays. > > > > I've tried ==, and this don't seem to work. > > > > Nothing obvious in the cookbook either. > > Ifin they ain't too big, try > > "@array1" eq "@array2"

Re: (no subject)

2002-11-08 Thread Tony Bowden
On Fri, Nov 08, 2002 at 05:54:32PM +, Richard Clamp wrote: > > "@array1" eq "@array2" > @array1 = qw( foo bar ); > @array2 = qw( foob ar ); > They're not big, but they are still wrong :) Not to defend the original, but these aren't equal when stringified ... Not without setting $" to "" or ot

Re: (no subject)

2002-11-08 Thread Richard Clamp
On Fri, Nov 08, 2002 at 05:54:32PM +, Richard Clamp wrote: > On Fri, Nov 08, 2002 at 05:42:33PM +, Jasper McCrea wrote: > > Ifin they ain't too big, try > > > > "@array1" eq "@array2" > > @array1 = qw( foo bar ); > @array2 = qw( foob ar ); > > They're not big, but they are still wrong :)

Comparing Arrays [was: Re: (no subject) ]

2002-11-08 Thread Belden Lyman
Kevin Gurney wrote: Anyone able to shed some light on how i can compare 2 arrays. I've tried ==, and this don't seem to work. Nothing obvious in the cookbook either. Please help. Kevin Gurney See Recipe 4.8, "Computing Union, Intersection, or Differences in Unique Lists." See also, D

Re: (no subject)

2002-11-08 Thread Richard Clamp
On Fri, Nov 08, 2002 at 05:42:33PM +, Jasper McCrea wrote: > Ifin they ain't too big, try > > "@array1" eq "@array2" @array1 = qw( foo bar ); @array2 = qw( foob ar ); They're not big, but they are still wrong :) -- Richard Clamp <[EMAIL PROTECTED]>

Re: (no subject)

2002-11-08 Thread Paul Makepeace
On Fri, Nov 08, 2002 at 05:42:33PM +, Jasper McCrea wrote: > Kevin Gurney wrote: > > > > Anyone able to shed some light on how i can compare 2 arrays. > > > > I've tried ==, and this don't seem to work. > > > > Nothing obvious in the cookbook either. > > Ifin they ain't too big, try > > "@

Re: (no subject)

2002-11-08 Thread Jasper McCrea
Kevin Gurney wrote: > > Anyone able to shed some light on how i can compare 2 arrays. > > I've tried ==, and this don't seem to work. > > Nothing obvious in the cookbook either. Ifin they ain't too big, try "@array1" eq "@array2" Jasper -- Jim: You've got to remember that these are just simp

RE: (no subject)

2002-11-08 Thread Ivor Williams
On Friday, November 08, 2002 5:28 PM, Kevin Gurney [SMTP:[EMAIL PROTECTED]] wrote: > > Anyone able to shed some light on how i can compare 2 arrays. > > I've tried ==, and this don't seem to work. > This may be overkill for what you want, but check out Algorithm::Diff on CPAN. http://search.cp

Re: (no subject)

2002-11-08 Thread Leo Lapworth
On Fri, Nov 08, 2002 at 05:27:57PM -, Kevin Gurney wrote: > Anyone able to shed some light on how i can compare 2 arrays. > > I've tried ==, and this don't seem to work. You might try: Array::Compare http://search.cpan.org/author/DAVECROSS/Array-Compare-1.03/ Hope that helps. Leo

(no subject)

2002-11-08 Thread Kevin Gurney
Anyone able to shed some light on how i can compare 2 arrays. I've tried ==, and this don't seem to work. Nothing obvious in the cookbook either. Please help. Kevin Gurney

Re: (no subject)

2002-02-04 Thread Jonathan Stowe
On Sun, 3 Feb 2002 [EMAIL PROTECTED] wrote: > >From mstevens Sun Feb 3 23:19:19 2002 > Return-path: <[EMAIL PROTECTED]> Ooh, this appears to have upset quite a few virus-scanners /J\

(no subject)

2002-02-04 Thread mstevens
>From mstevens Sun Feb 3 23:19:19 2002 Return-path: <[EMAIL PROTECTED]> Envelope-to: [EMAIL PROTECTED] Delivery-date: Sun, 03 Feb 2002 23:19:19 + Received: from onion.valueclick.com ([209.85.157.220] helo=onion.perl.org) by parhelion.firedrake.org with smtp (Exim 3.33 #1 (Debian))

(no subject)

2001-12-27 Thread Greg McCarroll
Err, this is general register goodness, however its not as a good as some of the links ive forced into scribot recently .. http://www.theregister.co.uk/content/28/23452.html (especially the very well written trash story) Greg -- Greg McCarroll http://

Re: (no subject)

2001-11-09 Thread Leon Brocard
aef sent the following bits through the ether: > I feel a hoax coming on... surely we can > think of some interesting recipies... http://astray.com/recipes/?search=weird Leon -- Leon Brocard.http://www.astray.com/ Nanoware...http://www.na

Re: (no subject)

2001-11-08 Thread Mark Rogaski
--8NvZYKFJsRX2Djef Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable An entity claiming to be Dave ([EMAIL PROTECTED]) wrote: : ORTLAN : HORSEMEAT : LUTEFISK : FUGU (PUTTERFISH) : CIVET-CAT COFFEE : PRAIRIE OYSTERS : MAGOT-CHEESE :