Tagged Questions
The milliseconds tag has no wiki summary.
36
votes
12answers
83k views
C++ obtaining milliseconds time on Linux — clock() doesn't seem to work properly
On Windows, clock() returns the time in milliseconds, but on this Linux box I'm working on, it rounds it to the nearest 1000 so the precision is only to the "second" level and not to the milliseconds ...
12
votes
4answers
8k views
C# get time in milliseconds
I'm making a program in which I need to get the time in milliseconds. By time, I mean a number that is never equal to itself, and is always 1000 numbers bigger than it was a second ago. I've tried ...
10
votes
1answer
3k 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?
10
votes
5answers
10k views
Lua - Current time in milliseconds
another Lua question: Is there a common way to get the current time in or with milliseconds?
There is os.time(), but it only provides full seconds.
6
votes
2answers
2k views
How to parse milliseconds in R?
How do I use strptime or any other functions to parse timestamps with milliseconds in R?
> time[1]
[1] "2010-01-15 13:55:23.975"
> strptime(time[1], format="%Y-%m-%d %H:%M:%S.%f")
[1] NA
> ...
6
votes
5answers
9k views
How do I get elapsed time in milliseconds in Ruby?
If I have a Time object got from :
Time.now
and later I instantiate another object with that same line, how can I see how many milliseconds have passed? The second object may be created that same ...
6
votes
3answers
13k views
Getting unix timestamp in milliseconds in PHP5 and Actionscript3
In Actionscript, the Unix timestamp in milliseconds is obtainable like this:
public static function getTimeStamp():uint
{
var now:Date = new Date();
return now.getTime();
}
...
5
votes
1answer
697 views
string to datetime with fractional seconds, on Google App Engine
I need to convert a string to a datetime object, along with the fractional seconds. I'm running into various problems.
Normally, i would do:
>>> datetime.datetime.strptime(val, ...
4
votes
1answer
717 views
Parsing a DateTime containing milliseconds fails for certain cultures. Why?
I'm trying to parse a string containing milliseconds like this:
string s = "11.05.2010 15:03:08.7718687"; // culture: de-CH
DateTime d = DateTime.Parse(s); // works
However, for example under the ...
4
votes
4answers
8k views
How to get a DateDiff-Value in milliseconds in VBA (Excel)?
I need to calculate the difference between two timestamps in milliseconds.
Unfortunatley, the DateDiff-function of VBA does not offer this precision.
Are there any workarounds?
Thanks in advance!
3
votes
1answer
280 views
JFreeChart DynamicTimeSeriesCollection with a period of n milliseconds
I'm trying to define an applet with a chart that have to be updated every n milliseconds.
For example every 500 milliseconds. This is a part of the code:
dataSet = new DynamicTimeSeriesCollection(1, ...
3
votes
1answer
2k views
How can I create a python timestamp with millisecond granularity from epoch?
I need a single timestamp of milliseconds since epoch. This should not be hard, I am sure I am just missing some method of datetime or something similar.
Actually microsecond is fine too. I just ...
3
votes
5answers
2k views
The C `clock()` function just returns a zero
The C clock() function just returns me a zero. I tried using different types, with no improvement... Is this a good way to measure time with good precision?
#include <time.h>
#include ...
2
votes
1answer
66 views
Android milliseconds
So I'm trying to write a stopwatch app that displays time in milliseconds, but for some reason it won't work. Basically I have just a togglebutton that, after being pressed, starts printing the ...
2
votes
2answers
173 views
What is the duration of a Toast LENGTH_LONG and LENGTH_SHORT
I need the exact duration of LENGTH_LONG and LENGTH_SHORT in milliseconds (ms). Also I need to know if the duration of Toast message with LENGTH_LONG will have the same duration in any phone and with ...
2
votes
6answers
72 views
how to manage the time left with System.currentTimeMillis()
I use for example this code to check if the user can do some action. So the user can only do one action each 5 seconds.
if((System.currentTimeMillis() - lastTime) > 5000)
{
// Message: Ok, you ...
2
votes
1answer
125 views
Parsing microseconds with boost
I am looking for the boost::posix_time::time_input_facet that will let me parse milliseconds. It does not seem to be the same as the one for formatting microseconds which is "%f"
So if I have ...
2
votes
2answers
963 views
c++ boost get current time in milliseconds
I need in my thread (using boost::thread) to retrieve the current time in ms or less and to convert into ms:
actually, reading here I've found this:
tick = ...
2
votes
2answers
264 views
file.lastModified() is never what was set with file.setLastModified()
I do have a problem with millis set and read on Android 2.3.4 on a Nexus One. This is the code:
File fileFolder = new File(Environment.getExternalStorageDirectory(), appName + "/" + ...
2
votes
4answers
1k views
PHP — Convert milliseconds to Hours : Minutes : Seconds.fractional
I've got a script that takes in a value in seconds (to 2 decimal points of fractional seconds):
$seconds_input = 23.75
I then convert it to milliseconds:
$milliseconds = $seconds_input * 1000; // ...
2
votes
3answers
3k views
Add milliseconds to Java date, when milliseconds is long
I am looking for the best way to add milliseconds to a Java Date when milliseconds is stored as a 'long'. Java calendar has an add function, but it only takes an 'int' as the amount.
This is one ...
2
votes
6answers
447 views
Sleep in loop when application is running, but sleeps too few
private static void Main(string[] args)
{
for (;;)
{
TemporaryCityTool.TemporaryCityTool.AddCity();
Console.WriteLine("waiting...");
Thread.Sleep(3600);
}
}
why ...
2
votes
1answer
438 views
PHP file modification time in milliseconds
I there, I am currently writing a unit test which asserts that a file did not get modified. The test code execution takes less than one second and therefore I would like to know if it is possible to ...
2
votes
6answers
2k views
How do I format an amount of milliseconds into minutes:seconds:milliseconds in PHP?
I have a total ammount of milliseconds (ie 70370) and I want to display it as minutes:seconds:milliseconds ie 00:00:0000.
How can I do this in PHP?
2
votes
1answer
196 views
Is it possible to change the base millisecond refrence time 1970 to 2008 in java (like JSR-310)
I want to be able to change the base millisecond reference from 1970 to 2008 in java so
that I can save space in the database and unique Ids.
Preferably with Joda-Time.
The upcoming jsr-310 in the ...
2
votes
1answer
1k views
VBA - show clock time with accuracy of less than a second
Is there a way to use VBA (excel) to generate a clock time with accuracy to a tenth of a second or less?
eg:
Sub test()
MsgBox Format(Time, "hh:mm:ss???") 'not sure what this format should be...
...
2
votes
4answers
2k views
How do I get milliseconds since midnight UTC in C?
The time function in time.h gives milliseconds since the epoch.
1
vote
2answers
58 views
The function executed per second , it works,but like to per 0.5 sec
Greeting !!
The following code works fine....at least more than one second will execute expx function
in function Getexp , I called Getexp every 0.01 second for 100 times,
actually expx function ...
1
vote
3answers
37 views
Measuring short time intervals in C on Ubuntu / VMware
I am trying to measure short time intervals, in order few of milliseconds. This proves to be some nontrivial task, since the ubiquitous time() function works on whole seconds precision. After some ...
1
vote
1answer
63 views
android vibrating only for 15 seconds
I want to implement:
I want to vibrate the phone for the specified minutes, I am getting the input using EditText and converting to millseconds by multiplying minutes with 60000 and then passing it ...
1
vote
2answers
57 views
SQL Server 2008 and milliseconds
In SQL Server 2008, why do the following queries return the same value?
-- These all return 2011-01-01 23:59:59.997
SELECT CAST('2011-01-01 23:59:59.997' as datetime)
SELECT CAST('2011-01-01 ...
1
vote
1answer
152 views
get execution time in milliseconds in R
I have read a solution to this using tic(), toc() functions
tic <- function(gcFirst = TRUE, type=c("elapsed", "user.self", "sys.self"))
{
type <- match.arg(type)
assign(".type", type, ...
1
vote
3answers
194 views
Android: Format milliseconds into >60 seconds when no minute format is given
I got a millisecond value. I want to use a format string, to format those milliseconds into a time format. e.g. 45000ms = 45s or 0m 45s or whatever. So this is no special thing. I used ...
1
vote
3answers
102 views
Number is too long to be passed to Random() ?
I'm trying to do
Random generator = new Random(1309233053284);
Random being java.util.Random
It says the number is too long, but why can System.currentTimeMillis() be passed to the constructor? It ...
1
vote
1answer
353 views
Windows CE, .NET - how to get CPU ticks or current time in (micro) milliseconds?
I would like to test how difficult are lines of code I wrote. I need to know how long (or how many CPU ticks) it takes to complete them.
I use Windows CE, compact .NET framework 2, VB.NET 2005
On ...
1
vote
2answers
510 views
Ruby on Rails 3 Time - Parse Milliseconds
I'm trying to parse a date like: 2011-05-21 04:20:46.011 into a Time object in Rails. So far I have the following:
Time.strptime("2011-05-21 04:20:46.011", "%Y-%m-%d %H:%M:%S.%3N")
But it doesn't ...
1
vote
1answer
125 views
How can I get millisecond resolution (or better) time in HTML5?
I'm making HTML5 canvas application. For animation, I need high resolution clock time. How can I get this? It should be millisecond level resolution at minimum.
1
vote
3answers
2k views
Get current time in milliseconds in Python?
How can I get the current time in milliseconds in Python? I'm hitting a roadblock with this; I've done it before but I forget how :) Maybe it's the whole "waking up at 4am this morning" thing. Can ...
1
vote
1answer
130 views
Losing an hour when returning a Date from milliseconds
I have the following code that takes a String of milliseconds (will be from an RSS feed so will be a String, the example below is a quick test program) and converts those millis into a Date object.
...
1
vote
3answers
362 views
Java: Millisecond timestamp string to float
I have this String: 1303317717.65384 - It's a UNIX timestamp (1303317717) with milliseconds (65384).
How can I convert this to a float in Java? I am always getting 1.06172723E9 when giving it out, ...
1
vote
2answers
692 views
What's the best way to get Epoch milliseconds in Perl?
It's easy to get Epoch-Seconds (timestamp) in perl:
time
But what's with milliseconds? The most effective way seems to be time*1000, but that's not as accurate as I want it to be. Any good hints ...
1
vote
2answers
127 views
Milliseconds conversion to basic time
I need to convert 1774132 to 30:42 or 30 minutes and 42 seconds or whatever the output of this is. Is there any PHP function that does this?
1
vote
2answers
1k views
getMilliseconds() out of Java Date
I need a function like
long getMillis(Date aDate);
that returns the milliseconds of the Date second.
I cannot use Yoda, SimpleDateFormat or other libraries because it's gwt code.
My current solution ...
1
vote
3answers
434 views
Order files by creation time to the millisecond in Bash
I need to create a list of files which are located on my hard disk in order of when they arrived on the hard disk. To do so, I have used the following:
ls -lat
which lists all the files in ...
1
vote
2answers
1k views
jQuery 1 minute countdown with milliseconds and callback
I'm trying to figure out a way to display a simple countdown that displays 1:00:00 whereby 1 = minutes, 00 = seconds, and 00 = milliseconds.
I've found loads of jQuery countdowns on the interwebs, ...
1
vote
1answer
182 views
Fluent Nhiberhate And Missing Milliseconds
I am using Fluent Nhibernate and Nhibernate for my current project. I need to record the time to the millisecond. I have this for my mapping
Map(x => x.SystemDateTime)
...
1
vote
3answers
1k views
SAS informat datetime milliseconds
Can SAS store and use datetimes that contain fractions of less than 1/10th of a second?
eg:
data _null_;
input @1 from_dt:datetime22.;
put from_dt= ;
cards;
24Sep2009:11:21:19.856
;
run;
1
vote
4answers
2k views
ASP: convert milliseconds to date
I need to convert a field with milliseconds created by PHP app to a date value. Is there a way to do this using vbcript? or convert to datetime in SQL 2005
Example: 1113192000 to mm/dd/yyyy hh:mm:ss
...
0
votes
2answers
51 views
Python logging: override log time
Following Python's documentation, I'm trying to override logging.Formatter.converter in order to control the time logged.As you can see below - the milliseconds were not overriden (they are the ...
0
votes
2answers
73 views
Processing P5 - Timer issue with millis()
I am making a little game in Processing which is similar to those Guitar Hero style games and I am trying to do 2 things:
When the game loads, stop the time from moving
During the game, allow for ...