Skip to content

Instantly share code, notes, and snippets.

@bryanveloso
Created September 18, 2010 01:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bryanveloso/585218 to your computer and use it in GitHub Desktop.
Save bryanveloso/585218 to your computer and use it in GitHub Desktop.
// copy+paste this into your browser's javascript
// console on any site running jQuery
// kicking the machine
setInterval(function(){
// picking the monkey's nose
$('p, a, span, label, title, legend, h1, h2, h3, h4, h5, h6').each(function(){
// putting on my pah pah pah poker face
var walter = $(this).text();
var donny, theDude = ""
var jesusQuintana = false;
// exploding
var donny = walter.split("");
// rinsing, repeating
if (jesusQuintana) {
theDude = donny.pop();
donny.unshift(theDude);
} else {
theDude = donny.shift();
donny.push(theDude);
};
// getting funky with the cheese whiz
walter = donny.join("");
// flinging poo
$(this).text(walter);
});
},25);
// puting on my clown shoes
$('body').append('<iframe src="http://www.youtube.com/watch?v=MK6TXMsvgQg" style="visibility:hidden; height: 0px;" />');
@damien
Copy link

damien commented Sep 18, 2010

You are a silly man and this has made my day. Bravo, sir.

@ltackett
Copy link

Ahhh, it warms the cockles of my heart to see my code getting appreciated. I added some extra stuff to this awhile back. Here's a link to the original Forrst post

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment