OK Go Ping Pong Tips (by goldfishparty)

“Not breathing can cause you to die.”

  1. boredomandsobriety reblogged this from idontspeakcereal
  2. indistinctnic reblogged this from paracadet
  3. ezrakalzoenig reblogged this from idontspeakcereal
  4. so-much-for-pathos reblogged this from idontspeakcereal
  5. idontspeakcereal reblogged this from paracadet
  6. pistachios-are-quite-good reblogged this from mumblo
  7. fortheloveof-butter reblogged this from mumblo
  8. captainchaotic reblogged this from alienhuggs
  9. whatsbotheringyoumark reblogged this from alienhuggs
  10. alienhuggs reblogged this from mumblo
  11. cromulant reblogged this from mumblo
  12. mumblo posted this
// ==UserScript== // @name Tumblr Savior // @namespace bjornstar // @description Saves you from ever having to see another post about certain things ever again // @include http://www.tumblr.com/dashboard // @include http://www.tumblr.com/dashboard/* // @include http://www.tumblr.com/show/* // ==/UserScript== function needstobesaved(theStr){ var blackList = new Array('jakob','lodwick','obama','mccain','iphone','baseball','julia allison','palin','apartment therapy','pixdaus','super bowl','superbowl'); var whiteList = new Array('bjorn', 'betina'); var blacklisted = false; var whitelisted = false; for(var i=0;i<=whiteList.length;i++) { if(theStr.toLowerCase().indexOf(whiteList[i])>=0) { whitelisted = true; } } if (!whitelisted) { for(var i=0;i<=blackList.length;i++) { if(theStr.toLowerCase().indexOf(blackList[i])>=0) { blacklisted = true; } } } return blacklisted; } var liPosts = document.getElementsByTagName('li'); var last_check = 0; function check_for_saving() { for (var i=last_check;i= 0) { var savedfrom = needstobesaved(liPosts[i].innerHTML); if (savedfrom) { var div_filtered = document.createElement('div'); div_filtered.style.display = 'none'; while (liPosts[i].childNodes.length > 1) { div_filtered.appendChild(liPosts[i].childNodes[0]); } var div_notice = document.createElement('div'); div_notice.className = 'post_info'; div_notice.innerHTML = 'You have been saved from this post, it had something you didn\'t want to see in it. Click here if you cannot resist the temptation.'; liPosts[i].appendChild(div_notice); liPosts[i].appendChild(div_filtered); } } } last_check = liPosts.length; } function addGlobalStyle(css) { var elmHead, elmStyle; elmHead = document.getElementsByTagName('head')[0]; elmStyle = document.createElement('style'); elmStyle.type = 'text/css'; elmHead.appendChild(elmStyle); elmStyle.innerHTML = css; } var better_rule = '.source_url {display:none !important;}'; try { document.styleSheets[0].insertRule(better_rule, 0); } catch (e) { addGlobalStyle(better_rule); } setInterval(check_for_saving, 200);