active questions tagged time - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T05:25:27Zhttp://stackoverflow.com/feeds/tag/timehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810780/wpf-add-a-clock-to-my-gui-2WPF add a clock to my GUIJim Beam2009-11-27T22:08:02Z2009-11-27T22:14:47Z
<p>Simple Request - I want to be able to display the current time within my WPF application window. Are there free controls out there for this? Just need to display the time, nothing else.</p>
http://stackoverflow.com/questions/13/how-can-i-determine-a-web-users-time-zone35How can I determine a web user's time zone?Kevin Dente2008-08-01T00:42:38Z2009-11-27T17:52:21Z
<p>Is there a standard way for a web server to determine what time zone offset a user is in?<br />
From an HTTP header or part of the user-agent description, perhaps?</p>
http://stackoverflow.com/questions/1807324/get-interface-and-object-from-assembly-at-run-time-and-pass-them-to-generic-class-1Get interface and object from assembly at run time and pass them to generic classPankaj2009-11-27T08:01:09Z2009-11-27T11:27:16Z
<p>Hello All
I have two assembly's BALL and DALL.BALL have a interface ILoadClassand DALL have a class LoadClass. Now what is my problem that <strong>i need to load these assembly's at run time and pass them LoadClass and ILoadClass to a generic class</strong>.
What i did here </p>
<pre><code>Assembly MyDALL = Assembly.Load("DALL");// Load DALL
Type MyLoadClass = MyDALL.GetType("DALL.LoadClass"); //Get LoadClass
obj = Activator.CreateInstance(MyLoadClass);
Assembly MyBALL = Assembly.Load("BALL");// Load BALL
Type MyILoadClass = MyBALL.GetType("BALL.ILoadClass"); //Get ILoadClass
</code></pre>
<p>Now CreateInstance in my generic class .CreateInstance</p>
<p>How can i pass my LoadClass and ILoadClass to CreateInstance class.</p>
<p>var factory = new CreateInstance();</p>
http://stackoverflow.com/questions/1808039/file-modification-time-seconds-on-unix0File modification time (seconds) on UnixExpertNoob12009-11-27T10:47:53Z2009-11-27T11:09:33Z
<p>Hi there,</p>
<p>On Unix, is there a command to display a file's modification time, precise to the second?</p>
<p>On Linux this is easily done with a "stat -c %y", which returns something like <code>2009-11-27 11:36:06.000000000 +0100</code>. I found no equivalent on Unix.</p>
http://stackoverflow.com/questions/175554/how-to-convert-milliseconds-into-human-readable-form6How to convert milliseconds into human readable form?FlySwat2008-10-06T18:23:25Z2009-11-26T13:25:07Z
<p>I need to convert an arbitrary amount of milliseconds into Days, Hours, Minutes Second.</p>
<p>For example:</p>
<p>10 Days, 5 hours, 13 minutes, 1 second.</p>
<p>I'm pretty sure that the trick is fairly simple, but I'm slammed today so I thought I'd reach out to SO's geniuses for a quick fix.</p>
<p>Thanks :)</p>
<p>EDIT: The language I'm using does not have this built in, otherwise I'd use it.</p>
<p>EDIT 2: Not homework, I've been out of school for many years.</p>
http://stackoverflow.com/questions/1797357/timeagoinwords-and-localize1time_ago_in_words and localizeLuca Romagnoli2009-11-25T14:42:29Z2009-11-25T14:57:15Z
<p>Is it possible to use <code>time_ago_in_words</code> with <code>i18n.locale</code>?</p>
<p>how?</p>
<p>thanks</p>
http://stackoverflow.com/questions/1793967/php-max-execution-time-incorrect-reporting0PHP Max Execution Time: Incorrect Reporting?Abs2009-11-25T00:44:02Z2009-11-25T10:16:03Z
<p>Hello all,</p>
<p>Is there any reason for a PHP script to return a fatal error of:</p>
<pre><code>Fatal error: Maximum execution time of 60 seconds exceeded in
H:\xampplite\htdocs\mlm\tera.php on line 1
</code></pre>
<p>When my PHP ini is set to "300000" and further more I set <code>set_time_limit(300000);</code> in the script itself. Safemode is off. In addition, Apache's timeout has also been set to "300000".</p>
<p>Why would be PHP return this - I am happy to hear any case why this would happen!!</p>
<p>I am using this PHP script mainly to run queries via SQLCMD using the exec function. I get this error after the PHP script has been executing (supposedly) for well over 5 minutes.</p>
<p>Note: When answering this question please assume there is <strong>no doubt</strong> that I am using the right PHP.ini file etc and what I am claiming is what is <strong>actually happening</strong>.</p>
<p>Thanks all for any help</p>
<p>P.S. I have asked this question before but thought the other question was getting messy. I have made this more specific in the hope that I can finally close the book on this. Also this a test that I have done and I am not using AJAX any more.</p>
<h2>Update</h2>
<p>Line 1 of Script in question:</p>
<pre><code>session_start();
ini_set("max_execution_time" , 300000);
error_reporting(0);
ini_set('display_errors', '0');
</code></pre>
<p>(I have added a line break to make it easier to read)</p>
http://stackoverflow.com/questions/1793815/get-diffrence-between-two-times-unix-epoc1Get Diffrence Between Two Times (Unix Epoc)Mark Tomlin2009-11-24T23:58:13Z2009-11-25T03:16:48Z
<p>You know when it's late in the night and your brain is fried? I'm having one of those nights right now, and my function so far is not working as it should, so please take a look at it:
(I should note that I'm using the PHP 5.2.9, and the function / method <a href="http://php.net/manual/en/datetime.diff.php" rel="nofollow">DateTime:Diff()</a> is not available until PHP 5.3.0.</p>
<pre><code><?php
function time_diff($ts1, $ts2) {
# Find The Bigger Number
if ($ts1 == $ts2) {
return '0 Seconds';
} else if ($ts1 > $ts2) {
$large = $ts1;
$small = $ts2;
} else {
$small = $ts1;
$large = $ts2;
}
# Get the Diffrence
$diff = $large - $small;
# Setup The Scope of Time
$s = 1; $ss = 0;
$m = $s * 60; $ms = 0;
$h = $m * 60; $hs = 0;
$d = $h * 24; $ds = 0;
$n = $d * 31; $ns = 0;
$y = $n * 365; $ys = 0;
# Find the Scope
while (($diff - $y) > 0) { $ys++; $diff -= $y; }
while (($diff - $n) > 0) { $ms++; $diff -= $n; }
while (($diff - $d) > 0) { $ds++; $diff -= $d; }
while (($diff - $h) > 0) { $hs++; $diff -= $h; }
while (($diff - $m) > 0) { $ms++; $diff -= $m; }
while (($diff - $s) > 0) { $ss++; $diff -= $s; }
# Print the Results
return "$ys Years, $ns Months, $ds Days, $hs Hours, $ms Minutes & $ss Seconds.";
}
// Test the Function:
ediff(strtotime('December 16, 1988'), time());
# Output Should be:
# 20 Years, 11 Months, 8 Days, X Hours, Y Minutes & Z Seconds.
?>
</code></pre>
http://stackoverflow.com/questions/1792512/objective-c-get-time-between-two-times-of-the-day0[objective-C] get time between two times of the dayunknown (google)2009-11-24T19:52:31Z2009-11-24T21:07:57Z
<p>Hey,</p>
<p>I've already tried with NSDate but with no luck.
I want the difference between for example 14:10 and 18:30.</p>
<p>Hours and minutes.</p>
<p>I Hope you can help me shouldn't be that complicated :)</p>
http://stackoverflow.com/questions/1720011/how-to-get-the-browser-client-time-when-the-page-loads-in-portlet0How to get the browser/client time when the page loads in portletunknown (google)2009-11-12T05:05:35Z2009-11-24T12:17:29Z
<p>Hi,
How can i get the browser/client time when the page loads in portlet. I need to do an algorithm based on the clients time zone, What it means is that during the render phase of the portlet I need to get the time zone of the browser. Is it possible, if so how ?</p>
<p>Any Help is greatly appreciated.</p>
<p>Thanks,
Micheal</p>
http://stackoverflow.com/questions/1788383/is-there-an-api-for-time-zones-based-on-ip-address1Is there an API for time zones based on IP address?Sohail Anwar2009-11-24T07:15:00Z2009-11-24T07:24:53Z
<p>i want an API of time zones which is based on IP address to be used in php.</p>
http://stackoverflow.com/questions/1784952/how-get-hoursminutes0How get hours:minutesPeter2009-11-23T18:11:07Z2009-11-23T20:34:36Z
<p>Hi, </p>
<p>I have a script here (not my own) which calculates the length of a movie in my satreceiver. It displays the length in <strong>minutes:seconds</strong></p>
<p>I want to have that in <strong>hours:minutes</strong></p>
<p>What changes do I have to make?</p>
<p>This is the peace of script concerned:</p>
<pre><code>if len > 0:
len = "%d:%02d" % (len / 60, len % 60)
else:
len = ""
res = [ None ]
</code></pre>
<p>I already got the hours by dividing by 3600 instead of 60 but can't get the minutes...</p>
<p>Thanks in advance</p>
<p>Peter</p>
http://stackoverflow.com/questions/1776172/cpu-running-time-of-a-portion-of-code1CPU running time of a portion of code Aman Neelappa2009-11-21T17:46:29Z2009-11-23T15:28:29Z
<p>Hi </p>
<p>I would like to know the CPU time used by a portion of code.( I am aware of the time command in linux, but that would give me the running time of the complete program, not a portion of it.)
Is there any function/command that can help me achieve this.</p>
<p>Thanks </p>
http://stackoverflow.com/questions/634937/time-performance-in-release-mode-a-grotesque-difference-in-vc-2008-and-vc-201Time performance in Release mode: a grotesque difference in VC++ 2008 and VC++ 2005 Express EditionIsis2009-03-11T15:03:42Z2009-11-22T13:00:01Z
<p>Hi, I ran the same project (with the same configuration properties) in VC++ 2008 and in VC++ 2005 Express Edition. I got surprised with difference in time preformance between them: VC++ 2008 took much more time (approximately 30% additional time) than VC++ 2005 Express Edition. Why did this happen? Is it due to Express Edition being lighter?</p>
<p>Thanks,</p>
<p>Isis</p>
http://stackoverflow.com/questions/1776099/how-can-my-ruby-time-now-timings-be-so-low-when-my-ping-timings-are-so-high0How can my Ruby "Time.now" timings be so low when my "ping" timings are so high?Corey Trager2009-11-21T17:20:42Z2009-11-22T04:44:37Z
<p>I'm using MongoDB for the first time and trying to time its performance. I'm running ruby on a VirtualBox Ubuntu 9.10 guest with a Windows 7 64-bit host. MongoDB is on a remote host, not on my lan buit somewhere in the internet cloud.</p>
<p>Here's my code:</p>
<pre><code>time1 = Time.now
rows = coll.find(some_criteria)
puts ((Time.now - time1) * 1000).to_s
</code></pre>
<p>The problem is, the time is so small, I don't believe what I'm seeing. I'm seeing times around 50, 100, 200 <strong>MICRO</strong>seconds, while ping times between my computer and the remote mongo computer are around 40 <strong>MILLI</strong>seconds. Am I misunderstanding the units? How can my timings be so low when the ping is so high?</p>
http://stackoverflow.com/questions/1777089/measuring-online-time-on-website1Measuring online time on websitemarco92w2009-11-21T23:03:08Z2009-11-22T00:08:56Z
<p>Hello!</p>
<p>I would like to measure how much time a user spends on my website. It's needed for a community site where you can say: "User X has been spending 1397 minutes here."</p>
<p>After reading some documents about this, I know that there is no perfect way to achieve this. You can't measure the exact time. But I'm looking for an approach which gives a good approximation.</p>
<p>How could you do this? My ideas:
1) Adding 30 seconds to the online time counter on every page view.
2) On every page view, save the current timestamp. On the next view, add the difference between the saved timestamp and the current timestamp to the online time counter.</p>
<p>I use PHP and MySQL if this does matter.</p>
<p>I hope you can help me. Thanks in advance!</p>
http://stackoverflow.com/questions/503877/how-can-i-measure-time-with-microsecond-precision-in-java6How can I measure time with microsecond precision in Java?jao2009-02-02T16:49:05Z2009-11-21T19:20:12Z
<p>I saw on the Internet that I was supposed to use System.nanoTime() but that doesn't work for me - it gives me the time with milliseconds precision. I just need the microseconds before and after my function executes so that I know how long it takes. I'm using Windows XP.</p>
<p>Basically, I have this code that, for example, does 1 million up to 10 millions of insertions in a java linked list. The problem is that I can't measure the precision right; sometimes it takes less time to insert everything in the smaller list.</p>
<p>Here's an example:</p>
<pre><code>class test
{
public static void main(String args[])
{
for(int k=1000000; k<=10000000; k+=1000000)
{
System.out.println(k);
LinkedList<Integer> aux = new LinkedList<Integer>();
//need something here to see the start time
for(int i=0; i<k; i++)
aux.addFirst(10000);
//need something here to see the end time
//print here the difference between both times
}
}
}
</code></pre>
<p>I did this many times - there was an exterior loop doing it 20 times for each k - but the result aren't good. Sometimes it takes less time to to make 10 million insertions than 1 million, because I'm not getting the correct measured time with what I'm using now (System.nanoTime())</p>
<p>Edit 2: Yes, I'm using the Sun JVM.</p>
<p>Edit 3: I may have done something wrong in the code, I'll see if changing it does what I want.</p>
<p>Edit 4: My mistake, it seems System.nanoTime() works. Phew.</p>
http://stackoverflow.com/questions/1767531/system-currenttimemillis-returns-always-0-on-motorola-droid0System.currentTimeMillis() returns always 0 on Motorola DroidBeMeCollective2009-11-20T00:13:14Z2009-11-20T00:40:22Z
<p>The call to System.currentTimeMillis() returns always 0 on Motorola Droid, Android 2.0.
There is no mentioning in changes to System in the API differences between 2.0 and 1.5, so either it was missed somehow or this is a Droid dependency.
Does anyone know how to get the currentTimeMillis in a way that satisfies Android 1.5, Android 2.0, and all hardware? Best regards!</p>
http://stackoverflow.com/questions/1766226/convert-a-summer-date-to-utc-in-the-winter0Convert a summer date to utc in the winter?Andomar2009-11-19T20:18:22Z2009-11-19T23:20:10Z
<p>The function <code>mktime</code> takes a <code>struct tm</code> as argument. One of the members of <code>struct tm</code> is <code>tm_isdst</code>. You can set this to 1 for wintertime, 0 for summertime, or -1 if you don't know.</p>
<p>However, if during winter, you try to convert <code>2009-09-01 00:00</code>, <code>mktime</code> fails to see that although it is currently winter, the date you are converting is summertime. So the result is one hour off. For me (GMT+1) it's <code>2009-08-31 22:00</code>, while it should be <code>23:00</code>.</p>
<p>Is there a way to determine if a particular date is in the summer or wintertime period? Is it possible to convert a summer date to utc in the winter?</p>
<p>(I hit upon this problem trying to answer <a href="http://stackoverflow.com/questions/1764710/converting-string-containing-localtime-into-utc-in-c">this question</a>)</p>
http://stackoverflow.com/questions/1756792/auto-fill-the-time-in-infopath0Auto Fill the Time in infopathEmily2009-11-18T15:29:59Z2009-11-19T22:37:20Z
<p>I would like to know if there is a way that I can have the time be auto filled when the user enters 10 I then want it to show 10:00. how can I do this?</p>
http://stackoverflow.com/questions/1762230/how-can-i-have-a-function-perform-after-a-set-amount-of-time0How can I have a function perform after a set amount of time?Chris2009-11-19T10:10:09Z2009-11-19T10:19:34Z
<p>I'm creating a site where users can bid on items in a silent auction. I want to be able to somehow start a timer and then let users bid on the items. Once the timer reaches a certain number, I want to be able to remove the bid feature on the auction items.</p>
<p>Does anyone know the best approach for me to do this and what functions or plugins may be helpful? I would prefer a pure PHP approach, but I imagine a mix between PHP and jQuery would most likely solve my problem somehow? Any suggestions? How can I do this?</p>
<p>Thank you in advance!</p>
http://stackoverflow.com/questions/1739383/convert-seconds-integer-to-hhmm-iphone0Convert Seconds Integer To HH:MM, iPhoneStumf2009-11-16T00:03:21Z2009-11-18T23:20:20Z
<p>Hi there,</p>
<p>I am struggling with this. I have a value in seconds that I want to display in a label in HH:MM format. I have searched the internet for ages and found some answers, but either not fully understood them, or they seem like an odd way of doing what I want. If someone could help me out on this one that would be great! Bear in mind that I am new to this games so this question may seem like a really basic one to the more experienced out there.</p>
http://stackoverflow.com/questions/1202218/alternative-for-waitforpagetoload-in-selenium0alternative for waitForPageToLoad in SeleniumBig D2009-07-29T18:38:48Z2009-11-18T00:20:29Z
<p>I have a series of links on a page that take different times to load... I want to capture the amount of time each takes... The problem I am having is that the waitForPageToLoad time if exceeded causes the test to fail and the rest of my links do not get tested... I know I could just skip suspected links in the test or set the time limit way beyond expectation, but I was hoping there was an alternative to the waitForPageToLoad that could be used to trap when a page is loaded in Selenium, so that if a page takes longer than a minute to load it doesn't end the script. </p>
http://stackoverflow.com/questions/1745922/regex-for-timestamps-in-php0Regex for timestamps in phppg2009-11-17T00:49:58Z2009-11-17T18:36:37Z
<p>I'm trying to take timestamps in this format:</p>
<p>2009-11-16T14:05:22-08:00</p>
<p>and make turn them into something like</p>
<p>2009-11-16</p>
<p>How do I remove everything after the "T"? </p>
http://stackoverflow.com/questions/1750644/how-to-use-python-to-calculate-time1How to use Python to calculate timeShaChris232009-11-17T17:55:43Z2009-11-17T18:09:06Z
<p>I want to write python script that acts as a time calculator.</p>
<p>For example:</p>
<p>Suppose the time is now 13:05:00</p>
<p>I want to add 1 hour, 23 minutes, and 10 seconds to it.</p>
<p>and I want to print the answer out. </p>
<p>How do I do this in Python?</p>
<p>What if date is also involved?</p>
http://stackoverflow.com/questions/1750415/how-to-keep-track-of-time0How to keep track of time. [closed]The Digital Ninja2009-11-17T17:23:04Z2009-11-17T17:23:04Z
<p>This is just a general question. I started working from home a few months ago and i find the hardest part is trying to keep track of what I'm working on and how much time was spent. I do both programming and network admin work. Is there any software packages (free) out there that some of you use? </p>
http://stackoverflow.com/questions/546321/python-date-time-get-date-6-months-from-now4Python date time, get date 6 months from nowEef2009-02-13T15:16:25Z2009-11-17T16:37:16Z
<p>Hey,</p>
<p>I am using the datetime module. I am looking to calculate the date 6 months from the current date. Could someone give me a little help doing this?</p>
<p><strong>Edit:</strong> The reason I am wanting to generate a date 6 months from the current date is to produce a Review Date. If the user enters data into the system it will have a review date of 6 months from the date they entered the data. Does this help?</p>
<p>Cheers</p>
<p>Eef</p>
http://stackoverflow.com/questions/1748750/testing-time-critical-code1Testing time critical codeKoraktor2009-11-17T13:06:55Z2009-11-17T14:43:46Z
<p>I've written a feature for my library <a href="http://koraktor.github.com/rubikon" rel="nofollow">Rubikon</a> that displays a throbber (a spinning — as you may have seen in other console apps) as long as some other code is running.</p>
<p>To test this feature I capture the output of the throbber in a <code>StringIO</code> and compare it with the expected value. As the throbber is only displayed as long as the other code is running the content of the <code>IO</code> gets longer when the code runs longer. In my tests I do a simple <code>sleep 1</code> and should have a constant 1 second delay. This works most of the time, but sometimes (apparently due to external factors like heavy load on the CPU) it fails, because the code doesn't run for 1 second, but for a bit more, so that the throbber prints a few additional characters.</p>
<p>My question is: Is there any possibility to test such time critical features in Ruby?</p>
http://stackoverflow.com/questions/1740339/formatting-time-on-android-while-following-preferences-24-hr-clock-vs-am-pm-e1Formatting time on Android, while following preferences (24 hr clock vs. AM/PM, etc..)Akop Karapetyan2009-11-16T06:00:57Z2009-11-16T15:48:45Z
<p>I'm currently using the following code to format time on Google Android:</p>
<pre><code>DateFormat.getDateTimeInstance().format(millis)
</code></pre>
<p>While this code honors my timezone and locale settings, it ignores the '24 hour mode' setting in system preferences, always returning time in AM/PM. Is there any way to get time in the same format as that on the status bar?</p>
http://stackoverflow.com/questions/1384720/timing-issues-in-my-vb-net-application0Timing issues in my VB .Net applicationunknown (yahoo)2009-09-06T02:11:09Z2009-11-16T07:00:11Z
<p>I made a program that opens an application, sleeps the thread for 500ms then takes a picture of the frame's handle. I do this to about 600 files. Oddly enough, every 40 or so files, the process.kill() doesnt work or something, because the application hangs, and the running files program is running, when it should have been killed, then my program crashes when it tries to start the process. On my slow laptop, it crashes every 60 or so, on my fast quadro, every 30 or so. What could cause this? I dont see how a procedure could be skipped; odd....</p>
<p>Thanks</p>