Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
std::time_t d = std::chrono::system_clock::to_time_t(ts);
ts is a time_point (epoch)
var d = DateTimeOffset.FromUnixTimeSeconds(ts).UtcDateTime;
var d = new DateTime.fromMillisecondsSinceEpoch(ts, isUtc: true);
import Data.Fixed (Fixed(MkFixed))
import Data.Time.Clock (secondsToNominalDiffTime)
import Data.Time.Clock.POSIX (posixSecondsToUTCTime)
d = posixSecondsToUTCTime . secondsToNominalDiffTime . MkFixed $ toInteger ts
d has type UTCTime. This code works for any Integral ts. If ts is an Integer, toInteger isn't required.
new Date (ts * 1000)
JavaScript is big on type conversion.
Date is back from the olden days where we ripped our stuff from Java instead of Python :3
Date is back from the olden days where we ripped our stuff from Java instead of Python :3
long ts = currentTimeMillis();
String d = "%tc".formatted(ts);