Stories
Slash Boxes
Comments

News for nerds, stuff that matters

'Daylight Savings Bugs' Loom

Posted by Zonk on Fri Feb 16, 2007 12:07 PM
from the crush-those-critters dept.
An anonymous reader writes "ZDNet has front page coverage of the looming daylight savings changeover, and the bugs that may crop up this year. With the extension of daylight savings time by four weeks, some engineers and programmers are warning that unprepared companies will experience serious problems in March. While companies like Microsoft have already patched their software, Gartner is warning that bugs in the travel and banking sectors could have unforeseen consequences in the coming months. ' In addition, trading applications might execute purchases and sales at the wrong time, and cell phone-billing software could charge peak rates at off-peak hours. On top of that, the effect is expected to be felt around the world: Canada and Bermuda are conforming to the U.S.-mandated change, and time zone shifts have happened in other locales as well.'" Is this just more Y2K doomsaying, or do you think there's a serious problem here?

Related Stories

[+] Linux: Linux Systems and the New DST 304 comments
An anonymous reader writes "The recent changes in the Daylight Saving Time will affect virtually all computer systems in the US one week from now. Microsoft has been busy preparing Windows users for 'Y2DST,' and all the major Linux distributions have also issued patches. How can you be sure your Linux systems are ready, and what can you do to get them ready if they're not? This how-to article at Linux-Watch answers both questions in simple language and with easy-to-follow instructions."
[+] Hardware: Is Daylight Saving Shift Really Worth It? 652 comments
Krishna Dagli writes "Two Ph.D. students at the University of California at Berkeley say that Daylight Saving Shift will not do any good or create any energy savings. We are already spending money for software upgrades in the name of saving energy and after reading following article I wonder has congress really studied the impact of DST shift? " I also read some back story on the concept; OTOH, I found TiVo's suggestions that I manually change everything on my Series 1 device to be somewhat...insulting.
[+] Your Rights Online: Daylight Savings Time Puts Kid in Jail for 12 Days 881 comments
Jherek Carnelian writes "Cody Webb was jailed for calling in a bomb threat to his Hempstead Area high school (near Pittsburgh). He spent 12 days in lockup until the authorities realized that their caller-id log was off an hour because of the new Daylight Savings Time rules and that Cody had only called one hour prior to the actual bomb threat. Perhaps it took so long because of the principal's Catch-22 attitude about Cody's guilt — she said, 'Well, why should we believe you? You're a criminal. Criminals lie all the time.'"
This discussion has been archived. No new comments can be posted.
'Daylight Savings Bugs' Loom | Log In/Create an Account | Top | 403 comments (Spill at 50!) | Index Only | Search Discussion
Display Options Threshold:
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • Things you should know. (Score:5, Informative)

    by suso (153703) * on Friday February 16 2007, @12:09PM (#18040026)
    (http://suso.suso.org/ | Last Journal: Tuesday March 09 2004, @12:03AM)
    http://www.bloomingtonlinux.org/wiki/DST_Time_Chan ge_Issues [bloomingtonlinux.org]

    A year ago, after most of Indiana went through its first timezone change in 40+ years, we found out that it presented a few problems in Linux, I tried to post a story to Slashdot about it to warn other people in the US that they would be dealing with this problem later when the rest of the US changes to the new DST. I tried several times to post it and they were all rejected.

    Basically, you need to make sure that if you change your timezone data on your system that you restart everything, otherwise when the time does change, some programs continue to use the old timezone data and are an hour off.
    • Re:Things you should know. (Score:5, Funny)

      by Anonymous Coward on Friday February 16 2007, @12:16PM (#18040170)

      A year ago, after most of Indiana went through its first timezone change in 40+ years, we found out that it presented a few problems in Linux, I tried to post a story to Slashdot about it to warn other people in the US that they would be dealing with this problem later when the rest of the US changes to the new DST. I tried several times to post it and they were all rejected.
      Mod parent down, informative.
      [ Parent ]
    • Re:Things you should know. by jcgam69 (Score:3) Friday February 16 2007, @12:18PM
    • Re:Things you should know. (Score:5, Interesting)

      Our datacentre has ~ 500 Solaris / HP-UX / AIX boxen, and ~ 1000 Windows servers.

      15 minute change window to apply patch, another 15 minutes to reboot successfully and come back online. Multiply 30 min x 1500 = 45,000 minutes, or 750 hours. But we only have one weekly change window, Sunday mornings from 2-6am. Assuming finite number of staff, contingency (there's always going to be some problems), etc... we started last September. We might just make the deadline.

      So yes, I think its a bit of a problem. There's also the unspoken assumption that people learned their lessons during Y2k and have sufficient date handling logic to address changes to DST...nothing hard coded in the underlying applications.

      [ Parent ]
    • Re:Things you should know. by vadim_t (Score:3) Friday February 16 2007, @12:38PM
      • Re:Things you should know. by VertigoAce (Score:3) Friday February 16 2007, @01:00PM
      • Re:Things you should know. by Anonymous Coward (Score:2) Friday February 16 2007, @01:03PM
      • Re:Things you should know. (Score:4, Interesting)

        by Marillion (33728) <ericbardes AT gmail DOT com> on Friday February 16 2007, @01:15PM (#18041296)

        Most programs that use the standard C library do use UTC and just don't realise it. The most important thing to realise about daylight savings time is that Time isn't changing. The sun still rise the after DST as before DST (astronomical adjustments due to Earth's heliocentric orbit not withstanding). But, how we read the clock is changing.

        I heard one company just say, "we're going to just change the clock on the computer." This makes me cringe.

        All file time timestamps on all versions of UNIX and versions of Windows derived from NT store times as Julian seconds since 1970-01-01 00:00:00 GMT. Changing the system clock means that the times will be stored wrong even though they display properly in the local timezone.

        Other places to watch out for are applications that manage their own timezone data. Java is a prime example. Major database vendors would be another.

        [ Parent ]
        • Re:Things you should know. (Score:4, Interesting)

          by pe1chl (90186) on Friday February 16 2007, @01:32PM (#18041666)
          When you are so careful about file timestamps, you should know that Windows does not translate them correctly anyway.
          Windows has no knowledge about timezone history. It translates the UTC time to local time using its current time-offset, which depends on the current DST status only.
          So, when you now look at a file timestamp (in the GUI) that you created last summer, you will find that its time is one hour off.

          Even when Microsoft would finally fix this (they consider it a feature rather than a bug), they would probably not fix the historic aspect.
          I.e. now that the beginning of DST shifts one month, and you would look at a file created last year in that one month window, it would probably still be off.

          Timezone handling in Windows just sucks. It does not have to be that bad, it works fine in Linux (including historic changes). Microsoft just has decided to make a bad implementation and then never fix it, in the name of backward compatability.
          [ Parent ]
        • 1 reply beneath your current threshold.
      • Re:Things you should know. by Paul Rose (Score:1) Friday February 16 2007, @01:21PM
        • 1 reply beneath your current threshold.
      • Re:Things you should know. by Poruchik (Score:2) Friday February 16 2007, @01:27PM
      • Not that simple. by centron (Score:3) Friday February 16 2007, @01:39PM
      • Re:Things you should know. by vertinox (Score:2) Friday February 16 2007, @01:48PM
      • Re:Things you should know. (Score:4, Insightful)

        by tushar (205002) on Friday February 16 2007, @02:04PM (#18042174)

        Why do your programs use the local timezone, anyway? Programs should handle and store dates in UTC, and convert to the local timezone only for display.
        Saving the time in UTC does not get rid of all problems. Programs that store the data for future events will still run into issues. An event that was stored in the database before the system was patched will be off by one hour if the time falls within the dates that have the daylight savings rule changed.
        [ Parent ]
      • Re:Things you should know. by jejones (Score:2) Friday February 16 2007, @02:37PM
      • Re:Things you should know. by HTH NE1 (Score:2) Friday February 16 2007, @03:20PM
      • Re:Things you should know. by iabervon (Score:2) Friday February 16 2007, @03:45PM
      • 3 replies beneath your current threshold.
    • Re:Things you should know. by sp3d2orbit (Score:2) Friday February 16 2007, @01:39PM
    • Re:Things you should know. by smaddox (Score:1) Friday February 16 2007, @03:18PM
    • 1 reply beneath your current threshold.
  • no need o worry by Anonymous Coward (Score:1) Friday February 16 2007, @12:11PM
  • Moo by Chacham (Score:1) Friday February 16 2007, @12:12PM
    • Re:Moo by d3m0nCr4t (Score:2) Friday February 16 2007, @12:35PM
  • y2k = media working for once (Score:5, Insightful)

    by TinBromide (921574) on Friday February 16 2007, @12:13PM (#18040094)
    (http://www.forensic-data-svc.com/)
    The reason y2k was such a letdown was because everybody took heed of the media hype and patched their stuff. If there had been no hype before, there might have been the problems that the hype was warning about. (or not, sensationalism is sensationalism)

    Its like you're driving along and there's a huge backup for miles because of an accident in the middle of the road after a bend. Now this huge backup may have slowed you down and made you aware that there was a problem. If it was just you and the wreck, you may have plowed into it if you weren't paying attention.

    Same thing with this hype. We should tolerate the hype because the heightened coverage will get bosses talking to programmers about fixing the software, and it'll turn out to be nothing.
    • Mod Parent Up by ObiWanStevobi (Score:3) Friday February 16 2007, @12:27PM
      • Re:Mod Parent Up by mike2R (Score:3) Friday February 16 2007, @01:12PM
        • Re:Mod Parent Up by radish (Score:2) Friday February 16 2007, @03:06PM
        • Re:Mod Parent Up by Chris Burke (Score:2) Friday February 16 2007, @04:24PM
        • Re:Mod Parent Up by mike2R (Score:2) Friday February 16 2007, @02:14PM
          • Re:Mod Parent Up by ghjm (Score:2) Friday February 16 2007, @03:21PM
          • Re:Mod Parent Up (Score:4, Interesting)

            by Stanistani (808333) on Friday February 16 2007, @03:31PM (#18043568)
            (http://ofteninspired.com/ | Last Journal: Sunday April 01 2007, @05:49PM)
            Where I worked, we had a lot of old but reliable systems. We tested our mainframes, minicomputers, PCs, and network systems - they failed in varying and catastrophic ways.

            We spent millions of dollars for all new systems, and thousands of hours in planning, procurement, implementation, and testing. We literally pushed all the boxes on the datacenter floor to the wall and built anew.

            It was a horrendous chore, and I didn't get to spend New Year's with my family.

            Perhaps we should have let you all freeze in the dark.
            [ Parent ]
        • 1 reply beneath your current threshold.
      • Re:Mod Parent Up by pe1chl (Score:2) Friday February 16 2007, @01:41PM
      • 1 reply beneath your current threshold.
    • Re:y2k = media working for once (Score:5, Informative)

      by DrXym (126579) on Friday February 16 2007, @12:55PM (#18040910)
      I think y2k was a let down because it was fairly straightforward to fix software and tell if it was going to get bitten or not. Basically anything that stored dates as two digits had to be fixed. The bigger problem will come in 2037 when lots of clunking software with no source code wraps around.

      The DST thing is pretty evil too because it's usually up to runtime stacks like Java and CRT to decide on the timezone and time. If they give you the wrong time you're screwed. For the most part you might be okay if everything resolves down to some registry entries or timezone data files but that isn't always the case. There are functions such as Microsoft's _tzset() which are HARDCODED to a particular behaviour and apps that link to the CRT or have their own DLLs will be broken unless you recompile them.

      [ Parent ]
    • You are totally without a clue by Anonymous Coward (Score:1) Friday February 16 2007, @01:23PM
    • by LMacG (118321) on Friday February 16 2007, @01:41PM (#18041820)
      "In no way were dates routinely stored as two byte characters (99 being the max) when 1 byte would get you to 255 easily." Wrong. In EVERY WAY dates were routinely stored as three sets of two byte characters.

      What you are completely ignoring is that the vast majority of the code that had to be examined and patched was written in COBOL. COBOL that store dates as a string of six digits. Digits that were stored in many cases as EBCDIC characters, not hexadecimal integer values. And just to make it fun, in some cases the source code was not available.

      "[A]nyone that created a four digit date by String Concat: "19" + String(date) would " probably not have been born yet when the programs that needed to be fixed were written. It wasn't the programs that were written in the 1990's that had to be dealt with, it was the ones written in the 1960's. And if you don't believe there were any of those in use, then I suggest you have no idea what's really happening at your bank. Or in the US air traffic control system, for that matter.
      [ Parent ]
    • Re:Y2K was an oddity and mis-explained by fishbowl (Score:1) Friday February 16 2007, @01:54PM
    • Re:Y2K was an oddity and mis-explained by jbohumil (Score:1) Friday February 16 2007, @02:07PM
    • 2 replies beneath your current threshold.
  • rates? (Score:5, Funny)

    by cascadingstylesheet (140919) on Friday February 16 2007, @12:14PM (#18040116)

    and cell phone-billing software could charge peak rates at off-peak hours


    Aiyeeee!!!!!!!!!!!!!
    • Re:rates? (Score:5, Insightful)

      by johnlcallaway (165670) on Friday February 16 2007, @12:17PM (#18040180)
      And could charge off-peak rates for peak hours. The number of hours for peak and non-peak will remain the same, only the start times will change.

      Everyone wants a credit when they are over billed, but no offers to give money back if they are under billed.
      [ Parent ]
      • Re:rates? by TubeSteak (Score:2) Friday February 16 2007, @12:54PM
        • Amazon by norminator (Score:3) Friday February 16 2007, @01:06PM
      • Re:rates? by imlepid (Score:1) Friday February 16 2007, @04:48PM
    • Re:rates? by Nom du Keyboard (Score:3) Friday February 16 2007, @12:19PM
      • Re:rates? (Score:4, Insightful)

        by Qzukk (229616) on Friday February 16 2007, @12:33PM (#18040490)
        Except that peak and off-peak mean something, namely volume of calls. So as a matter of fact, no, they are not "equally likely to charge you off-peak rates during peak periods" because you're more likely to be making a peak period call than an off-peak call.
        [ Parent ]
      • Re:rates? by Carbonite (Score:2) Friday February 16 2007, @12:35PM
        • Re:rates? by gfxguy (Score:2) Friday February 16 2007, @01:11PM
    • Re:rates? by camg188 (Score:2) Friday February 16 2007, @12:56PM
    • If I did it... by thegnu (Score:1) Friday February 16 2007, @12:57PM
  • it is a real concern by HP-UX'er (Score:2) Friday February 16 2007, @12:14PM
  • by 8127972 (73495) on Friday February 16 2007, @12:15PM (#18040142)
    ... On how to deal with this is below:

    http://www.reganfamily.ca/dst/ [reganfamily.ca]

    This is likely more useful than the original article. It has resources for everything from Blackberries to UNIX.
    • 1 reply beneath your current threshold.
  • Not such a big deal (Score:3, Interesting)

    by ThePolkapunk (826529) on Friday February 16 2007, @12:15PM (#18040144)
    (http://www.livejournal.com/~thepolkapunk)
    Is it a problem? Yes, but it's nowhere near as big an issue as Y2K was. The biggest issue for my company is that many of our machines are 2000, so we had to create our own patch, since Microsoft is only patching 2000 for people who pay their extortion fees.

    The majority of our applications just go off of the OS time, so as long as the OS is patched, everything else is fine. The DBA's will be coming in over a weekend to test the patches on the Unix servers, and the Server guys will be doing the same for the Windows servers, but other than that, there's not that much we have to do.

    The financial industry will probably have more problems than most, but still, it should be negligable compared to Y2K.
  • Brazil by Anonymous Coward (Score:1) Friday February 16 2007, @12:15PM
  • There is no time bank by Anonymous Coward (Score:1) Friday February 16 2007, @12:16PM
  • Ahem, Not Exactly (Score:5, Informative)

    by Nom du Keyboard (633989) on Friday February 16 2007, @12:16PM (#18040164)
    While companies like Microsoft have already patched their software,

    Ahem, not exactly. No patch for the perfectly good Exchange 5.5 server we're using with Outlook 2000. Suddenly we have to update to the latest Exchange and Outlook 2003 on every d@mn desktop. And I'm in Arizona were we don't even have daylight savings time!!!

  • Cool (Score:5, Funny)

    by Anon-Admin (443764) on Friday February 16 2007, @12:16PM (#18040168)
    (http://www.darkspores.com/ | Last Journal: Tuesday May 01 2007, @10:44AM)
    And I thought that the year 1906 would pass with out any issues.
  • Doomsaying? (Score:4, Insightful)

    by eln (21727) on Friday February 16 2007, @12:17PM (#18040184)
    I don't see anyone saying planes are going to fall out of the sky or anything like that. Trades could be executed at the wrong time, costing people money. Cell phones could charge peak rates at the wrong times, costing people money. These could very easily happen if these companies were not on the ball about getting this patched early. Luckily, most operating systems required a simple patch (sometimes a reboot) to fix this, and that's about it. The extensive code fixes that the Y2K bug required simply aren't necessary here.

    However, because of the perceived simplicity of the fix, there is a real possibility that some companies waited too late to address the issue and may not make it in time. This may cause minor glitches, but it's not like the nukes are going to start flying.

    As for Y2K, obviously the people who were stockpiling ammunition and moving to the mountains were nuts, but there were real problems that could have occurred that did not because of the countless hours that were put in to fix the issues. It drives me crazy that after we spent millions of dollars and countless man hours fixing buggy code for Y2K, people look back and see that nothing happened and think all that money was a waste. If all that effort had not been expended, more computer systems would have had problems, and so the money was definitely not wasted. During Y2K, there were scattered reports of various computer systems crashing. It is likely there would have been many more such reports had we not taken the steps we did to address the issue.
    • Re:Doomsaying? by psykocrime (Score:2) Friday February 16 2007, @01:51PM
    • Re:Doomsaying? by metamatic (Score:2) Friday February 16 2007, @02:10PM
      • Re:Doomsaying? by HappyEngineer (Score:2) Friday February 16 2007, @05:53PM
        • 1 reply beneath your current threshold.
    • 1 reply beneath your current threshold.
  • God, I hope not by ObiWanStevobi (Score:2) Friday February 16 2007, @12:20PM
  • Solaris will be a problem? by multipart/mixed (Score:1) Friday February 16 2007, @12:20PM
  • Similar by trongey (Score:2) Friday February 16 2007, @12:20PM
    • Re:Similar by ZOMFF (Score:1) Friday February 16 2007, @01:16PM
  • Bermuda? (Score:3, Insightful)

    by wiredlogic (135348) on Friday February 16 2007, @12:21PM (#18040264)
    I don't see why Bermuda bothers with DLST. They are close enough to the equator and isolated enough that staying on normal time year round shouldn't interfere with commerce in any significant way.
    • Re:Bermuda? by joejor (Score:2) Friday February 16 2007, @01:14PM
      • Re:Bermuda? by Danga (Score:2) Friday February 16 2007, @02:43PM
    • Re:Bermuda? by LMacG (Score:3) Friday February 16 2007, @01:45PM
    • Re:Bermuda? by PhreakOfTime (Score:2) Friday February 16 2007, @03:03PM
    • 3 replies beneath your current threshold.
  • Small but subtle effect. by Grimwiz (Score:1) Friday February 16 2007, @12:21PM
  • Already has ramifications (Score:5, Interesting)

    by michaelmalak (91262) <malak@acm.org> on Friday February 16 2007, @12:22PM (#18040280)
    (http://www.underreported.com/)
    Newer JDK's already have the new time zone rules encoded, and this can cause subtle bugs to suddenly surface. It turns out that Date.equals() does a deep object compare, including the time zone rules (not just which time zone you're in, but the rules regarding when daylight savings starts and ends). Thus if you have multiple JVMs involved, such as one on a database server and one on an application server running slightly different JVM revs (e.g. 1.4.2_08 vs. 1.4.2_11), then naive date comparisons (using equals() instead of equality on getTime()) can fail.
  • Over hyped!!! by JimDaGeek (Score:1) Friday February 16 2007, @12:22PM
  • by Viol8 (599362) on Friday February 16 2007, @12:22PM (#18040286)
    It serves no useful purpose any longer in what is almost a 24 hour society. What difference does it make to the vast majority of people what time the sun rises and sets anymore? All it does is add a small extra layer of confusion and complexity thats no longer necessary? If people really don't want to get up when its dark then go to work an hour later and leave an hour later. With flexitime its really not an issue anymore.
  • Not a chance by Programmer_In_Traini (Score:2) Friday February 16 2007, @12:22PM
    • Re:Not a chance by turbidostato (Score:2) Friday February 16 2007, @12:46PM
      • Re:Not a chance by petermgreen (Score:2) Friday February 16 2007, @01:27PM
        • Re:Not a chance by turbidostato (Score:2) Friday February 16 2007, @11:57PM
          • Re:Not a chance by petermgreen (Score:2) Saturday February 17 2007, @10:16AM
            • Re:Not a chance by turbidostato (Score:2) Saturday February 17 2007, @10:24AM
  • Yes it is or could be a major problem. by Grimfaire (Score:1) Friday February 16 2007, @12:24PM
  • Temps Atomique International by Nicolas MONNET (Score:2) Friday February 16 2007, @12:30PM
  • by poopie (35416) on Friday February 16 2007, @12:32PM (#18040462)
    (Last Journal: Friday March 14 2003, @08:05PM)
    Think of how many companies have old systems that just continue to run forever. Most OS vendors drop OS patch support after about 5 years.

    Okay, so all system processes should use UTC. We all know that. Users don't set their watches to UTC though.

    Want a DST patch for Solaris 8? RHAS 2.1? Windows NT? You're going to have to shuffle and maybe you'll need to update the timezone files with 'zic' yourself. Have hundreds or thousands of these machines. Sucks to be you.

    Oh, and the big killer is that Java has timezone rules embedded in it. That's right. Java VIRTUAL MACHINE. Java tracks timezones and DST changes INDEPENDENT of the OS since Java wants to be it's own OS.

    So, if your company standardized on j2ee when you moved off the legacy systems for y2k, I'll almost bet you that the OS those java apps are running on won't have DST patches from the vendor, and your apps could have multiple JVMs that contain the wrong DST rules. You'll need to fix both of those if your java apps have anything to do with timezones and if you care about the times displayed.

    I'd really like to get a list of everyone who voted for the 2005 dst timezone changes and start a movement to make them take responsibility for the huge business cost of their stupid legislation. It has to be 100X the cost of what they expected the changes to save...
  • A round of applause for the tz guys (Score:3, Informative)

    by Whiteout (828544) on Friday February 16 2007, @12:32PM (#18040464)
    (http://stemhaus.com/firefox/foxclocks/)
    The tz database http://www.twinsun.com/tz/tz-link.htm [twinsun.com] underlies time zone handling for the GNU C Library, FreeBSD, NetBSD, OpenBSD, Mac OS X, Solaris and many more, and is kept current by a dedicated team of (mostly?) volunteers. For time nerds, the historical comments in the plain text files of the tz ftp distribution (ftp://elsie.nci.nih.gov/pub/tzdata2007b.tar.gz [nih.gov]) are required reading.

    If you're a Firefox person, FoxClocks (see my URL above) puts nice little world clocks on your statusbar. And yes, it uses tz too. Thanks guys. Andy
  • I'm not gonna go any more. by lucabrasi999 (Score:2) Friday February 16 2007, @12:33PM
  • saving, not savingS by r.binky (Score:1) Friday February 16 2007, @12:34PM
  • by wsanders (114993) on Friday February 16 2007, @12:36PM (#18040534)
    This is worse than Y2K because Java needs to be patched, and JVMs proliferate on hosts like cockroaches. Older JVMs cannot be patched.

    There are nearly 50 java instances on some of our hosts. The filthy little bastards hide everywhere.

    Fortunately the fix can be automated and is very fast to install.

    Using java's extensive built-in patch management and version management capabilities, of course.
  • UTC by theguyfromsaturn (Score:2) Friday February 16 2007, @12:36PM
    • Re:UTC by Bacon Bits (Score:2) Friday February 16 2007, @12:57PM
  • What about NTP? by Darby (Score:2) Friday February 16 2007, @12:36PM
    • NTP uses UTC by wsanders (Score:3) Friday February 16 2007, @01:00PM
  • I notice by rsilvergun (Score:2) Friday February 16 2007, @12:40PM
  • NTP for Everyone (Score:3, Interesting)

    by Doc Ruby (173196) on Friday February 16 2007, @12:40PM (#18040614)
    (http://slashdot.org/~Doc%20Ruby/journal | Last Journal: Thursday March 31 2005, @01:48PM)
    The NTP server system is very reliable. Its servers should also include software upgrades that clients can fetch, with an authorization system in the clients. The US NIST should produce reference standard software that the NTP servers can offer, digitally signed by NIST, and test/certify/sign 3rd party SW. And the Congress should require the insurance industry to adopt uniform standards for liability when companies don't upgrade to the industry operations standard.

    This function is too important to leave to corporations that have demonstrated they upgrade themselves in their own interest only when it's a years-long campaign that everyone talks about. So it's time to automate the process. Otherwise, Americans and others in the global economy will pay much higher costs in damage and loss later, cleaning up the mess.
  • buy your water and duct tape now! by peter303 (Score:2) Friday February 16 2007, @12:42PM
  • No big deal if you don't update... (Score:4, Insightful)

    by thewiz (24994) * on Friday February 16 2007, @12:43PM (#18040650)
    You'll catch up to the rest of us in three weeks!
  • Local Time vs. UTC by Detritus (Score:2) Friday February 16 2007, @12:44PM
  • Apple (Score:3, Informative)

    by metroplex (883298) on Friday February 16 2007, @12:45PM (#18040692)
    (http://www.last.fm/user/cannibalcomfort/)
    Apple just pushed an update through Software Update that fixes potential daylight saving time problems. You can grab it here [apple.com] if you use Tiger, or here [apple.com] if you still use Panther. It also released a similar update for Java. here [apple.com] is the Tiger version and here [apple.com] is the Panther one.
  • Nightmare by MrSteveSD (Score:2) Friday February 16 2007, @12:47PM
    • Re:Nightmare by Greyfox (Score:2) Friday February 16 2007, @02:36PM
      • Re:Nightmare by MrSteveSD (Score:2) Friday February 16 2007, @04:13PM
  • i recognize the interest in giving people more daylight hours for harvest/ farming purposes... and how that's still nice in a service/ industrial work setting to have barbeque time after work

    but why does that mean that time has to be shifted twice every year? why not just shift time by an hour once, just one time, and be done with the nonsense forever? why is it necessary to go back to "real" time in the winter?

    heck, sometimes i think we should redefine 6 am as 3 am. then everyone wakes up and goes to work in the middle of the "night", and, after work in the summer, you have daylight until midnight!

    we're dealing with an abstract concept here. we can do whatever we want with time. we don't have to abide by some weird need to swithc back to "real" time in the winter. just shift it once in favor of farmers/ after work barbequers and be gone with it. it's just so stupid and pointless and a waste of effort to constantly shift back and forth
    • When I'm Benevolent Fascist Dictator by iridium_ionizer (Score:3) Friday February 16 2007, @01:05PM
    • Re:daylight savings time is stupid by ElleyKitten (Score:3) Friday February 16 2007, @01:08PM
    • Re:daylight savings time is stupid by geekoid (Score:2) Friday February 16 2007, @01:10PM
    • Re:daylight savings time is stupid by jake_eck (Score:1) Friday February 16 2007, @01:38PM
      • Re:daylight savings time is stupid (Score:4, Interesting)

        by curunir (98273) * on Friday February 16 2007, @02:54PM (#18042948)
        (http://localhost/ | Last Journal: Tuesday January 16 2007, @02:40PM)
        FYI...This latest "fiddling" with DST is designed to figure out just how much energy DST actually saves (if any). By adjusting the date when DST goes into effect, and measuring the difference in energy consumption compared to previous years, we should get a good idea of whether DST is providing any energy savings and whether that savings is worth the trade-offs (there are quantifiable costs associated with DST...things like increased auto accident rates around the changeover dates).

        There's also some notion that in the modern world DST actually increases the country's energy consumption. DST was originally conjured up in a world where the bulk of the energy consumption came from lighting. In that world, giving people daylight at certain hours of the day reduced their need for artificial light. In our modern world, however, things aren't that simple. For one, we have lighting that uses less energy than before. But the biggest difference is that we now have air conditioners, something that uses significantly more energy than our modern lighting. In the modern world, by ensuring that there is natural light when people get home from work, we increase the likelyhood that they will need to use their air conditioners.

        So, we really have no idea whether DST actually serves its purpose anymore or if it's merely an unecessary inconvenience for any modernized country. This year's change in the time that DST goes into effect will give us a good indication of whether we can eliminate DST entirely.
        [ Parent ]
      • Re:daylight savings time is stupid by Rakishi (Score:2) Friday February 16 2007, @03:01PM
    • Re:daylight savings time is stupid by boarder (Score:2) Friday February 16 2007, @04:42PM
    • 1 reply beneath your current threshold.
  • What a global mess by Kawolski (Score:1) Friday February 16 2007, @12:50PM
  • Time Based Systems by TheLoneWolf071 (Score:1) Friday February 16 2007, @12:51PM
    • 1 reply beneath your current threshold.
  • "US Mandated?" by rueger (Score:2) Friday February 16 2007, @12:59PM
  • Get a REAL O/S by scprideandms (Score:1) Friday February 16 2007, @01:01PM
  • Y2K Doomsaying? I don't think so. by geekoid (Score:2) Friday February 16 2007, @01:07PM
  • Meetings & appointments by Elektrance (Score:1) Friday February 16 2007, @01:12PM
    • 1 reply beneath your current threshold.
  • DST is USELESS! by Nonillion (Score:2) Friday February 16 2007, @01:15PM
  • "Doomsaying" a bit harsh but should not be ignored by MillenneumMan (Score:1) Friday February 16 2007, @01:16PM
  • If the problem is DST by cdrguru (Score:2) Friday February 16 2007, @01:16PM
  • good resource page by andrewe2 (Score:1) Friday February 16 2007, @01:18PM
  • Y2K - Greatest S/W Project In History by coolmoose25 (Score:1) Friday February 16 2007, @01:19PM
  • Verify your Linux box is correct. (Score:4, Informative)

    by OrangeTide (124937) on Friday February 16 2007, @01:23PM (#18041496)
    % zdump -v /etc/localtime| grep 2007 /etc/localtime Sun Mar 11 09:59:59 2007 UTC = Sun Mar 11 01:59:59 2007 PST isdst=0 gmtoff=-28800 /etc/localtime Sun Mar 11 10:00:00 2007 UTC = Sun Mar 11 03:00:00 2007 PDT isdst=1 gmtoff=-25200 /etc/localtime Sun Nov 4 08:59:59 2007 UTC = Sun Nov 4 01:59:59 2007 PDT isdst=1 gmtoff=-25200 /etc/localtime Sun Nov 4 09:00:00 2007 UTC = Sun Nov 4 01:00:00 2007 PST isdst=0 gmtoff=-28800

    notice that the isdst changes from 0 to 1 on March 11. This means I have the correct zoneinfo file in my system. /etc/localtime is a symbolic link to the default timezone for your machine. (users can run their own timezone with the TZ environment variable).

    % ls -l /etc/localtime
    lrwxrwxrwx 1 root root 30 2006-09-24 21:50 /etc/localtime -> /usr/share/zoneinfo/US/Pacific

    PS - likely the steps to check this on FreeBSD are similar. Post your experiences.
  • bring it on... by avi33 (Score:2) Friday February 16 2007, @01:25PM
  • This -is- a big deal by muirhejs (Score:2) Friday February 16 2007, @01:33PM
  • Ask Australia by jbeiter (Score:1) Friday February 16 2007, @01:34PM
  • Its not just "unprepared" companies (Score:3, Interesting)

    by Tired and Emotional (750842) on Friday February 16 2007, @01:35PM (#18041710)
    IT at my company told us several weeks ago NOT to take the Microsoft patch as they were working on their own. They rolled it out to us this last week.

    It was a complete disaster. Now my calendar entries for the affected week are mostly off by an hour (not all of them mind you) while a friend who displays dual timezones now has one less timezone in the continental US - the west coast is only two hours behind the east coast. Probably he can fix this by turning it off and back on, but it looks like we will have to rebook all meetings.

    Of course, one can certainly argue that correctly implemented software would not have a problem since everything would be done internally in UTC, but clearly not all software is correctly implemented.

    As for the stupid change - if they had brought us into line with Europe there would have been some logic to the change. This one was just make work for a cheap political stunt.

  • A man with two watches ... by boyfaceddog (Score:2) Friday February 16 2007, @01:35PM
  • Have to Admit by ruben.gutierrez (Score:1) Friday February 16 2007, @01:39PM
  • I don't know about you by plopez (Score:2) Friday February 16 2007, @01:47PM
  • We should all switch to Swatch Internet Time by ss_Whiplash (Score:1) Friday February 16 2007, @01:50PM
  • Windows and CMOS clock (Score:4, Insightful)

    by dokebi (624663) on Friday February 16 2007, @01:52PM (#18041990)
    Why does Windows not run UTC on the CMOS clock? Doing so would solve all of this "The computer has changed the clock" twice a year. The clock wouldn't be changed, just synced every now and then, but the displayed time would automatically be adjusted. POSIX and MacOS does this correctly, and 99.99% of Mac users don't even realize their CMOS clock runs UTC. Changing Daylight Time would be updating a single file, even in a closed OS like windows.

    I've heard all sorts of dumb reasons against running UTC on the CMOS, like "who cares about UTC, My time is local" and "why should I keep two different times on my computer".
    But, the OS will hide the UTC from you, and besides, when was the last time you used the BIOS time as your clock?

    Forcing UTC on the CMOS clock is surprising since WindowsNT has used UTC for all their internal time tracking for some time. But they *calculate* it from local time, which changes twice a year, _even though_ Windows uses NTP time servers. Doh. It's gotta be *the* dumbest backward compatibility "feature". See here: http://www.cl.cam.ac.uk/~mgk25/mswish/ut-rtc.html [cam.ac.uk]
  • Not like Y2K at all by cyberianpan (Score:1) Friday February 16 2007, @01:58PM
  • by sallgeud (12337) on Friday February 16 2007, @02:29PM (#18042582)

    It's "Daylight Saving Time" NOT Savings...

    http://en.wikipedia.org/wiki/Daylight_saving_time# name [wikipedia.org]
  • by Se7enLC (714730) on Friday February 16 2007, @02:50PM (#18042858)
    (http://www.jeffornot.com/ | Last Journal: Monday May 14 2007, @09:56AM)

    > date --date="Mar 10 15:00:00 UTC 2007"
    Sat Mar 10 10:00:00 EST 2007
    > date --date="Mar 11 15:00:00 UTC 2007"
    Sun Mar 11 11:00:00 EDT 2007

    This won't set your clock or anything, it just does the timezone conversion from UTC and displays the results according to the local timezone you have selected.
    • by srvivn21 (410280) on Friday February 16 2007, @03:47PM (#18043850)


      > date --date="Mar 10 15:00:00 UTC 2007"
      Sat Mar 10 10:00:00 EST 2007
      > date --date="Mar 11 15:00:00 UTC 2007"
      Sun Mar 11 11:00:00 EDT 2007

      This won't set your clock or anything, it just does the timezone conversion from UTC and displays the results according to the local timezone you have selected.
      Or just run zdump -v /etc/localtime | grep 2007" and make sure it says "Mar 11" instead of "Apr 1".

      updated> zdump -v /etc/localtime | grep 2007
      /etc/localtime Sun Mar 11 10:59:59 2007 UTC = Sun Mar 11 01:59:59 2007 AKST isdst=0 gmtoff=-32400
      /etc/localtime Sun Mar 11 11:00:00 2007 UTC = Sun Mar 11 03:00:00 2007 AKDT isdst=1 gmtoff=-28800
      /etc/localtime Sun Nov 4 09:59:59 2007 UTC = Sun Nov 4 01:59:59 2007 AKDT isdst=1 gmtoff=-28800
      /etc/localtime Sun Nov 4 10:00:00 2007 UTC = Sun Nov 4 01:00:00 2007 AKST isdst=0 gmtoff=-32400

      needswork> zdump -v /etc/localtime | grep 2007
      /etc/localtime Sun Apr 1 10:59:59 2007 UTC = Sun Apr 1 01:59:59 2007 AKST isdst=0 gmtoff=-32400
      /etc/localtime Sun Apr 1 11:00:00 2007 UTC = Sun Apr 1 03:00:00 2007 AKDT isdst=1 gmtoff=-28800
      /etc/localtime Sun Oct 28 09:59:59 2007 UTC = Sun Oct 28 01:59:59 2007 AKDT isdst=1 gmtoff=-28800
      /etc/localtime Sun Oct 28 10:00:00 2007 UTC = Sun Oct 28 01:00:00 2007 AKST isdst=0 gmtoff=-32400
      [ Parent ]
    • Re:How to test if your linux machine is ready by jrumney (Score:2) Friday February 16 2007, @10:17PM
  • Yes, this is as critical as Y2k. by kinglink (Score:2) Friday February 16 2007, @03:43PM
  • One rule to bind them. One rule for all time. by Maxo-Texas (Score:2) Friday February 16 2007, @04:26PM
  • No, the cat does not "got my tongue." by Impy the Impiuos Imp (Score:1) Friday February 16 2007, @04:32PM
  • Saving ... it's SAVING! by anasciiman (Score:1) Friday February 16 2007, @07:06PM
  • Where I work by Lord Kano (Score:1) Friday February 16 2007, @07:10PM
  • Say that to a mainframe site by Hyperhaplo (Score:1) Friday February 16 2007, @08:18PM
  • completely avoidable problem by ChristTrekker (Score:1) Friday February 16 2007, @08:51PM
  • See why extended DST is especially bad for Florida by AJ Mexico (Score:1) Friday February 16 2007, @09:14PM
  • Distribute timezone data through DNS by XNormal (Score:2) Saturday February 17 2007, @03:33AM
  • Re:Linux? (Score:3, Interesting)

    by profplump (309017) <zach@kotlarek.com> on Friday February 16 2007, @12:17PM (#18040188)
    (http://www.uberzach.com/)
    Or you could put configuration data like say, time zone rules, into an external file so they could be easily updated without recompiling the kernel or rebooting. Yeah, I vote for that plan.
    [ Parent ]
    • Re:Linux? by TeknoHog (Score:1) Friday February 16 2007, @12:20PM
    • Don't laugh by wsanders (Score:3) Friday February 16 2007, @12:45PM
    • Re:Linux? by JLester (Score:2) Friday February 16 2007, @12:57PM
    • Re:Linux? by OrangeTide (Score:2) Friday February 16 2007, @01:13PM
      • Re:Linux? by profplump (Score:2) Friday February 16 2007, @01:36PM
        • Re:Linux? by quantum bit (Score:2) Friday February 16 2007, @01:57PM
      • Re:Linux? by pe1chl (Score:2) Friday February 16 2007, @06:35PM
  • Re:Makes me glad by fitten (Score:1) Friday February 16 2007, @12:21PM
  • Re:Linux? by n0dna (Score:2) Friday February 16 2007, @12:33PM
    • Re:Linux? by VWJedi (Score:2) Friday February 16 2007, @12:49PM
      • Re:Linux? by n0dna (Score:1) Friday February 16 2007, @01:08PM
        • Re:Linux? by VWJedi (Score:1) Friday February 16 2007, @01:34PM
          • Re:Linux? by Danga (Score:2) Friday February 16 2007, @02:32PM
            • Re:Linux? by VWJedi (Score:1) Friday February 16 2007, @02:53PM
        • 1 reply beneath your current threshold.
  • Re:FIRST!!! by Robot Randy (Score:1) Friday February 16 2007, @12:39PM
  • Re:Linux? by Larry Lightbulb (Score:2) Friday February 16 2007, @12:40PM
  • Re:minutes, hours and days are NOT fixed values. by Qzukk (Score:2) Friday February 16 2007, @12:42PM
  • Re:minutes, hours and days are NOT fixed values. by lucabrasi999 (Score:2) Friday February 16 2007, @12:47PM
  • Re:Linux? by operagost (Score:1) Friday February 16 2007, @12:48PM
  • Re:Linux? by harp2812 (Score:1) Friday February 16 2007, @12:49PM
  • No it won't by wsanders (Score:2) Friday February 16 2007, @12:52PM
  • 18 replies beneath your current threshold.