Skip to content

Instantly share code, notes, and snippets.

@mala
Created August 25, 2009 07:40
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 mala/174530 to your computer and use it in GitHub Desktop.
Save mala/174530 to your computer and use it in GitHub Desktop.
var not_oquno = Array.filter(window.$("#following_list img"),function(img){return!/oquno/.test(img.src)});
setInterval(function(){
if (not_oquno.length == 0) return;
var i=Math.floor(Math.random()* not_oquno.length);
not_oquno[i].src="http://a3.twimg.com/profile_images/256862425/oquno-c_mini.png";
not_oquno.splice(i, 1);
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment