About 1,500,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 languages. strtotime() …

  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 milliseconds.

  3. How can I convert bigint (UNIX timestamp) to datetime in SQL Server?

    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), Thursday, …

  4. 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...

  5. unix - Why is 1/1/1970 the "epoch time"? - Stack Overflow

    Jun 23, 2011 · The definition of unix time and the epoch date went through a couple of changes before stabilizing on what it is now. But it does not say why exactly 1/1/1970 was chosen in the end.

  6. 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 [seconds since E...

  7. 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, Windows 7 64 bit):

  8. How can I convert a DateTime to the number of seconds since 1970?

    I'm trying to convert a C# DateTime variable to Unix time, ie, the number of seconds since Jan 1st, 1970. It looks like a DateTime is actually implemented as the number of 'ticks' since Jan 1st, 0001.

  9. 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 number of seconds …

  10. 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 in the index …