Skip to content

Instantly share code, notes, and snippets.

@thehack
Created January 23, 2013 23:39
Show Gist options
  • Save thehack/4615814 to your computer and use it in GitHub Desktop.
Save thehack/4615814 to your computer and use it in GitHub Desktop.
A script to save all the lemmings on this playable 404 page: http://www.romainbrasier.fr/404.php?lang=en . You can just copy and paste the following into your browser's javascript console.
var saveTheirSouls = function() {
$('img').trigger('mouseover');
setTimeout( function() {
if ($('img').length > 1) {
return saveTheirSouls()
}
else {
return false;
}
}, 1000);
};
saveTheirSouls();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment