[REBOL] FW: Re: [append][series]Appending to a series of strings

2003-11-19 Thread Anton Rolls
-Original Message- From: Anton Rolls [mailto:[EMAIL PROTECTED] Sent: Wednesday, 19 November 2003 12:36 pm To: [EMAIL PROTECTED] Subject: RE: [REBOL] Re: [append][series]Appending to a series of strings How about this? ; initialize some random scores scores: clear [] loop 30 [append sc

[REBOL] Re: Rebol for real world applications

2003-11-19 Thread Sabu Francis
Hi: Thank you Max and thank you Romano. I fixed the problem this way. I gave up the idea of using an object, because as Romano had pointed out; it can be insecure when the block is converted to an object, the code will get executed. I cannot afford to have my users put up some arbitrary Rebol co

[REBOL] Re: [SDK] Installer

2003-11-19 Thread Gregg Irwin
Hi Anton, AR> That's such a tight schedule. How will he do it? 1) I've given up sleeping 2) REBOL 3) The features that make it in for the first release probably won't make InstallShield quiver in fear just yet. :) AR> I'd like to see the design feature list. Because of the short timeframe

[REBOL] Re: [SDK] Installer

2003-11-19 Thread Gregg Irwin
Hi Paul, PT> Hmmm... I'm interested in a Good REBOL installer myself. Currently, I use PT> InnoSetup which is pretty good and free for commercial use. But its not PT> REBOL :( So I'm interested in what is coming. If you, or anyone else, has comments about what they like (and don't) about diff

[REBOL] Re: How DO they DO that?

2003-11-19 Thread Anton Rolls
Here's a really simple and crude example to get you going: panel-face: layout [ origin 0 icon "I" icon "am" icon "somebody!" icon icon "Solid." ] view layout [ across my-panel: box 100x200 edge [size: 1x1] with [ pane: panel-face ] scroller [

[REBOL] Re: IOS on USB

2003-11-19 Thread Anton Rolls
I recommend go to www.sysinternals.com (lots of good stuff in there) and download regmon "Registry Monitor". Then you can watch what it is trying to do exactly. Anton. > Hi, IIRC we once had a discussion if / how to get the IOS Link client to > run from an USB stick. I just tried it but the Link

[REBOL] Re: [SDK] Installer

2003-11-19 Thread Anton Rolls
That's such a tight schedule. How will he do it? I'd like to see the design feature list. Anton. > > Mine, from 5-aug-2003, have examples for updating the registry to do > > what REBOL itself does for self-installing apps. If you want a real > > setup/installer type application...keep your eyes

[REBOL] Re: [python]

2003-11-19 Thread Tim Johnson
* Maxim Olivier-Adlhoch <[EMAIL PROTECTED]> [031118 10:20]: > > I thought we had a hard time getting concensus... > > boy I've been on the python list for a day and got 150 mails.. many of them are down > right rude. I program about equally in python and rebol > python may have more us

[REBOL] Re: [FTP] patch

2003-11-19 Thread Ashley Trüter
Hi Romano, > Beta version 2 for download: > > do load-thru http://www.rebol.it/%7Eromano/ftp-patch.r my test case is fairly simple: do %ftp-patch.r ;do %ftp-proposed.r sumtree: function [dir [file! url!]] [val] [ val: 0 foreach file read dir [ val: val + e

[REBOL] Re: [SDK] Installer

2003-11-19 Thread Paul Tretter
Hmmm... I'm interested in a Good REBOL installer myself. Currently, I use InnoSetup which is pretty good and free for commercial use. But its not REBOL :( So I'm interested in what is coming. Paul Tretter - Original Message - From: "Gregg Irwin" <[EMAIL PROTECTED]> To: "Matt MacDonal

[REBOL] [test]

2003-11-19 Thread Brett Handley
Just testing mailing list. --- Website: http://www.codeconscious.com Rebsite: http://www.codeconscious.com/index.r -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: [FTP] patch

2003-11-19 Thread Romano Paolo Tenca
Beta version 2 for download: do load-thru http://www.rebol.it/%7Eromano/ftp-patch.r 0.0.2 BETA version 19/11/03 New Features - Experimental query which does not throw an error if file not found The behaviour now should be the the same of a file-system port. - chdir-check now

[REBOL] REBOL.net DNS Problem

2003-11-19 Thread Carl Sassenrath
One of our Internet service providers somehow removed the rebol.net domain from their master DNS server (without telling us) and brought REBOL developer services to a halt. The problem has been fixed. Sorry about the that. -Carl -- To unsubscribe from this list, just send an email to [EMAIL P

[REBOL] Re: Rebol for real world applications

2003-11-19 Thread Romano Paolo Tenca
Hi Sabu, Memory is auto-recycled. You can force recycling with the recycle function. You can test the memory allocated by your program with system/stats You can have an idea of memory used by some code with these routines: http://www.rebol.org/cgi-bin/cgiwrap/rebol/search.r?find=mem2 > cfg:

[REBOL] [Editor] any Vim users out there?

2003-11-19 Thread Ingo Hohmann
Hi, are there any vim users out there, do you have some more advanced rebol.vim files than those shipped with vim? (for syntax, compiler, folding, indent, color, ... ;-) I am just now adding to the syntax file some things I found missing (and removing some, which do not really belong there ..

[REBOL] Re: subject tags...

2003-11-19 Thread Maxim Olivier-Adlhoch
its mainly a visual cue and "rules wizard helper" But if you are handling your poping within rebol scripts, it is easier to sort them out with the tags, I find. so far, I find its really helping me visually scanning the contents of my rebol mailbox. I notice the main topic before anything els

[REBOL] downloading files with CGI

2003-11-19 Thread Carlos Lorenz
Hi people, How do I use REBOL to write a CGI script that builds a page with a download link? Thanks Carlos -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: Rebol for real world applications

2003-11-19 Thread Maxim Olivier-Adlhoch
how much ram is your rebol taking... I've had it over 700MB without problems. how many different objects are you creating. there may be a limit amount of objects (contexts) per application, but given that I have applications which generate hundreds of view faces and corresponding data objects

[REBOL] How DO they DO that?

2003-11-19 Thread Steven White
I am looking at the REBOL desktop, at the screen where all the World-Wide Reb Sites are displayed. The area with all the icons of the hand holding up the world are in a section of the screen that can be controlled by the slider on the right. The slider on the right is a REBOL-style slider, so I

[REBOL] Re: IOS on USB

2003-11-19 Thread Petr Krenzelok
Robert M. Münch wrote: >Hi, IIRC we once had a discussion if / how to get the IOS Link client to >run from an USB stick. I just tried it but the Link client wants to >install itself. I think this has to do that IOS Link searches for a >registry key, if it's already installed. Does someone know

[REBOL] Rebol for real world applications

2003-11-19 Thread Sabu Francis
Hi: I have been developing a real world mailing list CGI application (i.e. not the "Hello World" kind :-) ) layer by layer, testing each part for correctness. It had been going quite well till I realized that my program is running out of memory when it is given real world data :-) and now even

[REBOL] IOS on USB

2003-11-19 Thread "Robert M. Münch"
Hi, IIRC we once had a discussion if / how to get the IOS Link client to run from an USB stick. I just tried it but the Link client wants to install itself. I think this has to do that IOS Link searches for a registry key, if it's already installed. Does someone know which registry keys are us

[REBOL] Re: [SDK] Installer

2003-11-19 Thread Maarten Koopmans
> > Mine, from 5-aug-2003, have examples for updating the registry to do > what REBOL itself does for self-installing apps. If you want a real > setup/installer type application...keep your eyes peeled. ;) > Meaning that Gregg is building an install toolkit which will be available somewhere be