Tagged Questions

4
votes
3answers
460 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
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() ...
2
votes
4answers
375 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
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
4answers
271 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
2answers
94 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
872 views

Handling time zones in Cocoa

I just want to clarify if I am understanding how dates & time zones work. Basically, I have a date string @"2008-07-06 12:08:49" that I want to convert to an NSDate. I want this date and time to ...
0
votes
2answers
3k views

convert date to unixtime php

I have a form which posts date information month, day, yeah, hour, minute, am/pm. How do i encode/decode this to and from unixtime using php?
0
votes
3answers
188 views

easter_date() in JavaScript

I'm making a calendar generator in JavaScript. I need the Unix Timestamp for easter day midnight, for a given year. Can anyone tell me how I need to do that (in JavaScript)? Thanks in advance. PHP's ...