Earlier quoted context omitted.
If you weren't used to regular calendars you wouldn't know that "August 10" means "about the middle of winter" either
August 10 is actually the middle of summer oO EDIT: you are all lying, if christmas movies have taught me anything it is snowing everywhere in the world in december.
ISO week date
51–60 of 91 posts
Re: ISO week date
#52Earlier quoted context omitted.
If you weren't used to regular calendars you wouldn't know that "August 10" means "about the middle of winter" either
August 10 is actually the middle of summer oO EDIT: you are all lying, if christmas movies have taught me anything it is snowing everywhere in the world in december.
Re: ISO week date
#53It seems like some people don't understand the use case for week numbers, at least for businesses. They allow the ability for time series comparisons for a work week. Using the calendar date is hopeless because the 21st day of a month could fall on any day of the week. I want to compare the Monday of the first work week of the year to the Monday of the first work week of last year. That's most helpful when trying to…
- WW02-WW16: Conceptual Development
- WW17: CDR
- WW18-46: Detail Design
- WW46-48: DDR
- WW48-52: Validation/Testing
- WW01-02: Ship to customer
So you could just now know how many weeks it took exactly for each phase: - [14] WW02-WW16: Conceptual Development
- [1] WW17: CDR
- [28] WW18-46: Detail Design
- [2] WW46-48: DDR
- [4] WW48-52: Validation/Testing
- [2] WW01-02: Ship to customerRe: ISO week date
#54Earlier quoted context omitted.
If you weren't used to regular calendars you wouldn't know that "August 10" means "about the middle of winter" either
August 10 is actually the middle of summer oO EDIT: you are all lying, if christmas movies have taught me anything it is snowing everywhere in the world in december.
Re: ISO week date
#55That is a surprising amount of complexity, really makes you glad that ISO ironed out all the details, so when I recently told our development team composed of Swiss, German, Portuguese and Danish people that we would be going live in week 4 (of 2020), everyone understood just fine. I still find it strange that some countries have not adopted week numbers. Sure, you can say something like "the week of December 21st",…
I find week numbers very cumbersome to use. Most calendars don't have them by default and most everyday interactions around dates don't involve them. As a result it's a burdensome and unroutined lookup in some arbitrary calendar somewhere just to figure out ballpark distances from current moment. I much prefer date ranges.
Oh? Google calendar and other software I use has them by default.
Re: ISO week date
#56It seems like some people don't understand the use case for week numbers, at least for businesses. They allow the ability for time series comparisons for a work week. Using the calendar date is hopeless because the 21st day of a month could fall on any day of the week. I want to compare the Monday of the first work week of the year to the Monday of the first work week of last year. That's most helpful when trying to…
Yep, huge companies like Intel use work-weeks for everything. For e.g. planning huge engineering projects was easy: - WW02-WW16: Conceptual Development - WW17: CDR - WW18-46: Detail Design - WW46-48: DDR - WW48-52: Validation/Testing - WW01-02: Ship to customer So you could just now know how many weeks it took exactly for each phase: - [14] WW02-WW16: Conceptual Development - [1] WW17: CDR - [28] WW18-46: Detail Desi…
Re: ISO week date
#57Earlier quoted context omitted.
I find week numbers very cumbersome to use. Most calendars don't have them by default and most everyday interactions around dates don't involve them. As a result it's a burdensome and unroutined lookup in some arbitrary calendar somewhere just to figure out ballpark distances from current moment. I much prefer date ranges.
> Most calendars don't have them by default Oh? Google calendar and other software I use has them by default.
Re: ISO week date
#58Re: ISO week date
#59Earlier quoted context omitted.
I find week numbers very cumbersome to use. Most calendars don't have them by default and most everyday interactions around dates don't involve them. As a result it's a burdensome and unroutined lookup in some arbitrary calendar somewhere just to figure out ballpark distances from current moment. I much prefer date ranges.
Depends a lot on your locale. Physical calendars around here always have them, and all decent calendar software has an option to display them. And if you’d grown up with it, it would be a lot more natural. Much like you probably know what month you’re in without checking your watch, I have a pretty good idea what week we’re in, and if someone says they can deliver something in week 8, I instinctively know that’s late…
I suppose all those calendar software I've seen over the years ain't true scotsmen.
Re: ISO week date
#60Note that `strftime` (and implementations dependent on it - hello Python!) do not implement ISO week numbers. In `strftime` all days preceding the first Sunday/Monday (depending which date-code you pass to the function) in a year are classified as "Week 0" as opposed to the ISO definition. This means that `strftime` week numbers are generally 1 less than the ISO week number. As serendipity would have it I was delving…