50
votes
19answers
3k views
SQL to determine minimum sequential days of access?
The following User History table contains one record for every day a given user has accessed a website (in a 24 hour UTC period). It has many thousands of records, but only one rec …
18
votes
7answers
2k views
In Ruby on Rails, how do I format a date with the “th” suffix, as in, “Sun Oct 5th”?
I want to display dates in the format: short day of week, short month, day of month without leading zero but including "th", "st", "nd", or "rd" suffix.
For example, the day this …
13
votes
4answers
1k views
How do I calculate number of days betwen two dates using Python?
If I have two dates (ex. '8/18/2008' and '9/26/2008') what is the best way to get the difference measured in days?
10
votes
15answers
2k views
Why does Javascript getYear() return 108?
Why does this javascript return 108 instead of 2008? it gets the day and month correct but not the year?
myDate = new Date();
year = myDate.getYear();
year = 108?
9
votes
3answers
145 views
Localizing Date Ranges
Does anyone know how to localize date ranges using C#?
In particular, I want to generate "smart" date ranges, so that redundant information is eliminated.
Here are some examples …
9
votes
7answers
2k views
DateTime.Now vs. DateTime.UtcNow
I've been wondering what exactly are the principles of how the two properties work. I know the second one is universal and basically doesn't deal with time zones, but can someone e …
7
votes
4answers
846 views
How can I parse relative dates with Perl?
I'd love to know if there is a module to parse "human formatted" dates in Perl. I mean things like "tomorrow", "Tuesday", "next week", "1 hour ago".
My research with CPAN suggest …
7
votes
5answers
1k views
How do I determine if a given date is Nth weekday of the month?
Sorry if the title is awkward, but I can't think of a better summary.
Here is what I am trying to do:
Given a date, a day of a week and an integer n, is the date the nth day of th …
7
votes
5answers
970 views
Best way to turn an integer into a month name in c#?
Is there a best way to turn an integer into its month name in .net?
Obviously I can spin up a datetime to string it and parse the month name out of there. That just seems like a …
7
votes
2answers
743 views
How to elegantly print the date in RFC822 format in Perl
How can I elegantly print the date in RFC822 format in Perl?
7
votes
5answers
1k views
Comparing date ranges
In mysql, If I have a list of date ranges (range-start and range-end). e.g.
10/06/1983 to 14/06/1983
15/07/1983 to 16/07/1983
18/07/1983 to 18/07/1983
And I want to check if an …
7
votes
8answers
4k views
How to return the date part only from a SQL Server datetime datatype
SELECT GETDATE()
Returns: 2008-09-22 15:24:13.790
I want that date part without the time part: 2008-09-22 00:00:00.000
7
votes
15answers
747 views
What languages do date, time, and calendar operations really well?
This is probably too much to ask, but is there any language that does a really terrific job of representing time and date operations? I'll grant straight away that it's really har …
7
votes
8answers
2k views
Is there an easy way in .NET to get “st”, “nd”, “rd” and “th” endings for numbers?
Hi,
I am wondering if there is a method or format string I'm missing in .NET to convert the following:
1 to 1st
2 to 2nd
3 to 3rd
4 to 4th
11 to 11th
101 to 101st
…
7
votes
4answers
527 views
How do You Build a Date or Calendar Object From a String in Java?
I have a string representation of a date that I need to create an object from. I've looked through Date and Calendar API but haven't found anything that can do this other than crea …
