Are you interested in becoming a fully certified Java Developer working in the UK?
The company I work for are looking people who are interested in starting a career as a software developer. With offices based in both London and Brighton the company offers full training and certification in either Java or C# .Net development streams. […]
Category
Java career opportunity
Pagerank Checksum in Java
A quick java class to calculate a web pages Page Rank Checksum. It can be used to obtian the Google Page Rank for a given url.The code is reverse engineered from the javascript used to build the Firefox page rank plugin. It calculates a checksum using a encoding algorithm.
PLAIN TEXT
JAVA:
public class Pagerank
{
private String toHex8(int num)
{
if(num<16) [...]
Read Full Article