hit

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 Google or another search engine and scraping the HTML results? ...

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 cookies). And IPs are also not the option. And it has to be a client-side solution (therefore javascript). ...

iPhone SDK: Hit-testing with PNG Alpha channels

I have a simple app which has a bunch of icons which should be dragged into a circle. Both the icons and circle will be PNGs with alpha channels. Could someone please help me with basic code to set the bounds of these objects to the non-alpha channel data? ...

PHP counter disappears/reappears

Hello, I am not a programmer! So please be patient and I hope I explain this OK. 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 occasionally. This week it's every day.At first the counter just di...

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 whom have visited the website? ...

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? ...

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 Path object. The path is very thin and I would like to enable hit testing if the user clicks near the path. I can't find any method to exten...

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, filesize($filename)); $expode = explode("\n",$contents); /** output 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 */ I i need to...