[REBOL] un subscribe

2000-02-10 Thread kevin . whitefoot

[REBOL] How can i get rebol/view Re:(3)

2000-02-10 Thread Al . Bri
Gabrielle wrote: > > REBOL/View is more than just a GUI frontend to REBOL. You will be amazed when you'll see it. :-) kolla wrote: > This doesn't make sense to me. > > Will it be like "something you run inside a window" like f.ex Oberon? > > Or will it be integrated into the graphical environment

[REBOL] How can i get rebol/view Re:(3)

2000-02-10 Thread Petr . Krenzelok
[EMAIL PROTECTED] wrote: > On Thu, 10 Feb 2000 [EMAIL PROTECTED] wrote: > > > Hello [EMAIL PROTECTED]! > > > > On 10-Feb-00, you wrote: > > > > k> Any word on what toolkits/graphical library system will be > > k> used for the various versions? > > > > k> I'm curious, since X and amiga have s

[REBOL] Re: How can i get rebol/view Re:

2000-02-10 Thread kolla
On Thu, 10 Feb 2000 [EMAIL PROTECTED] wrote: > Hello [EMAIL PROTECTED]! > > On 10-Feb-00, you wrote: > > k> Any word on what toolkits/graphical library system will be > k> used for the various versions? > > k> I'm curious, since X and amiga have so many of them. > > None of them, actually.

[REBOL] problem with sort a file Re:(3)

2000-02-10 Thread Al . Bri
Try this: write %foo.txt {2-Feb-2000 1 2 1-Feb-2000 2 1 6-Feb-2000 3 5 24-Feb-2000 4 6} Lines: read/lines %foo.txt Block: make block! 100 foreach Line Lines [ append/only Block load Line ] print mold Block sort Block print mold Block delete %foo.txt foreach Line Block [ write/app

[REBOL] REBOL Web site update

2000-02-10 Thread Al . Bri
The REBOL web site front page has been updated. It shows more of REBOL crew's plan. Andrew Martin ICQ: 26227169 http://members.xoom.com/AndrewMartin/ -><-

[REBOL] ANSI stuff..

2000-02-10 Thread peoyli
Comments, optimizations, ideas, fixes etc. welcome (actually another set of functions for my wannabe-IRC-client)... /PeO REBOL [ Title: "ANSI colors" ] escape: func [parm [string!]][join "^(1B)[" parm] get-scr-dims: func [ "Stores the console dimensions in screen-size block (heigh

[REBOL] What Type Of Apps Are You Writting? Re:

2000-02-10 Thread peoyli
I'm working on a for-now text based IRC client, will eventually support the full ctcp2 specification (does handle VERSION,TIME,PING,CLIENTINFO,ACTION and SOURCE for now). I will probably make a GUI for it with REBOL/View when it is available for the Amiga. /PeO > What type of applications are

[REBOL] problem with sort a file Re:(3)

2000-02-10 Thread larry
Hi Tiana When you read in the file using READ/LINES each entry in the resultiing block is a string. When you sort the block REBOL sorts the strings lexicographically, so lines that that start with the character "2" will come before lines that start with the character "6". If you want them to sor

[REBOL] problem with sort a file Re:(4)

2000-02-10 Thread Tiana . Zhang
Mike, I agree with your opinion, but when I tried your script, it gave me the following msg: ** Script Error: Out of range or past end. ** Where: to-date first parse a none Any idea? OR is that the problem of my foo1.txt? Thanks a lot. Tiana Reply Separator_

[REBOL] problem with sort a file Re:(3)

2000-02-10 Thread mjelinek
"Sectional sorting" goes over my head. Your file is being sorted according to the ascii values. I.e. you haven't told it to sort according to a DATE. Try this: file-blk: read/lines %foo1.txt sort/compare file-blk func[a b][(to-date first parse a none) > (to-date first parse b none)] write/lines %

[REBOL] problem with sort a file Re:(2)

2000-02-10 Thread Tiana . Zhang
Hi, Mike Thanks for your reply. I use /skip because I thought it is for sectional sorting. in my file, each record has 4 sections(e.g, 1-Feb-2000 bla bla bla). I just tried without skip, it gave me the same result though. I guess this is might because of I read it from a file? I use the follo

[REBOL] read-io and write-io

2000-02-10 Thread brian . hawley
Hey all, I know that read-io and write-io are supposed to be low-level and undocumented, but I see them all the time in web code so I'll ask anyways... What is the meaning of the integer returned by *-io? How are they supposed to behave when passed negative lengths? Do they only work on networ

[REBOL] in a form Re:

2000-02-10 Thread icimjs
Hi John, use the input function. When you want to collect the posted data just say posted-data: make object! decode-cgi input At 06:34 PM 2/9/00 -0600, you wrote: >I am trying to pass variables to Rebol from a HTML page -no problem doing >that so far. > >Noah and I worked out the form so that

[REBOL] problem with sort a file Re:

2000-02-10 Thread mjelinek
I'm not sure why you are using sort/skip. It seems to me, if date is the first column of each record (line), you could use sort without refinements. To sort on only the first character of a series of strings, use: sort/compare f func [a b] [a/1 > b/1] BTW you didn't really have a space between S

[REBOL] What Type Of Apps Are You Writting? Re:

2000-02-10 Thread mjelinek
I may use it to perform database field manipulation (with flat file records), but right now I'm just writing a game to familiarize myself with the language. BTW I've hit the ceiling for variable space on Windows NT and it will not even load all of the functions, so be careful if you're using lots

[REBOL] Re: How can i get rebol/view Re:

2000-02-10 Thread giesse
Hello [EMAIL PROTECTED]! On 10-Feb-00, you wrote: k> Any word on what toolkits/graphical library system will be k> used for the various versions? k> I'm curious, since X and amiga have so many of them. None of them, actually. REBOL/View is more than just a GUI frontend to REBOL. You will be

[REBOL] problem with sort a file

2000-02-10 Thread Tiana . Zhang
Hello, I tried to sort a file in a reverse order according to the date, which is the first column of the file. e.g foo.txt looks like this: 1-Feb-2000 bla bla bla 9-Feb-2000 bla bla bla 3-Feb-2000 bla bla bla .. My script is : file: read/lines %foo.txt file2: sort /skip file 4 write/line %

[REBOL] [REBOL] Imbedding and Extending Rebol Re:(2)

2000-02-10 Thread ralph
And the Mac interface concept came from Xerox anyway. but, there are always historical and even sometimes hysterical precedents. --Ralph > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 10, 2000 2:26 PM > To: [EMAIL PROTECTED] > Subjec

[REBOL] WebCam CGI script Re:

2000-02-10 Thread ddalley
Hello, Rebols: On 10-Feb-00, [EMAIL PROTECTED] wrote: > A couple days ago someone had mentioned wanting to use a webcam with a > dynamic IP address... Following is a CGI script I use (along with a pair of > simple scripts on my machine to update a file containing my address using > rebol FTP

[REBOL] [REBOL] Imbedding and Extending Rebol Re:

2000-02-10 Thread fuchs
FWIW, I certainly don't mean to start a thread on this and I may be mistaken but...I believe that the Mac debuted in 1/84 and the Amiga 1000 appeared in 1/85. [EMAIL PROTECTED] wrote: > Hi All: > Imitation is the sincerest form of flattery, right? In terms > of OS interfaces (As I see it

[REBOL] [REBOL] Imbedding and Extending Rebol

2000-02-10 Thread tjohnson
Hi All: Imitation is the sincerest form of flattery, right? In terms of OS interfaces (As I see it, anyway) Macintosh followed Amiga's lead (and I think Carl S. was in on that). Windows followed Macintosh, and Linux followed Windows. Having said that, look at Python: With Python, you c

[REBOL] REMOVE Re:

2000-02-10 Thread jennifer
Please send an email to [EMAIL PROTECTED] with un subscribe in the subject line, and no text in the body. Also, you must send the email from the same address that you had subscribed with. If you are still unable to remove yourself, please let me know by sending me an email off-list to [EMAIL

[REBOL] WebCam CGI script Re:

2000-02-10 Thread kasperengberg
>A couple days ago someone had mentioned wanting to use a webcam with a >dynamic IP address... Following is a CGI script I use (along with a pair of >simple scripts on my machine to update a file containing my address using >rebol FTP) The webcam software I'm using is called WebCam2000 (it's for

[REBOL] REMOVE

2000-02-10 Thread ldenn142
REMOVE ME FROM THIS LIST IMMEDIATELY, IF HAVE BEEN SWAMPED BY YOUR EMAILS    

[REBOL] spaces in block Re:

2000-02-10 Thread mjelinek
Tiana, Try this to print out your block: >> print mold reduce blk you get: >> [1 "" 2 "" 3] - Michael Jelinek -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 10, 2000 6:25 AM To: [EMAIL PROTECTED] Subject: [REBOL] spaces in block

[REBOL] What about Rebol/Command? Re:

2000-02-10 Thread jbone
[EMAIL PROTECTED] wrote: > And what do you think about a Rebol extension language tool? > I think Rebol would make a fine extension language. The major problem all extension language integrators face is how to glue to language to the application's core datastructures. Series are a simple yet

[REBOL] "static" variable Re:

2000-02-10 Thread joel . neely
Script or object... ? [EMAIL PROTECTED] wrote: > > Does anyone know whether Rebol has such a kind of variable: you > initialize this variable at the first time you run the script. > In this script, the variable will be modified to some value. If > you run this script again, this variable will pr

[REBOL] [REBOL] spaces in block Re:

2000-02-10 Thread matee
When printing a block, a space is placed in between every block item. Type 'print rejoin blk' to get rid of them, and the print the lot as a string. Cheers -- >Från: [EMAIL PROTECTED] >Till: [EMAIL PROTECTED] >Ämne: [REBOL] spaces in block >Datum: tor 10 feb 2000 15.25 > > Hi, I found

[REBOL] What about Rebol/Command?

2000-02-10 Thread cesar
I'd like to see Rebol as an extension language I can use in my app, just like VBA or the scheme extension language of Linux, but currently it doesn´t seem to evolve to providing such a services. For example I´d like to run other programs from Rebol using it as a command interpreter ( very much po

[REBOL] spaces in block Re:

2000-02-10 Thread Petr . Krenzelok
[EMAIL PROTECTED] wrote: > Hi, I found a weird thing about the block, can anyone help me? > > I wrote a script: > > blk: make block! 200 > space: "" ; 4 spaces > blk: [ 1 space 2 space 3] > print blk > > after ran it, the result is the following: > 1 2 3 > You can obviously see th

[REBOL] Re: How can i get rebol/view Re:

2000-02-10 Thread kolla
On Thu, 10 Feb 2000 [EMAIL PROTECTED] wrote: > Just keep checking the Rebol site..it is worth the wait.. Any word on what toolkits/graphical library system will be used for the various versions? I'm curious, since X and amiga have so many of them. -- kolla

[REBOL] spaces in block

2000-02-10 Thread Tiana . Zhang
Hi, I found a weird thing about the block, can anyone help me? I wrote a script: blk: make block! 200 space: "" ; 4 spaces blk: [ 1 space 2 space 3] print blk after ran it, the result is the following: 1 2 3 You can obviously see that the space between each number is 6 instead of

[REBOL] How can i get rebol/view Re:(3)

2000-02-10 Thread allenk
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 10, 2000 11:19 PM Subject: [REBOL] How can i get rebol/view Re:(2) > > > [EMAIL PROTECTED] wrote: > > > Hi Gruss, > > > > It is currently in a limited beta at the moment, > > the broader

[REBOL] How can i get rebol/view Re:(2)

2000-02-10 Thread Petr . Krenzelok
[EMAIL PROTECTED] wrote: > Hi Gruss, > > It is currently in a limited beta at the moment, > the broader beta distribution has been hinted at for next week. > > Just keep checking the Rebol site..it is worth the wait.. > Are you sure the group is closed? Those who wrote they want to test view,

[REBOL] How can i get rebol/view Re:

2000-02-10 Thread allenk
Hi Gruss, It is currently in a limited beta at the moment, the broader beta distribution has been hinted at for next week. Just keep checking the Rebol site..it is worth the wait.. Cheers, Allen K - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday,

[REBOL] How can i get rebol/view

2000-02-10 Thread VoToNi
Can't find it on the webpage. Peoples here are talking about. how can i test it? Gruss Volker

[REBOL] Rebol for NNTP downloading

2000-02-10 Thread A . J . Hedges
Has anybody written anything in the way of an offline reader for news messages in Rebol? What I'm after is something that keeps a list of newsgroups, and downloads any messages from those groups it hasn't seen before. Obviously it will need to keep a persistant record of which messages have been d

[REBOL] WebCam CGI script

2000-02-10 Thread deadzaphod
A couple days ago someone had mentioned wanting to use a webcam with a dynamic IP address... Following is a CGI script I use (along with a pair of simple scripts on my machine to update a file containing my address using rebol FTP) The webcam software I'm using is called WebCam2000 (it's for

[REBOL] in a form Re:

2000-02-10 Thread deadzaphod
here's the code I currently use in my CGI scripts to handle POST data if system/options/cgi/request-method = "POST" [ buffer: make string! (system/options/cgi/content-length + 10) read-io system/ports/input buffer system/options/cgi/content-length responce: make object! decode-cgi buffer