Tagged Questions

3
votes
8answers
292 views

Accurate evaluation of 1/1 + 1/2 + … 1/n row

I need to evaluate the sum of the row: 1/1+1/2+1/3+...+1/n. Considering that in C++ evaluations are not complete accurate, the order of summation plays important role. 1/n+1/(n-1)+ …
4
votes
5answers
216 views

accurate page view count

What is a good approach to keeping accurate counts of how many times a page has been viewed I'm using Django. Specifically, I don't want refreshing the page to up the count.
2
votes
10answers
4k views

C++ timing, milliseconds since last whole second

I'm working on a C++ application that needs detailed timing information, down to the millisecond level. We intend to gather the time to second accuracy using the standard time() …