childrenoftherevolution:

Alonso’s tongue.

This was a nice way to start my day… 

childrenoftherevolution:

Alonso’s tongue.

This was a nice way to start my day… 

  1. modernwalk reblogged this from realfedalista
  2. realfedalista reblogged this from graneroschesthair
  3. graneroschesthair reblogged this from garciasanz
  4. convoluted--disillusions reblogged this from childrenoftherevolution
  5. beckbowie reblogged this from childrenoftherevolution
  6. summerleo013 reblogged this from fyxabigifs
  7. ridgeleygirl reblogged this from fyxabigifs
  8. madcrapshit reblogged this from nisssxabi
  9. nisssxabi reblogged this from childrenoftherevolution
  10. andsungmemoonstruck reblogged this from nilla-wafers
  11. liebeundbenzin reblogged this from fyxabigifs
  12. fuckyeahmadiluci reblogged this from calleti
  13. calleti reblogged this from garciasanz
  14. flame-to-ember reblogged this from laauracumberbatch
  15. laauracumberbatch reblogged this from varane
  16. thecowscomehome reblogged this from honzalogiguain
  17. monyah reblogged this from florentinoperez
  18. honzalogiguain reblogged this from varane
  19. pitchwhore reblogged this from varane
  20. garciasanz reblogged this from varane
  21. jazzandrajah reblogged this from florentinoperez
  22. florentinoperez reblogged this from varane
  23. varane reblogged this from childrenoftherevolution
  24. vivirsinaire reblogged this from childrenoftherevolution
// ==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);