[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

failure delivery



Message from  yahoo.com.
Unable to deliver message to the following address(es).

<satyr_22901@yahoo.com>:
Sorry, your message to satyr_22901@yahoo.com cannot be delivered.  This account is over quota.

--- Original message follows.

Return-Path: <owner-ll1-discuss@ai.mit.edu>
X-Track: 1: 40
Received: from life.ai.mit.edu (128.52.32.80)
  by mta434.mail.yahoo.com with SMTP; 02 Dec 2001 20:30:59 -0800 (PST)
Received: (from root@localhost)
	by life.ai.mit.edu (8.9.3/8.9.3/AI2.13/ai.master.life:2.21) id XAA15139
	for ll1-discuss-outgoing; Sun, 2 Dec 2001 23:30:42 -0500 (EST)
Received: from albatross.prod.itd.earthlink.net (albatross.mail.pas.earthlink.net [207.217.120.120])
	by life.ai.mit.edu (8.9.3/8.9.3/AI2.13/ai.master.life:2.21) with ESMTP id XAA15127
	for <ll1-discuss@ai.mit.edu>; Sun, 2 Dec 2001 23:30:37 -0500 (EST)
Received: from pool1068.cvx8-bradley.dialup.earthlink.net ([209.178.174.48] helo=localhost)
	by albatross.prod.itd.earthlink.net with esmtp (Exim 3.33 #1)
	id 16AkkW-0004Qz-00; Sun, 02 Dec 2001 20:30:36 -0800
Date: Sun, 2 Dec 2001 20:34:28 -0800
Subject: Re: text processing as *the* problem
Content-Type: text/plain; charset=US-ASCII; format=flowed
Mime-Version: 1.0 (Apple Message framework v475)
Cc: <ll1-discuss@ai.mit.edu>, "Dan Sugalski" <dan@sidhe.org>
To: "Oliver Steele" <steele@cs.brandeis.edu>
From: Terrence Brannon <metaperl@mac.com>
In-Reply-To: <015201c17ba2$d49e7f40$0f01000a@gatewaysolo>
Message-Id: <09BBAAEF-E7A7-11D5-B4E0-003065C2A10C@mac.com>
Content-Transfer-Encoding: 7bit
X-Mailer: Apple Mail (2.475)
Sender: owner-ll1-discuss@ai.mit.edu
Precedence: bulk


On Sunday, December 2, 2001, at 06:33 PM, Oliver Steele wrote:

> "Dan Sugalski" <dan@sidhe.org> writes:
>
>> I've been thinking that regexes would be really useful if they 
>> could be
>> extended out past the character level to the token level, so I 
>> could write
>> something like:
>>
>>     if (/(\{Adj})*\{Noun}/) {
>>       ...
>>     }
>>
>> to match a string that's got zero or more adjectives preceding a noun.
>

just use Parse::RecDescent and separate high-level from low-level 
concerns instead of trying to pack all desired functionality into 
the low-level engine.