Skip to content

Instantly share code, notes, and snippets.

View nderscore's full-sized avatar
👉
😎 👉

_nderscore nderscore

👉
😎 👉
View GitHub Profile
@nderscore
nderscore / ttMute.js
Last active December 18, 2015 07:19
Bookmarklet. Mutes turntable.fm temporarily until the next song starts.
javascript:(function(){var orig=httpStream.volume;httpStream.setVolume(0);var listener=function(_){if( _.command&&_.command=='newsong'){turntable.removeEventListener('message',listener);httpStream.setVolume(orig);}};turntable.addEventListener('message',listener);})();
/* _nderscore/turntable.fm */
@nderscore
nderscore / ttRandom.js
Last active December 18, 2015 07:19
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 */