About 1,470,000 results
Open links in new tab
  1. What is a Unix timestamp and why use it? - Stack Overflow

    Dec 29, 2013 · The unix time stamp is the time in seconds from January 1st, 1970 to the very moment you call for the stamp its self. From here, you can abstract the dates in many …

  2. How can I convert a Unix timestamp to DateTime and vice versa?

    Oct 30, 2008 · The latest version of .NET (v4.6) has added built-in support for Unix time conversions. That includes both to and from Unix time represented by either seconds or …

  3. Parsing unix time in C# - Stack Overflow

    Nov 4, 2009 · Is there a way to quickly / easily parse Unix time in C# ? I'm brand new at the language, so if this is a painfully obvious question, I apologize. IE I have a string in the format …

  4. How can I convert bigint (UNIX timestamp) to datetime in SQL …

    8 Adding n seconds to 1970-01-01 will give you a UTC date because n – the Unix timestamp – is the number of seconds that have elapsed since 00:00:00 Coordinated Universal Time (UTC), …

  5. Converting unix timestamp string to readable date - Stack Overflow

    I have a string representing a unix timestamp (i.e. "1284101485") in Python, and I'd like to convert it to a readable date. When I use time.strftime, I get a TypeError: >>>import...

  6. Convert current time from Windows to Unix timestamp?

    Maybe my question was phrased badly: All I wanted was to get the current time on a windows machine as a unix timestamp. I now figured it out myself (C language, Code::Blocks 12.11, …

  7. Convert unix time to readable date in pandas dataframe

    Oct 7, 2012 · I have a dataframe with unix times and prices in it. I want to convert the index column so that it shows in human readable dates. So for instance I have date as 1349633705 …

  8. Converting unix time into date-time via excel - Stack Overflow

    Explanation Unix system represent a point in time as a number. Specifically the number of seconds* since a zero-time called the Unix epoch which is 1/1/1970 00:00 UTC/GMT. This …

  9. How to get the unix timestamp in C# - Stack Overflow

    Jan 1, 2001 · I have had look around stackoverflow, and even looked at some of the suggested questions and none seem to answer, how do you get a unix timestamp in C#?

  10. How precise should I encode a Unix Time? - Stack Overflow

    May 28, 2019 · The Epoch for UNIX time is 1 January 1970 00:00:00 UT. (The clock() function does not measure real time, but instead the duration of time that the processor was active.) …