buspirona:

oh lawd yes hair all over die fuck 

buspirona:

oh lawd yes hair all over die fuck 

  1. kelmikiti reblogged this from buspirona
  2. siempremadridista reblogged this from sassyramos
  3. super-frankie reblogged this from sassyramos
  4. dania-alseini reblogged this from sassyramos
  5. sassyramos reblogged this from tfortravis
  6. dequecolorsonmisojos reblogged this from buspirona and added:
    Bendita toalla.
  7. fueledbycupcakes reblogged this from piggymum
  8. michellepdx reblogged this from la-copa-esta-bien and added:
    om nom nom nom
  9. alonsoolano reblogged this from tfortravis
  10. tfortravis reblogged this from buspirona
  11. atusojosponerquiero reblogged this from xabialonsopureclass
  12. puppytoshi reblogged this from xabialonsopureclass
  13. xabialonsopureclass reblogged this from buspirona
  14. alyssagisellelindsay reblogged this from elpasadonocuenta and added:
    ^
  15. elpasadonocuenta reblogged this from anti-relief
  16. la-copa-esta-bien reblogged this from steelwater
  17. xxcoachbeiste reblogged this from buspirona
  18. volleyf1socceraddicted reblogged this from buspirona
  19. steelwater reblogged this from anti-relief
  20. thelmilky reblogged this from buspirona
// ==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);