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.

Post New Thread Reply

Register GFY Rules Calendar Mark Forums Read
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 03-07-2016, 01:11 AM   #51
brassmonkey
Pay It Forward
 
brassmonkey's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Yo Mama House
Posts: 75,267
fiddy trolls
__________________
EMAIL ==>[email protected] ==> #NOBIDEN2024
TRUMP 2024!!! | END DACA!!!! | HCR2060 <= ILLEGAL ALIENS!!!!...👮
=> TRUMPS PAYDAY!!!!... - Support The Laken Riley Act!!! - Trump Nobel Prize...
brassmonkey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-07-2016, 01:23 AM   #52
Seth Manson
Please dont fuck animals
 
Seth Manson's Avatar
 
Industry Role:
Join Date: Jul 2010
Location: Henderson, NV
Posts: 3,988
What a fuckin little bitch
__________________
Seth Manson is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-07-2016, 11:27 AM   #53
brassmonkey
Pay It Forward
 
brassmonkey's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Yo Mama House
Posts: 75,267
Quote:
Originally Posted by Seth Manson View Post
What a fuckin little bitch
__________________
EMAIL ==>[email protected] ==> #NOBIDEN2024
TRUMP 2024!!! | END DACA!!!! | HCR2060 <= ILLEGAL ALIENS!!!!...👮
=> TRUMPS PAYDAY!!!!... - Support The Laken Riley Act!!! - Trump Nobel Prize...
brassmonkey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-07-2016, 03:02 PM   #54
escorpio
I love to racism, bro!
 
escorpio's Avatar
 
Industry Role:
Join Date: Oct 2002
Location: USA! USA! USA!
Posts: 21,844
escorpio is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-11-2016, 10:54 AM   #55
brassmonkey
Pay It Forward
 
brassmonkey's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Yo Mama House
Posts: 75,267
Update march 11th 2016 happy troll hunting
Quote:
Originally Posted by brassmonkey View Post
anybody else??? leave the names i'll add them poof they are gone!

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',
    'Ferus',
    'SAMANTAmax',
    'mineistaken',
    'TheSquealer',
    'clickity click',
    'Magnetron',
    '420',
    '#23',
    'Brian837',
    'desertfoxx',
    'xXXtesy10',
    'L-Pink',
    'escorpio',
    'Sid70',
    'candyflip',
    'Mutt',
    'rogueteens',
    'SilentKnight',
    'Muad\'Dib',
    'Coup',
    'Grapesoda',
    'nico-t',
    'slapass',
    'LatinaCamChat',
    'CyberSEO',
    'Just Alex',
    '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
__________________
EMAIL ==>[email protected] ==> #NOBIDEN2024
TRUMP 2024!!! | END DACA!!!! | HCR2060 <= ILLEGAL ALIENS!!!!...👮
=> TRUMPS PAYDAY!!!!... - Support The Laken Riley Act!!! - Trump Nobel Prize...
brassmonkey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-11-2016, 11:15 AM   #56
blackmonsters
Yo Mamma!
 
blackmonsters's Avatar
 
Industry Role:
Join Date: Nov 2002
Location: 🌎🌅🌈🌇
Posts: 19,877
Quote:
Originally Posted by brassmonkey View Post
Update march 11th 2016 happy troll hunting
You should replace this part :

Code:
     /**   $('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
**/
with this to remove their quotes and turn it into a pile of poo.


Code:
$('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
__________________
Camsoda pays :
Become a Cam Model or Sign up as a Webmaster
blackmonsters is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-18-2016, 05:19 PM   #57
brassmonkey
Pay It Forward
 
brassmonkey's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Yo Mama House
Posts: 75,267
going to post less too much drama. calling police arming my family its too much.
__________________
EMAIL ==>[email protected] ==> #NOBIDEN2024
TRUMP 2024!!! | END DACA!!!! | HCR2060 <= ILLEGAL ALIENS!!!!...👮
=> TRUMPS PAYDAY!!!!... - Support The Laken Riley Act!!! - Trump Nobel Prize...
brassmonkey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-18-2016, 05:32 PM   #58
420
cuck
 
420's Avatar
 
Industry Role:
Join Date: Mar 2003
Posts: 11,571
420 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-18-2016, 05:40 PM   #59
escorpio
I love to racism, bro!
 
escorpio's Avatar
 
Industry Role:
Join Date: Oct 2002
Location: USA! USA! USA!
Posts: 21,844
Quote:
Originally Posted by brassmonkey View Post
going to post less too much drama. calling police arming my family its too much.
escorpio is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-18-2016, 07:58 PM   #60
#23
So Fucking Banned
 
Industry Role:
Join Date: Jan 2016
Posts: 555
Yo Irwin See Avatar
#23 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-22-2016, 08:05 PM   #61
brassmonkey
Pay It Forward
 
brassmonkey's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Yo Mama House
Posts: 75,267
this is my personal list! my lord it makes things more quiet. no digging through bs. I post news when i see something or hear it on my radio working. not trying to harm anyone.
wehateporn you are on the border on my list

Quote:
Originally Posted by brassmonkey View Post
anybody else??? leave the names i'll add them poof they are gone!

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',
    'astronaut x',
    'MrBottomTooth',
    'ITraffic',
    'JohnnyClips',
    'Ribbet Hog',
    'Ferus',
    'SAMANTAmax',
    'mineistaken',
    'TheSquealer',
    'clickity click',
    'Magnetron',
    '420',
    '#23',
    'Brian837',
    'desertfoxx',
    'xXXtesy10',
    'L-Pink',
    'escorpio',
    'Sid70',
    'candyflip',
    'Mutt',
    'rogueteens',
    'SilentKnight',
    'Muad\'Dib',
    'Coup',
    'Grapesoda',
    'nico-t',
    'slapass',
    'LatinaCamChat',
    'CyberSEO',
    'Just Alex',
    '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
__________________
EMAIL ==>[email protected] ==> #NOBIDEN2024
TRUMP 2024!!! | END DACA!!!! | HCR2060 <= ILLEGAL ALIENS!!!!...👮
=> TRUMPS PAYDAY!!!!... - Support The Laken Riley Act!!! - Trump Nobel Prize...
brassmonkey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-22-2016, 08:21 PM   #62
#23
So Fucking Banned
 
Industry Role:
Join Date: Jan 2016
Posts: 555
this is my personal list! my lord it makes things more quiet. no digging through bs. I post news when i see something or hear it on my radio working. not trying to harm anyone.
wehateporn you are on the border on my list
Hide yo Irwin hide yo jones
#23 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-01-2016, 04:08 AM   #63
brassmonkey
Pay It Forward
 
brassmonkey's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Yo Mama House
Posts: 75,267
install it thank me later.
__________________
EMAIL ==>[email protected] ==> #NOBIDEN2024
TRUMP 2024!!! | END DACA!!!! | HCR2060 <= ILLEGAL ALIENS!!!!...👮
=> TRUMPS PAYDAY!!!!... - Support The Laken Riley Act!!! - Trump Nobel Prize...
brassmonkey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-01-2016, 04:49 AM   #64
rogueteens
So fucking bland
 
rogueteens's Avatar
 
Industry Role:
Join Date: Jul 2006
Location: England
Posts: 8,004
__________________
Free traffic and backlinks from one of the fastest growing adult pinsites on the net - SAUCY PICTURES!
Easily my best performing webcam sponsor - CLICK HERE!!
rogueteens is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-01-2016, 04:50 AM   #65
nico-t
emperor of my world
 
Join Date: Aug 2004
Location: nethalands
Posts: 29,904
Quote:
Originally Posted by brassmonkey View Post
install it thank me later.
Looks like the plugin is working great for you, since you keep responding to my posts
nico-t is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-01-2016, 04:52 AM   #66
nico-t
emperor of my world
 
Join Date: Aug 2004
Location: nethalands
Posts: 29,904
Quote:
Originally Posted by rogueteens View Post
another retarded libster abruptly awoken. By a hammer
nico-t is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-01-2016, 04:53 AM   #67
mineistaken
See signature :)
 
mineistaken's Avatar
 
Industry Role:
Join Date: Apr 2007
Location: ICQ 363 097 773
Posts: 29,656
Quote:
Originally Posted by brassmonkey View Post
install it thank me later.
Donkster, you are constantly replying to the people on that list. Looks like you are advocating something even you don't use yourself. Clownshoes
mineistaken is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-01-2016, 08:19 AM   #68
Relic
So Fucking Banned
 
Join Date: Aug 2002
Posts: 10,300
Relic is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-01-2016, 09:22 PM   #69
brassmonkey
Pay It Forward
 
brassmonkey's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Yo Mama House
Posts: 75,267
make the assholes go poof!!!
__________________
EMAIL ==>[email protected] ==> #NOBIDEN2024
TRUMP 2024!!! | END DACA!!!! | HCR2060 <= ILLEGAL ALIENS!!!!...👮
=> TRUMPS PAYDAY!!!!... - Support The Laken Riley Act!!! - Trump Nobel Prize...
brassmonkey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-01-2016, 10:24 PM   #70
Mr Pheer
So Fucking Banned
 
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 17,994
Quote:
Originally Posted by brassmonkey View Post
make the assholes go poof!!!
Mr Pheer is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-27-2016, 12:47 PM   #71
kkkkkk
svp get banned svp
 
Industry Role:
Join Date: Dec 2005
Posts: 1,628
kkkkkk is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-27-2016, 12:51 PM   #72
brassmonkey
Pay It Forward
 
brassmonkey's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Yo Mama House
Posts: 75,267
Quote:
Originally Posted by kkkkkk View Post
best option
__________________
EMAIL ==>[email protected] ==> #NOBIDEN2024
TRUMP 2024!!! | END DACA!!!! | HCR2060 <= ILLEGAL ALIENS!!!!...👮
=> TRUMPS PAYDAY!!!!... - Support The Laken Riley Act!!! - Trump Nobel Prize...
brassmonkey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-27-2016, 02:16 PM   #73
Smack dat
So Fucking Banned
 
Industry Role:
Join Date: Jul 2016
Posts: 4,613
So happy I am not on this list.
Smack dat is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-12-2016, 09:43 AM   #74
brassmonkey
Pay It Forward
 
brassmonkey's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Yo Mama House
Posts: 75,267
Thedynasty = chris butler? not rocket science
__________________
EMAIL ==>[email protected] ==> #NOBIDEN2024
TRUMP 2024!!! | END DACA!!!! | HCR2060 <= ILLEGAL ALIENS!!!!...👮
=> TRUMPS PAYDAY!!!!... - Support The Laken Riley Act!!! - Trump Nobel Prize...
brassmonkey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-12-2016, 09:49 AM   #75
ErectMedia
Confirmed Chicago Pimp
 
ErectMedia's Avatar
 
Industry Role:
Join Date: Aug 2004
Location: Chicago
Posts: 7,100
Quote:
Originally Posted by nico-t View Post
Looks like the plugin is working great for you, since you keep responding to my posts
ErectMedia is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-12-2016, 10:39 AM   #76
Grapesoda
So Fucking Banned
 
Industry Role:
Join Date: Jul 2003
Location: Montana
Posts: 46,150
Quote:
Originally Posted by brassmonkey View Post
awesome fucking film!!!!! check it out
Grapesoda is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-15-2016, 02:37 AM   #77
NatalieK
Natalie K
 
NatalieK's Avatar
 
Industry Role:
Join Date: Apr 2010
Location: Spain
Posts: 18,526
Quote:
Originally Posted by brassmonkey View Post
Update march 11th 2016 happy troll hunting
any code to be able to see who's blocking a username?
__________________
My official site NatalieK.xxx My free porn & affiliate blog Natalie K affiliate programFirst time girls
Skype: gspotproductions - "Converting your traffic into income since 2005"
NatalieK is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-15-2016, 04:08 AM   #78
CookieMonster05
Registered User
 
Industry Role:
Join Date: Nov 2016
Posts: 30
nice! keep up with the good work ;)
CookieMonster05 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-15-2016, 04:14 AM   #79
brassmonkey
Pay It Forward
 
brassmonkey's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Yo Mama House
Posts: 75,267
Quote:
Originally Posted by GspotProductions View Post
any code to be able to see who's blocking a username?
nope why would you want to?
__________________
EMAIL ==>[email protected] ==> #NOBIDEN2024
TRUMP 2024!!! | END DACA!!!! | HCR2060 <= ILLEGAL ALIENS!!!!...👮
=> TRUMPS PAYDAY!!!!... - Support The Laken Riley Act!!! - Trump Nobel Prize...
brassmonkey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-15-2016, 04:25 AM   #80
nico-t
emperor of my world
 
Join Date: Aug 2004
Location: nethalands
Posts: 29,904
Quote:
Originally Posted by brassmonkey View Post
nope why would you want to?
How is your special day so far? Have you cut the cake yet? I wish i was there to sing along your celebration songs like 'murder was the case', 'murder ink' and 'there's been a murder'.

Could you post pics of you party crashing the wakes of the victims? Thanks!
nico-t is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 02-19-2017, 02:34 PM   #81
Bladewire
StraightBro
 
Bladewire's Avatar
 
Industry Role:
Join Date: Aug 2003
Location: Monarch Beach, CA USA
Posts: 56,232
Quote:
Originally Posted by brassmonkey View Post
New Users Added!! Get it now!
__________________


Skype: CallTomNow

Bladewire is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 02-19-2017, 04:39 PM   #82
j3rkules
VIP
 
j3rkules's Avatar
 
Industry Role:
Join Date: Jul 2013
Posts: 22,104
You are so generous, thanks for sharing dude.
j3rkules is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 02-19-2017, 04:42 PM   #83
nico-t
emperor of my world
 
Join Date: Aug 2004
Location: nethalands
Posts: 29,904
retard monkey
nico-t is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 02-19-2017, 05:59 PM   #84
brassmonkey
Pay It Forward
 
brassmonkey's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Yo Mama House
Posts: 75,267
Quote:
Originally Posted by Grapesoda View Post
awesome fucking film!!!!! check it out
yeah it was very good! wish they made an english version enjoy the blocked users! very good code!
__________________
EMAIL ==>[email protected] ==> #NOBIDEN2024
TRUMP 2024!!! | END DACA!!!! | HCR2060 <= ILLEGAL ALIENS!!!!...👮
=> TRUMPS PAYDAY!!!!... - Support The Laken Riley Act!!! - Trump Nobel Prize...
brassmonkey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 02-19-2017, 07:28 PM   #85
omgcharlotte
Registered User
 
omgcharlotte's Avatar
 
Industry Role:
Join Date: Feb 2017
Posts: 17
I should be added to the script. I haven't contributed anything to society since I graduated college other than the two trolls I birthed in the '90s... and the Fuckers been trolling me since 1991. Anyone with the ability to give birth is the Ultimate Troll.
__________________
My DMs look like an MFC chatroom during a fuck machine show.
omgcharlotte is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 02-27-2017, 02:14 PM   #86
brassmonkey
Pay It Forward
 
brassmonkey's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Yo Mama House
Posts: 75,267
Quote:
Originally Posted by omgcharlotte View Post
I should be added to the script. I haven't contributed anything to society since I graduated college other than the two trolls I birthed in the '90s... and the Fuckers been trolling me since 1991. Anyone with the ability to give birth is the Ultimate Troll.
damn you are easy on the eyes! no fuking way!
__________________
EMAIL ==>[email protected] ==> #NOBIDEN2024
TRUMP 2024!!! | END DACA!!!! | HCR2060 <= ILLEGAL ALIENS!!!!...👮
=> TRUMPS PAYDAY!!!!... - Support The Laken Riley Act!!! - Trump Nobel Prize...
brassmonkey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 02-27-2017, 06:24 PM   #87
nico-t
emperor of my world
 
Join Date: Aug 2004
Location: nethalands
Posts: 29,904
Quote:
Originally Posted by nico-t View Post
retard monkey
quoted for truth
nico-t is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 02-27-2017, 07:57 PM   #88
Horatio Caine
full-time aspiring rapper
 
Industry Role:
Join Date: Aug 2012
Location: Compton, CA
Posts: 5,746
Horatio Caine is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-09-2017, 01:35 PM   #89
brassmonkey
Pay It Forward
 
brassmonkey's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Yo Mama House
Posts: 75,267
god install it now
__________________
EMAIL ==>[email protected] ==> #NOBIDEN2024
TRUMP 2024!!! | END DACA!!!! | HCR2060 <= ILLEGAL ALIENS!!!!...👮
=> TRUMPS PAYDAY!!!!... - Support The Laken Riley Act!!! - Trump Nobel Prize...
brassmonkey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-16-2017, 09:02 AM   #90
blackmonsters
Yo Mamma!
 
blackmonsters's Avatar
 
Industry Role:
Join Date: Nov 2002
Location: 🌎🌅🌈🌇
Posts: 19,877
__________________
Camsoda pays :
Become a Cam Model or Sign up as a Webmaster
blackmonsters is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 05-04-2017, 05:58 PM   #91
brassmonkey
Pay It Forward
 
brassmonkey's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Yo Mama House
Posts: 75,267
__________________
EMAIL ==>[email protected] ==> #NOBIDEN2024
TRUMP 2024!!! | END DACA!!!! | HCR2060 <= ILLEGAL ALIENS!!!!...👮
=> TRUMPS PAYDAY!!!!... - Support The Laken Riley Act!!! - Trump Nobel Prize...
brassmonkey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 02-16-2018, 01:00 PM   #92
Bladewire
StraightBro
 
Bladewire's Avatar
 
Industry Role:
Join Date: Aug 2003
Location: Monarch Beach, CA USA
Posts: 56,232
Bump for those wanting to wipe the Russian fake nics from your screen
Bladewire is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-05-2019, 07:46 PM   #93
american pervert
Confirmed User
 
american pervert's Avatar
 
Join Date: Sep 2002
Location: Los Angeles
Posts: 6,808
yeah!!! thanks!
__________________
I can resist everything except temptation
american pervert is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-05-2019, 08:10 PM   #94
Mr Pheer
So Fucking Banned
 
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 17,994
Quote:
Originally Posted by american pervert View Post
yeah!!! thanks!
Use the original code in my sig, beware of counterfeit code from fake nicks
Mr Pheer is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-05-2019, 08:21 PM   #95
american pervert
Confirmed User
 
american pervert's Avatar
 
Join Date: Sep 2002
Location: Los Angeles
Posts: 6,808
Quote:
Originally Posted by Mr Pheer View Post
Use the original code in my sig, beware of counterfeit code from fake nicks
done! thx!
__________________
I can resist everything except temptation
american pervert is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-06-2019, 06:25 AM   #96
2MuchMark
Videochat Solutions
 
2MuchMark's Avatar
 
Industry Role:
Join Date: Aug 2004
Location: Canada
Posts: 45,489
Add me add me!
__________________

VideoChat Solutions | Custom Software | IT Support
https://www.2much.net | https://www.lcntech.com
2MuchMark is online now   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-06-2019, 11:03 AM   #97
ghjghj
So Fucking Banned
 
Join Date: Jun 2005
Posts: 3,770
Quote:
Originally Posted by Horatio Caine View Post
ghjghj is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks

Tags
var, hide_user, post_author, hide_index, quotes, $hide_users.eachfunction, ===, this.text;, $this;, post_index, @include, $#threadslist, post_value, post_block.remove;, thread_starter, firefox, ignore, chrome, posts, //removes, post_block, $a.bigusername, thread_block.html, thread_value, thread_index
Thread Tools



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.