Skip to content

Time Zone

September 29, 2023
May 8, 2019

Time zone - Wikiwand
Time Zone Map
World_Time_Zones_Map.png (4000×2157)

timeanddate.com
World Clock and Time Converter - Savvy Time
World Time Zone Map
The Time Zone Converter
Time Zone Converter -- Tools

UTC is Enough for Everyone, Right?
Strangest Time Zones of the World - YouTube
The Problem with Time & Timezones - Computerphile - YouTube

Why Britain is the Center of the World - YouTube
The International Date Line, Explained - YouTube

The Largely Untold Story Of How One Guy In California Keeps The World’s Computers Running On The Right Time Zone. (Well, Sort Of) | by Daniel Rosehill | OneZero

Why Do Clocks Run Clockwise? | Neil deGrasse Tyson Explains... - YouTube because civilization on Northern horizon invented sundial and clocks

What is the standard way to add N seconds to datetime.time in Python? - Stack Overflow

def add_timedelta_to_time(t, td):
    """Add a timedelta object to a time object using a dummy datetime.

    :param t: datetime.time object.
    :param td: datetime.timedelta object.

    :returns: datetime.time object, representing the result of t + td.

    NOTE: Using a gigantic td may result in an overflow. You've been
    warned.
    """
    # Create a dummy date object.
    dummy_date = date(year=100, month=1, day=1)

    # Combine the dummy date with the given time.
    dummy_datetime = datetime.combine(date=dummy_date, time=t, tzinfo=t.tzinfo)

    # Add the timedelta to the dummy datetime.
    new_datetime = dummy_datetime + td

    # Return the resulting time, including timezone information.
    return new_datetime.timetz()