0
votes
2answers
48 views
Odd behavior of mktime()
Continuing on my attempt to create a DateTime class , I am trying to store the "epoch" time in my function:
void DateTime::processComponents(int month, int day, int year,
…
1
vote
1answer
108 views
How can I calculate how many nights are there in a date range?
I need to calculate the quantity of nights (stay at a hotel) from the checkin and checkout dates.
What is the best way to do it?
ie: If I have
Checkin: 12/11/2009 15:00 hs
Ch …
0
votes
1answer
62 views
Handling partial/incomplete dates in .NET
I have the need to handle partial dates, so for example:
1 April 2009 (stored as 1, 4, 200)
Jan 2000 (Stored as null, 1, 2000)
March 90 (Stored as null, 3, 1990)
00 (Stored as nu …
1
vote
3answers
42 views
Calculate two dates with PHP?
I have two dates in the format below:
Start Date = 30-10-2009
End Date = 30-11-2009
How, with PHP could I calculate the seconds between these two dates?
1
vote
3answers
46 views
Searching on date ranges with Lucene in Java ?
Is it possible to search on date ranges using Lucene in Java? How do I build Lucene search queries based on date fields and dates ranges? For example:
between specified dates
pri …
5
votes
17answers
438 views
“Date of birth” validation: How far/much would you go?
I'm quite anal about form validation. So while creating a validator for a "data of birth" (DOB) field in one of my current projects for a job application form (platform/language is …
0
votes
3answers
124 views
Find the week-number of a given date [closed]
Possible Duplicate:
How can I calculate/find the week-number of a given date?
How can I find the week-number of a given DateTime instance?
3
votes
1answer
98 views
Calculate the first day of a calendar week [C++]
I need to calculate the date of the first day in a calendar week, e.g.
Week 1 in 2009 -> Mon, 29.12.2008 (!)
Week 44 in 2009 -> Mon, 26.10.2009
I have some ugly code for this, bu …
0
votes
4answers
137 views
C#: Calculate difference between two dates (number of days)?
I see that this question has been answered for Java, Javascript, and PHP, but not C#. So, how might one calculate the number of days between two dates in C#?
0
votes
8answers
118 views
C# lists - sorting date problem
Hello,
I have a C# list collection that I'm trying to sort. The strings that I'm trying to sort are dates "10/19/2009","10/20/2009"...etc. The sort method on my list will sort the …
3
votes
5answers
303 views
How can I calculate/find the week-number of a given date?
How can I calculate/find the week-number of a given date?
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 …
0
votes
3answers
81 views
how to know if between 2 date’s it past 5 days - Oracle 10g ?
I have two date's:
1) 01/05/2009
2) 06/05/2009
How can I know if there's 5 days between them?
1
vote
5answers
201 views
How can I use Perl to do datetime comparisons and calculate deltas?
I extracted year, month, day, hour, minute, second, and millisecond data from human readable text (it wasn't in a timestamp format, but rather something like "X started at HH:MM:SS …
1
vote
1answer
93 views
Hashing-algorithm for dates
What would be a good hash-algorithm to hash dates, e.g. 24/12/09 and 31/10/89?
The dates would range from about year 1950 to 2050.
Could using the unix timestamp somehow, be poss …
