Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
840 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.
6
votes
8answers
688 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)+...+1/2+1/1 ...
4
votes
10answers
12k 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() function in . We ...
3
votes
6answers
1k views

get location on iphone ONLY from the GPS - not the wifi network

i am creating an app that uses location- everything works swimmingly except one thing- when i come home my iphone connects to my local wifi network and instead of getting my location using the gps ...
2
votes
3answers
61 views

How to accurately get the coordinates of a JFrame's contents?

This is my JFrame code: public static int width = 800; public static int height = 600; public static void main(String[]args){ JFrame frame= new JFrame("RETRO"); frame.add(new Screen()); ...
1
vote
3answers
83 views

accurate single pass penny computation

We have a cost C which must be assigned to departments 1..n. Another computation produces the share for each department, it is a number from 0 to 1, with more than 5 decimal places. The sum of all ...
0
votes
2answers
162 views

Android getting best location

I want the exact location of user. So I created two listeners as: locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, mGPSListener); ...
0
votes
1answer
108 views

Draw Circle is inaccurate

In my app, when the user touches the screen, a circle is drawn, and if a circle has already been drawn at point a, then another circle cannot be drawn there. when I use canvas.drawCircle(...), it's ...
0
votes
0answers
56 views

SVG coordinate to a <span> not accurate?

I'm running into a weird problem. i have an image map composed of one area that create a little rectangle I use the jQuery plugin MapHighlight to highlight the area tag when the mouse go over it. ...