[REBOL] Re: Newbie query on array indexing

2001-11-21 Thread Tim Johnson
Hi John > Greg, Brett, > > Thanks for your suggestions and advice. While Rebol is certainly powerful it > seems to have plenty of quirks waiting to trip the unwary - maybe it gets > better the more you get into it! I will guarantee that it does get better Here's a couple of observations All

[REBOL] Re: Newbie query on array indexing

2001-11-21 Thread Gregg Irwin
Hi John, << While Rebol is certainly powerful it seems to have plenty of quirks waiting to trip the unwary - maybe it gets better the more you get into it! >> I think it's like learning to ride a motorcycle. At first you take it slow because you know you don't know what you're doing. After a wh

[REBOL] Re: Another gorim server to try ...

2001-11-21 Thread Graham Chiu
I have made a small change to the Gorim2 client to allow you to select which chat server to use. As of this moment, Xrebol, Compkarori.com, and Rebolcz are all running, but the latter crashes the client most likely due to some problem with the new version of Rugby. sites/compkarori/gorim2 or

[REBOL] Re: ftp reading an empty folder

2001-11-21 Thread sterling
I looked up your feedback ticket and the notes say it was working in the current version of /View. Is that correct or are you still having problems?... just trying to get a handle on where things stand. Sterling > hum, I guess Its a question of the way some ftp servers respond to empty > dirs

[REBOL] Re: ftp reading an empty folder

2001-11-21 Thread sterling
What kind of server are you contacting? i.e. Unix, Windows, ... ?? Doe it fail on all servers or just a specific one? Max had a problem some time ago, which was a failure between REBOLand the Windows FTP server, and I thought it had been fixed in the current version of /View. If it fails in /Vi

[REBOL] Re: Newbie query on array indexing

2001-11-21 Thread John R
Greg, Brett, Thanks for your suggestions and advice. While Rebol is certainly powerful it seems to have plenty of quirks waiting to trip the unwary - maybe it gets better the more you get into it! I still could not get the following type of array element assignment reference to work (this was m

[REBOL] Re: Ann Rugby 4.3

2001-11-21 Thread Graham Chiu
> ->> do http://www.rebol.cz/~asko/gorim-rebolcz.r > ** Script Error: http-result-available? expected index > argument of type: > integer > ** Where: process-event-queue > ** Near: not http-result-available? ticket > ->> > > I just replaced rugby on client and server side with > latest version .

[REBOL] Re: tailfunc

2001-11-21 Thread Ladislav Mecir
Hi, <> (...) i changed the name of loop in stop to reflect new meaning and to save a 'not or two: stop: false ... either stop [ stop: false ] [ until [ stop: true error? set/any 'result do (does body) stop ] stop: false return get/any 'result ] <> ind

[REBOL] Re: view & multiply effect :-(

2001-11-21 Thread Anton Rolls
I spent quite a few hours trying to simulate alpha channel effect using multiply :) I did not find a way. We could do it if there was some way to add two images using built in effects. But I am not worried now since Holger has implemented alpha channels for the next release. :) Anton. > I'm de

[REBOL] Re: Ann Rugby 4.3

2001-11-21 Thread Petr Krenzelok
Graham Chiu wrote: >Maarten, > >Is the new version of Rugby compatible with previous >versions? I am just wondering what happens when client and >server run different versions. > >-- >Graham Chiu > re new bugs - namely: ->> do http://www.rebol.cz/~asko/gorim-rebolcz.r ** Script Error: http-res

[REBOL] Re: Ann Rugby 4.3

2001-11-21 Thread Petr Krenzelok
Graham Chiu wrote: >Maarten, > >Is the new version of Rugby compatible with previous >versions? I am just wondering what happens when client and >server run different versions. > I don't really know - although I repaired found bug, I was not able to connect anymore, or I got errors later when

[REBOL] Re: Ann Rugby 4.3

2001-11-21 Thread Graham Chiu
Maarten, Is the new version of Rugby compatible with previous versions? I am just wondering what happens when client and server run different versions. -- Graham Chiu -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the qu

[REBOL] REBOL & MYSQL using DBRIDGE

2001-11-21 Thread mike_berrisford
Changing the port from 5571 to 3306 in both dbridge.r and dbridge.java means i can now connect to the database, i think. But i get no response when i issue any SQL queries, ah, so close and yet so far. Happy Thanksgiving to you all. gobble gobble. -- To unsubscribe from this list, please sen

[REBOL] Re: Flash tech? Was Re: Re: (No subject)Date: Tue, 20 Nov 2001 17:20:09 -0500

2001-11-21 Thread Petr Krenzelok
Ammon Johnson wrote: >- Original Message - >From: "Cyphre" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Wednesday, November 21, 2001 10:52 AM >Subject: [REBOL] Re: Flash tech? Was Re: Re: (No subject)Date: Tue, 20 Nov >2001 17:20:09 -0500 > > >>Hi Jason, Donald and all, >> >>I'm ev

[REBOL] Re: Newbie query on array indexing

2001-11-21 Thread Brett Handley
Hi, First off creating the array "example-array" is done like this: example-array: array 10 This gives you 10 NONEs in a block. To get an array of 10 zeroes use: example-array: array/initial 10 0 And a side issue (heads up). You are going to get caught if you think you will get ten di

[REBOL] Re: tailfunc

2001-11-21 Thread Romano Paolo Tenca
Hi Ladislav, > It really doesn't work. See this: > > f: tail-func [first second] [ > print [first second] > either second = 1 [first] [ > f 1 - first second - 1 > ] > ] > f 1 400 I didn't work (i think) because I inverted true and false: here it is the working version, i chan

[REBOL] Re: FYI: Once was lost but now is found (Editor window in view)

2001-11-21 Thread Ammon Johnson
- Original Message - From: "Jason Cunliffe" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 20, 2001 10:57 PM Subject: [REBOL] Re: FYI: Once was lost but now is found (Editor window in view) > > LOL! You & I could relate a lot I am sure! BUT I prefer CorelDRAW Suit

[REBOL] Re: Newbie query on array indexing

2001-11-21 Thread Gregg Irwin
Hi John, << What is best method to reference array elements using a variable subscript value. E.g. I was trying to stuff values into a 100 entry array based on a computed subsript like this:- arrcodes: array 100 "" subscript: (=computed value 1 to 100) arrcode/[subscript]: "Code stored for nn"

[REBOL] Re: Flash tech? Was Re: Re: (No subject)Date: Tue, 20 Nov 2001 17:20:09 -0500

2001-11-21 Thread Ammon Johnson
- Original Message - From: "Cyphre" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, November 21, 2001 10:52 AM Subject: [REBOL] Re: Flash tech? Was Re: Re: (No subject)Date: Tue, 20 Nov 2001 17:20:09 -0500 > Hi Jason, Donald and all, > > I'm everyday working with Macromedia

[REBOL] Re: Dave Winer talking about web apps

2001-11-21 Thread Gregg Irwin
Hi Jason, I liked the mention of turtle graphics. Maybe because not too long ago (how could it be, as I've only been REBOLing for a few months now) I cooked up a basic Logo dialect and interpreter in REBOL. :) --Gregg -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED]

[REBOL] Re: windows time-savers

2001-11-21 Thread Ammon Johnson
That is *cute* but that is all that it seems to be. Not to be critical, but it seems that if they were looking to improve file browsing they might include some graphical way to set the shortcuts. ;-( Correct me if I am wrong, but I don't see any way to browse to the desired folder. Enjoy!! Ammo

[REBOL] Newbie query on array indexing

2001-11-21 Thread John R
What is best method to reference array elements using a variable subscript value. E.g. I was trying to stuff values into a 100 entry array based on a computed subsript like this:- arrcodes: array 100 "" subscript: (=computed value 1 to 100) arrcode/[subscript]: "Code stored for nn" John -- T

[REBOL] Re: mail weirdness

2001-11-21 Thread Jason Cunliffe
> Am I the only obvserving extremely slow mail tranfers with the rebol list... hmm... I just timed my last message sent to list: 3 mins ./Jason -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.

[REBOL] Re: windows time-savers

2001-11-21 Thread Ammon Johnson
Dang! that is just anoying. They need to hurry with the NT version! Enjoy!! Ammon - Original Message - From: "Jason Cunliffe" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, November 21, 2001 1:33 PM Subject: [REBOL] Re: windows time-savers > > http://www.protonfx.com/dir

[REBOL] Re: windows time-savers

2001-11-21 Thread Jason Cunliffe
2 mins ago I stumbled on this: windows/start + r !! ..perfect when the last you ran was REBOL [and it crashed] :-) ./Jason -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.

[REBOL] Dave Winer talking about web apps

2001-11-21 Thread Jason Cunliffe
http://scriptingnews.userland.com/backissues/2001/11/20#hypercardAndTheWeb and http://scriptingnews.userland.com/backissues/2001/11/19#hypercardMore ./Jason -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.

[REBOL] Re: mail weirdness

2001-11-21 Thread Ammon Johnson
No, not at all! I have been experiencing slow ML for weeks now, it is just a part of life for me. It is interesting to see that I will sometimes recieve my mails imediately after I post them, but more frequently I get a reply from someone on the list before I ever see the message I posted! ;-)

[REBOL] Re: Ann Rugby 4.3

2001-11-21 Thread Maarten Koopmans
Hi Petr, The polling mechanism is due to firewalls. In Rugby you can have Rebol processes that are client AND server in Rebol/View, so your scenario is easily implemented then. IF your company's firewall allows both ingoing AND outgoing http traffic (or TCP for that matter) of course. It is *not

[REBOL] Re: a bug??? Re: ANN: rugby 4.3

2001-11-21 Thread Maarten Koopmans
You are right. I accidentally FTPĂ©d the wrong version. It is on my laptop (which is at work ;-( I'll fix and update it tomorrow. The last version is still available on www.vrijheid.net --Maarten -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in

[REBOL] Highfun

2001-11-21 Thread Ladislav Mecir
Hi all, I had to repair the Refined function, it still contained a bug. Sorry for any inconveniences. Cheers Ladislav -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.

[REBOL] mail weirdness

2001-11-21 Thread Maxim Olivier-Adlhoch
Hi everyone, Am I the only obvserving extremely slow mail tranfers with the rebol list... I just received a mail I sent at 8h00 AM (it is now 3h30 PM!) I've also received some mails in the wrong order... just wondering?! -MAx -- To unsubscribe from this list, please send an email to [EMAI

[REBOL] REBOL & MYSQL using DBRIDGE.

2001-11-21 Thread mike_berrisford
Using "do %dbridge.r" in Core/2.5 returns the protocol loaded message, under Desktop/console, nothing is returned. Thanks for the suugestion to use DocKimbels mysql protocol, it works great. Using the mysql protocol, db: open mysql://username:password@localhost/mysql is all that is needed.

[REBOL] Re: windows time-savers

2001-11-21 Thread Jason Cunliffe
> http://www.protonfx.com/dirkey > > this little tool inserts itself into ANY os browser and lets you define 10 > favorite folders. thanks I use http://www.cottonwoodsw.com/fx95summ.html [Win95/98 only, but NT/2000 in the works] On Mac I used something similar but can't remember its name. indis

[REBOL] Re: view indirection

2001-11-21 Thread Reboliste amateur
Wow ! It tooks Rebol almost seven minutes to throw it up on my Pentium 200 Mhz. Thanks for this valuable lesson. Patrick - Original Message - From: "Ingo Hohmann" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, November 21, 2001 4:27 PM Subject: [REBOL] Re: view indirection

[REBOL] windows time-savers

2001-11-21 Thread Maxim Olivier-Adlhoch
Hello, a few of you guys shared your favorites time savers... well, here is mine... I discovered this a month ago and wonder how I ever lived without it! visit http://www.protonfx.com/dirkey this little tool inserts itself into ANY os browser and lets you define 10 favorite folders. Ctrl-Alt-

[REBOL] Re: tailfunc

2001-11-21 Thread Ladislav Mecir
Hi Romano, It really doesn't work. See this: f: tail-func [first second] [ print [first second] either second = 1 [first] [ f 1 - first second - 1 ] ] f 1 400 The set-word skip is in accordance with the way how Help (from RT) is written, that is all (future compatibility?).

[REBOL] leviatated

2001-11-21 Thread Jason Cunliffe
"Donald Dalley" <[EMAIL PROTECTED]> wrote: > > object paradigm: nested Flash movie clips each of which have their own > > timeline. [goodexample: http://www.levitated.net/ ] > > That's it? ;^( Hi Donald, thanks for the ballast/balance:-) Sorry you didn't like it... it either spirit or content

[REBOL] Re: ANN: rugby 4.3

2001-11-21 Thread Chris Double
HttpHost will enable you to use Rebol behind an NTLM proxy: http://www.htthost.com Chris. >>> [EMAIL PROTECTED] 11/22/01 05:28 >>> I am actually behind an NTLM MS Proxy and I cannot use REBOL but locally. Do you plan to add NT LAN Manager protocol authentication and handling to REBOL? --

[REBOL] Re: view & multiply effect :-(

2001-11-21 Thread Maxim Olivier-Adlhoch
Holger, it works :-) It knew it was going to be simple. Its a question that in rebol, its sometimes xtremely complicated to find that simple thing. There are so many variations possible, that you can miss a few of them. :-) thanks very much.. -Max - Original Message - From: <[EMA

[REBOL] Re: Flash tech? Was Re: Re: (No subject)Date: Tue, 20 Nov 2001 17:20:09 -0500

2001-11-21 Thread Jason Cunliffe
Cyphre" <[EMAIL PROTECTED]> wrote: > >From my POV Macromedia stuff and their philosophy is very poor against > Rebol. Yes, Flash and Director has some more gfx features than /View but > man, It is version 5(Flash) and 8.5(Director)!! I think Macromedia has just > one big monopol in their "intern

[REBOL] Re: view & multiply effect :-(

2001-11-21 Thread holger
On Tue, Nov 20, 2001 at 04:51:33PM -0500, Maxim Olivier-Adlhoch wrote: > > > please tell me what's wrong with: > > effect: [multiply myLoadedImage] Try effect: reduce ['multiply myLoadedImage] -- Holger Kruse [EMAIL PROTECTED] -- To unsubscribe from this list, please send an email to

[REBOL] Re: ANN: rugby 4.3

2001-11-21 Thread Andreas Bolka
Wednesday, November 21, 2001, 7:21:56 PM, Petr wrote: > btw: does anyone here know, how does Jabber work in the principle? > Is it request broker like Rugby is, or? jabber opens a port to a server over which all traffic flows. just like IRC or ICQ. jabber has problems with working behind

[REBOL] Re: Flash tech? Was Re: Re: (No subject)Date: Tue, 20 Nov 2001 17:20:09 -0500

2001-11-21 Thread Porter Woodward
All - > I'm everyday working with Macromedia Director so I don't have so much > experience with Flash directly but I think these two products are very > similar in some aspects. I've been doing some Flash work for a while now - not so much as a designer - but with Flash 5, integrating it with a

[REBOL] Re: ANN: rugby 4.3

2001-11-21 Thread Petr Krenzelok
Paul Tretter wrote: >IRC does do polling in the form of Ping and Pongs. If it detects that a >client is idle it will send a Ping response in which the client must respond >with a Pong or risk being disconnected. > Yes, but then server polls client, not in reverse. It does so probably in some pe

[REBOL] Re: Flash tech? Was Re: Re: (No subject)Date: Tue, 20 Nov 2001 17:20:09 -0500

2001-11-21 Thread Maxim Olivier-Adlhoch
I respect and agree with your comments Donald, I just want to put flash in another perspective... If flash is used NOT as web site but as a stand alone tool for creating MM applications, then a mix of rebol and flash it REALLY nice using the best of both it allows us to fill rebol's current MM h

[REBOL] Re: view & multiply effect :-(

2001-11-21 Thread Maxim Olivier-Adlhoch
Hello myself :-) hum... no answers on the view mutliply problem... I guess not a lot of you are doing fancifull view useage ah well... was it my tone which might have sounded a tad frustrated? if so, its completely unintentional. :-( really, I'm just disapointed at my inability to handl

[REBOL] Re: ANN: rugby 4.3

2001-11-21 Thread Maxim Olivier-Adlhoch
Hi Mario , hasn't someone already implemented a NTLM proxy handler (or is working on it) ? I seem to remember this discussion before and hadn't someone posted once that he'd successfully cracked the protocol and was working on it !? -MAx - Original Message - From: "Cassani Mario" <[EMA

[REBOL] Re: Flash tech? Was Re: Re: (No subject)Date: Tue, 20 Nov 2001 17:20:09 -0500

2001-11-21 Thread Cyphre
Hi Jason, Donald and all, I'm everyday working with Macromedia Director so I don't have so much experience with Flash directly but I think these two products are very similar in some aspects. >From my POV Macromedia stuff and their philosophy is very poor against Rebol. Yes, Flash and Director h

[REBOL] Re: FYI: Once was lost but now is found (Editor window in view)

2001-11-21 Thread Gregg Irwin
THANK YOU BRETT! I had lost the editor and tried reinstalling to no avail as well. --Gregg -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Brett Handley Sent: Tuesday, November 20, 2001 8:33 PM To: [EMAIL PROTECTED] Subject: [REBOL] FYI: Once was lost

[REBOL] Re: tailfunc

2001-11-21 Thread Romano Paolo Tenca
Hi Ladislav > do (func [] reduce [body]) > > <> > > Your suggestion doesn't seem to work (?) ... It works for me. Try the modified version at the end of this message. > > 1) A little thing: couldn't loop start to none? > > loop: none > ... >either loop [ > loop: 1 >] [ > unt

[REBOL] Re: ANN: rugby 4.3

2001-11-21 Thread Robert M. Muench
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of > [EMAIL PROTECTED] > Sent: Wednesday, November 21, 2001 5:51 PM > To: [EMAIL PROTECTED] > Subject: [REBOL] Re: ANN: rugby 4.3 >>I am actually behind an NTLM MS Proxy and I cannot use REBOL >> but lo

[REBOL] Re: view indirection

2001-11-21 Thread Ingo Hohmann
Hi Patrick, >From WordNet (r) 1.7 [wn]: (shortened!) probe n 1: an inquiry into unfamiliar or questionable activities; "there was a congressional probe into the scandal" v 1: question or examine thoroughly and closely Once upon a time pat665, french new rebolist spoketh thus

[REBOL] Re: ANN: rugby 4.3

2001-11-21 Thread Paul Tretter
IRC does do polling in the form of Ping and Pongs. If it detects that a client is idle it will send a Ping response in which the client must respond with a Pong or risk being disconnected. It works very well actually. As for getting thru a firewall with IRC than most likely your firewall is all

[REBOL] Re: ANN: rugby 4.3

2001-11-21 Thread holger
On Wed, Nov 21, 2001 at 04:28:44PM -, Cassani Mario wrote: > Hi Holger, > > > > *But probably, we've got problem with firewalls here ... > > > > Yes. That's why for most business applications tunnelling through HTTP > > and using polling is a necessity. > >I am actually behind an NTLM M

[REBOL] Re: ANN: rugby 4.3

2001-11-21 Thread holger
On Wed, Nov 21, 2001 at 05:13:35PM +0100, Petr Krenzelok wrote: > Heh, you're alive holger? :-) Well, is that the same reason why IRC's DCC > doesn't work? Probably yes. Well, Rugby is not slow. So why does chat > client based upon it need to use polling? IRC doesn't do so probably, and > I am IRC

[REBOL] Re: ANN: rugby 4.3

2001-11-21 Thread Cassani Mario
Hi Petr, > On the other hand polling means limiting - I can't simply > imagine hundreds > of users polling server each sec or three - what a massive > communication > welcome to M$ .NET! In a recent network performance test Windows programs we produce were eating network resources for

[REBOL] Re: ANN: rugby 4.3

2001-11-21 Thread Cassani Mario
Hi Holger, > > *But probably, we've got problem with firewalls here ... > > Yes. That's why for most business applications tunnelling through HTTP > and using polling is a necessity. I am actually behind an NTLM MS Proxy and I cannot use REBOL but locally. Do you plan to add NT LAN Manager p

[REBOL] Re: ANN: rugby 4.3

2001-11-21 Thread Petr Krenzelok
[EMAIL PROTECTED] wrote: > On Wed, Nov 21, 2001 at 03:54:34PM +0100, Petr Krenzelok wrote: > > > *But probably, we've got problem with firewalls here ... > > Yes. That's why for most business applications tunnelling through HTTP > and using polling is a necessity. Heh, you're alive holger? :-)

[REBOL] Re: ANN: rugby 4.3

2001-11-21 Thread holger
On Wed, Nov 21, 2001 at 03:54:34PM +0100, Petr Krenzelok wrote: > *But probably, we've got problem with firewalls here ... Yes. That's why for most business applications tunnelling through HTTP and using polling is a necessity. -- Holger Kruse [EMAIL PROTECTED] -- To unsubscribe from this li

[REBOL] Flash tech? Was Re: Re: (No subject)Date: Tue, 20 Nov 2001 17:20:09 -0500

2001-11-21 Thread Donald Dalley
Hello, Jason: - Original Message - From: "Jason Cunliffe" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, November 21, 2001 12:45 AM Subject: [REBOL] Re: (No subject)Date: Tue, 20 Nov 2001 17:20:09 -0500 > But a REBOL-FLASH dialect may be very useful path towards that. > > O

[REBOL] Re: tailfunc

2001-11-21 Thread Ladislav Mecir
Hi Romano, <> And why not an in-line function like: compose... do (func [] reduce [body]) <> Your suggestion doesn't seem to work (?) ... <> I have others little questions on your code: 1) A little thing: couldn't loop start to none? loop: none ... either loop [ loop: 1 ] [

[REBOL] Important new info about ordering REBOL books

2001-11-21 Thread Ralph Roberts / ALEXANDER BOOKS
Here at aBOOKS (we fulfill REBOL's book orders) we just moved everything to a hot new dedicated server, combining all the virtual machines we had been renting. REBOL runs GREAT onit. But, the secure links for ordering books and manuals have changed. Until the http://rebolpress.com site gets updad

[REBOL] Recursive parsing (WAS: colored text)

2001-11-21 Thread Cassani Mario
Hi all, a reply/answer to my question follows in order to help people with the same problems with an easy to search subject. > > The color-text VID style uses very simple dialect like: > > > > view layout [ > > color-text ["Hello" red "World" eol bold blue "This is" > > normal yellow > >

[REBOL] a bug??? Re: ANN: rugby 4.3

2001-11-21 Thread Petr Krenzelok
** Script Error: find? has no value ** Where: web-clearies ** Near: length? find? req "xtra-info:" shouldn't "find?" be just "find" ? -pekr- -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.

[REBOL] Re: ANN: rugby 4.3

2001-11-21 Thread Petr Krenzelok
wooohooo, well, let's dig into it ... Maarten Koopmans wrote: > Hi all, > > I just released Rugby 4.3 , the best version ever. All upgrade! > > Download it at http://www.rebolforces.com/~erebol/ > > Rugby is a rebol request broker that allows you to build distributed > computing applications in

[REBOL] Re: REBOL & MYSQL using DBRIDGE.

2001-11-21 Thread Gabriele Santilli
[EMAIL PROTECTED] wrote: > Has anyone managed to connect to a Mysql database using the Dbridge protocol, and if >so, are you able to supply detailed instructions? Just curious, is there any reason you can't use DocKimbel's wonderful mysql-protocol.r to interface directly to MySQL? Regards,

[REBOL] Re: tailfunc

2001-11-21 Thread Romano Paolo Tenca
Hi, Ladislav And why not an in-line function like: compose... do (func [] reduce [body]) I have others little questions on your code: 1) A little thing: couldn't loop start to none? loop: none ... either loop [ loop: 1 ] [ until [ loop: none error? set/any 'result

[REBOL] Re: Exclude too exclusive?

2001-11-21 Thread Romano Paolo Tenca
Hi, Ladislav it is the same with intersect and difference. --- Ciao Romano - Original Message - From: "Ladislav Mecir" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, November 21, 2001 3:12 PM Subject: [REBOL] Exclude too exclusive? > Hi all, > > th

[REBOL] Exclude too exclusive?

2001-11-21 Thread Ladislav Mecir
Hi all, this looks a bit strange: exclude [a b c] tail [a b] ; == [c] Cheers Ladislav -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.

[REBOL] ANN: rugby 4.3

2001-11-21 Thread Maarten Koopmans
Hi all, I just released Rugby 4.3 , the best version ever. All upgrade! Download it at http://www.rebolforces.com/~erebol/ Rugby is a rebol request broker that allows you to build distributed computing applications in a few lines of code! A great example is Graham's GoRim. What's new: - Tra

[REBOL] Re: view indirection

2001-11-21 Thread pat665, french new rebolist
Hi Ryan That's working. However I don't understand what is user-data. Could you explain it to me . Thanks Patrick - Original Message - From: "Ryan Cole" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 20, 2001 6:48 PM Subject: [REBOL] Re: view indirection > Hello

[REBOL] Another gorim server to try ...

2001-11-21 Thread Petr Krenzelok
Hi, I today set-up Rugby powered GoRim server to see, how it performs. Our server is 350MHz, 64MB Linux machine, so be nice to old man ;-) It runs upon latest Rugby 4.3e. If you want to give it a try, you can run slightly modified gorim script: do http://www.rebol.cz/~asko/gorim-rebolcz.r Cheer

[REBOL] Re: view indirection

2001-11-21 Thread pat665, french new rebolist
Hi Sterling This is clean and elegant. Thanks to the rebol-list, I have now many ways to perform the required task with style ! Thanks again Patrick - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 20, 2001 7:13 PM Subject: [REBOL] Re: vie

[REBOL] Re: view indirection

2001-11-21 Thread pat665, french new rebolist
Thanks Ingo Another great answer from the rebol-list. I have just tested it. However trying to understand more, I crash my windows with a probe. Here is my code. The probe thing is in the guru-function. Thanks again Rebol [] guru-function: func [ s [string!] n [integer!] /local mc][ mc: get

[REBOL] Re: [view] object indirection

2001-11-21 Thread pat665, french new rebolist
Many thanks Brett Your answer give me more than I wanted. I tested your code, and it works. However I don't know what a context is and have to remove it. Thanks again - Original Message - From: "Brett Handley" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 20, 2001

[REBOL] Re: FYI: Once was lost but now is found (Editor window in view)

2001-11-21 Thread Brett Handley
Hi Colin, > If you minimise a VIEW LAYOUT window (e.g. click the "_" symbol at the > topright of the window) its offset gets set to 3000x3000. Aha. Well that certainly cause the problem. Minimise the editor, then right click on the nt task bar and close the window without restoring it. Offset g

[REBOL] Re: FYI: Once was lost but now is found (Editor window in view)

2001-11-21 Thread Sanghabum
[EMAIL PROTECTED] writes: > Turns out a setting called "OFFSET" in edit-prefs.r got screwed up somehow. > It had a setting of -3 something for the x and y parts of the pair - > which is off in never never land. Thus the editor was working I just > couldn't see it :) For what it's worth: i

[REBOL] Re: Solaris

2001-11-21 Thread Graham Chiu
> > can you get to the web access and error logs > to see if anything useful was left there? > (assuming appache) > access the cgi via a browser then Hi Tom, Nailed it. They forgot to implement their cgi wrapping program for my web site. Duh! -- Graham Chiu -- To unsubscribe from this list,

[REBOL] Re: REBOL & MYSQL using DBRIDGE.

2001-11-21 Thread Maarten Koopmans
I think you should use dockimbel's pure rebol mysql driver: Very fast and good! sites/dockimbel --Maarten On Wednesday 21 November 2001 02:29, you wrote: > Hello, > > Has anyone managed to connect to a Mysql database using the Dbridge > protocol, and if so, are you able to supply detailed ins