#105 The 2038 Problem

#105 The 2038 Problem

Author: David Kopec, Rebecca Kopec November 14, 2022 Duration: 8:44

On January 19, 2038, certain non-updated legacy systems that use Unix time will roll their dates around to December 13, 1901. In Unix, time is recorded as the number of seconds since January 1, 1970. Because a signed 32-bit integer is used to record this value on many legacy systems, they will run out of seconds in 2038 (a signed 32-bit integer can record numbers up to 2,147,483,647, and that's the number of seconds between January 1 1970 at 12:00:00 AM and January 19, 2038 at 3:14:07 AM). Many legacy operating systems, programming languages, and databases that use signed 32-bit integers to record Unix time are still in use in non-updated embedded systems. In this episode we explain the problem and its potential implications.

Show Notes

Follow us on Twitter @KopecExplains.

Theme “Place on Fire” Copyright 2019 Creo, CC BY 4.0

Find out more at http://kopec.live


Ever wondered how the apps on your phone actually work, or what really happens when you click "download"? Kopec Explains Software is here to demystify those everyday digital mysteries. Hosted by David and Rebecca Kopec, this conversation breaks down complex, software-related ideas into clear, relatable concepts you can grasp. The focus isn't on jargon or textbook definitions, but on building a genuine, intuitive feel for how technology operates. Each episode picks apart a different facet of the software world, from the fundamentals of coding to the ethics of artificial intelligence, translating technical subjects into plain English. You'll come away not just with new knowledge, but with a clearer framework for understanding the digital systems that shape our lives. It’s a straightforward, engaging resource for anyone with curiosity about the technology they use daily, whether you're a seasoned professional looking for a fresh perspective or a complete novice starting from scratch. Tune into the podcast for thoughtful discussions that make the vast and often intimidating landscape of software feel accessible and genuinely interesting.
Author: Language: en-us Episodes: 100

Kopec Explains Software
Podcast Episodes
#98 How Does Apple Make Money? [not-audio_url] [/not-audio_url]

Duration: 12:59
It has long been debated whether Apple is more of a hardware company or more of a software company. In its quarterly reports it does not delineate between the two. Instead, it breaks its revenue into four big product cat…
#97 What Are APIs? [not-audio_url] [/not-audio_url]

Duration: 17:25
An Application Programming Interface (API) is a specification for how a piece of software provides functionality to other pieces of software. APIs can broadly be categorized into two categories: local and remote. Local A…
#96 What is a BIOS? [not-audio_url] [/not-audio_url]

Duration: 14:11
A BIOS (Basic Input/Output System) is a piece of firmware on a PC that sits between the hardware and the operating system. It takes care of some essential functions like hardware startup tests, power management, boot dev…
#94 Software Piracy [not-audio_url] [/not-audio_url]

Duration: 16:49
There is a constant battle between software publishers and pirates who find ways to redistribute proprietary software in violation of its license. In this episode we explain how copyright law protects proprietary softwar…
#93 Phone Location Tracking [not-audio_url] [/not-audio_url]

Duration: 12:30
Your phone includes multiple technologies for tracking your location. Your location can be triangulated via signals to cell towers, precisely pinpointed using its GPS chip and a connection to a satellite, and approximate…
#92 Python [not-audio_url] [/not-audio_url]

Duration: 15:11
By several measures, including a 2021 survey by IEEE, Python is the most popular programming language in the world. But why? What's special about it? In this episode we'll go over Python's history, key technical aspects…
#91 PayPal's Early Innovations [not-audio_url] [/not-audio_url]

Duration: 10:24
Today we know PayPal as a financial powerhouse. But when it was a young company, it had to innovate to survive. PayPal was the result of the merger of two startups—Confinity and X.com. Confinity was trying to be a digita…
#90 Binary Search [not-audio_url] [/not-audio_url]

Duration: 17:02
Binary search is an algorithm for finding an item in a sorted data set. It requires that all of the items in the data set be of the same data type and comparable to one another. In other words, the data type needs to hav…
#89 Multi-Touch [not-audio_url] [/not-audio_url]

Duration: 13:23
Every modern smartphone and tablet uses a multi-touch user interface. Multi-touch is a relatively recent phenomenon. While the earliest research into multi-touch took place in the 1960s and 1970s, it wasn't until Wayne W…