Ok, wieso meint #Android (16) oder die #Galaxus Äpp, dass sie mir vor 2032 Jahren (also 1894 — EDIT: 6BC) eine Benachrichtigung über eine neue Rechnung geschickt hat? 🤪

Mir wäre nicht bewusst, dass irgendein Betriebssystem seine Zeitepoche im Jahr 1894 beginnt. Bei allen Unixen ist's bekanntermaßen der 1.1.1970 (#Unixtime), beim alten MacOS (vor MacOS X) war's der 1.1.1906 🤷 und bei manchen Systemen scheint auch der 1.1.1900 als Beginn der Zeitepoche vorzukommen. Aber 1894? 🤔

#DigitecGalaxus

Unix zählt Sekunden.
GPS zählt Wochen.
DVB zählt Tage.

Drei unterschiedliche Zeitmodelle.
Drei unterschiedliche Standards.
Und wieder taucht 2038 auf.

Neuer kurzer Blog über den DVB-Zeit-Rollover und Modified Julian Date.

https://y2k38.ch/dvb-modified-julian-date-2038-problem-end-of-days

#Y2K38 #DVB #GPS #UnixTime #MJD

Unix Time 1781000000 will occur on Tuesday 9th June at 10:13:20 UTC

🙂🖖

#UnixTime #1781000000

UNIX Time 1780000000 will occur on Thursday May 28 2026 at 20:26:40 UTC 🙂

#UnixTime #1780000000

Gosh, is it 1778e6 already? Time flies.
#unixtime

Happy 1777777777 🎉

#unixtime

in a few seconds it will be 1777777771 seconds since jan 1 1970 #epoch #time #EpochTime #UnixTime #UnixTimeStamp

Unix Time 1777700000 will occur shortly on Sat May 02 2026 05:33:20 UTC

Unix Time 1777777777 will occur on Sun May 03 2026 03:09:37 UTC

#UnixTime #1777777777

🕒 12 χρόνια απομένουν για το Epochalypse – και τα 32-bit συστήματα είναι η "ωρολογιακή βόμβα" του 2038.

Στις 19 Ιανουαρίου 2038, στις 03:14:07 UTC, τα συστήματα που χρησιμοποιούν signed 32-bit time_t θα υπερχειλίσουν. Το αποτέλεσμα; Ημερομηνίες του 1901, σφάλματα σε πιστοποιητικά, καταρρεύσεις εφαρμογών – και σε κρίσιμες υποδομές, πιθανή κατάρρευση λειτουργιών.

Δείτε πλήρη ανάλυση 👉 https://opensource.uom.gr/index.php/epochalypse-provlima-y2k38/

#Y2K38 #Epochalypse #Year2038 #Linux #CyberSecurity #IoT #DevOps #UnixTime #Tech

I'm writing Python and I'm not a Python person.

I have a need to get a Unix timestamp of a time that is an arbitrary number of days ago.

In PowerShell, you can do something like this:

PS > Get-Date -Date (Get-Date).AddDays(-30) -UFormat %s

In Python, this is the best I came up with and it is ugly:

import re
import datetime

`int(re.split('\\.',str((datetime.datetime.now(datetime.UTC) - datetime.timedelta(days=30)).timestamp()))[0])`

That was from me reading module documentation and hacking away at it for a bit.

Surely, there is a better way.

I'm interfacing with an API that only takes datetime in Unix Time format and only down to the second in precision.

#Python #DateTime #UnixTime #EpochTime