Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
1answer
16k views

Getting “unixtime” in Java

Date.getTime() returns milliseconds since Jan 1, 1970. Unixtime is seconds since Jan 1, 1970. I don't usually code in java, but I'm working on some bug fixes. I have: Date now = new Date(); Long ...
4
votes
3answers
461 views

MySQL - Convert MM/DD/YY to Unix timestamp

The title says it all; is there an easy (single query) way to do this? I'm reading those values from a column in a table and I think that the column itself is defined as a string (can't be helped, ...
4
votes
6answers
2k views

Parsing unix time in C#

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 ...
4
votes
5answers
2k views

Best practice for storing the date in MySQL from PHP

I've been using the unix timestamp all my life. I like it because it's easy to compare, it's fast because I store it as an integer. And since I'm using PHP, I can get any date/time format with date() ...
3
votes
1answer
37 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 = ...
3
votes
3answers
394 views

How to write an SQL query that counts the number of rows per month and year?

Had anyone any idea how to query a vbulletin database to generate a report on the number of registrations per month/year to achive results like.. MM/YYYY Count 01/2001 : 10 02/2001 : 12 ...
3
votes
1answer
554 views

how to compare two timestamp values from mysql with php

I have a db with time stamp values in this format: 0000-00-00 00:00:00 When I add this to the db I add a minutes to the current time. Now I need to check if the current time has passed the value added ...
3
votes
4answers
856 views

How can I convert from Gregorian Calendar to Unix Time, in Java?

I am in need of a method to convert GregorianCalendar Object to Unix Time (i.e. a long). Also need a method to convert Unix Time (long) back to GregorianCalendar Object. Are there any methods out ...
3
votes
4answers
373 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
2k views

Mysql: Convert DB from local time to UTC

I need to convert an existing (datetime fields) db from local time ut UTC. The values are stored ad datetimes on a server with time zone CET (+1) (with summertime +2). When selecting data I use ...
3
votes
2answers
5k views

Use Unix timestamp in Doctrine Timestampable

How do I use Unix timestamps with the Doctrine Timestampable behavior? I found the following code snippet here, but I'd rather not manually add this everywhere: $this->actAs('Timestampable', ...
2
votes
1answer
60 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
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
4answers
376 views

How to get iso_date ( YYYYMMDD ) from time_t / timeval

Given a time_t as 1291121400, how do I get the date of that day formatted as 20101130?
2
votes
1answer
114 views

UNIX time command - is input time factored in?

I'm using the unix time command to record times for running a java program. The first thing my program does when it begins running is ask the user to input a file path. Is the time taken to type ...
2
votes
1answer
1k views

SQL Server function to convert Unix time to local datetime

I'm looking for an efficient SQL Server function (in my case 2005) to convert a unix time value into a SQL Server datetime, using local time (particularly taking account of summertime adjustments - ...
2
votes
3answers
1k views

Get the unix timestamp of midnight on the previous Wednesday

How would I go about finding the unix timestamp of midnight of the previous Wednesday? My only approach would be to get the day index and day number of today, and subtract the difference, but I can ...
1
vote
2answers
138 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 ...
1
vote
2answers
131 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 ...
1
vote
4answers
274 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 ...
1
vote
1answer
248 views

Get date of some UNIX time

How can I convert UNIX time to date format? Smth like $> date ???? 1300000000 Mar 13 2011 07:06:40 GMT
1
vote
2answers
108 views

In R how to get the statistics on time difference of sessions

I have data that represents different sessions of users. This is in a format like User StartTime EndTime user1 1291043867 1291044055 user2 1290970409 1290972041 user3 ...
1
vote
2answers
258 views

Unix time to real time

Not sure whats up with the code $date = strtotime("%b %d, %Y", $datedata); $time = strtotime("%I:%M:%S %p", $datedata); The time i gets from the DB is 1298747601 and is the $datedata I have ...
1
vote
1answer
411 views

Convert RFC 822 timestamp to unixtime, timezone values not working , C/C++

I've a function which converts an RFC 822 timestamp to unixtime #include <stdio.h> #include <time.h> int main() { struct tm tm; time_t unixtime; strptime("Sun, 20 Feb 2011 10:28:02 ...
1
vote
1answer
335 views

MySQL from_unixtime() and Python time.ctime() not agreeing

I have some data that uses unixtime. I'm using Python and MySQL. I have noticed that the MySQL GUI Tools function from_unixtime() doesn't equal Python's output of time.ctime() or even the MySQL cmd ...
1
vote
3answers
131 views

Deducing 24 hour time from a 12 hour time without AM and PM in PHP

I'm working on a project that screen scrapes a list of departure times from a train schedule posted on the web. I realize this would be a lot easier if I wasn't using such a crude method to access ...
1
vote
3answers
182 views

What is the last Unix time?

What is the last Unix time in decimal? I'm going to set it as the expiration date of cookies (using PHP). Is it possible to cause problem?
1
vote
1answer
352 views

PHP: How to determine Unix Timestamp of midnight tomorrow?

I have the following code to determine the unix timestamp of midnight tomorrow. It seems pretty hacky to me and I wondered if anyone had a more elegant solution. date("U", strtotime(date("Y-m-d ...
1
vote
3answers
1k views

How to convert Regular Date to unixtime in Javascript?

How can i convert date which looks like this 12092008 to unixtime like this 1221215809
1
vote
7answers
5k views

Convert String To date in PHP

How can I convert this string 05/Feb/2010:14:00:01 to unixtime ?
1
vote
3answers
249 views

How to convert 2010-03-01 to Unixtime

How can i convert 2010-03-01 to unixtime like 1267452738
1
vote
3answers
663 views

Unixtime & mysql

I have a field on my table which is called X, and I store unixtime(php -> time()). My question is: How can I list all the months from my DB, something like: 6.2009 8.2009 etc.. And my second ...
1
vote
3answers
1k views

How to decompose unix time in C

This seems like something no one should ever have to do, but I'm working on a kernel module for an embedded system (OpenWRT) in which it seems that time.h does include the timespec and time_t types, ...
0
votes
1answer
25 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. ...
0
votes
2answers
22 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
43 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("-", ...
0
votes
1answer
24 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
2answers
95 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 = ...
0
votes
2answers
103 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 ...
0
votes
1answer
40 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 ...
0
votes
1answer
115 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 ...
0
votes
3answers
242 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
0
votes
1answer
256 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
177 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
3answers
207 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)
0
votes
2answers
127 views

Removing seconds from UnixTime Value

So I have a unixtime datetime stamp. For arguments sake, lets say it's now at 23:49:24 on 21/02/2011 (GMT). This would be: 1298332164 Now, is there anyway to remove the seconds component from ...
0
votes
2answers
114 views

float to unix epoch

I am pulling data from an JSON database that is storing the time in unix epoch but for some reason the numbers are being floated when I'm pulling them out. This is something I've never had to deal ...
0
votes
1answer
360 views

Unix time to Humanreadable Date and Time

Im working in lua with out date support so what are some ways th convert unix millisecond time to time and date mm/dd/yyyy hh:mm:ss i have the time and day but year and month are hard Thanks. ...
0
votes
1answer
128 views

Help with a MySQL Unix timestamp Query

I am trying to create a custom MySQL for use with the Expression Engine CMS. The purpose of the query is to display events that are happening today or in the future. The problem is that the EE field ...
0
votes
3answers
140 views

javascript unixtime one minute in front

Hi I'm passing a unixtimestamp to a javascript IF statement, can anyone tell me how to generate a unixtimestamp one minute in the future with javascript. Anyhelp would be helpful. Thanks

1 2