[REBOL] Re: demo of a tree interface

2004-05-04 Thread Aleksander K.
- Original Message - From: Alain Goy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 03, 2004 10:27 PM Subject: [REBOL] demo of a tree interface Hi all, I made this little demo of a tree interface similar to TreePad (TM) - in case it interests someone:

[REBOL] Re: [REBOL.org] [ANN] Packages: the next generation

2004-05-04 Thread SunandaDH
Hi Brett, Great work guys! I think these are a good solid steps forward for a REBOL platform. Thanks, Brett. Let me reply to the bits I can affect, and leave others to respond to other points: *The descriptions, package file, linked script, package script, script from Library look

[REBOL] Re: [The Gimp] clashes with REBOL on Windows 2000

2004-05-04 Thread Arie van Wingerden
Hi Ladislav, due to the fact that several experienced people (like you) told me that it works fine w/o an environment variable, I decided to deinstall the whole REBOL stuff, including a clean-up of the registry and the environment vars. When I had the problems some time ago, I also had deleted

[REBOL] [trim][string] Something strange in the Rebol string ?

2004-05-04 Thread Didec
[trim][string] Something strange in the Rebol string ? I should say that there is Gurus needs here ! The following code (under Windows) should work in the same manner (displaying a card game symbol you know), but not ! REBOL [ ] ; it works tx: § view layout [text tx font-size 40

[REBOL] Re: [trim][string] Something strange in the Rebol string ?

2004-05-04 Thread SunandaDH
It's this bug: load to-string #0 ** Syntax Error: Invalid integer -- 0?­ ** Near: (line 1) 0?­ I reported it via REBOL.com feedback recently The response was: REBOL Feedback: bug in to-string [#44q154200] Thanks for your feedback... That's a suprise bug. Thanks. We'll get that fixed. This

[REBOL] Re: [trim][string] Something strange in the Rebol string ?

2004-05-04 Thread Didec
Re: [trim][string] Something strange in the Rebol string ? Hi Sunanda, It's this bug: load to-string #0 ** Syntax Error: Invalid integer -- 0?­ ** Near: (line 1) 0?­ [...] This workaround works for me: load copy to-string #0 In your case, try: tx2: copy to-string to-char 167

[REBOL] Re: probe/dump-binary survey

2004-05-04 Thread Andreas Bolka
Tuesday, May 4, 2004, 4:48:10 AM, Volker wrote: Now instead of send i could not resist to press hack, and here is: thanks for sharing! i found it exciting that this piece of code uses loads of typical REBOL idioms - i.e. it can be considered a piece of REBOL wizardry :) ;the code

[REBOL] Re: [REBOL.org] [ANN] Packages: the next generation

2004-05-04 Thread Maxim Olivier-Adlhoch
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 04, 2004 5:05 AM To: [EMAIL PROTECTED] Subject: [REBOL] Re: [REBOL.org] [ANN] Packages: the next generation *The descriptions, package file, linked script, package script, script from

[REBOL] Re: probe/dump-binary survey

2004-05-04 Thread Maxim Olivier-Adlhoch
how about: help probe - Prints a molded, unevaluated value and returns the same value. similar: ? ?? dump YESS A RELATED: or SEE ALSO: WOULD BE SO USEFULL IN ALL RT Function defs. AND A CLASSIFICATION ID TOO ... like in the ref-words doc where there the words are split up/sorted in

[REBOL] Re: [trim][string] Something strange in the Rebol string ?

2004-05-04 Thread Romano Paolo Tenca
Hi, Seems to me the #386 bug. Do you agree? --- Ciao Romano - Original Message - From: Didec [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 04, 2004 2:54 PM Subject: [REBOL] Re: [trim][string] Something strange in the Rebol string ? Re: [trim][string] Something strange

[REBOL] Re: [The Gimp] clashes with REBOL on Windows 2000

2004-05-04 Thread Maxim Olivier-Adlhoch
Now I'm baffled, since I really have tried everything except this total cleanup and reinstall. But'I'm very glad :-)) I'm sorry to have bothered you all with a problem that now seems not to exist :-( eh well, I consider it a problem that if you DO have a home, it *can* changes rebol's

[REBOL] Re: [trim][string] Something strange in the Rebol string ?

2004-05-04 Thread Didec
Re: [trim][string] Something strange in the Rebol string ? Hi, Hi romano, Seems to me the #386 bug. Do you agree? I agree it's related, but it appear that it's to-string that cause the bug. But I can't figureout what the code in Notes should give as result. --- Ciao Romano Ciao

[REBOL] Re: Using repeat in write/append/lines

2004-05-04 Thread Tom Conlin
On Tue, 4 May 2004, ML wrote: I am adding lines to a text file and it is one of those things that I want to print out as many asterisks as is listed in a variable to make a simple graph. So here is the effect I am after: 2pm : 3pm : ** 4pm : * The thing is how do I

[REBOL] Re: Using repeat in write/append/lines

2004-05-04 Thread Dide
I am adding lines to a text file and it is one of those things that I want to print out as many asterisks as is listed in a variable to make a simple graph. So here is the effect I am after: 2pm : 3pm : ** 4pm : * The thing is how do I print those asterisks when I am

[REBOL] Re: Using repeat in write/append/lines

2004-05-04 Thread Maxim Olivier-Adlhoch
oops should have been: count: 10 a: copy insert/dup tail a * count a == ** -MAx -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: Using repeat in write/append/lines

2004-05-04 Thread Gregg Irwin
Hi Stuart, Tom gave you the best general answer, using REPEAT *around* the calls you want to make, so I'll just chime in with a note. Disks are faster these days, but you probably don't want to use WRITE repeatedly if you're going to be making ten thousand calls that way. Instead, build up a

[REBOL] list members with virus infections

2004-05-04 Thread Graham Chiu
People on the list have virus infections as I am getting viruses being sent from rebol.com, and dockimbel etc. Fortunately, the virii do not know that it should include [REBOL] in the subject line! This person seems to be in poland ... W32.Beagle (Dockimbel [EMAIL PROTECTED]) Received: from

[REBOL] Re: Using repeat in write/append/lines

2004-05-04 Thread Gregg Irwin
Hi Stuart, Addendum to my last post. I made a note about CLEAR, but not that I didn't use COPY in the func. If you plan to keep the values around and work on them, you can add it to the func, or use COPY on the results. -- Gregg -- To unsubscribe from this list, just

[REBOL] Re: demo of a tree interface

2004-05-04 Thread Jaime Vargas
Very Nice! Only problem I see is that it uses some keys that are not available in other platforms or keyboards; ie. insert. Maybe a different key combination will be more portable. Cheers, Jaime -- The best way to predict the future is to invent it -- Alan Kay On May 4, 2004, at 3:59 AM, Alain