New module author

2002-07-24 Thread Luke Palmer
I would like an author id, as I have a module to upload. Name: Luke Palmer Email: [EMAIL PROTECTED] Homepage: http://fibonaci.babylonia.flations.org User-ID: LPALMER I'm going to contribute Parse::Earley, a neato implementation of Earley's algorithm... Parse::RecDescent style (but n

Naming a module...

2002-07-27 Thread Luke Palmer
I'd like assistance in naming a module that I'm working on. It's a basic predicate logic solver (like prolog, but easier to access through perl and not as full-featured). I call it Logic now, but I'd like to know where to put it in the tree. I would use Language::Prolog, except it is pre-pre

Request for PAUSE ID

2002-08-09 Thread Luke Palmer
I resent this, because it's been a really long time and people after me in the queue (I assume you do a queue-like system) have been added. Maybe it was missed? Here's the original: > I would like an author id, as I have a module to upload. > > Name: Luke Palmer > E

Re: PAUSE permissions clash between PARENT and parent

2016-06-22 Thread Luke Palmer
I don't really care. I wouldn't want to break anybody's code, but I doubt this package has many users. I haven't done any perl for many years, can't say I even know what you're talking about. I defer to your judgment. Luke On Wed, Jun 22, 2016, 2:44 PM Neil Bowers wrote: > Hi Luke, > > > I’m em

Module Naming

2003-01-29 Thread Luke Palmer
I have a module that performs parallel substitutions on a string, as in: $str = subst $str, qr/foo/ => 'bar', qr/bar/ => 'baz', qr/baz/ => 'foo'; Just as if it were typed: $str =~ s/(foo|bar|baz)/$1 eq 'foo' ? 'bar' : $1 eq 'bar' ? '

Module naming/behavior question

2003-02-09 Thread Luke Palmer
I have a module that does multiple regex substitutions in parallel safely, like this: $str = subst($str, qr/([0-9]*[1-9])/ => '${1}0', qr/([0-9]+)0/ => '$1', ) (Adding zeroes to numbers that don't have them, and taking them off numbers that do