GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Content A gift for GFY (https://gfy.com/showthread.php?t=1177787)

sarettah 11-12-2015 05:45 PM

A hunnerd ignorants ignored.

.

MetaMan 11-12-2015 06:38 PM

Quote:

Originally Posted by crockett (Post 20633788)
You're trying too hard. The OP is obviously butt hurt and uses this as a way to try to screw people he doesn't like..

I made him cry in a topic a long time ago and he still holds a grudge it seems. Meanwhile guys like you post much more dumb shit than I do but you aren't there.

Juicylinks hasn't added anything to this board in years. He's just a spam bot that posts smiley faces and yessss in every topic and spams hidden forms for post counts.. yet he's not added..

Meanwhile Rochard is added.. likely also made the OP cry.

As I said before, it changes little to me, because here I am still trolling you. But stuff like this is overall bad for the board which is the only reason I care.

Lol in other posts you claim you are "just trolling" and make it sound like you dont care.

And now you are all butt hurt at someones ignore list? Calm down chap.

j3rkules 11-12-2015 06:48 PM

Quote:

Originally Posted by mineistaken (Post 20633798)

:1orglaugh

Juicy D. Links 11-20-2015 08:32 AM

Yesssssssssssssssssssssssssssssssssss

CPA-Rush 12-05-2015 11:33 PM

Quote:

Originally Posted by CPA-Rush (Post 20624660)

nice little bump

JohnnyClips will be added .

:pimp

BlackCrayon 12-09-2015 12:34 PM

Quote:

Originally Posted by johnnyloadproductions (Post 20624055)
I made a video just for you! lol

Did this out of curiosity on how to get this working as well. I've included a link to the script you can drag and drop in to the grease monkey extension page.

Download from the dropbox link and follow the video on how to make simple changes.

https://dl.dropboxusercontent.com/u/...fy.com.user.js

Camtasia has some glitches with Windows 10 so my apologies in a spot or 2.


thanks man. i never bothered to ignore people but johnnyclips is a virus. hes now gone. i recommend everyone to do this.

Paul Markham 12-09-2015 03:14 PM

Will use this tool more.

clickity click 12-09-2015 03:25 PM

Quote:

Originally Posted by Adraco (Post 20624140)
Very good! I have an extensive ignore list but this is even better, not even have to take any notice at all to all the unnecessary people just writing dumb shit here.

I am much better off without the local riff raff!

You sure do

Juicy D. Links, garce, Babaganoosh, JFK, mizmiz, Spunky, CurrentlySober, Machete_, fatfoo, DVTimes, longdongsilver, Empfänger Emil, DEA - banned for life, nikki99, xmas13, CaptainHowdy, Denny, brassmonkey, C H R I S, Agent 488, seeandsee, celandina, ximpda, porno jew, timmyc38, PastorSinAlot, Legendary Samir - BANNED FOR LIFE, ZeroHero, Achmed's Wife Halimah, merina0803, PornMarkiz, LoveSandra, NETSEX, Operator, area51 - BANNED FOR LIFE, Mamassita, Splendorous_Male, Coup, Fbomb - BANNED FOR LIFE, marlboroack, - LOL -, Danmixz, JohnnyClips, TubeKing, JustJ, Internet User, Optout, Tijuana_Tom, beaner, VenusBlogger, JockoHomo, jerkules, whOaKemosabe, jódete, Ribbet Hog, Sex Story Sexy, Mickeygroves, MachuPicchu

I can't imagine how boring GFY must be for you.

clickity click 12-09-2015 03:30 PM

Quote:

Originally Posted by Mr Pheer (Post 20633737)
My updated list:

Code:

var hide_users = [
'DamianJ',
'DVTimes',
'Rochard',
'crockett',
'Twitter',
'CyberSEO',
'crucifissio',
'brassmonkey',
'blackmonsters',
'clickity click',
'Harmon',
'Grapesoda',
'Cutty',
'wehateporn',
'Coup',
'theking'
];

GFY is actually becoming useful to me again.

Can I kindly ask that you remove me from that list, you seem to have me mistaken with someone else.

Fat Panda 01-02-2016 05:37 PM

ive been using this forever. thank u :pimp

Fat Panda 01-02-2016 05:39 PM

mine has about 120 usernames

maybe thats why gfy seems so dead to me?

clickity click 01-02-2016 06:01 PM

Quote:

Originally Posted by Fat Panda (Post 20686660)
mine has about 120 usernames

maybe thats why gfy seems so dead to me?

No, it's like that for everyone.

brassmonkey 02-26-2016 08:03 PM

troll special!! :thumbsup:thumbsup
clickity click was there by default forgot to remove him. edited clickity out
Code:

// ==UserScript==
// @name        gfy.com
// @description block  threads,  posts, etc from certain users
// @include    https://gfy.com/*
// @include    http://*.gfy.com/*
// @require    https://code.jquery.com/jquery-1.7.2.min.js
// @version    1.0
// @grant      none
// ==/UserScript==
 
var hide_users = [
    'Juicy D. Links',
    'Mr Pheer',
    'mineistaken',
    'TheSquealer',
    '420',
    '#23',
    'Brian837',
    'desertfoxx',
    'xXXtesy10',
    'L-Pink',
    'escorpio',
    'Sid70',
    'Horatio Caine'
];
 
$(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_author = $('strong', this).text();
            $(hide_users).each(function (hide_index, hide_user) {
                if (post_author === hide_user) {
                    post_block.remove();
                }
            });
        }); //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.
});

gfy trolls - Pastebin.com

#23 02-26-2016 08:29 PM

Quote:

Originally Posted by brassmonkey (Post 20739778)
troll special!! :thumbsup:thumbsup
clickity click was there by default forgot to remove him. edited clickity out
Code:

// ==UserScript==
// @name        gfy.com
// @description block  threads,  posts, etc from certain users
// @include    https://gfy.com/*
// @include    http://*.gfy.com/*
// @require    https://code.jquery.com/jquery-1.7.2.min.js
// @version    1.0
// @grant      none
// ==/UserScript==
 
var hide_users = [
    'Juicy D. Links',
    'Mr Pheer',
    'mineistaken',
    'TheSquealer',
    '420',
    '#23',
    'Brian837',
    'desertfoxx',
    'xXXtesy10',
    'L-Pink',
    'escorpio',
    'Sid70',
    'Horatio Caine'
];
 
$(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_author = $('strong', this).text();
            $(hide_users).each(function (hide_index, hide_user) {
                if (post_author === hide_user) {
                    post_block.remove();
                }
            });
        }); //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.
});

gfy trolls - Pastebin.com

http://i.imgur.com/rSWX0ux.jpg

Google Expert 02-27-2016 10:36 AM

I got FireFox and greasemonkey.

Where do I enter the code?

Juicy D. Links 02-27-2016 11:00 AM

whats a matter BRassdinduuuu u cryoinggggggggggggg:1orglaugh:1orglaugh

brassmonkey 02-27-2016 11:09 AM

Quote:

Originally Posted by Muad'Dib (Post 20740231)
I got FireFox and greasemonkey.

Where do I enter the code?

added in the other thread

Mr Pheer 02-27-2016 03:20 PM

lol @ brasspussy adding me

haha! fuck thats funny

Juicy D. Links 02-28-2016 01:04 PM

Quote:

Originally Posted by Mr Pheer (Post 20740408)
lol @ brasspussy adding me

haha! fuck thats funny

dass racissssssssssssssssssssssss

kkkkkk 11-27-2016 12:47 PM

:thumbsup

AaronM 01-22-2017 02:57 PM

Is this still working for others? It's stopped working for me. :(

AaronM 01-22-2017 03:04 PM

Quote:

Originally Posted by AaronM (Post 21475744)
Is this still working for others? It's stopped working for me. :(


Scratch that.

Somehow it was disabled in my Chrome extensions. All good now.

Operator Error, please disregard.

CaptainHowdy 01-22-2017 04:06 PM

I love everyone ...

XXXtrailers 01-27-2017 05:01 AM

Best post in a while!

Zen- 05-21-2017 01:21 PM

Bumping this thread and recommending you add 'Bladewire' :321GFY

Bladewire 05-21-2017 01:22 PM

Quote:

Originally Posted by Zen- (Post 21782428)
Bumping this thread and recommending you add 'Bladewire' :321GFY

Relic just bumped months of my threads to cover the whole front page, not me.

Between 12:10pm - 12:40pm he bumped over 100 of months old threads of mine with a post that says " :2 cents: "

I documented it in a thread addressed to Eric here. I've quoted it below for reference.

He's been banned before for similar stuff.

Relic is on that block list for a reason :2 cents:


Quote:

Originally Posted by Bladewire (Post 21782209)
Why are you bumping all my old threads going months back with a post that only says ":2 cents:" ?

That's against GFY TOS and I'm sure other members don't appreciate that juvenile shit you bumped like 50 threads


Quote:

Originally Posted by Bladewire (Post 21782419)
You've bumped like 100 threads of mine now this is harrasment and kind of stalkerish creepy TBH.

You've been banned before but this time you've gone nuts

GFY Rules to live by:

6. Excessive harassment or verbal abuse of a single member, will be grounds for a warning. Inciting others to harass or verbally abuse a member will also generate the same warning. Repeated violation after warning will result in the ban hammer!

11. Insinuations Meant to Do Harm Any insinuations made in an attempt to do harm to a person (personal attack) or business, shall be grounds for immediate banning.

12. One username allowed. Fake usernames will be immediately banned.

14. Fake Nick Ban Circumvention If you are banned take it like a MAN! Registering a new nick will lead to that nick being banned and your original nick finding another violation added to it.


Relic 05-21-2017 01:27 PM

Quote:

Originally Posted by Zen- (Post 21782428)
Bumping this thread and recommending you add 'Bladewire' :321GFY

:2 cents::2 cents:

Relic 05-21-2017 01:29 PM

Quote:

Originally Posted by Bladewire (Post 21782434)
Relic just bumped months of my threads to cover the whole front page, not me.

Actually you lying fuck, I bumped the last 10 days of your posts. You don't want that to happen? Don't fucking spam the board asshole.

AaronM 05-22-2017 12:44 AM

Quote:

Originally Posted by Relic (Post 21782446)
Actually you lying fuck, I bumped the last 10 days of your posts. You don't want that to happen? Don't fucking spam the board asshole.

I'm already using this and he's been on the list for awhile. However, now that you've quoted him, I have to see his shit anyway. Thanks a lot fucker. :winkwink:

Caldo 05-22-2017 04:07 AM

awesome work ...

Kittens 05-22-2017 06:19 AM

Good to see people still enjoy this. :)

adultchatpay 05-22-2017 06:41 AM

I have nobody to block or ignore. GFY will be boring if i do that.

King Mark 06-17-2019 10:19 PM

Anybody got a working download link for the chrome one?

Dead 04-20-2022 06:28 PM

Lllllllloooooooooooooooooolllllllllllllllllllll


All times are GMT -7. The time now is 11:45 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123