Tagged Questions

0
votes
3answers
70 views

Convert string from __DATE__ into a time_t

I'm trying to convert the string produced from the __DATE__ macro into a time_t. I don't need a full-blown date/time parser, something that only handles the format of the __DATE__ …
1
vote
5answers
70 views

How to get the day of year in ruby?

What is the best way to get the day of year of an specific date in Ruby? For example: 31/dec/2009 -> 365, 01/feb/2008 -> 32, etc
0
votes
3answers
62 views

Converting string containing localtime into UTC in C

I have a string containing a local date/time and I need to convert it to a time_t value (in UTC) - I've been trying this: char* date = "2009/09/01/00"; struct tm cal = {0, 0, 0, 0 …
0
votes
3answers
23 views

Convert a mySQL date to Javascript date

What would be the best way to convert a mysql date format date into a javascript Date object? mySQL date format is 'YYYY-MM-DD' (ISO Format).
0
votes
2answers
47 views

How do I find the difference between a datetime type and the current date/time in php?

I have a DATETIME for an entry in my database that is upcoming. I want to know the difference in time between the the DATETIME and the current date/time in Days, Hours, Minutes, an …
1
vote
4answers
67 views

How to find date of end of week in Ruby?

Hi, I have the following date object in ruby Date.new(2009, 11, 19) How would you find the next friday? Cheers
1
vote
3answers
61 views

Java Date, render with specific daylight mode

I have a Java Date that is from this summer during daylight savings time. For example: Jun 01, 2009 06:00 AM PDT My question is, how do I display this date as my local time z …
1
vote
2answers
26 views

Pretty Date Text in Flex / Flash / Java / C#

Is there a free library or class for formatting a date in a pretty way such as "5 minutes ago" or "yesterday"? I'd be satisfied with the same code in another language that I could …
0
votes
4answers
40 views

How to select date from datetime column?

I have a column, which is datetime type, the value is like this: 2009-10-20 10:00:00 I want to do a select, my query: SELECT * FROM data WHERE datetime = '2009-10-20' ORDER B …
1
vote
2answers
40 views

How do I insert todays date in Seam?

I'm new to Seam and I've been searching the internet and the Seam in Action book for this, but I'm looking for way to insert today's date in a seam page (myReport.xhtml or myPdfRe …
0
votes
1answer
16 views

customize format of #{currentDate} in seam?

Hi, I just got an answer to my seam question about displaying current date. Now I'm searching around to find the place to change the format for this feature. Is that possible? T …
0
votes
1answer
20 views

Mysql compaire two dates from datetime?

I was try to measure what is faster and what should be the best way to compare two dates, from datetime record in MySql db. There are several approaches how to grab a date from dat …
0
votes
1answer
27 views

Date comparison in SQLite

How do you declare a date datatype in a table? Is it simply the following? CREATE TABLE sampleDB (..., sampledate DATE, ...) Now, if I want to query from that using a string thr …
2
votes
4answers
107 views

Convert date Python

I have MMDDYY dates, i.e. today is 111609 How do I convert this to 11/16/2009, in Python?
0
votes
1answer
39 views

Json Date to JavasScript Date Conversion problem

Heres the code for converting the json retured date to a string of date. String.toDate = function(stringDate) { var newDate = new Date(parseInt(stringDate.replace("/Date(", "").r …

1 2 3 4 5 46 next
15 30 50 per page