[REBOL] An article on rebol ... Re:(2)

1999-10-20 Thread chuck
"When things get too stressful around here, we take a walk over to the tubs. It works every time,'' he said. /QUOTE Is it just based on one of older articles, to which author refers to, or just new info? I think the important question is, what is the temperature of the tubs? Too

[REBOL] interfacing to mysql

1999-10-20 Thread ralph
This is a pretty simple question. I want to write perform some tasks in Rebol that manipulate our Mysql databases. How can we interface with the database; i.e. pass it commands. Or do I have to wait for Rebol/command? For example: To list the databases on our server, I type 'mysqlshow' at the

[REBOL] mezzanine functions .... Re:(4)

1999-10-20 Thread ingo
Andrew, I'll try, but the rebol.org bot seems not to like me... I once got some scripts up, but wasn't able to update or send more. On Friday I can try web upload once again, maybe it'll work this time :-) Those were the words of [EMAIL PROTECTED]: Ingo wrote: Have you thought about

[REBOL] New chat room at rebol.org Re:(2)

1999-10-20 Thread jeff
Howdy Andrew: Anyone do server push with REBOL yet? :-) No, but I've got a UNIX shell script that generates server push HTML (it's in the Koala book). Do you want a copy of the script? I've gotten a shell script from netscape's page on

[REBOL] New chat room at rebol.org Re:(2)

1999-10-20 Thread jeff
I forgot to mention that though the chat room is unmoderated, it is still monitored. A record is kept of what people say.. just letting you all know so everyone can have informed consent. It's not meant as a big brother tactic, but just to

[REBOL] New chat room at rebol.org Re:(2)

1999-10-20 Thread jeff
Hi, Jeff, why does your email client add several spaces to the left of your email text? Like this: There's a quick and dirty REBOL chat room running [..] Why the gap? o Stylistic reasons. y u i

[REBOL] SV: [REBOL] Saving to a different directory

1999-10-20 Thread Micael . Gullmes
Hey Chuck, Try write %/D/nnet/html/file.html read http://www.dot.com/index.html or write to-file %"/D/nnet/html/file.html" read http://www.dot.com/index.html Brgds /Micael -Ursprungligt meddelande- Fran: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Skickat: den 20 oktober 1999 22:46

[REBOL] Error in source (2) Re:(2)

1999-10-20 Thread Russ
Bo, Well, it fails on my Win95 system in two versions! Note, you have to run it as a program, not from interactive command line to see the failure Luis is speaking of. It seems to be considering ' the beginning of a tag rather than an operator, and is balking at that. But I dunno how to tell

[REBOL] SV: [REBOL] Saving to a different directory Re:

1999-10-20 Thread chuck
Micael, I tried both of your suggestions on my siteloadertest.r and neither one worked. Both returned the same error (this is copy/pasted): Option1 syntax: write %/D/nnet/html/file.html read http://www.dot.com/index.html Option1 results: ** Access Error: Cannot open

[REBOL] interfacing to mysql Re:(2)

1999-10-20 Thread ralph
Thanks, Andrew! I've used rebol to generate files of SQL which I've then executed on my DBMS. REBOL/core works exceeding well in this sense, 'parse being so much easier to use than regex (especially when you don't sue regex every day). As far as interacting directly with your DBMS,

[REBOL] Just wierdness

1999-10-20 Thread bemerson
I'm trying to create an application to keep an eye on some email servers I have and alert me if they stop responding. It's working, but I'm going *crazy*! Try this from the Rebol prompt a1: [ a: "aaa" b: "bbb" ] a2: [ fox: "fox" box: "box" ] find a1 a == none find a2 box

[REBOL] New chat room at rebol.org Re:(3)

1999-10-20 Thread ddalley
On 20-Oct-99, [EMAIL PROTECTED] wrote: The options for making the chat room less cruddy seem to be: a piece of javascript or server push. Thinking about you Amiga users out there, as well as others, is javascript or server push commonly supported by most browsers? Hi, Jeff: Amiga

[REBOL] Just wierdness Re:

1999-10-20 Thread allenk
Hi Brad, I'm having trouble understanding what you are trying to do here. a1: [a: "aaa" b: "bbb"] Are you trying to assign a to "aaa" and b to "bbb" ? this is how rebol sees this block a1: [a: "aaa" b: "bbb"] == [a: "aaa" b: "bbb"] a1/1 == a: type? a1/1 == set-word! a1/2 == "aaa" type?

[REBOL] Just wierdness Take 2 Re:

1999-10-20 Thread bemerson
The problem is that I'm working with things I don't understand and I can't find good documentation. I found some code to connect to an email server. Something like this: -- x: [ scheme: 'pop user: "srad" pass: "portw"

[REBOL] Is it possible to recieve part of an email?

1999-10-20 Thread dm98411
Hello list, I am working on a script to give me a list of emails above a given size, and give me an option to delete without retrieving. Idealy some part of the actual message should also be read for inspection. My own best bet was copy/part mailbox, but I get an error like "find expected

[REBOL] Just wierdness Take 2 Re:(2)

1999-10-20 Thread icimjs
Hi Bard, Aha. you wrote: The problem is that I'm working with things I don't understand and I can't find good documentation. I found some code to connect to an email server. Something like this: -- x: [ scheme: 'pop user: "srad"

[REBOL] Re: A simple question Re:

1999-10-20 Thread ejolson
Hello, On 18-Oct-99, [EMAIL PROTECTED] wrote: As a general rule, all arguments for REBOL functions follow the function word. + and - and a few others are undocumented exceptions, provided by REBOL designers to accommodate people who prefer to use the "operator-between-the-arguments" format

[REBOL] Capturing TCP/IP conversation

1999-10-20 Thread mike . yaunish
After looking at the proxy.r program on the Web site, I realized that I have a need for something similar to this to track down problems I am having with printing to an IP printer. Here's my question: Is it possible to do the same thing as proxy does for Web traffic but change it to IP addresses

[REBOL] new REBOL.org chat feature. Re:

1999-10-20 Thread icimjs
Hi Jeff, Okay, so I stole a second or two today to tweak the look of the chat room. The chat room is not being advertised on rebol.org's index? What's the URL again? TIA, Elan

[REBOL] mezzanine functions .... Re:(6)

1999-10-20 Thread Andrew . M . Grossman
--- [EMAIL PROTECTED] wrote: It doesn't like me or my scripts either! :-/ I think it requires all lines to be shorter than 80 characters? --- end of quote --- The Web Bot doesn't have this problem, but you must be using a browser that it thinks can upload files properly. Netscape and

[REBOL] New chat room at rebol.org Re:(3)

1999-10-20 Thread Al . Bri
Ah, but can you write it in a spiral? ^_^ Andrew Martin [EMAIL PROTECTED] http://members.xoom.com/AndrewMartin/ Online @ 33,600 Baud! -- -- From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: [REBOL] New chat room at rebol.org Re:(2) Date: Thursday, 21