|   |   |   | ||||
| Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. | 
|    | 
| 
 | |||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. | 
|  | Thread Tools | 
|  02-02-2019, 09:54 PM | #1 | 
| Too lazy to set a custom title Industry Role:  Join Date: Dec 2002 
					Posts: 21,456
				 | 
				
				Use this to make GFY great again
			 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 = [
'Bladewire', '2MuchMark', 'crockett', 'Rochard', 'Dead Eye', 'GspotProductions', 'crucifissio', 'blackmonsters', 'thommy', 'RedFred'
];
$(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>💩</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.
}); | 
|   |           | 
|  02-02-2019, 10:04 PM | #2 | 
| Megan Fox's fluffer Industry Role:  Join Date: Oct 2005 Location: shooting pool in Elysium 
					Posts: 24,818
				 |    Works great, thx  | 
|   |           | 
|  02-02-2019, 10:39 PM | #3 | 
| I need a beer   Industry Role:  Join Date: Jun 2002 Location: ♠ Toiletville ♠ 
					Posts: 133,947
				 | Why are you an angry man? What's the matter with Gibbons? 
				__________________ | 
|   |           | 
|  02-02-2019, 10:42 PM | #4 | 
| Raise Your Weapon Industry Role:  Join Date: Jun 2003 Location: Outback Australia 
					Posts: 15,601
				 | Thank you   | 
|   |           | 
|  02-02-2019, 11:25 PM | #5 | 
| I need a beer   Industry Role:  Join Date: Jun 2002 Location: ♠ Toiletville ♠ 
					Posts: 133,947
				 | I think Mr Pheer was molested at one time 
				__________________ | 
|   |           | 
|  02-02-2019, 11:35 PM | #6 | 
| Too lazy to set a custom title Industry Role:  Join Date: Dec 2002 
					Posts: 21,456
				 | Shutup, you Snow Mexican. Code updated. 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 = [
'Spunky', 'Bladewire', '2MuchMark', 'crockett', 'Rochard', 'Dead Eye', 'GspotProductions', 'crucifissio', 'blackmonsters', 'thommy', 'RedFred'
];
$(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>💩</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.
}); | 
|   |           | 
|  02-02-2019, 11:44 PM | #7 | 
| I need a beer   Industry Role:  Join Date: Jun 2002 Location: ♠ Toiletville ♠ 
					Posts: 133,947
				 | That's ok. I don't understand the anger at why he must use a script to block people. Don't read their topics and ignore the  replys that upset him. It will get better 
				__________________ | 
|   |           | 
|  02-02-2019, 11:46 PM | #8 | 
| Too lazy to set a custom title Industry Role:  Join Date: Dec 2002 
					Posts: 21,456
				 | When someone gets quoted and they are on your ignore list, it looks like this:  It gets to be pretty entertaining. | 
|   |           | 
|  02-02-2019, 11:50 PM | #9 | 
| I need a beer   Industry Role:  Join Date: Jun 2002 Location: ♠ Toiletville ♠ 
					Posts: 133,947
				 | Or just use the ignore button 
				__________________ | 
|   |           | 
|  02-03-2019, 12:19 AM | #10 | 
| in a van by the river Industry Role:  Join Date: May 2003 
					Posts: 76,806
				 | Funny McQeer doesn't post any of his radical right wing nutters on there.. Guess he needs his safe space where no one disagrees with him.. It's the only way McQeer can attempt to win a argument.. | 
|   |           | 
|  02-03-2019, 12:27 AM | #11 | 
| Raise Your Weapon Industry Role:  Join Date: Jun 2003 Location: Outback Australia 
					Posts: 15,601
				 | |
|   |           | 
|  02-03-2019, 12:28 AM | #12 | |
| Too lazy to set a custom title Industry Role:  Join Date: Dec 2002 
					Posts: 21,456
				 | Quote: 
 And like always, you assume too much because you have tunnel vision. Just because I posted a script, doesn't mean I'm using it for myself. It's not crockett science. | |
|   |           | 
|  02-03-2019, 12:30 AM | #13 | 
| Too lazy to set a custom title Industry Role:  Join Date: Dec 2002 
					Posts: 21,456
				 | |
|   |           | 
|  02-03-2019, 12:32 AM | #14 | 
| I need a beer   Industry Role:  Join Date: Jun 2002 Location: ♠ Toiletville ♠ 
					Posts: 133,947
				 | 
				
				Code Updated!
			 Mr Pheer is a homo! Gayest of the gay forever! // ==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>💩</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. }); 
				__________________ | 
|   |           | 
|  02-03-2019, 12:36 AM | #15 | 
| Too lazy to set a custom title Industry Role:  Join Date: Dec 2002 
					Posts: 21,456
				 | |
|   |           | 
|  02-03-2019, 12:37 AM | #16 | 
| Too lazy to set a custom title Industry Role:  Join Date: Dec 2002 
					Posts: 21,456
				 |     | 
|   |           | 
|  02-03-2019, 12:42 AM | #17 | |
| in a van by the river Industry Role:  Join Date: May 2003 
					Posts: 76,806
				 | Quote: 
 lol what I tool.. 
				__________________ In November, you can vote for America's next president or its first dictator. | |
|   |           | 
|  02-03-2019, 01:09 AM | #18 | 
| Just Doing My Own Thing Industry Role:  Join Date: Jan 2011 Location: London, Spain, New Zealand, GFY - Not Croydon... 
					Posts: 25,232
				 | My brain comes with it's own ignore feature - It's incredible - I don't want to read something and just like that I don't... Maybe there is some kind of hack or workaround so we can get it working in your brain as well..... | 
|   |           | 
|  02-03-2019, 01:13 AM | #19 | 
| Too lazy to set a custom title Industry Role:  Join Date: Dec 2002 
					Posts: 21,456
				 |  | 
|   |           | 
|  02-03-2019, 01:51 AM | #20 | 
| Confirmed User Industry Role:  Join Date: Dec 2018 
					Posts: 602
				 | |
|   |           | 
|  02-03-2019, 01:59 AM | #21 | 
| Let's Make Money Industry Role:  Join Date: Dec 2008 
					Posts: 8,784
				 | Looks good! | 
|   |           | 
|  02-03-2019, 02:16 AM | #22 | 
| Too old to care Industry Role:  Join Date: Jun 2001 Location: On the sofa, watching TV or doing my jigsaws. 
					Posts: 52,943
				 | A great script for those anti-free speech. | 
|   |           | 
|  02-03-2019, 02:19 AM | #23 | 
| Confirmed User Industry Role:  Join Date: Dec 2018 
					Posts: 602
				 | |
|   |           | 
|  02-03-2019, 02:20 AM | #24 | 
| Confirmed User Industry Role:  Join Date: Dec 2018 
					Posts: 602
				 | |
|   |           | 
|  02-03-2019, 03:04 AM | #25 | 
| Too lazy to set a custom title Industry Role:  Join Date: Dec 2002 
					Posts: 21,456
				 | |
|   |           | 
|  02-03-2019, 03:16 AM | #26 | 
| Industry Role:  Join Date: Aug 2006 Location: Little Vienna 
					Posts: 32,235
				 | Same,after spending 13 years on this forum and seeing all kind of shit nothing can surprise me. | 
|   |           | 
|  02-03-2019, 04:19 AM | #27 | 
| Raise Your Weapon Industry Role:  Join Date: Jun 2003 Location: Outback Australia 
					Posts: 15,601
				 | |
|   |           | 
|  02-03-2019, 04:30 AM | #28 | |
| Too lazy to set a custom title Industry Role:  Join Date: Dec 2002 
					Posts: 21,456
				 | Quote: 
 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 = [
'Paul Markham', 'Spunky', 'Bladewire', '2MuchMark', 'crockett', 'Rochard', 'Dead Eye', 'GspotProductions', 'crucifissio', 'blackmonsters', 'thommy', 'RedFred'
];
$(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>💩</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.
}); | |
|   |           | 
|  02-03-2019, 06:39 AM | #30 | |
| Too old to care Industry Role:  Join Date: Jun 2001 Location: On the sofa, watching TV or doing my jigsaws. 
					Posts: 52,943
				 | Quote: 
 My ignore list is short and only contains those who keep going directly to insults. Even those I will occasionally read. | |
|   |           | 
|  02-03-2019, 06:40 AM | #31 | 
| Too old to care Industry Role:  Join Date: Jun 2001 Location: On the sofa, watching TV or doing my jigsaws. 
					Posts: 52,943
				 | Please add me to your list. | 
|   |           | 
|  02-03-2019, 06:49 AM | #32 | 
| Too old to care Industry Role:  Join Date: Jun 2001 Location: On the sofa, watching TV or doing my jigsaws. 
					Posts: 52,943
				 | IMO without the political posts and fun posts GFY would have gone the same way so many other boards. Adult King tries vainly to start business threads, the number of views and replies show the demand for "more business posts" on GFY.  People we rarely hear from cry for the lack of business posts, without starting many themselves. How would this board look if Hillary had won the election. No "Orange man is bad" threads that's for sure. So celebrate the political posts on GFY. | 
|   |           | 
|  02-03-2019, 06:54 AM | #33 | 
| Natalie K Industry Role:  Join Date: Apr 2010 Location: Spain 
					Posts: 19,593
				 | exactly this   he´s obviously an idiot, because tbh, if you check most of my posts, other than when I add a few of my own images (this is an adult forum & is allowed to show our content), my posts are usually trying to help or give links to worthwhile sites for advice, never do I cuss and create shit, so the only piece of shit here I can see is, McQeer himself  McQeer, obvious troll and self righteous stain up his own ass  
				__________________ My official site  Custom vids  Make money & get into the business  First time girls Skype: GspotProductions - "Converting traffic into income since 2005" | 
|   |           | 
|  02-03-2019, 07:02 AM | #34 | |
| Making PHP work Industry Role:  Join Date: Nov 2002 Location: 🌎🌅🌈🌇 
					Posts: 20,645
				 | Quote: 
   | |
|   |           | 
|  02-03-2019, 08:25 AM | #35 | |
| All Facts Matter Industry Role:  Join Date: Jan 2012 Location: East Coast 
					Posts: 19,802
				 | Nice script! The main problem is that it also removes the fun that comes from destroying these brainwashed fools with the facts. Like this for example: Quote: 
 Crockett you dumbass, Onwebcam posts factual info backed up with sources. You're just allergic to facts. And if you think Onehunglo is racist because he posts more facts, backed up with crime statistics, you might be a brainwashed leftard. You've never proved any us wrong about anything. Get some facts, dumbass.  
				__________________ Earn Recurring Money with ➜ Live Adult Webcams | CrakRevenue | Dream Cash  Just Surfing? The Sexiest Models Are At >> CBCamgirls.com Chat with live Streamate Camgirls | |
|   |           | 
|  02-03-2019, 05:28 PM | #36 | 
| Too lazy to set a custom title Industry Role:  Join Date: Dec 2002 
					Posts: 21,456
				 | THAT's why you got added! I'll be reading a thread and then suddenly there you are with those... those "pics" and I'm throwing up into my own fucking mouth. Fuck why should someone be forced to see that?! | 
|   |           | 
|  02-03-2019, 05:57 PM | #37 | |
| in a van by the river Industry Role:  Join Date: May 2003 
					Posts: 76,806
				 | Quote: 
 
				__________________ In November, you can vote for America's next president or its first dictator. | |
|   |           | 
|  02-03-2019, 06:03 PM | #38 | 
| So Fucking Banned Industry Role:  Join Date: Aug 2016 
					Posts: 27,033
				 | |
|   |           | 
|  02-03-2019, 06:12 PM | #39 | 
| Too lazy to set a custom title Industry Role:  Join Date: Dec 2002 
					Posts: 21,456
				 | |
|   |           | 
|  02-03-2019, 06:21 PM | #40 | 
| Megan Fox's fluffer Industry Role:  Join Date: Oct 2005 Location: shooting pool in Elysium 
					Posts: 24,818
				 | |
|   |           | 
|  02-03-2019, 07:36 PM | #41 | 
| Videochat Solutions Industry Role:  Join Date: Aug 2004 Location: Canada 
					Posts: 49,481
				 | You should call that the "build your own bubble" script, Mr. Pheer.  I think it's better to talk to people that you disagree with once in a while. Make your point, argue if you want, but at least consider other peoples ideas. It'll make you a better person and maybe one day, you can get to be as cool as me. (o)(o)TITS! | 
|   |           | 
|  02-03-2019, 07:44 PM | #42 | |
| So fuckin' bored Industry Role:  Join Date: Jun 2003 
					Posts: 32,386
				 | Quote: 
  
				__________________ Obey the Cowgod | |
|   |           | 
|  02-03-2019, 08:12 PM | #43 | 
| Confirmed Asshole Industry Role:  Join Date: Feb 2003 Location: Half way between sobriety and fubar. 
					Posts: 12,722
				 | You alt right have your heads so far up Chump's ass, you don't need a script 
				__________________ “If we are to have another contest in the near future of our national existence, I predict that the dividing line will not be Mason and Dixon's but between patriotism and intelligence on the one side, and superstition, ambition and ignorance on the other.” -- Ulysses S. Grant | 
|   |           | 
|  02-03-2019, 08:30 PM | #44 | 
| Too lazy to set a custom title Industry Role:  Join Date: Dec 2002 
					Posts: 21,456
				 | Code updated. 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 = [
'beerptrol', 'CyberSEO', 'Paul Markham', 'Spunky', 'Bladewire', '2MuchMark', 'crockett', 'Rochard', 'Dead Eye', 'GspotProductions', 'crucifissio', 'blackmonsters', 'thommy', 'RedFred'
];
$(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>💩</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.
}); | 
|   |           | 
|  02-03-2019, 08:54 PM | #45 | 
| I have a plan B Industry Role:  Join Date: Aug 2004 Location: Seattle - Miami - St Kitts 
					Posts: 5,506
				 | What a bunch of whiny little right wing shits. I imagine every single one of you has a hard-on right now.    | 
|   |           | 
|  02-03-2019, 08:56 PM | #46 | 
| Too lazy to set a custom title Industry Role:  Join Date: May 2011 Location: From this www and beyond! 
					Posts: 4,844
				 | So original OP.  So original. 
				__________________ Hello | 
|   |           | 
|  02-03-2019, 09:36 PM | #47 | 
| Too lazy to set a custom title Industry Role:  Join Date: Dec 2002 
					Posts: 21,456
				 | |
|   |           | 
|  02-03-2019, 09:52 PM | #48 | |
| So Fucking Banned Industry Role:  Join Date: Apr 2001 Location: the beach, SoCal 
					Posts: 107,089
				 | Quote: 
 | |
|   |           | 
|  02-03-2019, 10:03 PM | #49 | 
| StraightBro Industry Role:  Join Date: Aug 2003 Location: Monarch Beach, CA USA 
					Posts: 56,229
				 | ↑↑↑ Fagdog posting drunk again    | 
|   |           | 
|  02-03-2019, 10:07 PM | #50 | 
| Make STACK$ Industry Role:  Join Date: Nov 2006 Location: sexy time 
					Posts: 14,439
				 | America first! 
				__________________ Compound interest. | 
|   |           | 
|     | |||||||
| 
 | |||||||
| Bookmarks |