Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

68
votes
3answers
24k views

Python datetime to Unix timestamp

I have to create an "Expires" value 5 minutes in the future, but I have to supply it in UNIX Timestamp format. I have this so far, but it seems like a hack. def expires(): '''return a UNIX style ...
20
votes
4answers
8k views

Converting unix timestamp string to readable date in Python

I have a string representing a unix timestamp (i.e. "1284101485") in Python, and I'd like to convert it to a readable date. time.strftime returns me with a type error. Any help is appreciated!
11
votes
4answers
2k views

Check whether the string is a unix timestamp

I have a string and I need to find out whether it is a unix timestamp or not, how can I do that effectively? I found this thread via Google, but it doesn't come up with a very solid answer, I'm ...
9
votes
3answers
13k views

How to convert NSDate into unix timestamp iphone sdk

How to convert an NSDate into Unix timestamp? I've read many posts which do the reverse. But I'm not finding anything related to my question. Thanx in advance.
7
votes
3answers
383 views

Why does DateTime to Unix time use a double instead of an integer?

I'm needing to convert a DateTime to a Unix timestamp. So I googled it looking for some example code In just about all the results I see, they use double as the return for such a function, even when ...
6
votes
2answers
96 views

T-SQL version of MySQLs CURTIME()

I am trying to get teh current time as a unix timestamp from my MSSQL database. In Mysql I could say something like: SELECT id, caregiver_id, client_id, week_no, ...
6
votes
1answer
651 views

How can I work with dates before 1900 in PHP?

I am using PHP and jQuery to build an interactive timeline which needs to display dates between 1500 and 2020. I usually use PHP's strtotime function when working with dates, but it does not work for ...
6
votes
10answers
1k views

Use MySQL to determine whether today is a user's birthday

I have all users' birthdays stored as a UNIXtimestamp and am wanting to send out e-mails each day to users that have a birthday that day. I need to make a MySQL query that will get all of the rows ...
6
votes
4answers
4k views

Easiest Way to Generate Unix timestamp?

Related question is "Datetime To Unix timestamp", but this question is more general. I need Unix timestamps to solve my last question. My interests are Python, Ruby and Haskell, but other approaches ...
5
votes
3answers
174 views

What is special about dates before the year 1970?

I see a lot of discussion about getting dates that are pre-1970. For example, I see people ask a question like, "how do I get a date before 1970?" What I'd like to know is what is so special about ...
5
votes
2answers
113 views

Grant User One Point Each Day

Using PHP/mySQL, a user is granted a single integer point to their member account each day. The data I will use to determine if a point should be granted are these mysql fields: Creation Date ...
5
votes
10answers
690 views

Elegantly check if a given date is yesterday

Assuming you have a Unix timestamp, what would be an easy and/or elegant way to check if that timestamp was some time yesterday? I am mostly looking for solutions in Javascript, PHP or C#, but pseudo ...
4
votes
3answers
86 views

Timestamp arithmetic in bash

Say I have two log files (input.log and output.log) with the following format: 2012-01-16T12:00:00 12345678 The first field is the processing timestamp and the second is a unique ID. I'm trying to ...
4
votes
4answers
75 views

How do you get the unix timestamp for the start of today in javascript?

I realize that the current timestamp can be generated with the following... var timestamp = Math.round((new Date()).getTime() / 1000); What I'd like is the timestamp at the beginning of the current ...
4
votes
3answers
142 views

Can I get two different results from UNIX_TIMESTAMP in one query?

This seems an obvious thing but I'm just not sure about the correct answer. If I use an INSERT/UPDATE command in a single mysql query, can I get two different results from UNIX_TIMESTAMP? That is, ...
4
votes
2answers
560 views

Getting file modification time on UNIX using utime in C

I have been told by a professor that you can get a file's last modification time by using utime.h. However, the man page seem to cite that utime() only sets this value. How can I look up the last time ...
4
votes
3answers
175 views

How to select UNIX date = “2010” in mysql query?

Here is my code so far: SELECT `date`, title, category, url FROM cute_news WHERE category = '4' ORDER BY `date` DESC I want make pages based on the year, like, 2010 , 2009, 2008 and so on. The ...
4
votes
1answer
2k views

Unix timestamp in sqlite?

How do you obtain the current timestamp in Sqlite? current_time, current_date, current_timestamp both return formatted dates, instead of a long. sqlite> insert into events (timestamp) values ...
4
votes
8answers
594 views

How can I convert a file full of unix time strings to human readable dates?

I am processing a file full of unix time strings. I want to convert them all to human readable. The file looks like so: 1153335401 1153448586 1153476729 1153494310 1153603662 1153640211 Here is ...
4
votes
4answers
3k views

django Datefield to Unix timestamp

Hello In a model I have a such field: mydate = models.DateField() now a javascript graph function requires unix timestamp such as "1196550000000", how can I return the unix timestamp of my mydate ...
3
votes
1answer
86 views

Why is MySQL's UNIX_TIMESTAMP returning odd values like '%qd' in MySQL 5.5?

I am attempting to query time data from MySQL in PHP, using this sort of method: SELECT UNIX_TIMESTAMP( DATE_ADD( a.`date_time`, INTERVAL 1 DAY ) ) * 1000 AS time FROM `graph_values` AS a On a ...
3
votes
2answers
75 views

Is the Unix Timestamp(UTC) and Java UTC same? Can we compare?

I am afraid, this would seem duplication of many questions on this same context, but i couldn't find any answers for me in that. What i want is a comparison between two UTC's. One generated in java ...
3
votes
5answers
97 views

JavaScript date to timestamp calculation doesn't work for 8th and 9th of any month

I have the following JavaScript: http://jsfiddle.net/5Hapw/ When selecting a date, a variable will alert to say the timestamp - however, on the 8th and 9th of any month, the timestamp is always ...
3
votes
3answers
371 views

Easiest way to get the unix time stamp for the date exactly 1 month back in php

I want to get the unix time stamp for that day exactly 30days back from current day. What is the best method? Can i use this to get the date 30 days back, is this the best method? $day = ...
3
votes
2answers
3k views

How to convert a String to long in javascript?

I have a millisecond timestamp that I need to convert from a String to long. Javascript has a parseInt but not a parseLong. So how can I do this? Thanks Edit: To expand on my question slightly: ...
3
votes
2answers
433 views

Check the date and time entered by user in UNIX

I have a Shell script which uses the date and time parameters entered by the user. Date as mm/dd/yyyy and Time as HH:MM . What would be the easiest means to check the user had entered the proper ...
3
votes
3answers
330 views

why do we need to calculate time from year 1970?

In most of the Programming or scripting language such as PHP or JavaScript, i have come across the time function which tends to calculate the time from year 1970. for example in javascript if i use ...
3
votes
3answers
821 views

When does a UNIX directory change its timestamp

I used "touch" on a file, updating the file's timestamp but the parent directory's timestamp did not change. However, (as expected) when I created a new file within the parent directory, the ...
3
votes
3answers
1k views

PHP strtotime() function wrong by 1 hour?

I am converting dates and times into timestamps using PHP before they are inserted into my MySQL database. My problem is that when i use PHP's strtotime function the output timestamp is -1 hour ...
3
votes
4answers
367 views

Convert from unixtime at command line

Is there a quick, one-line way to convert a unix timestamp to a date from the unix command line? I've searched through the other posts, and most seem to be a way to convert in the context of a ...
3
votes
1answer
566 views

How can I convert an ISO8601 timestamp into unix time in Perl?

Given a string that represents a date/time in ISO8601 format (e.g. 20100723T073000), I need to ultimately parse this into a user-supplied format using a general strftime format string. In order to do ...
3
votes
5answers
2k views

How do I find the unix timestamp for the start of the next day in php?

I have a unix timestamp for the current time. I want to get the unix timestamp for the start of the next day. $current_timestamp = time(); $allowable_start_date = strtotime('+1 day', ...
2
votes
2answers
23 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 ...
2
votes
1answer
43 views

Is there any nanosecond-class time function on unix?

I just have a performance test on a lib, maybe some operation is nanosecond-class, so I wonder if there is any function can do such thing, thank you for paying attention.
2
votes
2answers
82 views

How do I get a human readable date from a unix timestamp in Javascript?

In my javascript, I have a unix timestamp (in this instance `1318305600000") and I need to convert that into a human readable date via Javascript. How do I go about doing this?
2
votes
3answers
202 views

What is the unix timestamp formula?

First of all, i know this question has been sort of asked/sort-of answered here: Calculate day number from an unix-timestamp in a math way? . I need a custom function/formula for this. so it only ...
2
votes
2answers
375 views

Converting a unix time stamp to twitter/facebook style

I'm trying to convert a unix time stamp to display like facebook and twitter. For example, when you see tweets or comments placed on twitter/facebook you see the date/time displayed like so: '2 mins ...
2
votes
1answer
449 views

Is there a difference in the timestamp formats used by iOS and PHP?

I got some of the timestamps from the consolidated.db on my iPhone (the one from the location tracking 'scandal' recently). I made a little PHP page to convert them to nicely formatted dates then ...
2
votes
1answer
99 views

PHP time subtraction not functioning

I'm trying to display the time x started, the time x finished, and how long x took to complete. I have the start and end displaying correctly, but the following subtraction gives me a bonkers answer. ...
2
votes
3answers
405 views

SQLite query that calculates if Unix epoch time occurs on today's date

I have an integer column that holds a Unix epoch time value. I want to calculate if it falls within today. For example, let today be the 24th day in the month. The query should return rows that fall ...
2
votes
3answers
1k views

Get time_t / timeval corresponding to ( local_timezone ) midnight on a given date

Given a time_t or struct timeval, how do I get the timeval or time_t of midnight EST/EDT ( local timezone ) on that day ? As in assuming local timezone is EST/EDT, given a time_t corresponding to say ...
2
votes
2answers
318 views

Why does MySQL unix time stop short of the 32 bit unsigned integer limit?

mysql> SELECT FROM_UNIXTIME(2145916799), FROM_UNIXTIME(2145916800), POW(2,32-1)-1, 2145916799 - POW(2,32-1)-1; ...
2
votes
5answers
351 views

Get the correct hour for a UNIX timestamp

I think this is a stupid question, but seems that I cannot find the answer. I have this timestamp: 1295598602. In my php script I have: $date = date('Y-m-d', 1295598602); $hour = date('H', ...
2
votes
6answers
602 views

Conversion to unix timestamp incorrect

I have a function that I wrote (if there is a good standard substitute, please let me know...) time_t get_unix_time(string time_str) { time_t loctime; time(&loctime); struct tm ...
2
votes
3answers
215 views

Locating most recently updated file recursively in UNIX

For a website I'm working on I want to be able to automatically update the "This page was last modified:" section in the footer as I'm doing my nightly git commit. Essentially I plan on writing a ...
2
votes
1answer
3k views

Converting UNIX timestamp into date, hours, minutes, second objective c

How can you convert the UNIX timestamp (that is in the form of a number denoting timestamp) into date, time(hours, minutes, seconds) in Objective-C? Thanx in advance.
2
votes
1answer
572 views

Convert UNIX timestamp to .NET DateTime ticks in unmanaged code (without using .NET)

I need to "construct" .NET DateTime values in Python/C++. How can I compute the number of ticks stored by DateTime starting from a UNIX timestamp? A solution involving Win32 API calls it's ok (I ...
2
votes
5answers
2k views

SQlite: Column format for unix timestamp; Integer types

Original problem: What is the right column format for a unix timestamp? The net is full of confusion: some posts claim SQLite has no unsigned types - either whatsoever, or with exception of the 64bit ...
2
votes
4answers
1k views

MySQL: What's the best to use, Unix TimeStamp Or DATETIME

Probably many coders want to ask this question. it is What's the adventages of each one of those MySQL time formats. and which one you will prefer to use it in your apps. For me i use Unix timestamp ...
2
votes
5answers
871 views

Getting the day from a Unix timestamp (PHP)

How do I get the day (1-7) from a Unix timestamp in PHP? I also need the day date (1-31) and month (1-12).

1 2 3 4