[REBOL] Another day, another project

2003-11-08 Thread Rebolinth
Hiya Maarten / Gregg, Intresting idea, though I dont see the full potential in it YET, are you trying to replace an existing tool/protocol? Makeing something opensource does not garanty the use of it or the exploit of it. Im just wondering why you make it opensource... Regards, Norman. --

[REBOL] Re: Another day, another project

2003-11-08 Thread Maarten Koopmans
Hi Norman, Intresting idea, though I dont see the full potential in it YET, are you trying to replace an existing tool/protocol? We are making ane existing tool (Stunnel) more user friendly for end users. This will e.g. make working at home much easier. That has the side effect that there

[REBOL] Re: Coffee break problem anyone?

2003-11-08 Thread SunandaDH
Hi Joel, Of course, in cases where the nature of the data are somewhat up in the air (e.g. the problem is more vaguely specified, or the designer is given latitude to choose data/representation structures) there's clearly not so much heuristic guidance. But why do I only ever get such

[REBOL] Re: Hitting the learning curve

2003-11-08 Thread Robert M. Mnch
On Wed, 5 Nov 2003 09:49:08 + (GMT), Ged Byrne [EMAIL PROTECTED] wrote: The problem is that, given a blank piece of screen, where do I begin when devising my own code to solve my own problems. What is the starting point. Hi, data drives development. I mostly follow this rule. Robert

[REBOL] Re: Hitting the learning curve

2003-11-08 Thread Robert M. Mnch
On Wed, 05 Nov 2003 14:17:43 +0100, Petr Krenzelok [EMAIL PROTECTED] wrote: OK, one other problem I can see with rebol is - lack of frameworks. Hi, IMO that's the part to put work in (what I'm doing). Building dialects for special tasks and makeing it possible to use those dialects together.

[REBOL] Re: Bidirectional value mapping.

2003-11-08 Thread Robert M. Mnch
On Mon, 3 Nov 2003 18:01:44 -0200 (BRST), Bruno G. Albuquerque [EMAIL PROTECTED] wrote: BTW, the reason I am doing this HTTP proxy is because I need NTLM authentication. I already have all the NTLM stuff working (including DES encryption by loading the OpenSSL library and using it) under

[REBOL] Please help me to promote REBOL

2003-11-08 Thread Arie van Wingerden
Hi guys, since some time I have got my REBOL promotion website http://home.zonnet.nl/rebolution running. In order to serve the REBOL community best, I ask you to check my site for correctness and completeness. If you think it's worthwile, please link to my site. Do not hesitate to comment, I

[REBOL] Re: Please help me to promote REBOL

2003-11-08 Thread Gregg Irwin
Hi Arie, AvW since some time I have got my REBOL promotion website AvW http://home.zonnet.nl/rebolution running. AvW In order to serve the REBOL community best, I ask you to AvW check my site for correctness and completeness. If you think AvW it's worthwile, please link to my site. Do not

[REBOL] Re: Reading empty directories via FTP error

2003-11-08 Thread Brett Handley
That's odd. I get an empty block returned when I create an empty directory on my website and then read it. Maybe you should trace the connection and see what conversation the server is having with REBOL. Regards, Brett. - Original Message - From: Carl Read [EMAIL PROTECTED] To: [EMAIL

[REBOL] Re: UniqueID for email messages

2003-11-08 Thread Gregg Irwin
Hi Phil, puc When an email is send from rebol by default it doesnt have a message-ID puc By using send/header we can add text to the message-ID field, but how puc should the message-ID be calculated? Well, it looks like it needs to be something@host, at least per the RFC it needs to match the

[REBOL] Re: Please help me to promote REBOL

2003-11-08 Thread Anton Rolls
Good site. Bad colours - that's ok! I set my browser to overide your colours with my preferred colours. :D In the errors handling document, I think you should set people to use set/any 'error try rather than error: try because in some cases the second one leads to another

[REBOL] Re: Reading empty directories via FTP error

2003-11-08 Thread Carl Read
On 09-Nov-03, Brett Handley wrote: That's odd. I get an empty block returned when I create an empty directory on my website and then read it. Maybe you should trace the connection and see what conversation the server is having with REBOL. Except I don't know how to do that. :) I get the

[REBOL] Please help me to promote REBOL

2003-11-08 Thread philb
Hi Arie, Nice site keep it up. Just one point as much as I am a rebol supporter, I think claimimg that it has a very small footprint is an exageration Cheers Phil === Original Message === Hi guys, since some time I have got my REBOL promotion website

[REBOL] Re: Please help me to promote REBOL

2003-11-08 Thread philb
Hi Anton, Bit slow on the uptake here If you do a set/any 'error try [print ] How do you test for an error? any time I try to do anything with error I get an error :-) for example print error ** Script Error: error has no value ** Near: print error Cheers Phil ===

[REBOL] Re: Please help me to promote REBOL

2003-11-08 Thread A J Martin
Phil wrote: How do you test for an error? any time I try to do anything with error I get an error :-) disarm error: try [1 / 0] probe error ** Math Error: Attempt to divide by zero ** Near: 1 / 0 probe disarm error make object! [ code: 400 type: 'math id: 'zero-divide

[REBOL] Re: Please help me to promote REBOL

2003-11-08 Thread philb
Hi Andrew, Yes ... but that isnt using the suggested method of set/any 'error try [..] for eample set/any 'error try [print ] disarm error ** Script Error: error has no value ** Near: disarm error Cheers Phil === Original Message === Phil wrote: How do you test for an error?