Tagged Questions
14
votes
6answers
7k views
Calculating the Difference Between Two Java Date Instances
I'm using Java's java.util.date class in Scala and want to compare a date object and the current time. I know I can calculate the delta by using getTime():
(new java.util.Date()).getTime() - ...
3
votes
2answers
51 views
Python timedelta receiving unexpected results
In a web application I'm writing for an existing database I need to calculate the difference between now and a timestamp stored in the database (in a text field, it's stupid, I know). Here's my ...
3
votes
2answers
166 views
Python time objects with more than 24 hours
I have a time out of Linux that is in hh:mm:sec, but the hh can be greater than 24 hours. So if the time is 1 day 12 hours, it would be 36:00:00. Is there a way to take this format and easily make a ...