Talk:Last Friday of each month: Difference between revisions

From Rosetta Code
Content added Content deleted
m (→‎1582: was 5 Oct 1582 (JD) a Firday?)
m (→‎1582: formatting)
Line 233: Line 233:
:: Again, there are no missing days, no discontinuites. It only appears missing (or discontinuous) because a calendar is shown in one format (O.S. or old style or Julian) and then another format (N.S. or new style or Gregorian) during the switchover. If we switched over to a Mayan calendar, there won't be 12,000 missing years (or whatever). Both (er, all three) calendars are continuous (up to the present day). I don't want to go into the exception of the Mayan calendar when it "starts over" later this year (2012). -- [[User:Gerard Schildberger|Gerard Schildberger]] 18:55, 22 August 2012 (UTC)
:: Again, there are no missing days, no discontinuites. It only appears missing (or discontinuous) because a calendar is shown in one format (O.S. or old style or Julian) and then another format (N.S. or new style or Gregorian) during the switchover. If we switched over to a Mayan calendar, there won't be 12,000 missing years (or whatever). Both (er, all three) calendars are continuous (up to the present day). I don't want to go into the exception of the Mayan calendar when it "starts over" later this year (2012). -- [[User:Gerard Schildberger|Gerard Schildberger]] 18:55, 22 August 2012 (UTC)


:::I still like the calendar page shown which is about the same as the full 31 October days with 5 to 14 October crossed out with a felt pen
:::I still like the calendar page shown which is about the same as the full 31 October days with 5 to 14 October rossed out with a felt pen which wasn't available then. Neither did they know the word 'proleptic'. However, it's a pity that they (well, Gregor) dropped my birthday :-( --[[User:Walterpachl|Walterpachl]] 19:21, 22 August 2012 (UTC)
which wasn't available then. Neither did they know the word 'proleptic'. However, it's a pity that they (well, Gregor) dropped my birthday :-( --[[User:Walterpachl|Walterpachl]] 19:21, 22 August 2012 (UTC)


:::: You were born in 1752? Sheesh, you're almost as old as dirt. Aside from that, Pope Gregory XIII (and his [or a] scientific advisor and primary author of the reformed calendar: Aloysius Lilius, AKA: Luigi Lilio, or Liuigi Giglio, or Aluise Baldassar Lilio) didn't know about the word ''preleptic'', but it was proclaimed (via a ''papal bull'') that the reformed calendar was as if it was in effect (back) to January 1st, year 1. Note that the reformed calendar (later called the Gregorian calendar) was made effective the 24th of February in 1582 for the Catholic clergy, and it furthermore exhorted Catholic sovereigns to adopt the reformed calendar. -- [[User:Gerard Schildberger|Gerard Schildberger]] 20:29, 22 August 2012 (UTC)
:::: You were born in 1752? Sheesh, you're almost as old as dirt. Aside from that, Pope Gregory XIII (and his [or a] scientific advisor and primary author of the reformed calendar: Aloysius Lilius, AKA: Luigi Lilio, or Liuigi Giglio, or Aluise Baldassar Lilio) didn't know about the word ''preleptic'', but it was proclaimed (via a ''papal bull'') that the reformed calendar was as if it was in effect (back) to January 1st, year 1. Note that the reformed calendar (later called the Gregorian calendar) was made effective the 24th of February in 1582 for the Catholic clergy, and it furthermore exhorted Catholic sovereigns to adopt the reformed calendar. -- [[User:Gerard Schildberger|Gerard Schildberger]] 20:29, 22 August 2012 (UTC)

Revision as of 09:19, 23 August 2012

command line

Why does the task specify that the year is supplied from the command line? This seems to conflate two totally separate language capabilities--date arithmetic and command line handling. For the PHP example, I'm just ignoring the command line requirement. --Showell 17:37, 20 January 2012 (UTC)

task name

of year? not of month?--eMBee 13:43, 7 November 2011 (UTC)

It looks like it's all of the last fridays of the months of a given year? --Rdm 14:52, 7 November 2011 (UTC)
yes, exactly, which is why i find the current title confusing. something like Last Friday of every month would be more to the point. otherwise, i thought the original title was sufficient. something about fridays. it is clear enough that this is about the calendar. is more details really needed?--eMBee 14:59, 7 November 2011 (UTC)
English is not my born language, but I also find the title "Last Fridays of year" confusing. I understand it as 'really' the last fridays of a given year, for example the last three Fridays of 2012 are 2012-12-14, 2012-12-21 and 2012-12-28. Blue Prawn 21:10, 9 November 2011 (UTC)
exactly my thoughts too. so what's a better title? "last friday of each month?" (i thin kthe fact that it is for a year is less interesting, the same solution would work for any period of time).--eMBee 04:11, 10 November 2011 (UTC)
I'm not particularly attached to the current name; I just thought that the original (“Last Fridays”) wasn't good enough either. Suggested changes are welcome. –Donal Fellows 08:49, 10 November 2011 (UTC)

C version

This discussion is about the program shown here:

<lang c>#define _XOPEN_SOURCE

  1. include <stdio.h>
  2. include <time.h>

int main(int c, char *v[]) { int days[] = {31,29,31,30,31,30,31,31,30,31,30,31}; int m, y, w; struct tm tm; char buf[32];

if (c < 2 || !sscanf(v[1], "%d", &y)) return 1;

days[1] -= y % 4 || (y % 100 && ! (y % 400)); sprintf(buf, "%d-1-1", y); strptime(buf, "%Y-%m-%d", &tm); w = tm.tm_wday - 1; /* day of week for zeroth of Jan */

for(m = 0; m < 12; m++) { w = (w + days[m]) % 7; printf("%d-%02d-%d\n", y, m + 1, days[m] + (w < 5 ? -2 : 5) - w); }

return 0;

}</lang>

Building the C version under cygwin (gcc 3.4.4), I get:

<lang bash>$ make last_fridays cc last_fridays.c -o last_fridays

$ ./last_fridays 2011 2011-01-27 2011-02-24 2011-03-31 2011-04-28 2011-05-26 2011-06-30 2011-07-28 2011-08-25 2011-09-29 2011-10-27 2011-11-24 2011-12-29

$ ./last_fridays 2012 2012-01-27 2012-02-24 2012-03-30 2012-04-27 2012-05-25 2012-06-29 2012-07-27 2012-08-31 2012-09-28 2012-10-26 2012-11-30 2012-12-28

$ cc --version cc (GCC) 3.4.4 (cygming special, gdc 0.12, using dmd 0.125) Copyright (C) 2004 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.</lang>

The C entry currently shows different results for 2011, but I cannot reproduce them. --Rdm 23:25, 8 November 2011 (UTC)

I'll assume it's a cygwin bug for now. For the record, can you change two lines to
<lang>sprintf(buf, "%d-01-01 09:01:01", y);

strptime(buf, "%Y-%m-%d %H:%M:%S", &tm);</lang> and see how it does? --unsigned

I replaced the sprintf an strptime lines with these two lines and got the same result. Note also that might results are consistent (but this does not prove that the issue is not uninitialized memory). --Rdm 11:17, 9 November 2011 (UTC)
I have a similar problem with OpenBSD 4.9. The output changes from run to run, and might show the last Mondays, Thursdays, Fridays or Saturdays. After the call to strptime(), tm.tm_wday contains junk values like 50237728 or 239567136. (Legal values are 0 to 6.) Change to "%d-01-01 09:01:01" and "%Y-%m-%d %H:%M:%S" is no help. Checking my manuals, mktime(3) describes the fields of struct tm, but strptime(3) is vague; I assume that strptime() never fills tm_wday unless the string contains the weekday. --Kernigh 01:05, 9 November 2011 (UTC)

1582

4 Oct 1582 is followed by 15 Oct 1582 in the Gregorian Calendar. Java seems to take care of that. Rexx results differ:

25.09.1582
26.09.1582
27.09.1582
28.09.1582 Fri
29.09.1582
30.09.1582
01.10.1582
02.10.1582
03.10.1582
04.10.1582
15.10.1582 Fri
16.10.1582
17.10.1582
18.10.1582
19.10.1582
20.10.1582
21.10.1582
22.10.1582 Fri
23.10.1582
24.10.1582
25.10.1582
26.10.1582
27.10.1582
28.10.1582
29.10.1582 Fri
30.10.1582
31.10.1582
Java       Rexx
Jän 26     Friday 29 Jan 1582
Feb 23     Friday 26 Feb 1582
Mär 30     Friday 26 Mar 1582
Apr 27     Friday 30 Apr 1582
Mai 25     Friday 28 May 1582
Jun 29     Friday 25 Jun 1582
Jul 27     Friday 30 Jul 1582
Aug 31     Friday 27 Aug 1582
Sep 28     Friday 24 Sep 1582  <--- different
Okt 29     Friday 29 Oct 1582
Nov 26     Friday 26 Nov 1582
Dez 31     Friday 31 Dec 1582

--Walterpachl 06:05, 11 August 2012 (UTC)


No, there are no missing days in the Gregorian calendar.

October 4th, 1582, in the Gregorian calendar is followed by October 5th in the Gregorian Calendar.

October 4th, 1582, in the Julian calendar is followed by October 15th in the Gregorian calendar.

October 4th, 1582, in the Julian calendar is followed by October 5th in the Julian calendar for those countries (and places) that didn't convert to the Gregorian calendar.

October 4th, 1582, in the Julian calendar is followed by October 5th in the Julian calendar, even though it wasn't the "legal" (in use) calendar anymore.

It's like when someone leaves San Francisco, California and flies to New York, and adjusts (or adopts) their wristwatch to local time by jumping three hours ahead. There's no missing three hours. The traveler just adopted the "time" of a different time zone.

See: http://rosettacode.org/wiki/Talk:Calendar

The only "missing days" are when one switches from one calendar to another. The Gregorian calendar is proleptic. October 5th follows 4 Oct in EVERY year in the Gregorian calendar (starting in January 1, year 1). -- Gerard Schildberger 06:18, 11 August 2012 (UTC)

October 4th in year 1582 was the date in the Julian calendar (the day before the switchover in some countries). The next day, the Gregorian calendar was adopted (or put into effect) in various countries, but not everywhere. The new Gregorian calendar says it was October 15th. If we switched to a Mayan calendar, would we be missing years (or whatever)? Of course not. Once the Gregorian calendar was adopted, it was like the calendar was in effect all along, with a continous calendar (proleptic) backward to January 1st, year 1. No missing days. That is why there are references to O.S. (old style) for years previous to the adoption of the new Gregorian calendar for those people who were born before the switchover. If the Gregorian calendar wasn't proleptic, there would be no need for O.S. type of dates.

See: http://en.wikipedia.org/wiki/George_Washington

-- Gerard Schildberger 07:02, 11 August 2012 (UTC)

One learns something every other day. Thanks!
Does that mean that Java is wrong here?--Walterpachl 17:16, 11 August 2012 (UTC)
proletic should be proleptic?!? --Walterpachl 17:34, 11 August 2012 (UTC)
Yes, three misspellings of proleptic corrected. -- Gerard Schildberger 17:45, 11 August 2012 (UTC)
I don't know what the Java language says (as per its documentation) concerning what it returns from its date/time functions; does it reportedly return a Gregorian date, or does it switch to a Julian date at a certain point (date), and if so, why assume any date as the chosen switchover date would be, more-or-less, capricious as different countries adopted the Gregorian calendar at different times. But if it's for a Gregorian calendar, then yes, it's wrong. There's a lot (time, ego, emotions, reputations, ...) invested in the existing Java code (and others), and the resistance in changing/correcting it will be great. -- Gerard Schildberger 17:45, 11 August 2012 (UTC)
I think this line from the documentation about the Object that the Java code is using is what you're looking for:
GregorianCalendar is a hybrid calendar that supports both the Julian and Gregorian calendar systems with the support of a single discontinuity, which corresponds by default to the Gregorian date when the Gregorian calendar was instituted (October 15, 1582 in some countries, later in others).
I think that means it's Julian before 10/15/1582 and Gregorian thereafter (and you can set the cutover date if you want). Honestly I have no idea what's going on with any of this. I think it's kind of a waste since the calendar change was so long ago. Seems sort of impractical to worry about it now. --Mwn3d 17:57, 11 August 2012 (UTC)
The Gregorian Calendar isn't a hyrid calendar --- which is contrary to (I assume) some Java document --- one should refer to the (I can't believe I'm saying this) Vatican papers about it's description, rules, and implementation). Failing that, one could just check the bureau of weights and measurements, division of measurement standards, or whatever ... for the country you're in. It is proleptic (both in its inception and use) and there is no discontinuity. [Nothing is really simple, the more you know about something, the more detail there is that you don't want to necessarily know or care about]. The only point of interest is when states/countries switched over from the (whatever) older calendar(s) [in most cases, a Julian calendar] to the Gregorian calendar, and that switchover caused "missing days" when the new calendar was adopted and the old calendar was dropped. The pratical side to this is when referring to specific dates, such as (USA president) George Washington's birthday (some of old fogies still remember when GW's birthday was celebrated on the O.S. birthdate ... and then later came President's Day. The practical side of the changeover didn't really affect many people (or contracts), there was no driver's licenses to worry about, no retirements kicking in (Social Security was a long, long way off), I suppose there were a handful of people who suddenly become over the age of consent for marriage, property ownership, inheritance, impressment, and other ... stuff, the most important was the ability to buy beer, of course, of course. The adoption of a new/different calendar (with different leapyear rules, and now, leapsecond rules) isn't a simple thing, otherwise it wouldn't have been resisted for so long by many states/countries, and, not surprising, politics/religion/posturing played a big role in this. We still squabble (a very polite term) over daylight savings times, and you won't believe the (USA) laws around the use (or not) of it --- on how they affect labor (time worked vs. time passed), 24/7 type of contracts, end-of-use clauses, a whole host of incidentals. -- Gerard Schildberger 19:10, 11 August 2012 (UTC)
Ignoring pretty much all of that....do you have a problem with the Java code? What do you want to know about it? I don't want to know anything about the calendar systems yet. I'm just trying to figure out if you guys think the program is wrong or not. --Mwn3d 20:30, 11 August 2012 (UTC)
I noticed that 2 programs produce different results and brought that up
Thanks to GS for his elaborations!
I couldn't care less about Java's calendar apart from watching out
for NetRexx' solution:-)--Walterpachl 07:52, 13 August 2012 (UTC)

I don't have a dog in that fight (as pertaining to Java code and how it interprets/presents/discombobulates/converts Gregorian and Julian dates). But, as far as I can interpret from the quoted text from the documentation about the Object that the Java code is using, it states that the Gregorian calendar is a hybrid calendar. It isn't. (Could it mean the way Java treats dates is a hybrid system?) Possibly, the Java code treats dates after a "switchover" (there were many switchovers, depending on the state/country) as Gregorian, and Julian before that.

If the Java code supports Julian and Gregorian as an option (as separate function/subroutine options), that would seem to be OK. But the quoted statement says it supports a single discontinuity with an assumed date of when the Gregorian calendar was adopted by most of the (Holy Roman) Catholic world back in 1582, then it appears that the Java code writer(s) think that the Gregorian calendar isn't proleptic [proleptic essentially means that it extends backwards in time with no discontinuity back to January 1st, year 1], and the Java code then (it appears to me) switches back to the Julian year method.

If that is true, then the Java code would have to use the Julian leapyear rules, and also that some Julian new years start on March 25th (Lady Day) [in some countries], not January 1st. To check this, see what year George Washington (USA president) was born in the O.S.); if Java says 1731, then that's the correct year for the Old Style (Julian) format.

Note that according to the Gregorian calendar, George Washington was born in the year 1732.

Also note that Russia's October Revolution (being Eastern Orthodox Catholic, didn't adopt the Gregorian calendar until 1924) actually happened in November (in the Gregorian calendar). I just love trivia.

This subject is, for the most part, pretty much out of my league, and needs a scholar's attention. I ain't that. I hoped I paraphrased and stated accurately some of the differences between Gregorian and Julian calendars (N.S. vs. O.S.).

Most people think that the leap year rule for the Julian calendar was simple: years divisible by 4 are leap years. Not so. Julian year 4 wasn't a leap year (see if the Java code supports that). Some scholars think that Julian year 8 wasn't a leap year as well, but I can't find that reference on the "google-net" anymore.

If we don't read and understand history, we're doomed to repeat it's mistakes. -- Gerard Schildberger 19:27, 12 August 2012 (UTC)


While I found this discussion of 1582 most enlightening I am thrilled by the 'real' calendar of 1582 shown under Calendar for Scala.
( http://rosettacode.org/mw/index.php?title=Calendar&action=edit&section=17 )
I wonder if such a calendar page was ever printed.
Snippet from there:
1582
     September              October       
Mo Tu We Th Fr Sa Su  Mo Tu We Th Fr Sa Su
                1  2   1  2  3  4 15 16 17
 3  4  5  6  7  8  9  18 19 20 21 22 23 24
10 11 12 13 14 15 16  25 26 27 28 29 30 31
17 18 19 20 21 22 23                      
24 25 26 27 28 29 30                      
--Walterpachl 05:12, 22 August 2012 (UTC)

No, I don't think so. The October "month" shown above is a mixture of two types of calendars:
Julian (O.S.) and Gregorian (N.S.); furthermore, neither the old or new style is indicated.
The Julian calendar continues after any certain date, and is still used today for various purposes.
The Gregorian calendar is proleptic (so there're no "missing" days in it, no matter when it was adopted).

Nevertheless, the Gregorian calendar is discontinuous.
First, it's discontinuous based on where the results of the program are being understood. Second, it's discontinuous because it was not used before certain dates (which depend on location).
No, both calendars are continuous. Just because one was adopted at a certain date, doesn't mean the calendar is discontinous. Both calendars have current day usage, and the Gregorian calendar is proleptic, that is, dates previous to its inception are "present" down to January 1st, year 1 --- no matter when that calendar was adopted. The only discontinuity is when showing a specific calendar, and then a different calendar, during the switchover (when one calendar was "dropped", another adopted for common use).

The problem would be solved if, when showing that "split" calendar, which dates are Julian, which dates are Gregorian. -- Gerard Schildberger 18:55, 22 August 2012 (UTC) -- Gerard Schildberger 18:55, 22 August 2012 (UTC)

It's true that some of these discontinuities can be interpreted as being an artifact of the transition from Julian calendar to Gregorian calendar, but that doesn't eliminate the discontinuities, it only labels them. (And, also, we can legitimately say that all days before its adoption are "missing" from it.)
Also, "where the results of the program are being understood" can be awkward to implement. --Rdm 18:26, 22 August 2012 (UTC)
Again, there are no missing days, no discontinuites. It only appears missing (or discontinuous) because a calendar is shown in one format (O.S. or old style or Julian) and then another format (N.S. or new style or Gregorian) during the switchover. If we switched over to a Mayan calendar, there won't be 12,000 missing years (or whatever). Both (er, all three) calendars are continuous (up to the present day). I don't want to go into the exception of the Mayan calendar when it "starts over" later this year (2012). -- Gerard Schildberger 18:55, 22 August 2012 (UTC)
I still like the calendar page shown which is about the same as the full 31 October days with 5 to 14 October rossed out with a felt pen which wasn't available then. Neither did they know the word 'proleptic'. However, it's a pity that they (well, Gregor) dropped my birthday :-( --Walterpachl 19:21, 22 August 2012 (UTC)
You were born in 1752? Sheesh, you're almost as old as dirt. Aside from that, Pope Gregory XIII (and his [or a] scientific advisor and primary author of the reformed calendar: Aloysius Lilius, AKA: Luigi Lilio, or Liuigi Giglio, or Aluise Baldassar Lilio) didn't know about the word preleptic, but it was proclaimed (via a papal bull) that the reformed calendar was as if it was in effect (back) to January 1st, year 1. Note that the reformed calendar (later called the Gregorian calendar) was made effective the 24th of February in 1582 for the Catholic clergy, and it furthermore exhorted Catholic sovereigns to adopt the reformed calendar. -- Gerard Schildberger 20:29, 22 August 2012 (UTC)

So this calender page was printed in February and everyone knew that there would not be these days. Fine with me. What's your point in misspelling proleptic? --Walterpachl 06:25, 23 August 2012 (UTC) And is it correct that 5 October 1582 was a Friday?

It is really amazing how much misinformation (that's a code word for bad or incorrect information) concerning the subject of the Gregorian calendar, the various switchovers (adoptions), and the subject of the translations of the two styles of dates (O.S. vs. N.S.). One website states that Pope Gregory ordered ten days to be dropped ... and whatnot. As for the Wikipedia's article, it is suprisingly factual and well-formed. Kudos to those authors. -- Gerard Schildberger 20:36, 22 August 2012 (UTC)