[REBOL] Doomsday Algorith / Day of the Week was bpaddocks revival of Zeller's congruence Re:

2000-02-19 Thread jbone
Just a quick parse and respond... this might be of interest to some of the folks on the list who might not be aware of it. John Conway of LIFE fame (the automata thing) is credited with an algorith similar to Zellers called the "Doomsday Algorithm." His algorithm is simple enough to perform in

[REBOL] bpaddocks revival of Zeller's congruence Re:

2000-02-19 Thread business
; Here's a working zeller.r script... ; corrected a few of the goofs from previous post. ; note that this isn't quite what I was looking for when I posted the calendar.r html making letter ; however it's nice to know about Zeller's Congruence... REBOL [ Title: "bpaddock revival of Zeller'

[REBOL] bpaddocks revival of Zeller's congruence

2000-02-19 Thread business
;wow... neat formula... I'm inclined to convert... I've already begun below amidst the body of your message... ;I set out a few months ago to figure this out... and was easily sidetracked ;-) ;before I go on I just say that your mail showed up with an unusual Icon in my MS Outlook express inbox...

[REBOL] .r to html monthly calendar prelude Re:(2)

2000-02-19 Thread ddalley
Hello, BP: On 20-Feb-00, [EMAIL PROTECTED] wrote: > The 'standard', if there is such a thing, for figuring out > the day of the week is "Zeller's Congruence". His formula > might help you out. > Sorry that I didn't take the time to convert it to Rebol. > Would like to see it that way if some

[REBOL] New? programming construct Re:(5)

2000-02-19 Thread icimjs
Hi Ole, you wrote: >Do you mean the Beta programming language, Yes. >or just the beta versions of >GnuC++? (Didn't think anybody outside of the University of Aarhus, here in >Denmark, knew about Beta. :-) >And before I get your reply, I still think I'm >right on that one ;-) ) Yikes. I d

[REBOL] Re: What am I doing wrong? Re:(3)

2000-02-19 Thread ejolson
Hello, On 07-Feb-00, [EMAIL PROTECTED] wrote: > This list is a real good idea. I use Sambar and they have a list like > this. > > I have never recieved this kind of product support from Microsoft.. There's the difference, you get your money's worth with Rebol. M$ support? Yeah, right! Ell

[REBOL] .r to html monthly calendar prelude Re:

2000-02-19 Thread bpaddock
>REBOL [ >Title: "day of the Week" >] >;figure out the number of days in this month and print >; figuring out how many days in month >; one way that seems intutive if I could do somthing like=20 The 'standard', if there is such a thing, for figuring out the day of the week is "Zeller's Congr

[REBOL] .r to html monthly calendar prelude

2000-02-19 Thread business
Do any rebols have examples of .r scripts that create monthly calendars thatthey are willing to share?  Or even a few thoughts on how you would create one.   The following are some simple scripts I made yesterday as a prelude to html monthly calendar.  The work, however I'd love to see how o

[REBOL] unsubsribe Re:

2000-02-19 Thread Al . Bri
[EMAIL PROTECTED] wrote: > Subject: [REBOL] unsubsribe > NO MORE PLEASE 1 To unsubscribe from this list, simply send an email to this list with only this: unsubscribe in the subject line. To make sure of this, click this link: [EMAIL PROTEC

[REBOL] Digest Format for REBOL List

2000-02-19 Thread evans
The REBOL e-list is very helpful. Probably many of us novice listeners would appreciate a digest format. A digest is a collection of the previous day's exchanges that is automatically compiled and mailed to (digest) subscribers once per day. This single daily e-mail is less troublesome than the

[REBOL] Rebol doesn't return headers under IIS 5, what am I doing wrong? Re:

2000-02-19 Thread s_woodrum
The cgiformobj.r script from the REBOL site has the unix/apache magic pound-bang to launch REBOL at the top of the script, i.e #!rebol --cgi Is that still in the script? If so, comment it out with ; or put it in braces {} or delete it. IIS won't like this bit of magic. Scott >From: [EMAIL P

[REBOL] Fw: [REBOL] Ok, how to print to STDOUT Re:(2)

2000-02-19 Thread fuchs
try rebol -c drives.r | more and see if that works. Ira - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 18, 2000 10:06 PM Subject: [REBOL] Fw: [REBOL] Ok, how to print to STDOUT Re: > Still looking for help on this... (want output at the com

[REBOL] unsubsribe

2000-02-19 Thread ldenn142
NO MORE PLEASE 1

[REBOL] unsubsribe

2000-02-19 Thread ldenn142
NO

[REBOL] New? programming construct Re:(4)

2000-02-19 Thread ole_f
Hi Elan, 17-Feb-2000 you wrote: >Would that mean that GnuC++ would not be able to incorporate rules? Beta >has had rule constraints for at least two or three years. Do you mean the Beta programming language, or just the beta versions of GnuC++? (Didn't think anybody outside of the University of

[REBOL] httpreferer?

2000-02-19 Thread rihughes
How can I get the http refering page when using webserver.r ? -Rich

[REBOL] Precision in fractionnal numbers

2000-02-19 Thread dolmen
I wrote before on the mailing list ([EMAIL PROTECTED]) about the importance of precision when manipulating money values. Money values are currently handled with floating point values stored in base 2. I'm trying to produce a sample of how this internal design might result in wrong results. I didn'

[REBOL] Re: Parse questions ??

2000-02-19 Thread giesse
Hello [EMAIL PROTECTED]! On 19-Feb-00, you wrote: m> I have a file consisting of lines in the following format: m> "23123+34234+234234-23423+3-" m> ie, n digits followed by a sign etc etc. What about: >> data: "23123+34234+234234-23423+3-" == "23123+34234+234234-23423+3-" >> values: make

[REBOL] debugging TCP/IP programs Re:

2000-02-19 Thread Petr . Krenzelok
[EMAIL PROTECTED] wrote: > Has anyone written a listen utility to monitor port 80? I am trying to > see what the remote web server is sending so that I can respond > appropriately from a rebol client. > www.rebol.org look at Sterling's proxy script, very nice http://www.rebol.org/a

[REBOL] Re: empty context possible? Re:

2000-02-19 Thread giesse
Hello [EMAIL PROTECTED]! On 18-Feb-00, you wrote: V> I did and got something similar to this, but was able to hack V> it with going to global scope by "/probe" instead of "probe". Actually, it doesn't work, or at least it doesn't here. I just get "hello" returned (just because it is the last

[REBOL] debugging TCP/IP programs

2000-02-19 Thread anon_emouse
Has anyone written a listen utility to monitor port 80? I am trying to see what the remote web server is sending so that I can respond appropriately from a rebol client. --- Regards,Graham Chiu gchiucompkarori.co.nz http://www.compkarori.com/dynamo - The Homebuilt Dynamo http://www.