|  06-09-2005, 02:32 PM | #241 | 
| Nameless Being | 
				
				Perl
			 
			
			Is there a Perl version of this available? Thanks! | 
|   | 
|  06-10-2005, 09:02 AM | #242 | 
| Nameless Being | 
			
			Geee...I'm doing a vb .net project..How I wish that someone can help me by converting the php code to vb .net..or correct the this: onehttp://tumanov.com/projects/scriptlets/googlepagerankchecksum.asp thanx! | 
|   | 
|  06-18-2005, 09:38 PM | #243 | 
| Nameless Being | 
			
			hell yeah well i got it working  http://atopqualitysite.com/addurl.htm | 
|   | 
|  06-30-2005, 04:31 AM | #244 | 
| Junior Member  Posts: 1 Karma: 10 Join Date: Jun 2005 | 
				
				asp->pagerank
			   Hi there , when i call the following url in asp url = "http://www.google.com/search?client=navclient-auto&ch=61482383574&features=Rank&q=info:http://www.msn.com" set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP") xmlhttp.open "GET", url, false xmlhttp.send "" Response.write xmlhttp.responseText set xmlhttp = nothing iam get always the following error from google Forbidden Your client does not have permission to get URL /search?client=navclient-auto&ch=61482383574&features=Rank&q=info:http://www.msn.com from this server. (Client IP address: xxx.xxx.xxx.xxx) Please see Google's Terms of Service posted at http://www.google.com/terms_of_service.html Can anyone help me ? Greetings | 
|   |   | 
|  07-06-2005, 05:30 AM | #245 | 
| Nameless Being | 
			
			Looks like they have updated it again. I imagine no version of this hack now works. (Alex) | 
|   | 
|  07-08-2005, 07:16 PM | #246 | 
| Nameless Being | 
				
				The official code ;)
			 
			
			Now that Google didn't bother to release a version of its toolbar for Firefox, you can actually parse the official code which looks surprisingly similar to the one reverse-engineered in this forum   Only look how the seed is now calculated... looks like someone was referring to us here, heheheheee: from pagerank.js: Code: var GPR_HASH_SEED = "Mining PageRank is AGAINST GOOGLE'S TERMS OF SERVICE. Yes, I'm talking to you, scammer.";
var hash = "8" + GPR_awesomeHash(page);
function GPR_awesomeHash(value) {
  var kindOfThingAnIdiotWouldHaveOnHisLuggage = 16909125;
  for(var i = 0;i < value.length;i ++ ) {
    kindOfThingAnIdiotWouldHaveOnHisLuggage ^= GPR_HASH_SEED.charCodeAt(i % GPR_HASH_SEED.length) ^ value.charCodeAt(i);
    kindOfThingAnIdiotWouldHaveOnHisLuggage = kindOfThingAnIdiotWouldHaveOnHisLuggage >>> 23 | kindOfThingAnIdiotWouldHaveOnHisLuggage << 9}
  return GPR_hexEncodeU32(kindOfThingAnIdiotWouldHaveOnHisLuggage)}
function GPR_hexEncodeU32(num) {
  var result = GPR_toHex8(num >>> 24);
  result += GPR_toHex8(num >>> 16 & 255);
  result += GPR_toHex8(num >>> 8 & 255);
  return result + GPR_toHex8(num & 255)}
function GPR_toHex8(num) {
  return(num < 16 ? "0" : "") + num.toString(16)} | 
|   | 
|  09-17-2005, 03:39 AM | #247 | 
| Junior Member  Posts: 7 Karma: 24 Join Date: Sep 2005 | 
			
			Google PageRank Checksum Algorithm(GoogleToolbar 3.0.125.1-big) http://www.gamesaga.net/pagerank.php C and PHP implelation http://ww.gamesaga.net/pr.zip http://ww.gamesaga.net/pr.tar.gz | 
|   |   | 
|  09-17-2005, 03:44 AM | #248 | |
| Junior Member  Posts: 7 Karma: 24 Join Date: Sep 2005 | Quote: 
 ch=723887121954 http://www.google.com/search?client=...h=723887121954 Google Toolbar 3.0.125.1-big http://www.gamesaga.net/pagerank.php? | |
|   |   | 
|  09-17-2005, 04:01 AM | #249 | |
| Junior Member  Posts: 7 Karma: 24 Join Date: Sep 2005 | Quote: 
 PHP Data Type Converting Bug. <?php //header("Content-Type: text/plain; charset=utf-8"); $n = -6288256054; var_dump($n); $a = intval($n); var_dump($a); $b = (int) $n; var_dump($b); settype($n,"int"); var_dump($n); ?> ============good========== float(-6288256054) int(-1993288758) int(-1993288758) int(-1993288758) ============bad================= float(-6288256054) int(-2147483648) int(-2147483648) int(-2147483648) | |
|   |   | 
|  09-26-2005, 08:37 PM | #250 | 
| Nameless Being | 
				
				Same problem
			 
			
			Hi, I have the exact same problem. You fond a workaroung ? | 
|   | 
|  10-18-2005, 09:37 AM | #251 | |
| Nameless Being | Quote: 
 The maximum value depends on the system. 32 bit systems have a maximum signed integer range of -2147483648 to 2147483647. So for example on such a system, intval('1000000000000') will return 2147483647. The maximum signed integer value for 64 bit systems is 9223372036854775807. Im still trying to figure out a workaround for it.. | |
|   | 
|  10-18-2005, 10:12 AM | #252 | 
| Recovering Gadget Addict            Posts: 5,381 Karma: 676161 Join Date: May 2004 Location: Pittsburgh, PA Device: iPad | 
			
			Just curious... is this still relevant or useful? (I was under the impression it is no longer updated or accurate on the Google side of things, but I don't know anything about it so don't take my impression as fact.)
		 | 
|   |   | 
|  10-22-2005, 01:12 PM | #253 | 
| Junior Member  Posts: 1 Karma: 10 Join Date: Oct 2005 | 
			
			I am almost done with the vb.net version. It's a big pain in the butt though.
		 | 
|   |   | 
|  01-19-2006, 08:31 AM | #254 | 
| Junior Member  Posts: 1 Karma: 12 Join Date: Jan 2006 |   
			
			Does somebody know how is calculated the $ch on this website http://www.pagerankprediction.com? They say that they predict the pagerank. Do you know how they do that?
		 | 
|   |   | 
|  02-17-2006, 08:46 AM | #255 | |
| Junior Member  Posts: 2 Karma: 14 Join Date: Feb 2006 | Quote: 
 See: https://www.mobileread.com/forums/sho...25&postcount=6 | |
|   |   | 
|  | 
| 
 | 
|  Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| Seriously thoughtful Dekker's Algorithm help. | Catire | Lounge | 13 | 03-19-2010 10:03 AM | 
| Bulk Pagerank Checker Script? | SNaRe | Lounge | 2 | 10-22-2006 04:36 PM | 
| Google Toolbar Pagerank Checksum Revealed! | Alexander Turcic | Lounge | 5 | 02-17-2006 08:09 AM | 
| Google Checksum CH calculator | cyberax | Lounge | 2 | 08-17-2004 09:37 PM |