Tagged Questions

3
votes
2answers
657 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 …
1
vote
5answers
111 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 …
1
vote
3answers
113 views

Unixtime & mysql

Hi guys, 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 …
1
vote
3answers
216 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, …
1
vote
2answers
568 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', …
1
vote
3answers
198 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
247 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() …
0
votes
3answers
61 views

easter_date() in JavaScript

Hi all! 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 …
0
votes
1answer
311 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
2answers
114 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?