DateTime objects in many programming languages describe an instant in time, expressed as a date and time of day.
0
votes
0answers
21 views
How to remove the blue cross on datetime-local html input in Chrome 27?
I was using the datetime-local input but since Chrome v27 a blue cross appears which allows to clear the choosen datetime.
I don't want it and get back to the input we had with chrome 26.
here is how ...
-2
votes
8answers
62 views
Change datetime format in C#
Hey I'm using a Randomdate function in C# (it was written by another person here on StackOverflow - thank you :) )
Anyway it returns a random date between two dates, but in this format
the code:
...
5
votes
4answers
69 views
How to find an average date/time in the array of DateTime values with C#
If I have an array of DateTime values:
List<DateTime> arrayDateTimes;
What's the way to find the average DateTime among them?
For instance, if I have:
2003-May-21 15:00:00
2003-May-21 ...
0
votes
1answer
28 views
8 second discrepancy between Oracle SYSTIMESTAMP and .NET DateTime.Now
For some reason that I don't know, SELECT SYSTIMESTAMP FROM DUAL and System timestamp (including .Net's DateTime.Now) has a slight difference. This causes some bug in my code because part of the ...
1
vote
2answers
19 views
Time of last edit of an xml file
my question is the following. I wonder if it is possible to know what the last edit time is for an xml file.
Currently i am creating my xml and reading from my xml in the following way:
This is the ...
0
votes
1answer
46 views
Converting MM:SS.000 to total seconds
Did some searching and all results have solutions for formatting INTO time format. I'm trying to get OUT of time format!
I've got a list of lap times in excel and I'm attempting to use VBA to convert ...
0
votes
2answers
38 views
SQL Date Type Conversion Error
I get the date like this
DateTimePicker1.Value.Date.ToShortDateString()
and try to insert to my database.
The error is :
Conversion failed when converting date and/or time from character ...
1
vote
1answer
32 views
SyntaxError: invalid token in datetime.datetime(2012,05,22,09,03,41)?
I do something like this:
>>>import datetime
>>>datetime.datetime(2012,05,22,05,03,41)
datetime.datetime(2012, 5, 22, 5, 3, 41)
>>> datetime.datetime(2012,05,22,07,03,41)
...
-2
votes
0answers
40 views
C# Function to calculate storage days
I need help creating a function to calculate days in storage for an item, for one specific month, if the item has been in storage for more than 5 days in total. If true, the excess days should be ...
0
votes
1answer
40 views
How to get last hour, last month and yesterday in javascript?
I am trying to get the last hour, last month and yesterday from current date and time, I am using Date() Object to get current date and time:
function fetchCurrentDateTime() {
var currentDateobj ...
3
votes
2answers
4k views
Convert Java Date to UTC String
Java,Util.Date toString() displays the date in the local time zone.
There are several common scenarios where we want the data to be printed in UTC, including logs, data export and communication with ...
0
votes
3answers
22 views
Wrong Time.now output
There is such row in DB (from schema):
t.datetime "password_link_sent_at"
And callback:
self.password_link_sent_at = Time.now
But the output is wrong:
Started PUT "/email_password" for ...
0
votes
1answer
28 views
How do I convert a date/time to HST in JavaScript?
Trying to convert a date string to HST time, but it does not work.
Relevant code:
var MINUTES_IN_MILLI = 60000,
HOURS_IN_MILLI = 3600000,
UTC2HST_OFFSET = 10,
date1 = new ...
-1
votes
1answer
27 views
Convert this date string to DATETIME or TIMESTAMP with PHP
I'm using the Beanstream Payment API, and the response comes back with the following date format:
5/21/2013 3:51:28 PM
What would be the best way to convert this in order to store it as a TIMESTAMP ...
0
votes
4answers
29 views
Create a bash date/time variable from argument
Given an argument being passed in like this:
~/Documents/checkout/check-out.sh potatoes '2013/05/22 13:43:00'
Using 1st or 2nd line, produces
st=`date --date "$2" +%s` # mogul's ...
0
votes
1answer
22 views
Get Datetime of ESX server in C#
I'm looking for an easy way to get the date and time of an esx server in c#.
This has to be the hardware time, so I think this is the BIOS time. When a VM reboots it normally gets the time of the BIOS ...
2
votes
2answers
39 views
Specifying date format when converting with pandas.to_datetime
I have data in a csv file with dates stored as strings in a standard UK format - %d/%m/%Y - meaning they look like:
12/01/2012
30/01/2012
The examples above represent 12 January 2012 and 30 January ...
1
vote
2answers
114 views
Set Minutes in DateTime?
In jQuery are function to set Minutes, Hours etc. Is this also in PHP?
I have:
$date = new DateTime();
and
$min = '23';
I would like in $date set minutes to $min.
Is possible? If yes, how?
6
votes
5answers
18k views
Oracle Age calculation from Date of birth and Today
I want to calculate present Age from Date of Birth in my oracle function.
for that i am using (Today-Dob)/30/12.
But this is not accurate as some months will have 31 days.
I want to get the ...
1
vote
1answer
28 views
Expression of timezone offset - clarification appreciated
Something I'm currently working on requires localised times for users around the world. All datetimes are stored as UTC, so converting them is easy enough and we have a known, safe, point of ...
0
votes
4answers
33 views
Select a value by the latest dateTime value in SQL Server2008
I have table in SQL Server as below. Table Name: LANDS
Land_ID UID DM_DATE DEL_REASON
1 5 2013-05-21 20:31:53.773 Reason1
1 1 2013-05-21 ...
9
votes
3answers
8k views
ASP .NET MVC 3 Data Annotations GreaterThan LowerThan for DateTime and int
I would like to know what is the easiest way to have a "Greater Than" & "Lower Than" validation on a ASP.NET MVC 3 form?
I use unobtrusive JavaScript for client validation.
I have two DateTime ...
1
vote
1answer
43 views
ParseExact doesnt recognise a string extracted from a DataTable
I am writing an integration test and as such, I am reading a CSV file in as a DataTable, and then trying to parse the elements in each row. However when I get a string representation of a date, and ...
3
votes
2answers
5k views
Get date as a string from datetime object in doctrine 2
In one of my entities, I have a protected property called insert_date which is a datetime.
When I extract the data afterwards, I don't get the date as a string, I get an object. My var dump:
<pre ...
0
votes
1answer
16 views
How to synchronize separate free-running hardware timestamp components?
I am working with an API from a chinese video compression board that is somewhat 'unfriendly'. In each video frame buffer that comes back from the driver, there is a video timestamp. However, the ...
3
votes
1answer
31 views
NodaTime conversions (Part 2). How to?
Following my first post:
DateTime conversions using NodaTime on ASP.Net MVC 3 Razor website. How to?
I'm struggling to find an easy way to convert date/time between local and UTC (both ways), using ...
1
vote
2answers
30 views
Default format of XML serialized DateTime
I am serializing a DateTime object using the DataContractSerializer class. I get the following output.
2013-05-21T10:50:23.5602265-04:00
What is the final component?
...
0
votes
1answer
52 views
How to check if days between two dates are weekdays?
I have form where user take two dates from calendar. I want to check if days between two dates that user selected are in from friday to monday (include).
I found script that count weekdays (days that ...
67
votes
4answers
15k views
How do I convert datetime to date (in python)?
How do I convert a datetime.datetime object (e.g. the return value of datetime.datetime.now()) to a datetime.date object in Python?
32
votes
6answers
22k views
Django auto_now and auto_now_add
For Django 1.1.
I have this in my models.py:
class User(models.Model):
created = models.DateTimeField(auto_now_add=True)
modified = models.DateTimeField(auto_now=True)
When updating a row ...
19
votes
1answer
7k views
How do I create a datetime in Python from milliseconds?
I can create a similar Date object in Java by java.util.Date(milliseconds). How do I create the comparable in Python?
Allocates a Date object and initializes it to represent the specified number ...
0
votes
1answer
37 views
Designing non-overlapping date-time events
I have the following problem:
Events have a "begin" and "end" time and an amount. I use MySQL DATETIME for both.
Now if I have a constraint that says "no overlapping events" I need to make some ...
1
vote
2answers
22 views
jqGrid - date & time format not being applied
I have a jqGrid that displays 3 columns, one of which is a date-time (SQL Datetime field that is being returned). The colModel settings follow:
colModel:[
...
15
votes
12answers
24k views
How to determine the number of days in a month in SQL Server?
I need to determine the number of days in a month for a given date in SQL Server.
Is there a built-in function? If not, what should I use as the user-defined function?
14
votes
5answers
12k views
How do I pass a datetime value as a URI parameter in asp.net mvc?
I need to have an action parameter that has a datetime value? Is there a standard way to do this? I need to have something like:
mysite/Controller/Action/21-9-2009 10:20
but I'm only succeeding ...
4
votes
2answers
2k views
python format datetime with “st”, “nd”, “rd”, “th” (english ordinal suffix) like PHP's “S”
I would like a python datetime object to output (and use the result in django) like this:
Thu the 2nd at 4:30
But I find no way in python to output st, nd, rd, or th like I can with PHP datetime ...
-1
votes
1answer
32 views
How to perform arithmetic operation on a date in Python?
I have a date column in csv file say Date having dates in this format 04/21/2013 and I have one more column Next_Day. In Next_Day column I want to populate the date which comes immediately after the ...
39
votes
6answers
16k views
How to Check if an NSDate occurs between two other NSDates
I am trying to figure out whether or not the current date falls within a date range using NSDate.
For example, you can get the current date/time using NSDate:
NSDate rightNow = [NSDate date];
I ...
797
votes
13answers
395k views
How do you get a timestamp in JavaScript?
How can I get a timestamp in JavaScript?
Something similar to Unix's timestamp, that is, a single number that represents the current time and date. Either as a number or a string.
-1
votes
1answer
13 views
Apache LogFormat : how to change time %{format}t format [closed]
I need to log customized date format in Apache LogFormat, as the default entry logged as [21/May/2013:11:41:26 +0530]
and I need something like
[21052013:11:41:26 +0530]
1
vote
0answers
26 views
Solar_noon function - having date/time calc issues
non-programmer type here attempting to construct a python solar noon calculation.
I believe the code is just about there however I am having difficulty with obtaining the solar_noon time. I am using ...
0
votes
1answer
53 views
Conversion failed when converting date and/or time from character string
what i am doing is using own function , which is returning string , now i want this colun for ordering , and while using it for ordering it is not ordering properly because its a string , when i tried ...
1
vote
3answers
44 views
How to convert text column to datetime in SQL
I have a column that's a text:
Remarks (text, null)
A sample value is "5/21/2013 9:45:48 AM"
How do I convert it to a datetime format like this: "2013-05-21 09:45:48.000"
The reason for the ...
0
votes
1answer
18 views
Check connection time out, preferable check using long elapsedTicks or DateTime elapsedTime?
TCP server send data to buffer and MainForm receive data from buffer and do some processing
I have a parameter to check the time on lastDataReceive (from TCP) on the buffer.
I also have a paramter ...
5
votes
6answers
2k views
optional parts in SimpleDateFormat
I'm reading in date strings that could be with or without a time zone adjustment: yyyyMMddHHmmssz or yyyyMMddHHmmss. When a string is missing a zone, I'll treat it as GMT. I'm not seeing any way to ...
0
votes
1answer
49 views
Select records witch repeatable datetime PostgreSQL
I am facing the problem aka calendar.
I have to extract all records (events) (via select) with:
1. a specific date or
2. or repeatable date
The problem is that normal calendar displays the entire ...
0
votes
1answer
26 views
select date_add mysql issue
i have a table loans in a database with the schema that like this
loans
-----
period (vchar) ' but it contains number string
date
amt
user
i needed to select all the records from a loans where the ...
22
votes
4answers
10k views
Python: How to get a value of datetime.today() that is “timezone aware”?
I am trying to subtract one date value from the value of datetime.today() to calculate how long ago something was. But it complains:
TypeError: can't subtract offset-naive and offset-aware datetimes
...
6
votes
5answers
10k views
Group mysql query by 15 min intervals
I've got a monitoring system that is collecting data every n seconds (n ~=10 but varies). I'd like to aggregate the collected data by 15 minute intervals. Is there a way to corral the timestamp ...
10
votes
4answers
4k views
Python: Trying to mock datetime.date.today() but not working
Can anyone tell me why this isn't working?
>>> import mock
>>> @mock.patch('datetime.date.today')
... def today(cls):
... return date(2010, 1, 1)
...
>>> from datetime ...



