29 May, 2008
Posted by: eisabai In: WWW
If you need to know what your computer’s public IP address is, you can find this out easily by visiting this website. You can also look up an IP address to find out its Geo-Location, Proxy (if any) and ISP details.
A few other sites which provide similar information:
IP Info
IP [...]
29 May, 2008
Posted by: eisabai In: PHP
Seconds
Equivalent to
300
5 mins
600
10 mins
900
15 mins
1200
20 mins
1800
30 mins
2700
45 mins
3600
1 hour
7200
2 hours
10800
3 hours
14400
4 hours
18000
5 hours
36000
10 hours
54000
15 hours
86400
1 day
172800
2 days
259200
3 days
345600
4 days
432000
5 days
604800
1 week
1209600
2 weeks
1814400
3 weeks
2419200
4 weeks
14515200
6 months
29030400
1 [...]
As I was checking out my google adsense report, I wondered about who clicked on ads on my blog, and who clicked on ads online in general?
My initial hypothesis :
Who usually click on ads?
- A large population of people who clicks on ads are those who are not very internet savvy. [...]
19 May, 2008
Posted by: eisabai In: WWW
You can now promote the projects that you are currently working on using a new featured on Linked In.
I think it is a good way to plug your websites.
Technorati Tags: promotion, linked in, plugs
18 May, 2008
Posted by: eisabai In: Snippets
The following javascript snippet will get the name of a random file from a list of files specified.
<script type="text/javascript">
//name of files
filenames = [ "filename1.gif", "filename2.gif", "filename3.gif", "filename4.gif" ];
//get a random entry from an array of filenames
var filename = filenames[Math.floor(Math.random()*filenames.length)];
//display filename here
document.write("path/to/file" + filename);
</script>
Technorati Tags: javascript, snippet