Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > Miscellaneous > Lounge

Notices

Reply
 
Thread Tools Search this Thread
Old 06-09-2005, 02:32 PM   #241
Unregistered
Nameless Being
 
Perl

Is there a Perl version of this available?

Thanks!
  Reply With Quote
Old 06-10-2005, 09:02 AM   #242
Unregistered
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!
  Reply With Quote
Advert
Old 06-18-2005, 09:38 PM   #243
Unregistered
Nameless Being
 
hell yeah well i got it working
http://atopqualitysite.com/addurl.htm
  Reply With Quote
Old 06-30-2005, 04:31 AM   #244
martinx
Junior Member
martinx began at the beginning.
 
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
martinx is offline   Reply With Quote
Old 07-06-2005, 05:30 AM   #245
Unregistered
Nameless Being
 
Looks like they have updated it again. I imagine no version of this hack now works.

(Alex)
  Reply With Quote
Advert
Old 07-08-2005, 07:16 PM   #246
Tommy
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)}
  Reply With Quote
Old 09-17-2005, 03:39 AM   #247
AboutSledge
Junior Member
AboutSledge began at the beginning.
 
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
AboutSledge is offline   Reply With Quote
Old 09-17-2005, 03:44 AM   #248
AboutSledge
Junior Member
AboutSledge began at the beginning.
 
Posts: 7
Karma: 24
Join Date: Sep 2005
Quote:
Originally Posted by martinx


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
checksum error

ch=723887121954


http://www.google.com/search?client=...h=723887121954

Google Toolbar 3.0.125.1-big

http://www.gamesaga.net/pagerank.php?
AboutSledge is offline   Reply With Quote
Old 09-17-2005, 04:01 AM   #249
AboutSledge
Junior Member
AboutSledge began at the beginning.
 
Posts: 7
Karma: 24
Join Date: Sep 2005
Quote:
Originally Posted by Unregistered
Hi all,

i use the code founded here https://www.mobileread.com/forums/sho...&postcount=186

Code worked well until i update my php to 5.02 version.

Anyone with same problem ?

for exemple http://www.myserver.com/thephpcode.p...w.example.com/

give me

url: http://www.example.com/
Checksum <2.0.114: 62147402699
Checksum >=2.0.114: 62147378985


So it should gave me somethings like

URL .... http://www.exemple.com/
Checksum <2.0.114: ..... 63090365271
Checksum >=2.0.114: ..... 64144368538


Any idea ?

Thanks in advance.

TT.

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)
AboutSledge is offline   Reply With Quote
Old 09-26-2005, 08:37 PM   #250
Unregistered
Nameless Being
 
Same problem

Hi,

I have the exact same problem. You fond a workaroung ?
  Reply With Quote
Old 10-18-2005, 09:37 AM   #251
Unregistered
Nameless Being
 
Quote:
Originally Posted by Unregistered
Hi,

I have the exact same problem. You fond a workaroung ?
This is the problem..

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..
  Reply With Quote
Old 10-18-2005, 10:12 AM   #252
Bob Russell
Recovering Gadget Addict
Bob Russell ought to be getting tired of karma fortunes by now.Bob Russell ought to be getting tired of karma fortunes by now.Bob Russell ought to be getting tired of karma fortunes by now.Bob Russell ought to be getting tired of karma fortunes by now.Bob Russell ought to be getting tired of karma fortunes by now.Bob Russell ought to be getting tired of karma fortunes by now.Bob Russell ought to be getting tired of karma fortunes by now.Bob Russell ought to be getting tired of karma fortunes by now.Bob Russell ought to be getting tired of karma fortunes by now.Bob Russell ought to be getting tired of karma fortunes by now.Bob Russell ought to be getting tired of karma fortunes by now.
 
Bob Russell's Avatar
 
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.)
Bob Russell is offline   Reply With Quote
Old 10-22-2005, 01:12 PM   #253
DRT
Junior Member
DRT began at the beginning.
 
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.
DRT is offline   Reply With Quote
Old 01-19-2006, 08:31 AM   #254
ovidiuweb
Junior Member
ovidiuweb began at the beginning.
 
Posts: 1
Karma: 12
Join Date: Jan 2006
Question

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?
ovidiuweb is offline   Reply With Quote
Old 02-17-2006, 08:46 AM   #255
Dieter Werner
Junior Member
Dieter Werner began at the beginning.
 
Posts: 2
Karma: 14
Join Date: Feb 2006
Quote:
Originally Posted by Unregistered
Is there a Perl version of this available?

Thanks!
Yes, there is one ...
See: https://www.mobileread.com/forums/sho...25&postcount=6
Dieter Werner is offline   Reply With Quote
Reply


Forum Jump

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


All times are GMT -4. The time now is 12:12 PM.


MobileRead.com is a privately owned, operated and funded community.