[REBOL] eggdrop (tcl)

2000-12-31 Thread Richard Zimmerman

I was wondering what sort of measures would i have to take for
interopability with an eggdrop bot?  I want to write a rebol script that
will be able to check the availability of an ftp and report that to an
eggdrop.

theturtle

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.




[REBOL] Re: Error message

2000-12-31 Thread Gabriele Santilli

Hello Andrew!

On 30-Dic-00, you wrote:

 AM Your script might have an un-named object, a 'use block
 AM inside a object that hides some words, or you might be
[...]

That bug should have been fixed...

Regards,
Gabriele.
-- 
Gabriele Santilli [EMAIL PROTECTED] - Amigan - REBOL programmer
Amiga Group Italia sez. L'Aquila -- http://www.amyresource.it/AGI/

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.




[REBOL] Re: Rebol mode for Emacs

2000-12-31 Thread Dan Rolander

Thanks Allen. I've got it and it works great. Excellent job Marcus!

Dan
- Original Message -
From: "Allen Kamp" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, December 30, 2000 7:40 PM
Subject: [REBOL] Re: Rebol mode for Emacs


 Marcus's updated version is available from REBOL ORG.
 http://rebol.org/rebol.el

 The old one is still there as http://rebol.org/oldrebol.el

 Cheers,

 Allen K


 - Original Message -
 From: "Dan Rolander" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Sunday, December 31, 2000 4:45 AM
 Subject: [REBOL] Re: Rebol mode for Emacs


  Hey Marcus,
 
  I finally figured out how to use rebol.el with emacs and it seems pretty
  cool. But I've been trying to get your updated el file and I can't get
  access to your web page. I get this error:
 
  Forbidden
  You don't have permission to access /~d4marcus/r/ on this server.
 
  Dan
  - Original Message -
  From: "Marcus Petersson" [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Sunday, December 24, 2000 11:18 AM
  Subject: [REBOL] Re: Rebol mode for Emacs
 
  [stuff deleted]
 
  
   Btw, I updated the file slightly now. The indentation fix is included
of
   course, but font-lock also works better now. Previously it only
 recognized
   every other keyword of the same type, for example in "reduce reduce"
 only
   one of the the words were colored. This happened because it required
 each
   word to be pre- and proceeded with a space or tab, otherwise it would
 for
   example match "skip" in "select/skip", or "read" in
"my-read_function",
   because "- _ /" etc wasn't considered as word seperators. It was a
 "damned
   if I don't - damned if I do" situation, but I fixed it by changing the
   syntax table. So... Anyway, it works ok now. :-)  Still located at:
  
   http://www.dtek.chalmers.se/~d4marcus/r
  
   Merry Christmas!
  
   Marcus
 
 
  --
  To unsubscribe from this list, please send an email to
  [EMAIL PROTECTED] with "unsubscribe" in the
  subject, without the quotes.
 
 

 --
 To unsubscribe from this list, please send an email to
 [EMAIL PROTECTED] with "unsubscribe" in the
 subject, without the quotes.

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.




[REBOL] Re: Changing the original 'parse string

2000-12-31 Thread chaz

Sounds like we've got all the pieces to make a Turing machine.

text: read http://www.ams.org/new-in-math/cover/turing.html

rule: [some [
a: "tape" b: (change/part a "block" b) |
a: "square" b: (change/part a "word" b) |
a: "head" b: (change/part a "parse cursor" b) |
a: "read/write head" b: (change/part a "parse cursor" b) |
a: "left-most bit of the first argument" b: (change/part a "beginning of
the first word" b) |

skip ]
]
parse text rule

save %turing.html text


chaz


At 07:12 AM 12/31/00 +1300, you wrote:
Brett wrote:
 With both bits of functionality one can do really really bizarre functions
in parse.

Like parse-ing the input string multiple times, or checking for the
existence of a pattern further along the string and returning to an earlier
point, and so on.

Andrew Martin
ICQ: 26227169 http://members.nbci.com/AndrewMartin/
--


-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.



-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.