[REBOL] finding, then using it.. Re:(2)

1999-12-23 Thread hmf
thanks, I'm digesting this. I tend to put commands in the wrong order. isn't first parse (or would that be 'first parse for the list?)--wouldn't that happen last? how can I remember the correct order of things? think in reverse? [EMAIL PROTECTED] wrote: caveman: first parse copy find/last

[REBOL] logical value referencing ... Re:(10)

1999-12-23 Thread lmecir
Hi, 1) Instead of saying: "the value/string/block/whatever, 'a is assigned to" I prefer shorter: "A" , simply because I don't like the waste of the (human) bandwidth. 2) You probably didn't notice, but I have proven (not only stated), that the statement: "In Rebol all the literal

[REBOL] REBOL in HTML file

1999-12-23 Thread carloslorenz
Hello Rebols The documentation of REBOL says that REBOL can be embedded into other types of text including HTML files I'm trying to make the following work out but have no success because I see nothing printed on the browser. Do I have to first put REBOL to run on local machine? Do I have to

[REBOL] REBOL in HTML file Re:

1999-12-23 Thread icimjs
Hi Carlos. I don't know the URL for your webpage that embeds REBOL code. Let's say its http://carlo.rebol-programmer.com/first-try.html If you fire up REBOL and say do http://carlo.rebol-programmer.com/first-try.html Then REBOL will print out: "This is it! REBOL is much better than

[REBOL] REBOL in HTML file Re:

1999-12-23 Thread Al . Bri
Carlos wrote: The documentation of REBOL says that REBOL can be embedded into other types of text including HTML files. I'm trying to make the following work out but have no success because I see nothing printed on the browser. Do I have to first put REBOL to run on local machine? Do I have to

[REBOL] logical value referencing ... Re:(12)

1999-12-23 Thread icimjs
Hi Ladislav, When I read your explanation on why you oppose self modifying code, I thought, hey the guy has a good point to make. It's not all black and white, but still... However, the kind of code that has been identified as self-modifying and the proposals to debunk the code both fail to

[REBOL] CGI Re:

1999-12-23 Thread sterling
Try this... you just need to write out and read in as binary to get the file read and sent properly. Sterling #!/usr/local/bin/rebol -csq REBOL [] file: read/binary %test.xls ; file is 17920 bytes long prin [ {Content-Type: application/octet-stream; name="file"} newline

[REBOL] REBOL in HTML file Re:(2)

1999-12-23 Thread Petr . Krenzelok
[EMAIL PROTECTED] wrote: Unfortunately, REBOL doesn't run on browsers yet. No "plug-in" (needed to run languages the browser maker hasn't thought to include) has been announced by the REBOL crew, yet. Not true: http://www.rebol.com/whyrebol.html Of course, this doesn't help you

[REBOL] REBOL in HTML file Re:(2)

1999-12-23 Thread peoyli
How about this CGI-script solution to embed REBOL into HTML ? Installation: Put the cgi script anywhere from where you can run cgi-scripts Usage: http://the.server.you.are.using/script-location/rebol.cgi/full-path-to/test.rhtml In the .rhtml file, you can give some parameters to the cgi

[REBOL] essay/1

1999-12-23 Thread joel . neely
An Essay on the REBOL Series for the Busy Non-REBOL Programmer THE SERIES PSEUDOTYPE REBOL uses typed data, as opposed to typed variables. A REBOL word can refer to any legal REBOL value. However, REBOL operations (operators, primitive functions, mezzanine functions, and user- defined

[REBOL] essay/2

1999-12-23 Thread joel . neely
TRANSLATING REBOL expressions must be "translated" (as with 'do or 'load) before all other activity. Barring erors, translating takes in text and produces one or more entities. Translating a series involves: * translating the values of the series (a potentially recursive process for block

[REBOL] essay/3

1999-12-23 Thread joel . neely
INDEX? The 'index? function returns (a natural number that represents) the current position attribute of the series. In the last example, the index of a's value and the index of b's value are both 1. a: "1234" == "1234" index? a == 1 index? "1234" == 1 The index is

[REBOL] essay/4

1999-12-23 Thread joel . neely
APPEND The 'append function takes a series and a value as arguments. It modifies the sequence referenced by the first argument, copying the value of the second argument onto its end (increasing the length of the sequence as a consequence). The value of ANY series that refers to this sequence is

[REBOL] Self modifying code Re:(4)

1999-12-23 Thread t_degrav
Hi Elan, if I may comment on this one... [EMAIL PROTECTED] wrote: I cannot believe that we have been so drastically warned of the dire dangers lurking in self modifying code, only to be shown that by moving a local word, links, which references a block, to the global context, (about three

[REBOL] Nobody wants to play with me :-(

1999-12-23 Thread bo
As nobody else appears to be entering holiday demos, I am entering one more :-) This is actually a proof of concept for a series of text-gui.r functions I have written (needed for several upcoming work-related projects). (Robert Muensch also commented on doing something like text-gui.r,

[REBOL] String literals

1999-12-23 Thread joel . neely
It took me a while to recognize that string literals in REBOL don't mean what they do in other languages. In another language (Perl, for example) the statement $a = ""; is translated into instructions that ask the interpreter to create a new, empty string, then store a reference to that

[REBOL] Series essay (to follow) Re:

1999-12-23 Thread icimjs
Hi Joel, At 04:08 PM 12/23/99 -0600, you wrote: I've had a bit of "down" time, so I have been able to finish writing down some notes on what I believe to be a useful way to understand series behavior in REBOL. I'm very curious. (Of course, I don't recommend getting the flu as a standard

[REBOL] REBOL in HTML file Re:(3)

1999-12-23 Thread Al . Bri
Andrew wrote: Unfortunately, REBOL doesn't run on browsers yet. No "plug-in" (needed to run languages the browser maker hasn't thought to include) has been announced by the REBOL crew, yet. pekr wrote: Not true: http://www.rebol.com/whyrebol.html whyrebol: Additional free products

[REBOL] Order-of-Evaluation

1999-12-23 Thread donm
As a new user I have wasted much time over the two different evaluation orders to use. * a manual quote:" Arguments are evaluated from left to right." * and another:"When multiple functions are cascaded in this fashion, their results move from right to left."