Off Topic > Off Topic
My Little Pony: Friendship for Blockheads: General V2
Pages: << < (18028/34068) > >>
Regulith:
--- Quote from: masterockets on January 18, 2012, 11:17:02 PM ---Because rational people are able to ignore them
we are not rational nor people :cookieMonster:
--- End quote ---
Rational people can ignore a crying child, and so can I, because the child will either become tired or crying, forget what they were crying about and do something else, or the parent will do something to calm them down. It becomes a problem when the child cries for a majority of the day, every day, and shows no signs of stopping.
masterockets:
What is with people and them ruining my obvious jokes all day :(
Kingdaro:
It's funny because it removes posts that quotes him, and I'm thinking about keeping that because it's a strange bitch to remove, it should be easy as searching for tony's profile link instead of traces for 'L(weird o)rd T(weird o)ny' but for some reason it refuses to work. :/
Regulith:
If we could see the quotes and the resulting rebuttal then that kinda defeats the purpose of the application
Seriously though what are you using to design this thing?
Kingdaro:
--- Quote from: Regulith on January 18, 2012, 11:29:55 PM ---If we could see the quotes and the resulting rebuttal then that kinda defeats the purpose of the application
Seriously though what are you using to design this thing?
--- End quote ---
apatna studio to point out forgetups since i know like 10% javascript and i'm leeching knowledge from w3school's reference. it's a greasemonkey script (tampermonkey for chrome)
https://chrome.google.com/webstore/detail/dhdgffkkebhmkfjojejmpbldmpobfkfo
^tampermonkey
--- Code: ---// ==UserScript==
// @name LT Removal
// @namespace http://forum.blockland.us/
// @version 0.1
// @description something useful
// @include http://forum.blockland.us/*
// @copyright 2012+, Kingdaro
// ==/UserScript==
var postForm = document.getElementById('quickModForm');
var posts = postForm.getElementsByTagName('tr');
var n = 'Lørd Tøny';
var i;
for (i=0;i<=posts.length;i++){
var v = posts[i];
var str = v.innerHTML;
if (str.search(n)>-1){
posts[i].innerHTML = '<td class="windowbg" style=" \
border-style:solid; \
border-color:black; \
border-width:1px 1px 0 1px; \
text-align:center; \
">-snip-</td>';
}
}
--- End code ---
the script
it's small and stupid but it works