Skip to content

Instantly share code, notes, and snippets.

@nderscore
Last active December 18, 2015 07:19
Show Gist options
  • Save nderscore/5746246 to your computer and use it in GitHub Desktop.
Save nderscore/5746246 to your computer and use it in GitHub Desktop.
Bookmarklet. Random track puller for turntable.fm
javascript:(function(){var num=prompt("Pull up how many random tracks?",1);if(isNaN(num)||+num<1)return alert('Not a valid number.');while(num--){setTimeout(function(){var i=Math.floor(Math.random()*turntable.playlist.fileids.length);turntable.playlist.reorder(i,0);turntable.playlist.queue.reorder(i,0);},500*num);}})();
/* _nderscore/turntable.fm */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment