[REBOL] Re: So where's the German speaking Rebol list?

2003-10-10 Thread Ingo Hohmann
Hi Andrew, Maxim, and others, I admit I was just too lazy to write two emails, and too much in a hurry to translate the part that was mostly meant for Mr. Kalka ... I was just telling him that he shouldn't be too surprised getting english mail from an english language mailing list, and how to

[REBOL] Re: IDIOMS: setting multiple words

2003-10-10 Thread SunandaDH
Thanks Elan and Gregg for the corrections to my attempted examples. Just goes to show that REBOL is subtle, and proves the old mxim: if you ain't tested it, it don't work Sunanda -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: bitset actions?

2003-10-10 Thread Brett Handley
Hi Rebolinth, I am not sure about what you are trying to achieve, but I think you may have the wrong idea about bitsets. Here are some examples to help you. Bitsets are not series: series? make bitset! 8 == false However they do have a length - the number of bits (always a multiple

[REBOL] Re: Newbie stuck again...

2003-10-10 Thread Didec
Re: Newbie stuck again... Simple and usual error : you use view instead of view/new. As you can see by yourself with source view (read carrefully, there is a trap), View use the do-events function that is the same as wait []. So it's View that do the wait. The program continue just when you close

[REBOL] Re: IDIOMS: setting multiple words

2003-10-10 Thread Joel Neely
Hi, Elan and all, Elan wrote: Hi Sunanda: set [foo bar baz] copy [] You will find that only foo is set set to a block, whereas bar and baz are initialized to the value none. This is unlike using set [foo bar baz[] 3 ;- (i.e. some non-series value where all words will be

[REBOL] pleac

2003-10-10 Thread bryan
Anyone seen this before, http://pleac.sourceforge.net/ PLEAC - Programming Language Examples Alike Cookbook. No rebol entry sadly. -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Bitset Actions

2003-10-10 Thread Rebolinth
Hello Brett, Seems there is more animo for Bitset queries ;-) Perhpas RT has some input on the issue? (are they on holiday?) (R)egards, Norman. -- Conversation/lunch: How do you Eat your Rebol in the Morning? -- To unsubscribe from this list, just send an email to [EMAIL

[REBOL] Re: [View] dirty?

2003-10-10 Thread Brett Handley
Hi Ingo, Cyphre, I'm not sure you can use the dirty? flag for testing if data has changed. It doesn't seem to behave as I would expect. For example, in Cyphre's example without hitting the Enter key or the Tab key, enter some information into both the fields and try the button. For me, no dirty

[REBOL] Re: pleac

2003-10-10 Thread Vos, Doug
This reminds me of another project I started where I compare rebol side by side with perl,php, and java. http://vvn.net/egppr/jppr.php?id=5 or http://vvn.net/egppr/jppr.php?id=6 Using Java is sometimes like driving a SEMI-TRUCK-AND-TRAILER down to the corner store, when all you really need is to

[REBOL] Re: pleac

2003-10-10 Thread Vos, Doug
PLEAC says this in their FAQ. { 9. I'd like to contribute to Pleac using this particular compiler/library Great! But, please double-check that this compiler/library is released under a free (as explained by GNU, not free of charge) license, as we won't accept code only usable under a non-free

[REBOL] Re: Accessing a variable's method

2003-10-10 Thread Joel Neely
Hi, Arnoux It's simple (simpler than that, actually ;-) Arnoux Vincent wrote: Hi List, I have a list of objects: /l: copy [] obj: make object! [ a: none calc: does [self/a: (self/a + 1)]] append l make obj [a: 1] append l make obj [a: 2]/ I would like to write a function like:

[REBOL] Re: [Fwd: Accessing a variable's method]

2003-10-10 Thread Ingo Hohmann
Hi Arnoux, Arnoux Vincent wrote: A few anti-slashes have been added (dunno know why...) : Hi List, I have a list of objects: l: copy [] obj: make object! [ a: none calc: does [self/a: (self/a + 1)]] append l make obj [a: 1] append l make obj [a: 2] I would like to write a function

[REBOL] CGI with REBOL on FREE Web Hosting Services

2003-10-10 Thread Carlos Lorenz
Hello people I appreciate some suggestions of FREE web hosting services where I could use CGI with REBOL Thanks Carlos -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: pleac

2003-10-10 Thread Gregg Irwin
Hi Doug, VD { 9. I'd like to contribute to Pleac using this particular compiler/library VD Great! VD But, please double-check that this compiler/library is released under a free VD (as explained by GNU, not free of charge) license, as we won't accept code VD only usable under a non-free

[REBOL] ANN: UCS-2 encoder/decoder

2003-10-10 Thread rebOldes
Hello Reboler, Just want to let you know, that I just uploaded UCS-2 encoder/decoder which is able to convert strings to UCS-2 octet bytes according specified character map. http://www.reboltech.com/library/scripts/ucs2.r It's not well tested so if you will find some bug, just let me

[REBOL] Re: ANN: UCS-2 encoder/decoder

2003-10-10 Thread SunandaDH
Hi Oldes, http://www.reboltech.com/library/scripts/utf-8.r PS: on rebol's library page I can see: Updated: 29-May-2003 :((( someone should run the script which updates these pages as well I'm not sure REBOLtech is being maintained any more. Most (if not all) of the scripts there

[REBOL] Re: [View] dirty?

2003-10-10 Thread Romano Paolo Tenca
Hi Brett, I'm not sure you can use the dirty? flag for testing if data has changed. It doesn't seem to behave as I would expect. For example, in Cyphre's example without hitting the Enter key or the Tab key, enter some information into both the fields and try the button. For me, no dirty

[REBOL] .r files to .exe in windows?

2003-10-10 Thread Carlos Lorenz
Hello list Is there any compiler to REBOL to make .exe files to WIndows? Carlos -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: .r files to .exe in windows?

2003-10-10 Thread Maarten Koopmans
Carlos Lorenz wrote: Hello list Is there any compiler to REBOL to make .exe files to WIndows? Carlos yep, the SDK. --Maarten -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] rebol evaluator in rebol

2003-10-10 Thread Maarten Koopmans
Hi, Has anybody ever written a rebol evaluator in rebol? Or even partly? I'd be interested... --Maarten -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] [OT] 10 Million dollar DMCA case ....

2003-10-10 Thread Ingo Hohmann
Sorry, this is off topic, but got me rolling on the floor ... According to the german PC-Magazin the sunncomm is evaluating to sue student John Haldermann on the basis of the DMCA, because he published information on how to bypass sunncomms CD copy protection scheme. It will be a 10 million

[REBOL] Re: pleac

2003-10-10 Thread Carl Read
On 11-Oct-03, bryan wrote: Anyone seen this before, http://pleac.sourceforge.net/ PLEAC - Programming Language Examples Alike Cookbook. No rebol entry sadly. Okay rebolers, there's a challenge for you. How quickly can you get REBOL to near the top of the list? Which currently is... perl,

[REBOL] Re: Distribution

2003-10-10 Thread Gregg Irwin
Hi James, JN If application is created with the SDK, Can it be commercially JN distributed? That is, can that application be sold? Yes. You should get the full license details from RT, but here's a pertinent section: REBOL API Restriction. If you choose to export the REBOL API (function and

[REBOL] Re: 10 Million dollar DMCA case ....

2003-10-10 Thread Carl Read
On 11-Oct-03, Ingo Hohmann wrote: Sorry, this is off topic, but got me rolling on the floor ... According to the german PC-Magazin the sunncomm is evaluating to sue student John Haldermann on the basis of the DMCA, because he published information on how to bypass sunncomms CD copy

[REBOL] Re: pleac

2003-10-10 Thread Gregg Irwin
Hi Carl, CR Okay rebolers, there's a challenge for you. How quickly can you get CR REBOL to near the top of the list? Which currently is... Without the book, the hardest part will be figuring out what the real goal is. :) -- Gregg -- To unsubscribe from this list,

[REBOL] Re: rebol evaluator in rebol

2003-10-10 Thread Brett Handley
All I did was wrap the Do function. An alternative would be wrap do/next. http://www.codeconscious.com/rebsite/rebol-library/little-evaluator.r Is that what you mean, or something else? Regards, Brett. - Original Message - From: Maarten Koopmans [EMAIL PROTECTED] To: [EMAIL

[REBOL] Re: pleac

2003-10-10 Thread Carl Read
On 11-Oct-03, Gregg Irwin wrote: Hi Carl, Okay rebolers, there's a challenge for you. How quickly can you REBOL to near the top of the list? Which currently is... Without the book, the hardest part will be figuring out what the real goal is. :) Yeah. It'd help a lot if you knew perl

[REBOL] newbie text-list questions

2003-10-10 Thread Kai Peters
Hi list ~ How do I - add lines to a text-list dynamically - knowing that any windows control of this type can only hold a finite number of list items, how do i clear a text-list say every 1,000 entries? Thanks, Kai -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED]

[REBOL] Re: [View] dirty?

2003-10-10 Thread Anton Rolls
You could use query on the face, which is, after all, just an object. que: does [probe query/clear f] query-f: does [que show f que] view layout [ f: field hello button change text [f/text: random abcd query-f] button change size [f/size/x: 100 + random 100 query-f] ]