[REBOL] Re: ANN: make-doc-pro-104 released

2002-08-01 Thread Daan Oosterveld
="88" /> Well it's possible... You could also post the page for offline pages, look into the in the page. I use it frequently to make my pages conform to XHTML 1.0 strict. cheers, Daan Oosterveld -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.

[REBOL] Re: Entropy [was Re: Compression]

2001-04-19 Thread Daan Oosterveld
Obviously this is not true .. all great software fits on one 880Kb disk... ;) D. Oosterveld Robert M. Muench wrote: >> -Original Message- >> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of >> Holger Kruse >> Sent: Wednesday, April 18, 2001 5:56 PM >> To: [EMAIL PROTECT

[REBOL] Re: Converting characters.

2001-01-23 Thread Daan Oosterveld
This is the smallest I could come up with >> non-accent: func [text][ foreach [a b] "áaéeóo" [ replace/all text a b] ] >> non-accent "áéóáéó" == "aeoaeo" Daan Oosterveld "Bruno G. Albuquerque" schreef: > Hello. > > I nee

[REBOL] Re: 'Parse is peculiar! - more details

2000-12-14 Thread Daan Oosterveld
(reverse name reverse won reverse num) ] ) to end ] You can add more rules to parse the ip-numer and date. Daan Oosterveld Shannon Baker schreef: > Once again I realise it may be easier to do a find/last or some other > trick but i'm more > interested in understan

[REBOL] Re: Testing if a string is an integer?

2000-12-08 Thread Daan Oosterveld
>> if not error? try [ a: load "66436436" ] [ integer? a ] == true >> if not error? try [ a: load "66436fdsaf436" ] [ integer? a ] == none >> Daan Oosterveld Mat Bettinson schreef: > Folks, > > This is a dead basic one and I'm sure I'l

[REBOL] Re: PostgreSQL 2 Rebol and back again...

2000-12-07 Thread Daan Oosterveld
the site I couldn't find anything in the docs talking about > that. > http://www.postgresql.org/devel-corner/docs/postgres/protocol.htm Daan Oosterveld -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.

[REBOL] Re: PostgreSQL 2 Rebol and back again...

2000-12-07 Thread Daan Oosterveld
nyone know where to find standart unix headers for windows? Daan Oosterveld Sharriff Aina schreef: > Hi Daan! > > I agree that Postgres is better, I would actually like to use Postgres, But > I can´t compile on Windows ( I can´t speak C++). Were you able to compile > MDBMS on

[REBOL] Re: PostgreSQL 2 Rebol and back again...

2000-12-07 Thread Daan Oosterveld
when sending an query the protocol doesn't seem to match the implementation. The documentation of the protocol is on their website: http://www.postgresql.org/ Could someone find out what goes wrong. I can not find the problem. Daan Oosterveld "CRS - Psy Sel/SPO, COUSSEMENT Chris

[REBOL] Re: SV: Re: Func, why does it remeber previous data?

2000-11-11 Thread Daan Oosterveld
CA0} append b #{A0}] >> If you do not copy the series your will change your own code. >> a: [ b: #{ACDC} append copy b #{a0} ] == [b: #{ACDC} append copy b #{A0}] >> do a == #{ACDCA0} >> a == [b: #{ACDC} append copy b #{A0}] >> That should fix it... Daan Oost