0
votes
5answers
57 views
Best way to convert epoch time to “real” date/time
What I want to do is convert an epoch time (seconds since midnight 1/1/1970) to "real" time (m/d/y h:m:s)
So far, I have the following algorithm, which to me feels a bit ugly:
vo …
1
vote
3answers
41 views
Cache.Add absolute expiration - UTC based or not?
The examples for Cache.Add uses DateTime.Now.Add to compute the expiration, i.e. it passes:
DateTime.Now.AddSeconds(60)
as the value of the absoluteExpiration parameter.
I'd h …
0
votes
4answers
63 views
get day of the week from yyyy-mm-dd
Hi
I would like to convert a yyyy-mm-dd to something like this:
"Saturday, 2 October 2009"
I would like also to have the option to modify the language both day of the week and m …
1
vote
2answers
76 views
Datetime - 10 Hours
Consider:
now = datetime.datetime.now()
now
datetime.datetime(2009, 11, 6, 16, 6, 42, 812098)
How would I create a new datetime object (past) and minus n values from the hours?
0
votes
4answers
28 views
Which is the best way to check if timestamp/datetime belongs to a specified date
Sometimes I have a datetime or timestamp columns in the database and, for example, I need to select all records with timestamp updated today.
I usually do it like this:
SELECT …
0
votes
3answers
44 views
How to store NULL values in datetime fields in MySQL?
I have a "bill_date" field that I want to be blank (NULL) until it's been billed, at which point the date will be entered.
I see that MySQL does not like NULL values in datetime f …
0
votes
3answers
59 views
PHP last day of the month
How can I get the last day of the month in PHP?
Given:
$a_date = "2009-11-23"
I want 2009-11-30; and given
$a_date = "2009-12-23"
I want 2009-12-31.
1
vote
2answers
26 views
File create datetime getting duplicated for different files and times
I have written a service that monitors a file drop location for files from a scanner. The scanner drops all files with the exact same file name (eg. Test.tif) unless that file alr …
0
votes
1answer
63 views
“DateTime.Now” - why does it return GMT?
I am running on a Win2003 server, TimeZone set to (GMT -06:00) Central Time. I am programming with VS.NET 2005, f/x 2.x. When I execute the following code I do not get the expect …
0
votes
2answers
80 views
Getting Current Time in string in Custom format in objective c
I want current time in following format in a string.
dd-mm-yyyy HH:MM
How?
Thanks in advance.
Sagar
0
votes
3answers
40 views
how to find that user has changed time in iphone sdk?
I have created an application.in the app i start a countdown timer and save current date as double value in database also i save end date according to countdown timer .after closin …
0
votes
1answer
30 views
PHP ‘end date’ from a given ‘start date’ - last day/15th of the following month
I'd like to get an 'end date' from a given 'start date' in PHP. End date is based off the start and are calculated as follows:
If Start date is from the 1-15th of the month, End d …
0
votes
3answers
76 views
Can Ruby print out time difference (duration) readily?
Can Ruby do something like this?
irb(main):001:0> start = Time.now
=> Thu Nov 05 01:02:54 -0800 2009
irb(main):002:0> Time.now - start
=> 25.239
irb(main):003:0> …
1
vote
6answers
100 views
C# : How to get number of days from an object of DateTime
In C# ,How can i find the number of days in a month which resides in a DateTime object.
Ex :
DateTime objDate=new DateTime();
using the objDate, now i want to get the number of …
0
votes
1answer
45 views
SQL DateTimes From C# Linq to Stored Procedure
I have a complex sql query that I have in a stored procedure and am calling from C#.
The procedure requires a date-time which I pass in as DateTime object from c#, the problem see …
