Unix time, or POSIX time, is a system of representing time based on the number of seconds elapsed since January 1, 1970.

learn more… | top users | synonyms

2
votes
2answers
66 views

Unix time and leap seconds

Regarding Unix (POSIX) time, Wikipedia says: Due to its handling of leap seconds, it is neither a linear representation of time nor a true representation of UTC. But the Unix date command does ...
1
vote
2answers
62 views

How to convert date to string in unix shell

i need some help to convert date into a string i have an sql database running on my unix box which stores the date in str eg:1371509465 i would like to run a query to find if any future dates exist ...
3
votes
1answer
101 views

UNIX date: How to convert week number to a date range (Mon-Sun)?

I have list of week numbers extracted from huge log file, they were extracted using syntax: $ date --date="Wed Mar 20 10:19:56 2012" +%W; 12 I want to create a simple bash function which can ...
0
votes
2answers
32 views

stored dates in unixtime (INT 10) check interval

I have a table to store data for car rental purposes (reservations awaiting response). The is a field called 'initiated_datime' (INT, 10) where the initiated datime of the reservation is stored (I ...
2
votes
1answer
163 views

can boost gregorian date and boost posix time properly calculate unixtime?

I am trying to write a simple timestamping system that provides epoch seconds and fractional seconds from the current time. I am using boost library and have something like this: const ...
0
votes
2answers
125 views

How to show a Unix-time in a local time format

I have a php variable say $expTime (which has a unixtime say-1359683953) . I want to display this variable on the client side(in a proper time format according to his local time) . I am so confused ...
0
votes
4answers
141 views

How do I convert the difference between two unixtime dates to days?

I am trying to determine the difference between the date of a file in a directory and the current date, I have tried calculating two ways: $fileUnixTimeDate = filemtime($file); $fileFormattedDate = ...
-1
votes
3answers
82 views

Fetch int (11) date from mysql with php [closed]

What I'm trying to do is to fetch date and time from int(11) from mysql and display it in PHP: <?php $dbusername = 'dbuser'; $dbpassword = 'dbpassword'; $dbhost = 'localhost'; $dbname ...
0
votes
2answers
71 views

Convert day and time to UNIX time

I got 3 numeric text fields which are days, hours and min. I have scripted in such a way that user can only type 2 digit for each field. Can someone help me to combine this 3 fields into one integer ...
0
votes
3answers
101 views

unix time in PHP table row to normal time

I have a php look up from a drop down list. This will look up changes to a specific staff's time card and return to a table. Works really well but I am having trouble returning the results from Line 2 ...
3
votes
1answer
151 views

Arduino compare string on sd card to now.unixtime

I thought this was going to be simple but got bogged down in ascii, unsigned long, atoi etc. I have a single unix time stamp string as the first line in a file (setup.txt) on a sd card. I would like ...
0
votes
1answer
46 views

php: script updates fields prematurely?

I'm making an auction type website that as you can imagine is supposed to delist products as they expire. the expiration is simply stored as MySQL datatype DATE. so check_items.php: <?php ...
0
votes
0answers
205 views

Dynamic MySQL partitioning based on UnixTime

My DB design includes multiple MYISAM tables with measurements collected online, Each row record contains auto-incremented id, some data and an integer representing unixtime. I am designing an aging ...
1
vote
2answers
127 views

Convert unix time to DateTime Object : PHP 5.2.X

Basically I want to get remaining time to expire. I did it easily in php 5.3.x like below $now = new DateTime(); $future_date = new DateTime($enddate); $interval = $future_date->diff($now,false); ...
1
vote
3answers
365 views

UnixTime to readable date [duplicate]

Possible Duplicate: C++: Get current time and date What is the best way to convert UnixTime to a date? Is there a function for it or an algorithm?
0
votes
0answers
35 views

How can I post request a soap time service in android with no parameter only return current unix timestamp?

Here's I want to post in my android project. POST (http://url) Accept-Encoding: gzip,deflate Content-Type: text/xml;charset=UTF-8 SOAPAction: "TimeService/ITimeService/GetCurrentDateTime" User-Agent: ...
0
votes
1answer
568 views

How to compare two dates using UNIX commands [closed]

I have dates like this Date1="Wed Oct 21 13:05:14 2012" Date2="Wed Nov 21 12:55:30 2010" Date3="Wed Nov 21 14:22:30 2012" How do I find out the latest date?
1
vote
1answer
387 views

how to use curdate() in where clause against unixtimestamp (bigint) column

I am trying to pull records in the past 7 days. This is my select statement that I have been trying to get to work: select from_unixtime(time,'%m/%d/%y') as fdate, from_unixtime(time,'%h:%m:%s') as ...
0
votes
0answers
406 views

sql select FROM_UNIXTIME(unix_timestamp) engine independent

I need to convert INT to DATETIME, on SQL Server it would be: select cast(convert(unix_timestamp,103) AS datetime) on MySQL the syntax is: select FROM_UNIXTIME(unix_timestamp) But i need to make ...
1
vote
0answers
38 views

Use adjtime() as non priviledged user

I am running CentOS 5.4 and was wondering if there is any way of using the "adjtime()" system call as a non-root user. Thanks in advance, really appreciate it
2
votes
3answers
342 views

PERL How to convert localtime format to unixtime

Can anyone helpme with this? I have a time value in a the logfilefile which has following format: Tue Aug 28 09:50:06 2012 I need to convert this time value into unixtime. regards
0
votes
1answer
294 views

iOS : Specifying unix time in NSDateFormatter's format string

I receive date in this format "/Bla(1344433014807)/" in server's response. 1344433014807 is a number of seconds from the 1 January 1970. Also I have this code in my network engine that I use : ...
1
vote
2answers
134 views

Overhead of time command in unix

i was wondering what is the overhead of using the time command in unix. i know how to use it, but i want to know how much longer the command $ time java HelloWorld takes on a terminal, than the ...
0
votes
1answer
226 views

Use epoch time to change file's time-stamp using java

I am working on a java application running on linux machine, that should change a file's time-stamp to another time which is stored in form of epoch. The file whose time-stamp needs to be changed is ...
0
votes
1answer
79 views

MySQL Conditional Possible?

Im trying to change a Unix date from "01/01/1970" to "0" Basically I have this: FROM_UNIXTIME(last_visit, '%d-%m-%Y') AS Last_Visit So when I export this MySQL it's saying "Last Visit - ...
0
votes
2answers
234 views

MYSQL: Unix_Timestamp How to deduct 2 weeks

I have had a look all over, but it doesn't seem as though my required coding is addressed anywhere. Please note that the "interval" variable does NOT work for me. Please use the current code, which ...
2
votes
3answers
565 views

what is the windows equivalent of the command “date+%s”

I'm writing a batch script and I need the unix time. It's easy under linux, but I can't figure out how to do this in windows.
0
votes
2answers
239 views

Javascript/PHP %Y-%m-%d %H:%M:%S adjust for the local computer time

I have time data in mySQL in the format of %Y-%m-%d %H:%M:%S as UTC +0 format. And I want to display the time data adjusting for the local computer tha user is using. For example: The data is ...
1
vote
2answers
838 views

Convert Unix Time with Powershell

So I am parsing a SQLite database using the Powershell SQLite module, and a couple of the return values are created and modified, both of which are in Unix time. What I would like to do is somehow ...
0
votes
0answers
136 views

Time until/time since unixtime.. in vb.net?

I've been searching all over for an example of this and assume there is a simple way to do it but I can't find a VB.net example - Here is an example in c of code which does exactly what I'm looking ...
0
votes
1answer
67 views

Need help on unix time stamp

Basically, am creating a mailer system to send a mail to my inactive members to do activities in their account if they have not logged in since 30 days. My previous login date stores in my database ...
0
votes
1answer
491 views

Unix time in millisecond to d-m-Y

I'm pulling a unix time in milliseconds from an xml document but can't convert it to a readable date (d-m-Y) in php 5.2.17. I've used http://www.epochconverter.com/ which converts it correctly from ...
0
votes
1answer
304 views

R: converting JSON time format into POSIX

I have a JSON character string that I put into a data frame. I am able to do it, but I am having trouble using one of the apply functions to convert all the time character strings into POSIX format. ...
3
votes
1answer
397 views

Convert Facebook Event start/end times to UTC

I'm having trouble getting event start in end times in UTC format from facebook. I'm using the Facebook Python library, I am running these queries to retrieve events: fb_events = ...
2
votes
1answer
228 views

What is the fastest way to convert from a unixtime to a numpy.datetime64?

I suppose that the key here is to have the less number of intermediate conversions but I'm not able to find a simple way in the new Numpy 2.0 dev
0
votes
2answers
187 views

Timezone issue with webserver and iPhone app

I'm having issues with my webserver and iPhone app, considering the timezone. It's all set well and I know how to change it, but I'm just wondering what is the best approach considering the following ...
0
votes
4answers
255 views

strtotime and then convert to UNIX?

EDIT Per the comment below, here's my attempt at splitting / combining / converting the string prior to implementing mktime... $date1 = explode("T",'2005-03-27T00:00:00'); $date2 = explode("-", ...
3
votes
2answers
149 views

How accurate is client unix time?

I'm curious about how accurate a client's browser/javascript unix time is, as I don't have a very good understanding of digital/computer timekeeping. For instance, if my sever tells the client to do ...
0
votes
1answer
93 views

PHP Function that Randomly Selects One mySQL Row With A Unix Date of Less than Two Weeks

I need a php function that can randomly select one row that has a unix time date field (like 2011-11-12 or 2011-12-24) that indicates the row was created within the last two weeks from a mySQL table ...
0
votes
3answers
696 views

Converting string timestamp to Python datetime (was: how to properly convert char into float or double in Python)

Here I have string like this "1322485986.672901000", data type is string which represents unixtime. I want to convert it into datetime in Python. The way I used is date = ...
6
votes
2answers
4k views

Unix time conversions in C#

I am trying to get the GMT in unix time. I use the following code: public static long GetGMTInMS() { var unixTime = DateTime.Now.ToUniversalTime() - new ...
2
votes
2answers
818 views

How to convert UNIX time before 1970 to date format in MySQL?

I have a database using unix time for its dates ( i am using mySQL). I want to retrieve the dates in daily date format. This is my query: SELECT FROM_UNIXTIME(time_created) FROM member This works ...
0
votes
1answer
67 views

Unix time oddity, or something else?

I'm writing an app in C# that calls methods on a 3rd party web service (but this question is language independent). One of the methods I have to call sets a "start time." The method expects the date ...
1
vote
2answers
926 views

Java converting unix time to date different on each computer,why?

i have weird situation i have simple code that looks like this : Date d = new Date(1308670980000L); SimpleDateFormat f = new SimpleDateFormat("dd.MM.yyyy,HH:mm"); String s = f.format(d); some ...
0
votes
1answer
220 views

Profile Python cProfile vs unix time

I am profiling a python code ; why does it spend more time in the user space ? user@terminal$ time python main.py 1964 function calls in 0.003 CPU seconds Ordered by: standard name ...
3
votes
3answers
5k views

How to sort the files according to the time stamp in unix? [closed]

How to sort the files according to the time stamp in unix? I need to sort the files and also based on time they created. Please help. Thanks, Srihari
1
vote
4answers
801 views

I'm looking for a Powershell function to convert unix time to string?

I'm trying to read the date fields of Firefox places.sqlite datedase using ADO.NET and PowerShell. Obviously these fields are in Unix time. I'm looking for a conversion to .Net datetime or string ...
0
votes
1answer
867 views

Removing an hour from PHP (FROM_UNIXTIME)

Could you please advice how to remove an hour from unixtime. I have a unixtime and i need to remove an extra hour before converting to normal time. Could you please advice how to do this? Also, is ...
0
votes
3answers
309 views

JavaScript unixtime problem

I get the time from the database in Unix format. It looks like this: console.log (time); Result: 1300709088000 Now I want to reformat it and pick out only the time, I found this: Convert a Unix ...
0
votes
4answers
2k views

date calculations using unix time

Looking for help in unix to get the following date stamps using unix date: today at 12:00am 12:00am - 15 days ago 12:00am - 30 days ago in Unix epoch time? (1300295838)

1 2