jonli1 | 9 years ago | on: Google endorses the Trans-Pacific Partnership
Unlike most of the corporations in America, at least Google is transparent about its decisions.
jonli1 | 9 years ago | on: Google endorses the Trans-Pacific Partnership
jonli1 | 12 years ago | on: Gmail was down
jonli1 | 12 years ago | on: Kit Kat's homepage is currently a parody of Android announcement page
var code = "38384040373937396665";
var userCode = "";
$(document).keydown(function(event) {
var p = pattern.substr(userPattern.length,2);
var c = code.substr(userCode.length,2);
var r = Math.floor((Math.random()*3)+1);
if(event.which == p) {
userPattern += event.which;
if(userPattern === pattern) {
$( "body" ).append( "<div id='eeDroid'><img src='assets/desktop/images/misc/droid" + r + ".png' /></div>" );
$('#eeDroid').animate({bottom:'0px'},500).animate({left:'-600px'},2000, function() {
$(this).remove();
});
userPattern = "";
}
} else { userPattern = ""; }
if(event.which == c) {
userCode += event.which;
if(userCode === code) {
$( "body" ).append( "<div id='eeDroid'><img src='assets/desktop/images/misc/droid" + r + ".png' /></div>" );
$('#eeDroid').animate({bottom:'0px'},500).animate({left:'-600px'},2000, function() {
$(this).remove();
});
userCode = "";
}
} else { userCode = ""; }
});
}