Twice a year, hundreds of millions of people perform the same small ritual: they change their clocks by an hour. In spring they lose an hour of sleep; in autumn they claim it back. The lost hour makes for grumpy mornings and a measurable bump in everything from missed appointments to traffic accidents, and every year someone asks the obvious question — why do we still do this?

Daylight saving time (DST) is one of those systems that is simultaneously trivial and maddening. The idea is easy: shift the clock so more daylight lands in the evening during summer. The consequences ripple out into agriculture, health, energy policy, and — perhaps most painfully — computer software. This guide walks through the whole picture.

What daylight saving time actually is

Daylight saving time is the practice of moving the clock forward by one hour during the warmer months, so that evenings have more daylight and mornings have less. In autumn the clock moves back, returning to "standard time".

The mnemonic almost everyone learns is "spring forward, fall back": forward one hour in spring, back one hour in autumn. Crucially, the amount of actual daylight does not change at all — DST simply relabels the hours, nudging our schedules relative to the Sun.

A brief history

The idea is often traced to a tongue-in-cheek essay by Benjamin Franklin in 1784, but the serious proposals came later, around the turn of the twentieth century. The first widespread adoption arrived during the First World War, when several countries shifted their clocks to save coal for the war effort.

Since then, DST has been adopted, abandoned, and re-adopted repeatedly, with rules changing frequently. Different countries, and sometimes different regions within a country, pick their own start and end dates — or opt out entirely. This patchwork is exactly why software struggles with it, and why understanding time zones matters so much.

How the clock change works

When the clocks "spring forward", a specific hour simply never happens. If the change occurs at 2:00am, the clock jumps straight to 3:00am — the 2:xx hour does not exist that day. In autumn the reverse happens: the hour from 1:00am to 2:00am occurs twice.

What happens to the clock at each transition (using a 2:00am change as an example).
TransitionWhenWhat the clock doesEffect
Spring forwardSpring2:00am → 3:00amAn hour vanishes; you lose sleep
Fall backAutumn2:00am → 1:00amAn hour repeats; you gain sleep

Why software hates daylight saving

DST is one of the richest sources of date-and-time bugs in all of programming. The reasons stack up:

  • Offsets change mid-year, so a city's difference from UTC is not a fixed number.
  • Skipped hours mean some local times never occur, breaking alarms and schedules.
  • Repeated hours mean some local times are ambiguous, so "which 1:30am?" has no single answer.
  • Rules change by political decision, so software must be updated when a country alters its DST policy.
  • Different regions transition on different dates, so the gap between two cities briefly shifts twice a year.

The professional defence is always the same: store moments in UTC or as a unix timestamp, and convert to local time only for display, using the IANA time zone database that tracks every region's rules. Never store or do arithmetic on bare local times across a DST boundary.

The case for and against

DST is genuinely contested. Both sides have real arguments, which is part of why the debate never quite dies.

The upside

  • More daylight in summer evenings for leisure, sport, and shopping
  • Some modest energy savings historically, though modern studies dispute the size
  • Lighter evenings may reduce certain kinds of road accidents and crime
  • Aligns social schedules with usable daylight during long summer days

The catch

  • The spring transition is linked to short-term rises in heart attacks, accidents, and sleep disruption
  • Energy savings are small and contested in the modern era
  • The twice-yearly switch is disruptive and unpopular with many people
  • It is a persistent, expensive source of software and scheduling errors
Daylight saving does not create daylight. It just moves the label on the clock and asks the whole society to adjust around it.

The movement to abolish it

In recent years, momentum has grown in several regions to stop changing the clocks — either by staying on standard time all year or on summer time all year. The debate is not merely "keep it or scrap it" but *which* fixed time to settle on, since permanent summer time means dark winter mornings and permanent standard time means earlier summer sunsets.

Progress has been slow, partly because coordinating with neighbouring regions and trading partners is complicated. For now, the twice-yearly ritual continues in much of the world, and anyone scheduling across borders still has to account for it.

Living with the clock change

  1. Know your region's dates

    DST start and end dates vary by country and can differ from your neighbours. Check them rather than assuming they match last year or the country next door.

  2. Adjust sleep gradually in spring

    Shifting your bedtime by 15 minutes over the few days before the spring change softens the blow of the lost hour.

  3. Double-check cross-border plans near transitions

    For a couple of weeks each spring and autumn, the usual time gap between two countries can be off by an hour because they switch on different dates.

  4. Trust UTC for anything important

    When a moment genuinely matters across zones, agree on it in UTC so the DST confusion never enters the conversation.

Why "just pick one" is harder than it sounds

Polls consistently show most people want to stop changing the clocks — but agreement collapses the moment you ask *which* time to keep. Permanent summer time means brighter evenings all year, but also dark winter mornings, with children travelling to school and commuters setting off in near-blackness until well past 8am in northern latitudes.

Permanent standard time is the reverse: brighter winter mornings, but summer sunsets that arrive an hour "earlier" by the clock. Sleep scientists tend to favour permanent standard time, because morning light best anchors our body clocks, while retail and leisure industries usually prefer lighter evenings. That genuine clash of interests is why so many well-meaning proposals stall before they ever become law.

Key takeaways
  • DST shifts the clock forward an hour in spring and back in autumn — "spring forward, fall back" — without changing actual daylight.
  • It spread during the First World War as an energy-saving measure and has been repeatedly changed ever since.
  • The spring change skips an hour that never occurs; the autumn change repeats an ambiguous hour.
  • It is a major source of software bugs — the fix is to store time in UTC and apply local time only for display.
  • The health harms of the transition and the disruption it causes are fuelling a slow movement to abolish clock changes.