36
votes
11answers
3k views
How can I determine a web user’s time zone?
Is there a standard way for a web server to determine what time zone offset a user is in?
From an HTTP header or part of the user-agent description, perhaps?
17
votes
30answers
1k views
.NET time sinkholes?
What .NET issue have you run into that wasted hours and hours of your time, was nearly impossible to debug, and could have been easily avoided if you had known just one quirk of the framework?
15
votes
4answers
1k views
time.sleep — sleeps thread or process?
In Python for the *nix, does time.sleep() block the thread or the process?
15
votes
9answers
812 views
What should we do to prepare for 2038?
I would like to think that some of the software I'm writing today will be used in 30 years. But I am also aware that a lot of it is based upon the UNIX tradition of exposing time as the number of …
14
votes
27answers
2k views
Recommended Web Based Time/Task Management Solution For Personal Use?
Hello,
I know this is less programming related and more time management related, but I value the feedback of the users on this site. I'm finding myself particularly busy this semester, managing …
12
votes
12answers
747 views
How possible is it to estimate time for programming projects? [closed]
It seems like it is nearly impossible to get close because you could run into any number of issues and things not first anticipated. How close can we be expected to reasonably estimate? Our PM wants …
12
votes
4answers
675 views
Should I use Java date and time classes or go with a 3rd party library like Joda Time?
Hi,
I'm creating a web based system which will be used in countries from all over the world. One type of data which must be stored is dates and times.
What are the pros and cons of using the Java …
11
votes
5answers
423 views
Epoch time
Why is
1 January 1970 00:00:00
considered the epoch time?
11
votes
1answer
3k views
What do ‘real’, ‘user’ and ‘sys’ mean in the output of time(1)?
$ time foo
real 0m0.003s
user 0m0.000s
sys 0m0.004s
$
What do 'real', 'user' and 'sys' stand for here?
Which one is meaningful when benchmarking my app?
9
votes
2answers
368 views
Why does tm_sec range from 0-60 instead of 0-59 in time.h?
My time.h has the following definition of tm:
struct tm {
int tm_sec; /* seconds after the minute [0-60] */
int tm_min; /* minutes after the hour [0-59] */
int tm_hour; /* hours since …
9
votes
13answers
652 views
How do you give a valid time estimate for something you have never done?
As a new developer who is the only software guy on staff I have faced a few challenges but possibly the most difficult has been time estimates. I strugle every time I have to give a project estimate.
…
9
votes
4answers
650 views
How to deal with time storage in SQL
I have a web application that I'm writing (C#, MSSQL) and I need to store the timestamp when a record is stored in the system. Normally, I would just do this with SQL and the DATETIME function. …
9
votes
7answers
441 views
How to parse relative time?
This question is the other side of the question asking, "How do I calculate relative time?".
Given some human input for a relative time, how can you parse it? By default you would offset from …
8
votes
4answers
201 views
English to Time
Does anyone know of a good class / library to convert English representations of time into timestamps?
The goal is to convert natural language phrases such as "ten years from now" and "three weeks" …
8
votes
12answers
304 views
Software Project - Time Estimation
Hi,
I am new to software project time estimation.
I have learned that people are using some techniques such as ‘Function point analysis’ , ‘Cocomo model’ etc.
Can you tell me the some of the latest …
