Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
587 views

How to extend WPF hit testing zone for a Path object

Wpf hit testing is pretty good but the only method I found to extend the hit zone is to put a transparent padding area around your object. I can't find any method to add a transparent area arround a ...
4
votes
5answers
216 views

Is there an API that allows you to find out how many sites link to yours?

I know google has things like linkto:yourdomain.com and Alexa is around, but there's nothing that I can query and get the number of sites that link to me. Anyone know of such a thing, other than using ...
2
votes
1answer
49 views

how to keep a counter of how many times an article is viewed in rails?

I have a model which is an image gallery. I want to keep track of how many views the image gets. Currently I achieve this in the controller def show @article = Post.find(params[:id]) ...
2
votes
2answers
132 views

Creating a hit counter using the cache or application scope

I would like to create a hit counter for my ColdFusion app. I don't want the database hits table to be updated on each page hit. Ideally, I would like to aggregate the hits in the app scope, or the ...
1
vote
3answers
452 views

PHP counter disappears/reappears

I downloaded a script to run a very basic counter on two of my website's pages. Since April 2009 it's run beautifully, but in the last three weeks it would suddenly disappear, then reappear ...
1
vote
3answers
727 views

Identifying unique hits with javascript

Could you suggest an efficient way to identify a unique user with javascript (e.g. calculate an hash to send to the server side)? EDIT: The point is that I can't 'intrude' into the browser (e.g. send ...
0
votes
0answers
39 views

Android and c++ Returning Values from JNI to java and perfomance hits dealing with arrays

I have some code Im converting from java to c++ for the sake of improving speed. Everything that Im looking at converting is matrix or vector based arithmetic and so I was wondering if when Im ...
0
votes
1answer
52 views

Basic PHP hit counter loses hits every so often?

I'm using the following code: if (file_exists('count_file.txt')) { $fil = fopen('count_file.txt', r); $dat = fread($fil, filesize('count_file.txt')); echo $dat+1; fclose($fil); ...
0
votes
0answers
79 views

A robust “hit test” for polygons

We have a set of polygons, and a point we can assume is in one of the polygons. I'd need a solid algorithm that tells me which of the polygon the point is in. I've tried some things, but the floating ...
0
votes
0answers
246 views

IOS5 GLKit GLView and Hit testing

In the new GLKit GLView reference, there is this warning that is emphasized: Important: Your drawing method should only modify the contents of the framebuffer object. Never attempt to read the ...
0
votes
1answer
99 views

In polygon test, hit test, is a point in a polygon? method

I have created a method called isInPoly that receives the x and y coordinates of 2 lines (so 8 coordinates) and determines where the 2 lines intersect. I know I should have called the method something ...
0
votes
1answer
66 views

CorePlot plot hit testing

I have a question about CorePlot. My question is: I've drawn a curve. Next task is: curve selection. I've added the handler: But that does not work. Any ideas? Thanks. - ...
0
votes
2answers
82 views

How can I tell if the mouse pointer is inside a path defined by Bezier curves and lines?

I have a closed path consisting of multiple Bezier curves and straight line segments. How can I tell whether the current position of my mouse pointer is inside or outside the path? Example of mouse ...
0
votes
2answers
160 views

c# : get nr of google hits for a search term

I'm writing a C# forms app, and I have list of strings (descriptions of some thing or another). I'd like to sort that list based on the amount of hits Google returns for each string. So how do I ...
0
votes
1answer
286 views

Hit detection in flash as3

Hi i have a snake game that uses a timer to incremement the snakes size, and ive been trying to figure out hit detection on it. and have got to this stage for (var i = 1; i < snake.length; i++){ ...
0
votes
1answer
317 views

php unique hit count

i have a hit count on various parts of my site (profiles, news items, etc). At the moment it will increase the count if you refresh the page even though it's been visited. How can I stop going up if ...
0
votes
1answer
359 views

Varnish hit ratio affected by non-cacheable files?

Our Varnish VCL has rules to stop it caching certain calls and pass them straight to the back end e.g: AJAX tracking AJAX customization cron Will these calls impact the hit ratio stats (since ...
0
votes
1answer
61 views

fread how to Count total from Counter text

hey i have a counter text here and i need to know how to calculate the total this is my information $filename = "data.txt"; $handle = fopen($filename, "r"); $contents = fread($handle, ...
0
votes
2answers
429 views

HIt counter in JSF

I want to add a hit counter to my JSF web app. Like in PHP we can use an external text file to store the count and increment and write it on every request. How to use in JSF?
0
votes
1answer
722 views

best way for jsp visitor hit counters

what is the best way for creating a jsp visitor hit counters? is it better to use txt file and save the hit value into a file, or create a table in database??? or use session/cookie to count the users ...