[REBOL] Re: [globals] Handy function for determining what words are global

2004-02-29 Thread Ammon Johnson
Slighty related here, is a mezzanine 'what >> ? what USAGE: WHAT DESCRIPTION: Prints a list of globally-defined functions. WHAT is a function value. Enjoy!! ~~Ammon ;~> - Original Message - From: "Ashley Trüter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday,

[REBOL] [globals] Handy function for determining what words are global

2004-02-29 Thread Ashley Trüter
For those who would like to know just exactly what those global words are. w: copy [] f: copy [] n: copy [] o: copy [] a: copy [] foreach word load mold first system/words [ if value? word [ insert tail w word if function? get word [insert tail f word]

[REBOL] [ANN] RebDB v1.2

2004-02-29 Thread Ashley Trüter
Latest release includes: * Several fixes / additions * Next Value (aka key sequence) support * rowid pseudo-column support * Soundex, based on Allen Kamp's soundex.r, function added * Tutorial implementing an 82,000 word spell-check facility in a dozen lines of code! Release notes and source av

[REBOL] Re: Dynamic scroller step adjustment

2004-02-29 Thread Gerard Cote
Hi Anton and Brett, Thanks for your respective reply. Both suggested ways will be useful since I now have something near the original answer I was waiting for and in the same time I also have a neat solution that works easily as is. For now I'll study the first but also use the second until I g

[REBOL] Re: Wake On Lan with REBOL ?

2004-02-29 Thread Anton Rolls
Just a guess, but are you sure that the connection should be opened and closed 16 times as well ? I suspect that the NIC address should be binary (6 bytes), no ":" characters. So try #{00D009AD71F4} Also try reversing the byte order, sending it completely in reverse order etc. Anton. > Hi Rebole