Tagged Questions

DateTime is a structure in .net that "represents an instant in time, typically expressed as a date and time of day." In Joda-Time, a popular Java library, DateTime is a class serving similar purpose. In Python it is the module that "supplies classes for manipulating dates and times in both simple and complex ways."

learn more… | top users | synonyms (1)

318
votes
22answers
18k views

Daylight saving time and Timezone best practices

I am hoping to make this question and the answers to it the definitive guide to dealing with daylight saving time, in particular for dealing with the actual change overs. If you have anything to add, ...
292
votes
34answers
27k views

How do I calculate relative time?

Given a specific DateTime value, how do I display relative time, like 2 hours ago 3 days ago a month ago etc, etc...?
247
votes
9answers
166k views

How do you get a timestamp in JavaScript?

How can I get a timestamp in JavaScript? Something similar to Unix's timestamp, that is, a single number that represents the current time and date. Either as a number or a string.
239
votes
31answers
64k views

How do I calculate someone's age in C#?

Given a DateTime representing their birthday, how do I calculate someone's age?
230
votes
16answers
41k views

datetime vs timestamp?

What would you recommend using between a datetime and a timestamp field, and why? (using mysql). I'm working with php on the server side.
166
votes
14answers
10k views

Is DateTime.Now the best way to measure a function's performance?

I need to find a bottleneck and need to accurately as possible measure time. Is the following code snippet the best way to measure the performance? DateTime startTime = DateTime.Now; // Some ...
142
votes
16answers
114k views

jQuery date/time picker

I've been looking around for a decent jQuery plugin that can handle both dates and times. The core UI DatePicker is great, but unfortunately I need to be able to take time in as well. I've found a ...
78
votes
10answers
96k views

Formatting a date in javascript

I noticed that javascriptnew Date() function is very smart in accepting dates in several formats. Xmas95 = new Date("25 Dec, 1995 23:15:00") Xmas95 = new Date("2009 06 12,12:52:39") Xmas95 = new ...
71
votes
5answers
45k views

MySQL Query GROUP BY day / month / year

Is it possible I make a simple query to count how many records I have in a determined period of time like a Year, month or day, having a TIMESTAMP field, like: SELECT COUNT(id) FROM stats WHERE ...
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 ...
63
votes
10answers
12k views

Determine Whether Two Date Ranges Overlap

Given two date ranges, what is the simplest or most efficient way to determine whether the two date ranges overlap? As an example, suppose we have ranges denoted by DateTime variables StartDate1 to ...
63
votes
14answers
30k views

How can I get the DateTime for the start of the week?

How do I find the start of the week (both Sunday and Monday) knowing just the current time in C#? Something like: DateTime.Now.StartWeek(Monday);
58
votes
14answers
107k views

How to calculate the difference between two dates using PHP?

I have two dates of the form: Start Date: 2007-03-24 End Date: 2009-06-26 Now I need to find the difference between these two in the below form: 2 years, 3 months and 2 days How can I do this ...
53
votes
4answers
14k views

Convert date to datetime in Python

Silly question, but is there a built-in method for converting a date to a datetime in Python, ie. getting the datetime for the midnight of the date? The opposite conversion is easy - datetime has a ...
52
votes
5answers
22k views

In C#, given a DateTime object, how do I get a ISO 8601 date in string format?

Given: DateTime.UtcNow How do I get a string which represents the same value in an ISO 8601 compliant format? Note that ISO 8601 defines a number of similar formats: (Wikipedia). The specific ...
48
votes
9answers
80k views

C# - Convert UTC/GMT time to local time

We are developing a C# application for a web-service client. This will run on Windows XP PC's. One of the fields returned by the web service is a DateTime field. The server returns a field in GMT ...
46
votes
5answers
24k views

How to parse ISO formatted date in python?

I need to parse strings like that "2008-09-03T20:56:35.450686Z" into the python's datetime? I have found only strptime in the python 2.5 std lib, but it not so convinient. Which is the best way to ...
46
votes
8answers
3k views

What's a good way to overwrite DateTime.Now during testing?

I've got some (C#) code that relies on today's date to correctly calculate things in the future. If I use today's date in the testing, I have to repeat the calculation in the test, which doesn't feel ...
45
votes
4answers
9k views

Using SQL Server 2008 and SQL Server 2005 and date time

I've built a entity framework model against a 2008 database. All works ok against the 2008 database. When I try to update the entity on a 2005 database I get this error. The version of SQL Server ...
45
votes
5answers
49k views

Convert to/from DateTime and Time in Ruby

How do you convert between a DateTime and a Time object in Ruby?
45
votes
18answers
99k views

How to get current datetime on windows command line, in a suitable format for using in a filename?

What's a windows command line statement(s) I can use to get the current datetime in a format that I can put into a filename? I want to have a .bat file that zips up a directory into an archive with ...
42
votes
2answers
10k views

How do you convert a python time.struct_time object into a datetime object?

How do you convert a python time.struct_time object into a datetime.datetime object? I have a library that provides the first one and a second library that wants the second one...
42
votes
10answers
47k views

Best approach to remove time part of datetime in SQL Server

Which method provides the best performance when removing the time portion from a datetime field in SQL Server? a) select DATEADD(dd, DATEDIFF(dd, 0, getdate()), 0) or b) select ...
40
votes
5answers
43k views

Converting string into datetime

Short and simple. I've got a huge list of date-times like this as strings: Jun 1 2005 1:33PM Aug 28 1999 12:00AM I'm going to be shoving these back into proper datetime fields in a database so I ...
39
votes
11answers
47k views

How can I truncate a datetime in SQL Server?

What's the best way to truncate a datetime value (as to remove hours minutes and seconds) in SQL Server 2008? For example: declare @SomeDate datetime = '2009-05-28 16:30:22' select ...
38
votes
9answers
23k views

DateTime “null” value

I've been searching a lot but couldn't find a solution. How do you deal with a DateTime that should be able to contain an uninitialized value (equivalent to null)? I have a class which might have a ...
36
votes
7answers
827 views

Why is DateTime.Now a property and not a method?

After reading this blog entry : http://wekeroad.com/post/4069048840/when-should-a-method-be-a-property, I'm wondering why Microsoft choose in C# : DateTime aDt = DateTime.Now; instead of DateTime ...
35
votes
10answers
19k views

Converting .NET DateTime to JSON

My webs service is returning a DateTime to a jQuery call. The service returns the data in this format: /Date(1245398693390)/ How can I convert this into a JavaScript-friendly date?
35
votes
10answers
91k views

How can I convert string to datetime with format specification in JavaScript?

How can I convert a string to a date time object in javascript by specifying a format string? I am looking for something like: var dateTime = convertToDateTime("23.11.2009 12:34:56", "dd.MM.yyyy ...
34
votes
3answers
4k views

What's the difference between DateTime and Time in Ruby?

And what factors would cause me to choose one or the other?
34
votes
6answers
31k views

C#: What is the best way to convert seconds into (Hour:Minutes:Seconds:Milliseconds) time?

What is the best way to convert seconds into (Hour:Minutes:Seconds:Milliseconds) time? Let's say I have 80 seconds, are there any specialized classes/techniques in .NET that would allow me to convert ...
33
votes
6answers
637 views

Get the Olson TZ name for the local timezone?

How do I get the Olson timezone name (such as Australia/Sydney) corresponding to the value given by C's localtime call? This is the value overridden via TZ, by symlinking /etc/localtime, or setting a ...
30
votes
4answers
7k views

java.util.Date vs java.sql.Date

java.util.Date vs java.sql.Date: when to use which and why?
27
votes
6answers
33k views

Equivalent of DateTime.Now in Java?

How do I get the current date in Java? In C# it is DateTime.Now.
27
votes
10answers
26k views

How do I convert local time to UTC in Python?

How do I convert a datetime string in local time to a string in UTC time? I'm sure I've done this before, but can't find it and SO will hopefully help me (and others) do that in future. ...
26
votes
3answers
10k views

MVC DateTime binding with incorrect date format

Asp.net-MVC now allows for implicit binding of DateTime objects. I have an action along the lines of public ActionResult DoSomething(DateTime startDate) { ... } This successfully converts a ...
26
votes
7answers
20k views

Best JavaScript Date Parser & Formatter? [closed]

Since I've started to use jQuery, I have been doing a lot more JavaScript development. I have the need to parse different date formats and then to display them into another format. Do you know of ...
26
votes
6answers
15k views

Python - easy way to add N seconds to a datetime.time?

Given a datetime.time value in Python, is there a standard way to add an integer number of seconds to it, so that 11:34:59 + 3 = 11:35:02, for example? These obvious ideas don't work: >>> ...
25
votes
2answers
22k views

How to convert java.util.date to java.sql.date?

I am trying to use java.util.Date as input and then creating a query with it - so I need java.sql.Date. I was surprised to find that it couldn't do the conversion implicitly or explicitly - but I ...
25
votes
1answer
7k views

Java equivalent to C#'s TimeSpan

Does Java have a data type that represents a period of time eg 34 seconds, 5 minutes etc. I've seen a few implementations of a TimeSpan that cover a Time period like from the 10th of December to the ...
25
votes
4answers
22k views

How to convert UNIX timestamp to DateTime and vice versa?

As the title says really. There is this example code, but then it starts talking about millisecond / nanosecond problems. http://blogs.msdn.com/brada/archive/2004/03/20/93332.aspx Edit: This is ...
25
votes
4answers
7k views

What's the BEST way to remove the time portion of a datetime value (SQL Server)?

Here's what I use: SELECT CAST(FLOOR(CAST(getdate() as FLOAT)) as DATETIME) I'm thinking there may be a better/more elegant way. Requirements: - It has to be as fast as possible (the less ...
24
votes
1answer
19k views

How do I compare two DateTime objects in PHP 5.2.8?

This seems like something that should be pretty straight forward, but I have been stuck page faulting this problem for a while now, so here goes. Having a look on the PHP documentation , the ...
23
votes
8answers
1k views

How to handle a day that starts from 06:00 and ends at 30:00

I am working with a case where the client has a 30 hour day. The day starts at 6 am and then goes around to 6 am the next day, but when they come to 1 am the next day, they take it as 25:00 hours. 2 ...
23
votes
8answers
371 views

How to handle vague dates in .Net

I have a system that takes information from an external source and then stores it to be displayed later. One of the data items is a date. On the source system they have the concept of a fuzzy date ...
23
votes
2answers
230 views

Why do PHP and MySQL unix timestamps diverge on 1983-10-29?

I've been using PHP's strtotime and MySQL's UNIX_TIMESTAMP functions in my app, to convert dates into timestamps. PHP and MySQL are running on my local machine, and these functions generally return ...
23
votes
2answers
516 views

Why date() works twice as fast if we set time zone from code?

Have you noticed that date() function works 2x faster than usual if you set actual timezone inside your script before any date() call? I'm very curious about this. Look at this simple piece of code: ...
23
votes
4answers
34k views

Simple conversion between java.util.Date and XMLGregorianCalendar

I'm looking for a simple method of converting between java.util.Date and javax.xml.datatype.XMLGregorianCalendar in both directions. Here is the code that I'm using now: import ...
22
votes
1answer
2k views

In Ruby on Rails, what's the difference between DateTime, Timestamp, Time and Date?

In my experience, getting dates/times right when programming is always fraught with danger and difficulity. Ruby and Rails have always eluded me on this one, if only due to the overwhelming number ...
22
votes
8answers
23k views

Get the previous month's first and last day dates in c#

I can't think of an easy one or two liner that would get the previous months first day and last day. I am LINQ-ifying a survey web app, and they squeezed a new requirement in. The survey must ...

1 2 3 4 5 138