View Single Post
Old 04-04-2019, 03:31 PM  
Bladewire
StraightBro
 
Bladewire's Avatar
 
Industry Role:
Join Date: Aug 2003
Location: Monarch Beach, CA USA
Posts: 56,229
Quote:
Originally Posted by Mr Pheer View Post
I never said I did. Several people have contributed code snippets for it as well, you going to call them all out on your Gay Crusade as well?



Hey, stupid. Read. Not in the code, but in the thread.






That's between me and Killswitch. All I did was add names to be ignored. And look how mad you are about it



To the best of my knowledge, Killswitch wrote it. Use search if that's not good enough for you.



I don't know, can they?


No, because I clearly stated that Killswitch wrote it.
https://gfy.com/fucking-around-and-p...-gift-gfy.html



Already did.

I would say nice try... but you just made yourself look like an idiot screaming for attention. I mean more than usual.
You could have solved all this by just answering my initial question of where you got the code instead of your shady answer slimeball non answer.

Quote:
Originally Posted by Mr Pheer View Post
Look it up.

I'm not your fucking search bitch.
Now you go back to a 2015 post where you said Killswitch made it. You never provided that link before asshole.

You also didn't say that Killswitch was the original code creator when you posted the code the other day.

You made it seem like it was your code. No mention of Killswitch. No credit to him in the code. When you're called on it and backed into a corner you get all slimy and slippery and assholy about it. You can't create your own code you can only modify shit other people make.

Quote:
Originally Posted by Mr Pheer View Post
Add this script to your Greasemonkey or Tampermonkey browser extensions, and watch GFY become instantly awesome again by removing most of the shitgibbons that post here.


Code:
// ==UserScript==
// @name gfy.com
// @description block threads, posts, etc from certain users
// @include https://gfy.com/*
// @include http://*.gfy.com/*
// @include https://gfy.com/*
// @include https://*.gfy.com/*
// @require https://code.jquery.com/jquery-1.7.2.min.js
// @version 1.0
// @grant none
// ==/UserScript==

var hide_users = [
'Mr Pheer'
];

$(document).ready(function () {
$('#threadslist tbody tr').each(function (thread_index, thread_value) {
var thread_block = $(this);
var thread_starter = $('span[style="cursor:pointer"]', this).text();
$(hide_users).each(function (hide_index, hide_user) {
if (thread_starter === hide_user) {
// $('#threadslist tbody:last').append("<tr style='opacity: 0.5'>" + thread_block.html() + "</tr>");
thread_block.remove();
}
});
});

$('table[id^="post"]').each(function (post_index, post_value) {
var post_block = $(this);
var post_author = $('a.bigusername', this).text();
$(hide_users).each(function (hide_index, hide_user) {
if (post_author === hide_user) {
post_block.remove();
}
}); //removes entire post of someone on the ignore list.

$('div[style^="margin:"]').each(function (post_index, post_value) {
var post_block = $(this);
var post_block_quote = $('div[style^="font-style:italic"]', this);
var post_author = $('strong', this).text();
$(hide_users).each(function (hide_index, hide_user) {
if (post_author === hide_user) {
//post_block.remove();
$(post_block_quote).html("<br><font color=#998877><i>I'm a useless piece of </i></font><font size=6>&#128169</font>");
}
});
}); //removes any quotes someone may have made of a person on ignore, even if quotes multiple times but they have to have the name in the quote

}); //end of nested forloops for checking both posts and quotes.
});
Bladewire is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote