October 3rd, 2007 by
paolo
After Googlebot also Livebot has came to the light… but as you could easily observe it has some spindering/indexing problems :D

As usual I have to thank Motocarota that has drawn my thoughts!
Posted in Google, search engines and SEO, Humor, Web |
No Comments »
October 1st, 2007 by
paolo
Warning : we are planning to release two or three funny strips at week ! Keep connected and read our feed !
Graphics by the great Motocarota, a friend of Involutive staff !!
Think to Google and to words “Don’t be evil” ( its corporate slogan ) …

Read the rest of this entry »
Posted in Google, search engines and SEO, Humor, Web |
3 Comments »
June 8th, 2007 by
paolo
The goal of this article is to show how to exploit Google imperfect translations to increase your website traffic.
Disclaimer : this is only a hack and you should not use this idea in your site because search engines may not like it :P … but hack is always a good thing ;)
Here you can find a sample PHP 5 Google translator API class useful ( read it if you plan to apply the idea described in this article ).
Google bot indexes relevant content of each page of your website, and so each word used in your texts could be a valid keyword to be found in search engine’s results. This simply means that producing more relevant content chances to be found grow.
Your site’s language is only your main language? What would happen if you translate your pages in more than one language? Simple, you’ll get more daily visitors!
Read the rest of this entry »
Posted in Google, search engines and SEO, Web |
9 Comments »
June 6th, 2007 by
paolo
Sitemaps are of primary importance in Search Engine Optimization ( SEO for friends :) )
PHP Wget Sitemap Generator class takes advantage of wget to get a local mirror of the target site and then generates the url list for the sitemap via local directory listing.
Wget is highly configurable so read the man page of best options to use (replace exec function argument).
The code:
Read the rest of this entry »
Posted in Google, search engines and SEO, Web |
1 Comment »
June 5th, 2007 by
paolo
This PHP 5 class API is developed on the base of a tool that I wrote some years ago.
Simply works querying Google translation tools with the text and language pair choosen.
I find it useful because of Google haven’t released yet an API for its translation tools.
Here the code!
Read the rest of this entry »
Posted in Google, search engines and SEO, Web |
8 Comments »
November 3rd, 2005 by
paolo
Author: Paolo Ardoino
PageRank relies on the uniquely democratic nature of the web by using its vast link structure as an indicator of an individual page’s value. In essence, Google interprets a link from page A to page B as a vote, by page A, for page B. But, Google looks at more than the sheer volume of votes, or links a page receives; it also analyzes the page that casts the vote. Votes cast by pages that are themselves “important” weigh more heavily and help to make other pages “important”. by Google
PR(A) = (1 – d) + d (PR(T1) / C(T1) + … + PR(Tn) / C(Tn))
PR(A): Pagerank of a page A
d = 0.85
PR(Ti): Pagerank of page Ti which links to A
C(Ti): number of outbound links on page Ti, which has given the link Average Links per Page = 40
| PR |
Start |
For PR4 |
For PR5 |
For PR6 |
For PR7 |
For PR8 |
| PR 1 |
6 |
2050.5 |
11278 |
62030 |
341163 |
1876389 |
| PR 2 |
30 |
384.45 |
2115 |
11631 |
63968 |
351823 |
| PR 3 |
166 |
69.90 |
384.49 |
2115 |
11631 |
63968 |
| PR 4 |
915 |
12.70 |
69.88 |
384.37 |
2114 |
11627 |
| PR 5 |
5033 |
2.31 |
12.70 |
69.88 |
384.36 |
2114 |
| PR 6 |
27681 |
0.42 |
2.31 |
12.70 |
69.88 |
384.37 |
| PR 7 |
152244 |
0.07 |
0.42 |
2.31 |
12.70 |
69.89 |
| PR 8 |
837379 |
0.01 |
0.07 |
0.42 |
2.31 |
12.71 |
| PR 9 |
4605367 |
0.00 |
0.01 |
0.07 |
0.42 |
2.31 |
| PR 10 |
25329516 |
0.0005 |
0.003 |
0.014 |
0.076 |
0.42 |
The following PHP script generates a simple chart that could be usefull to know how many links are needed
to increase pagerank; it takes script taking average links per page as parameter
Read the rest of this entry »
Posted in Google, search engines and SEO, Web |
No Comments »