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)
-   -   Rant troll special!! (https://gfy.com/showthread.php?t=1185460)

brassmonkey 02-26-2016 09:21 PM

troll special!!
 
anybody else??? leave the names i'll add them :winkwink: poof they are gone! :thumbsup:thumbsup

chrome: Tampermonkey - Chrome Web Store

firefox: Greasemonkey :: Add-ons for Firefox

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

420 02-26-2016 09:29 PM

add that twat brassmonkey please

brassmonkey 02-26-2016 09:42 PM

perfect!!! :)

420 02-26-2016 09:46 PM

my compliments on this most excellent content curation but it don't work

Quote:

Originally Posted by brassmonkey (Post 20739816)
anybody else??? leave the names i'll add them :winkwink: poof they are gone! :thumbsup:thumbsup

chrome: Tampermonkey - Chrome Web Store

firefox: Greasemonkey :: Add-ons for Firefox

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 === 'brassmonkey') {
//        $('#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 === ') {
                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 === 'brassmonkey') {
                    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


brassmonkey 02-27-2016 12:02 AM

please bump this thread! keep it alive! :thumbsup:thumbsup

xXXtesy10 02-27-2016 08:50 AM

honorable dindu nuffin here

Penny24Seven 02-27-2016 08:56 AM

truth hurts

blackmonsters 02-27-2016 10:14 AM

Quote:

Originally Posted by brassmonkey (Post 20739993)
please bump this thread! keep it alive! :thumbsup:thumbsup


:1orglaugh

Google Expert 02-27-2016 10:21 AM

how do you enter code into greasemokey?

Horatio Caine 02-27-2016 10:29 AM

Do you expect anyone to believe you wrote this?

Horatio Caine 02-27-2016 10:30 AM

Quote:

Originally Posted by blackmonsters (Post 20740213)
:1orglaugh

You back homie? Who paid you bail this time? is your other nick with plump font back too?

CPA-Rush 02-27-2016 10:36 AM

lol......

brassmonkey 02-27-2016 10:43 AM

Quote:

Originally Posted by Muad'Dib (Post 20740217)
how do you enter code into greasemokey?

turn on greasemonkey and click here :)
https://49.media.tumblr.com/5692713e...7fsto1_500.gif

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

fucking uneducated criminal dinduuuuuuuuuuuu

Horatio Caine 02-27-2016 03:26 PM

I wonder why you had to upload it to paste bin if original coder had it here?

https://gfy.com/20658428-post105.html

Fucking no use poser.

clickity click 02-27-2016 04:00 PM

Can I protest that I am not on the troll list. It's a fucking outrage. I am obviously too good.
Also, could I make the suggestion to the developers of Tampermonkey and Greasemonkey that they make a name change to Brassmonkey instead.

escorpio 02-27-2016 04:03 PM

Cripmonkey

http://i.dailymail.co.uk/i/pix/2014/...58_634x466.jpg

CaptainHowdy 02-27-2016 05:01 PM

There is no fun in that ...

Penny24Seven 02-27-2016 07:25 PM

Quote:

Originally Posted by Horatio Caine (Post 20740411)
I wonder why you had to upload it to paste bin if original coder had it here?

https://gfy.com/20658428-post105.html

Fucking no use poser.

:1orglaugh:1orglaugh

Quote:

Originally Posted by clickity click (Post 20740440)
Can I protest that I am not on the troll list. It's a fucking outrage. I am obviously too good.
Also, could I make the suggestion to the developers of Tampermonkey and Greasemonkey that they make a name change to Brassmonkey instead.

That is no troll list. Those are the ones that call him a sig whore the most and he can't handle the truth. I saw it in a movie one time. YOU CAN'T HANDLE THE TRUTH.
He refuses to watch that movie because it gives him flash backs.:pimp

CPA-Rush 02-27-2016 10:10 PM

Quote:

Originally Posted by Horatio Caine (Post 20740411)
I wonder why you had to upload it to paste bin if original coder had it here?

https://gfy.com/20658428-post105.html

Fucking no use poser.

https://gfy.com/images/icons/heee.gif it's okay .

brassmonkey 02-28-2016 12:17 PM

Up Up Up

Mediamix 02-28-2016 12:45 PM

Quote:

Originally Posted by brassmonkey (Post 20740912)
Up Up Up

Said the guy that has down down down syndrome..

#23 02-28-2016 12:46 PM

hey brasss!

brassmonkey 02-28-2016 01:39 PM

Quote:

Originally Posted by Mediamix (Post 20740934)
Said the guy that has down down down syndrome..

godless bastard! :disgust

mineistaken 02-28-2016 01:59 PM

you dindu that code, honkster.

mineistaken 02-28-2016 02:02 PM

https://gfy.com/20622223-post1.html original list

sandman! 02-28-2016 02:05 PM

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

Horatio Caine 02-28-2016 02:07 PM

Quote:

Originally Posted by mineistaken (Post 20740992)

:1orglaugh:1orglaugh

And look who is in it. The Eastern European retards and descendants of Shaka Zulu. :1orglaugh

brassmonkey 02-29-2016 02:03 PM

http://imghumour.com/assets/Uploads/Lets-Bump.jpg

#23 02-29-2016 02:37 PM

i do custom coding for free if you are new gfy member email in sig

EonBlue 02-29-2016 02:45 PM





.

Horatio Caine 02-29-2016 02:46 PM

I like how "brassmonkey" was hardcoded in original version of this script. Now, he's passing it for his own :1orglaugh:1orglaugh:1orglaugh:1orglaugh:1orglaugh :1orglaugh

brassmonkey 02-29-2016 04:13 PM

Quote:

Originally Posted by Horatio Caine (Post 20742032)
I like how "brassmonkey" was hardcoded in original version of this script. Now, he's passing it for his own :1orglaugh:1orglaugh:1orglaugh:1orglaugh:1orglaugh :1orglaugh

where did you come up with i coded this? i just changed the list :disgust

RyuLion 02-29-2016 05:09 PM

:1orglaugh:1orglaugh :2 cents:

brassmonkey 02-29-2016 09:27 PM

http://wemeantwell.com/blog/wp-conte...on-grinder.gif

Horatio Caine 02-29-2016 10:56 PM

Quote:

Originally Posted by brassmonkey (Post 20742137)
where did you come up with i coded this? i just changed the list :disgust

So why re-posting it if original coder already had built-in list of real trolls in it?
If I were you I'd hire some Indian guy to write an auto re-post script for yahoo news. Just make sure it skips an article if it contains words "suspect, ran, police, black, gun, Dequan, Marquise, rapper, baby mamma, juvenile, record, GED, dindu, nuffins ..."

brassmonkey 03-01-2016 02:47 PM

back toe the top

Juicy D. Links 03-01-2016 02:49 PM

Quote:

Originally Posted by Horatio Caine (Post 20742359)
So why re-posting it if original coder already had built-in list of real trolls in it?
If I were you I'd hire some Indian guy to write an auto re-post script for yahoo news. Just make sure it skips an article if it contains words "suspect, ran, police, black, gun, Dequan, Marquise, rapper, baby mamma, juvenile, record, GED, dindu, nuffins ..."

he is high on watermelon again

Coup 03-01-2016 02:51 PM

Quote:

Originally Posted by Horatio Caine (Post 20742032)
I like how "brassmonkey" was hardcoded in original version of this script. Now, he's passing it for his own :1orglaugh:1orglaugh:1orglaugh:1orglaugh:1orglaugh :1orglaugh

That moment when your racism has you so twisted with impotent rage that you get mad about shit that never even happened. Lololol

Sednub997 03-01-2016 04:04 PM

dindu muffin :pimp

brassmonkey 03-05-2016 12:37 PM

New Users Added!! Get it now!

Quote:

Originally Posted by brassmonkey (Post 20739816)
anybody else??? leave the names i'll add them :winkwink: poof they are gone! :thumbsup:thumbsup

chrome: Tampermonkey - Chrome Web Store

firefox: Greasemonkey :: Add-ons for Firefox

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',
    'candyflip',
    'Mutt',
    'rogueteens',
    'SilentKnight',
    'Maud\'Dib',
    'Coup',
    'Grapesoda',
    'nico-t',
    'LatinaCamChat',
    '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 #2 hehehe


420 03-05-2016 12:49 PM

your special feelings can't get hurt if what people are saying to you is kind of greyed out

look at you replying to me even though I'm on your list... that's special <3

Juicy D. Links 03-05-2016 12:49 PM

How does a black woman fight crime?
She has an abortion.

candyflip 03-06-2016 07:26 AM

We can use Greasemonkey and Tampermonkey to ignore Brassmonkey.

Funny to see the troll pushing the script that was written for everyone else to ignore him. :1orglaugh

brassmonkey 03-06-2016 01:22 PM

will be adding more next week stay tuned :winkwink:

johnnyloadproductions 03-07-2016 12:11 AM

Quote:

Originally Posted by brassmonkey (Post 20751598)
will be adding more next week stay tuned :winkwink:

Congrats on getting Juicy banned! :1orglaugh

He couldn't help himself.

I actually don't mind Juicy.

brassmonkey 03-07-2016 12:21 AM

Quote:

Originally Posted by johnnyloadproductions (Post 20752783)
Congrats on getting Juicy banned! :1orglaugh

He couldn't help himself.

I actually don't mind Juicy.

what?? he bumped like 100 of my old threads with the same big text. i have never talked ill of the guy. i don't get it

CPA-Rush 03-07-2016 12:48 AM

Quote:

Originally Posted by johnnyloadproductions (Post 20752783)
:1orglaugh

He couldn't help himself.

I actually don't mind Juicy.



juicy profile

Join Date
12-28-2004
Total Posts
47

Last Activity: 09-20-2015 10:56 PM
:1orglaugh :1orglaugh

mineistaken 03-07-2016 12:59 AM

Donkster, you playa hater, vote for your nickname instead :)
https://gfy.com/fucking-around-and-pr...rsion-2-a.html

brassmonkey 03-07-2016 01:06 AM

https://i.ytimg.com/vi/EuUYioQENXc/maxresdefault.jpg


All times are GMT -7. The time now is 05:59 AM.

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