[REBOL] Re: unwanted processes ...

2004-04-30 Thread Graham Chiu
Jones, Scott wrote.. apparently on 1-May-2004/11:29:41+12:00 > >One idea that occurs to me is just a bit of extra control and logging. I recall >someone a year and a half ago showing how one gets the PID (process ID) from within >REBOL (maybe Bo or Gregg???). It was easy; I just can't remember

[REBOL] Re: dump-binary

2004-04-30 Thread Ashley TrĂ¼ter
Hi Jaime, > Please critique my code so that I can improve it. First, let me echo other folks comments ... well done, I hope this ends up (in some shape or form) as part of the main REBOL code much like 'dump-face, 'dump-obj and 'dump-pane. Now, for some general observations (all opinion, so i

[REBOL] Re: unwanted processes ...

2004-04-30 Thread Jones, Scott
From: Graham Chiu > My ISP has again shut down my vanilla script, and rebol, > as there were 150 processes running :( > > Anyone else having this problem. They're running Solaris > sparq ... and I thought I was running latest core. > > I had thought adding 'Quit to vanilla.r had solved the >

[REBOL] Re: Parsing out strings

2004-04-30 Thread Maxim Olivier-Adlhoch
in a related topic, I'd like to restate/comment something said this week.. in rebol, there are usually very different ways to achieve the same goals. not just in the functions to use, but in the raw in-code ideology, of how to plug the outputs of all of the fancy series handlers. Some will op

[REBOL] unwanted processes ...

2004-04-30 Thread Graham Chiu
My ISP has again shut down my vanilla script, and rebol, as there were 150 processes running :( Anyone else having this problem. They're running Solaris sparq ... and I thought I was running latest core. I had thought adding 'Quit to vanilla.r had solved the problem. Since most of these pr

[REBOL] Re: Parsing out strings

2004-04-30 Thread ML
Thanks for the tutorial Max. Stuart > Original Message > From: "Maxim Olivier-Adlhoch" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Date: Thu, Apr-29-2004 7:51 PM > Subject: [REBOL] Re: Parsing out strings > > > by using left right mid mentality... > > use COPY and

[REBOL] Re: dump-binary

2004-04-30 Thread Gregg Irwin
Jaime, *Very* nice! Thanks for posting it! -- Gregg -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: dump-binary

2004-04-30 Thread Hallvard Ystad
This is brilliant, Jaime. Do you mind if I include it in prob.r, my visual probe tool? I can put a note with your name on it on every face where it is used if you like... Regards, HY Dixit Jaime Vargas (18.04 30.04.2004): >I have being working with binaries a lot lately so I created this >tool

[REBOL] dump-binary

2004-04-30 Thread Jaime Vargas
I have being working with binaries a lot lately so I created this tool that lets you examine the contents of a binary in a more explicit way that you using probe. Please critique my code so that I can improve it. Thank you, and enjoy -- Jaime dump-binary: func ['buffer /local v b t c r pad pl l

[REBOL] Re: Parsing out strings

2004-04-30 Thread ML
Thanks for that Scott, I hadn't read up on parse, but I will do now. Stuart > Original Message > From: "Jones, Scott" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Date: Thu, Apr-29-2004 7:36 PM > Subject: [REBOL] Re: Parsing out strings > > > From: ML > ... > > Suppo