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)

Mr Pheer 11-02-2015 06:07 PM

50 butthurt webmasters complaining about being on the list :)

If you weren't douchebags you wouldnt be there :thumbsup

Now go ahead and have the last word, hardly anyone can see you anyway :1orglaugh:1orglaugh

crockett 11-02-2015 06:19 PM

Quote:

Originally Posted by Mr Pheer (Post 20623752)
50 butthurt webmasters complaining about being on the list :)

If you weren't douchebags you wouldnt be there :thumbsup

Now go ahead and have the last word, hardly anyone can see you anyway :1orglaugh:1orglaugh

The reason we know you are a butt hurt Republican, is because you didn't put guys like brassmonkey on there who is a right wing tard that posts useless shit daily.

Seth Manson 11-02-2015 06:26 PM

Quote:

Originally Posted by crockett (Post 20623760)
The reason we know you are a butt hurt Republican, is because you didn't put guys like brassmonkey on there who is a right wing tard that posts useless shit daily.

Are you so fucking stupid that you can't see that brassmonkey is the 8th name on the default list? seriously bro?

its not crockett science man it's basic reading comprehension!

OneBallJohn 11-02-2015 06:28 PM

Quote:

Originally Posted by Seth Manson (Post 20623764)
Are you so fucking stupid that you can't see that brassmonkey is the 8th name on the default list? seriously bro?

its not crockett science man it's basic reading comprehension!


was just about to point out the same thing. I need to add this so I can get rid of idiots like crockett once and for all.

Seth Manson 11-02-2015 06:28 PM

i'm going to add crockett back to my list.. oh jesus fuck I should have just left him on it to begin with :1orglaugh:1orglaugh:1orglaugh

Babaganoosh 11-02-2015 06:29 PM

Quote:

Originally Posted by brassmonkey (Post 20623141)
crybabies go hide in your virtual corner! :1orglaugh:1orglaugh

You're dead to me now. Peace out you useless tool.

Mr Pheer 11-02-2015 06:32 PM

I knew this would become entertaining :pimp

crockett 11-02-2015 06:43 PM

Quote:

Originally Posted by Seth Manson (Post 20623764)
Are you so fucking stupid that you can't see that brassmonkey is the 8th name on the default list? seriously bro?

its not crockett science man it's basic reading comprehension!

I meant to type Gapesoda.. Brassmonkey obviously isn't an angry republican,,


Grapesoda on the other hand is a butt hurt republican who posts non sense all the time... But because Mcgoo is also a butt hurt Republican he wouldn't add his own kind..

Grapesoda currently has as many useless topics on the front page as Brassmonkey..

mineistaken 11-02-2015 06:50 PM

LOL at crockett trying to inject republican motive in this thread :1orglaugh
That one has no bounds - evil republicans are everywhere :1orglaugh

AaronM 11-02-2015 06:51 PM

Quote:

Originally Posted by Mr Pheer (Post 20623770)
I knew this would become entertaining :pimp


Pre-populating the list was a small stroke of genius. :thumbsup:1orglaugh:1orglaugh

blackmonsters 11-02-2015 06:51 PM

Quote:

Originally Posted by crockett (Post 20623776)
I meant to type Gapesoda.. Brassmonkey obviously isn't an angry republican,,


Grapesoda on the other hand is a butt hurt republican who posts non sense all the time... But because Mcgoo is also a butt hurt Republican he wouldn't add his own kind..

Grapesoda currently has as many useless topics on the front page as Brassmonkey..

:2 cents:

AaronM 11-02-2015 06:55 PM

Since crockett was already on my ignore list, I could still see the vB comment showing he had posted.

So, if it makes crockett feel any better, he's no longer on my ignore list. :glugglug

crockett 11-02-2015 07:35 PM

Quote:

Originally Posted by mineistaken (Post 20623783)
LOL at crockett trying to inject republican motive in this thread :1orglaugh
That one has no bounds - evil republicans are everywhere :1orglaugh

The best part of my trolls, is that I tell you I'm trolling you and you still get mad when you get trolled. This is why I'll still be trolling you angry Republicans tomorrow, the next day and the day after that because you can't stand to not know what I'll say next and you can't stand to not argue.. Otherwise you would of ignored me years ago.. :1orglaugh


The only reason I even give a shit about something like this, is these kinds of things hurt the board. Regardless if you like what I post, what Brassmonkey posts, this guy or that guy the fact remains we keep the board moaning and moving..

With out the daily posts of those you want to hate, the board will slowly die just like every other adult board which no longer exisits. This board hasn't been about business in years.. It's mainly survived due to useless posts and the posters who post in those useless topics and it's always been about drama.. :2 cents:

atom 11-02-2015 08:41 PM

Added and you saved me the trouble by prepopulating it with the retards of the board.

Thx Mr Pheer!

johnnyloadproductions 11-02-2015 09:49 PM

I just modified this to completely block any trace of someone (well a little more) by blocking any direct quotes of that person, highlighted in green.

It's just a nested for loop and based on code I studied. Catch is the person on ignore must be included in the quote.

Code:

$(document).ready(function () {
    $('tbody#threadbits_forum_26 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) {
                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.


});


This chrome extension is just using jQuery DOM manipulation that was conjured up by a fat ginger pig, oink oink... lol. I forked it.

Below, with quotes and then without quotes in the 2nd image.
All the quoted people below I don't actually have you on ignore, this was strictly for demonstration purposes so don't get butt hurt, please. :)

May make some conversations sound a bit odd though :warning

http://i.imgur.com/cP5GxbB.png
http://i.imgur.com/L7GxHZ7.png

johnnyloadproductions 11-02-2015 10:01 PM

Here's a zip of it: https://dl.dropboxusercontent.com/u/...ion-forked.zip

Original thread: A better GFY ignore list inside! - GoFuckYourself.com - Adult Webmaster Forum

Mr Pheer 11-03-2015 12:33 AM

Quote:

Originally Posted by johnnyloadproductions (Post 20623855)

Yep that's the original. Cant get the files from the original location anymore so I made mine available for everyone.

Nice to see some mods being made :)

Google Expert 11-03-2015 01:12 AM

how do you implement it into Firefox?

Mr Pheer 11-03-2015 01:16 AM

Quote:

Originally Posted by Muad'Dib (Post 20623897)
how do you implement it into Firefox?

Not sure, I havent tried. Maybe CPA-Rush can tell you.

Juicy D. Links 11-03-2015 04:47 AM

Mr Pheer I luv u

CPA-Rush 11-03-2015 05:05 AM

Quote:

Originally Posted by Muad'Dib (Post 20623897)
how do you implement it into Firefox?

userscript.... with the support of greasemonkey addon you can run your javascript on browser .

so basically i used the original code inside script.js then added the necessary parts to make it ready for firefox .

michael.kickass 11-03-2015 05:31 AM

Nice script.

_Richard_ 11-03-2015 05:38 AM

thank god we banned this guy.

makes room for people like donny.

Manfap 11-03-2015 05:42 AM

Quote:

Originally Posted by O MARINA (Post 20623138)
Cool thanks. Where is Killswitch these days?

He was around recently on another board, but then got upset and left.

candyflip 11-03-2015 06:29 AM

Quote:

Originally Posted by O MARINA (Post 20623138)
Cool thanks. Where is Killswitch these days?

Probably sucking dick somewhere.

johnnyloadproductions 11-03-2015 06:53 AM

Quote:

Originally Posted by Muad'Dib (Post 20623897)
how do you implement it into Firefox?

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.


Adraco 11-03-2015 08:37 AM

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!

lennnoxo 11-03-2015 09:32 AM

Amazing suggestion :D

Google Expert 11-03-2015 11:34 AM

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.

Appreciate the effort, man, but:

http://c2n.me/3pNLA7u.png

:Oh crap

BAKO 11-03-2015 11:37 AM

Best tool ever created. No more idiots

johnnyloadproductions 11-03-2015 01:06 PM

Quote:

Originally Posted by Muad'Dib (Post 20624330)
Appreciate the effort, man, but:

http://c2n.me/3pNLA7u.png

:Oh crap

I would say upgrade Firefox but if you don't than install an older version of greasemonkey.

Try 3.0beta1: https://addons.mozilla.org/en-us/fir...sions/3.0beta1

Or install a stable version 2: https://addons.mozilla.org/en-us/fir...nkey/versions/

j3rkules 11-03-2015 04:47 PM

Fantastic, I will give it a try.

CPA-Rush 11-03-2015 04:48 PM

Quote:

Originally Posted by CPA-Rush (Post 20622454)
works on firefox now

require greasemonkey addon only and it should work with tampermonkey.

https://greasyfork.org/en/scripts/13533-gfy-ignore-list

let me know if this make your browser a bit slower

:pimp:pimp:pimp

just a slight update for the link

https://sleazyfork.org/en/scripts/13533-gfy-ignore-list

Juicy D. Links 11-08-2015 01:46 PM

bUUUUUUUUuuuuuuuuuuuuuuuuuuuuuump

crockett 11-08-2015 07:18 PM

Quote:

Originally Posted by Juicy D. Links (Post 20629254)
bUUUUUUUUuuuuuuuuuuuuuuuuuuuuuump

says the guy who spams hidden forums for his 124k post count...

Cutty 11-10-2015 08:34 AM

Quote:

Originally Posted by Mr Pheer (Post 20623752)
50 butthurt webmasters complaining about being on the list :)

If you weren't douchebags you wouldnt be there :thumbsup

Now go ahead and have the last word, hardly anyone can see you anyway :1orglaugh:1orglaugh

i am pissed i did not make the list

brassmonkey 11-10-2015 09:22 AM

fuking pussies!!

Juicy D. Links 11-10-2015 11:12 AM

Quote:

Originally Posted by crockett (Post 20629561)
says the guy who spams hidden forums for his 124k post count...

:1orglaugh:1orglaugh:1orglaugh:1orglaugh

At least I aint a meth smoking , ill suck yo dick for a piece of crack, white trask fiend :1orglaugh:1orglaugh

crockett 11-10-2015 11:16 AM

Quote:

Originally Posted by Juicy D. Links (Post 20631558)
:1orglaugh:1orglaugh:1orglaugh:1orglaugh

At least I aint a meth smoking , ill suck yo dick for a piece of crack, white trask fiend :1orglaugh:1orglaugh

Are you on drugs? I mean really..

Juicy D. Links 11-10-2015 11:32 AM

Quote:

Originally Posted by crockett (Post 20631562)
Are you on drugs? I mean really..


No what about yourself?

MichaelP 11-12-2015 10:17 AM

I wish I'll never get on that list :)

crockett 11-12-2015 11:21 AM

Quote:

Originally Posted by Juicy D. Links (Post 20631586)
No what about yourself?

Your mom has more of a chance of being on drugs than I ever will.

Juicy D. Links 11-12-2015 11:50 AM

Quote:

Originally Posted by crockett (Post 20633503)
Your mom has more of a chance of being on drugs than I ever will.

good one :thumbsup

sarettah 11-12-2015 12:02 PM

Quote:

Originally Posted by johnnyloadproductions (Post 20623853)
This chrome extension is just using jQuery DOM manipulation that was conjured up by a fat ginger pig, oink oink... lol. I forked it.

Yeah, so? I didn't see anyone else put one together in the 3 years or so since he made this one.

As far as the fat ginger remark, he must have really gotten under your skin at some point as I don't think he has posted here for quite a while. Yeah I guess it takes a real man to insult people in a place where they no longer defend themselves.

just my :2 cents:

:321GFY

.

Rob 11-12-2015 01:40 PM

Finally got around to installing and configuring this today. FUCKING AMAZING! :thumbsup

No more plum text, and other stupid shit! Thank you, thank you, thank you for posting this.

Mr Pheer 11-12-2015 04:08 PM

Quote:

Originally Posted by Rob (Post 20633614)
Finally got around to installing and configuring this today. FUCKING AMAZING! :thumbsup

No more plum text, and other stupid shit! Thank you, thank you, thank you for posting this.

Killswitch wrote it, I just happened to still be using it and thought some more people could use it.

Mr Pheer 11-12-2015 04:16 PM

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.

mineistaken 11-12-2015 04:28 PM

Quote:

Originally Posted by crockett (Post 20623776)
I meant to type Gapesoda..

Your theory just went through the roof :1orglaugh

crockett 11-12-2015 05:27 PM

Quote:

Originally Posted by mineistaken (Post 20633748)
Your theory just went through the roof :1orglaugh

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.

mineistaken 11-12-2015 05:44 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.

http://static3.businessinsider.com/i...0512607534.jpg


All times are GMT -7. The time now is 08:19 AM.

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