0
votes
2answers
23 views
How many problems are in the following date parsing routines that come from a real-world project?
These methods are laughably stupid, IMO, but I want to get a feel for what other developers think of such code. Criticisms may include technical and stylistic errors. Corrections may use anything from …
1
vote
7answers
85 views
Formatting Date on Java
Hi there.
I have a String with the following format: january_2005 (MMMMMMM_yyyy)
and i want to convert it to a mysql acceptable date value to insert it on the database.
I need to do it on Java.
…
0
votes
2answers
35 views
PHP Echo Timezone based on GMT offset
I have an application that stores GMT time data in a MySQL db like this: 2009-12-16 15:27:47.
The user's timezone offset is stored in another column like this: -6
The above timezone is GMT-6, which …
2
votes
2answers
55 views
Is there a Perl equivalent of SAS’ INTNX function or Javascript’s Dateadd function?
I'm trying to convert Chinese lunar system to Gregorian using Perl, both for fun and for learning purposes. I thought there was some kind of easy mathematical algorithm to do the job but turned out I …
1
vote
1answer
12 views
Determine if a year is leap and if a date is valid in Blackberry
i get a date input from the user..in this case i need to determine if the year the user entered is a leap year or not ...and after the user has entered the entire date i.e the month date and year...i …
6
votes
1answer
79 views
C++ Boost date with format dd/mm/yyyy?
How could I print the current date, using Boost libraries, in the format dd/mm/yyyy H?
What I have:
boost::posix_time::ptime now = boost::posix_time::second_clock::local_time();
cout << …
1
vote
5answers
76 views
Java Date cut off time information
Hi Folks,
I have a Java Date object containing date and time information, e.g. 2008-01-01 13:15:00. I want to write a method that cuts off the time information so I only have the date left, e.g. …
0
votes
3answers
37 views
Init javascript Date object
Hi,
I would like to retrieve a Javascript object Date for new year. I want to user new Date(); object and init it to the 2009-01-01 (it's for a countdown).
Thanks
0
votes
1answer
11 views
Problem with regional settings date
Hi Guys,
I got a problem with the date settings on my client system,
My program demands to set the date as DD/MM/YYYY and I used the type as text in the database,
so I am unable to see what was the …
3
votes
1answer
56 views
How can I make SimpleDateFormat.parse() fail when month is greater than 12?
I'm using java.text.SimpleDateFormat to parse strings of the form "yyyyMMdd".
If I try to parse a string with a month greater than 12, instead of failing, it rolls over to the next year. Full …
0
votes
3answers
35 views
jQuery UI, Calendar, find out if date given is over 2 years old
Hay Guys, I'm using the bog standard Calendar from the jQuery UI system. The result shown (after a user clicks a date) is MM/DD/YYYY.
I want to check that this date is not old than 2 years old
ie
…
0
votes
2answers
20 views
XSD and Date Range Validation
How would I write the XSD to validate the StartDate element and EndDate element are within the Quarter element and Year element? Thanks.
<OrganizationName>Chevron</OrganizationName>
…
1
vote
3answers
79 views
c# how to determine bios date change
Hello how can i determine with a program (c#) if the Bios Date has Change ?
UPDATED
i'm looking for the machine date, because I want write program that check if some body change that value, figure …
0
votes
6answers
63 views
get years between 2 dates?
ive got 2 dates like:
2009-11-11
2002-11-11
and i want to get the years between them '7'. how should i do that? the month and day will always be identical and i dont want to use -. is there a …
1
vote
8answers
209 views
[Java] new Date(2009, 12, 9) is deprecated
What Can I used to replace this ?
Thanks for your help
