[REBOL] Re: dump-binary

2004-05-03 Thread Hallvard Ystad
Dixit Didec (16.49 03.05.2004): >Maybe, it would be nice to have a refinment to make the function "interactive". >Almost to print by page/line waiting for key to continue (like the 'more "command" >does in many shell). >But may be more than that, allowing to go backward/forward... Hm. Sounds mo

[REBOL] Re: dump-binary

2004-05-03 Thread Didec
Re: dump-binary Nice job Jaime. I like it. Maybe, it would be nice to have a refinment to make the function "interactive". Almost to print by page/line waiting for key to continue (like the 'more "command" does in many shell). But may be more than that, allowing to go backward/forward... Or sim

[REBOL] Re: dump-binary

2004-05-02 Thread Andreas Bolka
Sunday, May 2, 2004, 2:50:44 AM, Jaime wrote: > dump-bin: func [ > "Print ASCII info for entire binary. (for debugging)" > bin [binary!] > /local v t c r pad pl len chars tmp > ][ > .. I just have to metoo: Jaime, that's great! I've been working with something similar for yea

[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

[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: 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