[REBOL] Re: The importance of dual-licensing

2004-05-01 Thread SunandaDH
Karl: Here's a good article titled Why MySQL grew so fast: http://www.onlamp.com/pub/wlg/4715 Of particular interest is the section on dual-licensing. Interesting article, thanks. A line that caught my eye is: Founder David Axmark told me there's tremendous power in having a

[REBOL] How best to debug REBOL?

2004-05-01 Thread Anthony B. Coates
I'm sure this is an FAQ (so apologies in advance), but I haven't found an answer in any of the FAQs. Is there an interactive way of debugging REBOL, or any way beyond adding print statements? I'm trying to understand the workings of the REBOL CGI scripts for a blog/weblog app called

[REBOL] How to create block of block?

2004-05-01 Thread Raimund Dold
Hi, I do have a block and will add this to another block as whole to create a block of blocks. How can I do this? Example: block1: [1 2 3] == [1 2 3] block2: [4 5 6] == [4 5 6] block3: append block1 block2 == [1 2 3 4 5 6] But I want the follwing block3: [1 2 3 [4 5 6]] How do I get the

[REBOL] Re: How to create block of block?

2004-05-01 Thread Arie van Wingerden
Hello Raimund, what you need is append with the /only refinement. So: block3: append/only block1 block2 Met vriendelijke groet / with kind regards, Arie van Wingerden http://home.zonnet.nl/rebolution/ - Original Message - From: Raimund Dold [EMAIL PROTECTED] To: Rebol [EMAIL

[REBOL] Re: How to create block of block?

2004-05-01 Thread Hallvard Ystad
Hi Raimund, Try this: block3: append/only block1 block2 == [1 2 3 [4 5 6]] Regards, HY Dixit Raimund Dold (14.38 01.05.2004): Hi, I do have a block and will add this to another block as whole to create a block of blocks. How can I do this? Example: block1: [1 2 3] == [1 2 3] block2:

[REBOL] Re: unwanted processes ...

2004-05-01 Thread Bohdan or Rosemary Lechnowsky
Yes, one of my client's ISPs even wrote a script that kills Rebol processes because it was happening so often. This is on BSDi. It would be nice if this were fixed. Bohdan Bo Lechnowsky Lechnowsky Technical Consulting At 10:43 AM 5/1/04 +1200, you wrote: My ISP has again shut down my

[REBOL] Re: dump-binary

2004-05-01 Thread Jaime Vargas
Thank you all for the input. Below is a new version of dump-bin that includes Ashley's suggestions. Hallvard you got my permission to include in prob.r. Greg, I think your suggestion that probe should produce output similar to dump-bin by default is great. I hope Carl goes for it. Finally, I