I'm Here to do Business Not for Political & Racial Topics

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • RyuLion
    • Mar 2003
    • 32369

    #1

    Rant I'm Here to do Business Not for Political & Racial Topics

    What's the script so I can completely block those user's threads, I don't even wanna see their threads but they're are still visible even when I block them.

    Adult Biz Consultant A tech head since 1995
    Affiliate Support: Chaturbate | CCBill Live
  • Rochard
    Jägermeister Test Pilot
    • Dec 2001
    • 75733

    #2
    You are just here to look at woman's rear ends...
    Herschel Savage
    Brooklyn, NY

    Comment

    • Bladewire
      StraightBro
      • Aug 2003
      • 56228

      #3
      troll special!!


      Skype: CallTomNow

      Comment

      • ilnjscb
        Confirmed User
        • Jun 2009
        • 8974

        #4
        You are awesome!

        Comment

        • incredibleworkethic
          Confirmed User
          • Sep 2009
          • 2302

          #5
          No I get it. I wish there was a politics section. But I've learned to just pick it apart.

          Comment

          • RyuLion
            • Mar 2003
            • 32369

            #6
            Script please? I think Mr Peer posted it once..

            Adult Biz Consultant A tech head since 1995
            Affiliate Support: Chaturbate | CCBill Live

            Comment

            • dyna mo
              just a fucking jerk
              • Dec 2008
              • 68184

              #7
              Gfy is a tough playground.

              Comment

              • brassmonkey
                Pay It Forward
                • Sep 2005
                • 77397

                #8
                Originally posted by RyuLion
                Script please? I think Mr Peer posted it once..
                i posted a version that has most of the a holes on the list. blade posted a link duh!
                TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
                DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.com

                Comment

                • J. Falcon
                  www.AdultCopywriters.com
                  • May 2006
                  • 31645

                  #9
                  Fuck Trump!
                  Adult Copywriters



                  SEO Content for Porn Sites
                  sales at adultcopywriters dot com

                  Comment

                  • RyuLion
                    • Mar 2003
                    • 32369

                    #10
                    I found it but it's not up right now. Anyone else have it?
                    is busy doing shit you're not.

                    Adult Biz Consultant A tech head since 1995
                    Affiliate Support: Chaturbate | CCBill Live

                    Comment

                    • MrMaxwell
                      Too lazy to set a custom title
                      • Jul 2005
                      • 10057

                      #11
                      Good post

                      Comment

                      • TheSquealer
                        Mayor of Thneedville
                        • Oct 2004
                        • 26181

                        #12
                        good fucking luck. this place is an unreadable cesspool of stupidity.
                        .
                        Yes, fewer illegal immigrants working equates to more job opportunities for American citizens.

                        Rochard

                        Comment

                        • dyna mo
                          just a fucking jerk
                          • Dec 2008
                          • 68184

                          #13
                          Originally posted by RyuLion
                          is busy doing shit you're not.


                          you have absolutely no idea baller.

                          Comment

                          • Look Chang
                            Voyeur
                            • Sep 2010
                            • 18262

                            #14
                            Originally posted by Rochard
                            You are just here to look at woman's rear ends...
                            and front holes ...

                            Comment

                            • blackmonsters
                              Making PHP work
                              • Nov 2002
                              • 20984

                              #15
                              Originally posted by RyuLion
                              What's the script so I can completely block those user's threads, I don't even wanna see their threads but they're are still visible even when I block them.
                              This is the browser extension to install : https://tampermonkey.net/


                              This is the script to put into tampermonkey :


                              PHP 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 = [
                                  'Juicy D. Links',
                                  'mineistaken',
                                  'TheSquealer',
                                  '420',
                                  '#23',
                                  'Brian837',
                                  'desertfoxx',
                                  'xXXtesy10',
                                  'L-Pink',
                                  'escorpio',
                                  'Sid70',
                                  'Horatio Caine',
                                  'CjTheFish',
                                  'nico-t',
                                  'Relic',
                                  'Smack dat',
                                  'Grapesoda',
                                  'Matt 26z',
                                  'Nitzer Ebb',
                                  'wehateporn',
                                  'Google Expert',
                                  'Joshua G',
                                  'Smut-Talk',
                                  'MrMaxwell',
                                  'onwebcam',
                                  'OneHungLo',
                                  'Just Alex',
                                  'GFED',
                                  'BobJones123',
                                  'Boozer',
                                  'MFCT',
                                  'Scott McD',
                                  'Drax',
                                  'DraX',
                                  'JohnnyNight',
                                  'Juicifer',
                                  'Steve Rupe',
                                  'oppoten',
                                  'Matt-ADX',
                                  'xKingx',
                                  'Acepimp',
                                  'hottoddy',
                                  'ianmoone332000',
                                  'ghjghj',
                                  'Ernie D. Links',
                                  'Bladewire',
                                  'SilentKnight',
                                  'DBS.US',
                                  'SIK',
                                  '8pt-buck',
                                  '$5 submissions',
                                  '2MuchMark',
                                  'Busty2'
                              ];
                               
                              $(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>&#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
                               
                                  }); //end of nested forloops for checking both posts and quotes.
                              }); 
                              
                              Your neighbor will murder you with frogs
                              Click here

                              Comment

                              • adultchatpay
                                Let's Make Money
                                • Dec 2008
                                • 8785

                                #16
                                Originally posted by blackmonsters
                                This is the browser extension to install : https://tampermonkey.net/


                                This is the script to put into tampermonkey :


                                PHP 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 = [
                                    'Juicy D. Links',
                                    'mineistaken',
                                    'TheSquealer',
                                    '420',
                                    '#23',
                                    'Brian837',
                                    'desertfoxx',
                                    'xXXtesy10',
                                    'L-Pink',
                                    'escorpio',
                                    'Sid70',
                                    'Horatio Caine',
                                    'CjTheFish',
                                    'nico-t',
                                    'Relic',
                                    'Smack dat',
                                    'Grapesoda',
                                    'Matt 26z',
                                    'Nitzer Ebb',
                                    'wehateporn',
                                    'Google Expert',
                                    'Joshua G',
                                    'Smut-Talk',
                                    'MrMaxwell',
                                    'onwebcam',
                                    'OneHungLo',
                                    'Just Alex',
                                    'GFED',
                                    'BobJones123',
                                    'Boozer',
                                    'MFCT',
                                    'Scott McD',
                                    'Drax',
                                    'DraX',
                                    'JohnnyNight',
                                    'Juicifer',
                                    'Steve Rupe',
                                    'oppoten',
                                    'Matt-ADX',
                                    'xKingx',
                                    'Acepimp',
                                    'hottoddy',
                                    'ianmoone332000',
                                    'ghjghj',
                                    'Ernie D. Links',
                                    'Bladewire',
                                    'SilentKnight',
                                    'DBS.US',
                                    'SIK',
                                    '8pt-buck',
                                    '$5 submissions',
                                    '2MuchMark',
                                    'Busty2'
                                ];
                                 
                                $(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>&#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
                                 
                                    }); //end of nested forloops for checking both posts and quotes.
                                }); 
                                

                                Comment

                                • Bladewire
                                  StraightBro
                                  • Aug 2003
                                  • 56228

                                  #17
                                  Originally posted by RyuLion
                                  Script please? I think Mr Peer posted it once..
                                  I already posted it you fucking idiot. You are welcome!

                                  Originally posted by Bladewire


                                  Skype: CallTomNow

                                  Comment

                                  • RyuLion
                                    • Mar 2003
                                    • 32369

                                    #18
                                    Originally posted by blackmonsters
                                    This is the browser extension to install : https://tampermonkey.net/


                                    This is the script to put into tampermonkey :


                                    PHP 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 = [
                                        'Juicy D. Links',
                                        'mineistaken',
                                        'TheSquealer',
                                        '420',
                                        '#23',
                                        'Brian837',
                                        'desertfoxx',
                                        'xXXtesy10',
                                        'L-Pink',
                                        'escorpio',
                                        'Sid70',
                                        'Horatio Caine',
                                        'CjTheFish',
                                        'nico-t',
                                        'Relic',
                                        'Smack dat',
                                        'Grapesoda',
                                        'Matt 26z',
                                        'Nitzer Ebb',
                                        'wehateporn',
                                        'Google Expert',
                                        'Joshua G',
                                        'Smut-Talk',
                                        'MrMaxwell',
                                        'onwebcam',
                                        'OneHungLo',
                                        'Just Alex',
                                        'GFED',
                                        'BobJones123',
                                        'Boozer',
                                        'MFCT',
                                        'Scott McD',
                                        'Drax',
                                        'DraX',
                                        'JohnnyNight',
                                        'Juicifer',
                                        'Steve Rupe',
                                        'oppoten',
                                        'Matt-ADX',
                                        'xKingx',
                                        'Acepimp',
                                        'hottoddy',
                                        'ianmoone332000',
                                        'ghjghj',
                                        'Ernie D. Links',
                                        'Bladewire',
                                        'SilentKnight',
                                        'DBS.US',
                                        'SIK',
                                        '8pt-buck',
                                        '$5 submissions',
                                        '2MuchMark',
                                        'Busty2'
                                    ];
                                     
                                    $(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>&#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
                                     
                                        }); //end of nested forloops for checking both posts and quotes.
                                    }); 
                                    
                                    Thank you Sir.

                                    FYI: This guy is proficient in PHP, I recommend him.

                                    It's either do this or give up on GFY, and just post on the other boards since I STILL have plans for the long haul!

                                    Adult Biz Consultant A tech head since 1995
                                    Affiliate Support: Chaturbate | CCBill Live

                                    Comment

                                    • MFCT
                                      Confirmed User
                                      • Jan 2015
                                      • 1489

                                      #19
                                      Yes, if you're so fragile and delicately balanced that you need to Nerf your reality, by all means use the script.

                                      But if you want serious business talk, you're in the wrong section of the forum. This is the "any kind of BS goes" section. What you're wanting is the "Webmaster Q & Fuckin A" section. Linked here for your convenience: https://gfy.com/webmaster-q-and-fuckin-a/
                                      Keeping you abreast of the teens that get undressed.
                                      Girls By Location - Couples By Location - Guys By Location - Trans By Location

                                      Comment

                                      • Mr Pheer
                                        So Fucking Banned
                                        • Dec 2002
                                        • 22083

                                        #20
                                        Sorry mine got taken down during a server move. I can repost it but looks like you're found a solution.

                                        Comment

                                        • brassmonkey
                                          Pay It Forward
                                          • Sep 2005
                                          • 77397

                                          #21
                                          Originally posted by Bladewire
                                          I already posted it you fucking idiot. You are welcome!
                                          he's mad i gave up on ignore. most of the trolls moved on. the fucking around has not been biz fill in over 5 years! stop cryin op!
                                          TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
                                          DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.com

                                          Comment

                                          • RyuLion
                                            • Mar 2003
                                            • 32369

                                            #22
                                            Originally posted by Mr Pheer
                                            Sorry mine got taken down during a server move. I can repost it but looks like you're found a solution.
                                            Thank you Sir.

                                            Adult Biz Consultant A tech head since 1995
                                            Affiliate Support: Chaturbate | CCBill Live

                                            Comment

                                            • RyuLion
                                              • Mar 2003
                                              • 32369

                                              #23
                                              I knew this was gonna be a double edge sword but this is a serious post.
                                              I still don't wanna give up on GFY and go somewhere else.

                                              Adult Biz Consultant A tech head since 1995
                                              Affiliate Support: Chaturbate | CCBill Live

                                              Comment

                                              • RyuLion
                                                • Mar 2003
                                                • 32369

                                                #24
                                                Up ^^^^^^^^^^^^

                                                Adult Biz Consultant A tech head since 1995
                                                Affiliate Support: Chaturbate | CCBill Live

                                                Comment

                                                • Bladewire
                                                  StraightBro
                                                  • Aug 2003
                                                  • 56228

                                                  #25
                                                  Originally posted by MFCT
                                                  Yes, if you're so fragile and delicately balanced that you need to Nerf your reality, by all means use the script.

                                                  But if you want serious business talk, you're in the wrong section of the forum. This is the "any kind of BS goes" section. What you're wanting is the "Webmaster Q & Fuckin A" section. Linked here for your convenience: https://gfy.com/webmaster-q-and-fuckin-a/
                                                  He's just trolling


                                                  Skype: CallTomNow

                                                  Comment

                                                  • Speigelau
                                                    Confirmed User
                                                    • Jul 2007
                                                    • 3032

                                                    #26
                                                    Originally posted by RyuLion
                                                    What's the script so I can completely block those user's threads, I don't even wanna see their threads but they're are still visible even when I block them.
                                                    All political posts will stop as soon as you can guarantee we never have to see you biting some random chick's ass.

                                                    Comment

                                                    • MFCT
                                                      Confirmed User
                                                      • Jan 2015
                                                      • 1489

                                                      #27
                                                      Originally posted by Bladewire
                                                      He's just trolling
                                                      I don't think RyuLion is trolling. I felt that exactly the same disappointment when I first joined GFY. But that was before I understood how it worked.
                                                      Keeping you abreast of the teens that get undressed.
                                                      Girls By Location - Couples By Location - Guys By Location - Trans By Location

                                                      Comment

                                                      • brassmonkey
                                                        Pay It Forward
                                                        • Sep 2005
                                                        • 77397

                                                        #28
                                                        Originally posted by MFCT
                                                        I don't think RyuLion is trolling. I felt that exactly the same disappointment when I first joined GFY. But that was before I understood how it worked.
                                                        if you need a filter to do biz start looking at vans and vacant homes
                                                        TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
                                                        DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.com

                                                        Comment

                                                        • MFCT
                                                          Confirmed User
                                                          • Jan 2015
                                                          • 1489

                                                          #29
                                                          Originally posted by brassmonkey
                                                          if you need a filter to do biz start looking at vans and vacant homes
                                                          Well-said.
                                                          Keeping you abreast of the teens that get undressed.
                                                          Girls By Location - Couples By Location - Guys By Location - Trans By Location

                                                          Comment

                                                          • 2MuchMark
                                                            Mark of 2Much.net
                                                            • Aug 2004
                                                            • 50991

                                                            #30
                                                            Originally posted by blackmonsters
                                                            This is the browser extension to install : https://tampermonkey.net/


                                                            This is the script to put into tampermonkey :


                                                            PHP 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 = [
                                                                'Juicy D. Links',
                                                                'mineistaken',
                                                                'TheSquealer',
                                                                '420',
                                                                '#23',
                                                                'Brian837',
                                                                'desertfoxx',
                                                                'xXXtesy10',
                                                                'L-Pink',
                                                                'escorpio',
                                                                'Sid70',
                                                                'Horatio Caine',
                                                                'CjTheFish',
                                                                'nico-t',
                                                                'Relic',
                                                                'Smack dat',
                                                                'Grapesoda',
                                                                'Matt 26z',
                                                                'Nitzer Ebb',
                                                                'wehateporn',
                                                                'Google Expert',
                                                                'Joshua G',
                                                                'Smut-Talk',
                                                                'MrMaxwell',
                                                                'onwebcam',
                                                                'OneHungLo',
                                                                'Just Alex',
                                                                'GFED',
                                                                'BobJones123',
                                                                'Boozer',
                                                                'MFCT',
                                                                'Scott McD',
                                                                'Drax',
                                                                'DraX',
                                                                'JohnnyNight',
                                                                'Juicifer',
                                                                'Steve Rupe',
                                                                'oppoten',
                                                                'Matt-ADX',
                                                                'xKingx',
                                                                'Acepimp',
                                                                'hottoddy',
                                                                'ianmoone332000',
                                                                'ghjghj',
                                                                'Ernie D. Links',
                                                                'Bladewire',
                                                                'SilentKnight',
                                                                'DBS.US',
                                                                'SIK',
                                                                '8pt-buck',
                                                                '$5 submissions',
                                                                '2MuchMark',
                                                                'Busty2'
                                                            ];
                                                             
                                                            $(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>&#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
                                                             
                                                                }); //end of nested forloops for checking both posts and quotes.
                                                            }); 
                                                            

                                                            Thank you for thinking of me!

                                                            Comment

                                                            • astronaut x
                                                              Too lazy to set a custom title
                                                              • May 2011
                                                              • 4844

                                                              #31
                                                              Originally posted by 2MuchMark
                                                              Thank you for thinking of me!
                                                              How did you end up on that list? For the most part I think they got it right, but there are a couple other names I would remove it as well.
                                                              Hello

                                                              Comment

                                                              • astronaut x
                                                                Too lazy to set a custom title
                                                                • May 2011
                                                                • 4844

                                                                #32
                                                                I am starting to think the OP is a strange bird...again.
                                                                Hello

                                                                Comment

                                                                • ghjghj
                                                                  So Fucking Banned
                                                                  • Jun 2005
                                                                  • 3770

                                                                  #33
                                                                  Originally posted by blackmonsters
                                                                  This is the browser extension to install : https://tampermonkey.net/


                                                                  This is the script to put into tampermonkey :


                                                                  PHP 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 = [
                                                                      'Juicy D. Links',
                                                                      'mineistaken',
                                                                      'TheSquealer',
                                                                      '420',
                                                                      '#23',
                                                                      'Brian837',
                                                                      'desertfoxx',
                                                                      'xXXtesy10',
                                                                      'L-Pink',
                                                                      'escorpio',
                                                                      'Sid70',
                                                                      'Horatio Caine',
                                                                      'CjTheFish',
                                                                      'nico-t',
                                                                      'Relic',
                                                                      'Smack dat',
                                                                      'Grapesoda',
                                                                      'Matt 26z',
                                                                      'Nitzer Ebb',
                                                                      'wehateporn',
                                                                      'Google Expert',
                                                                      'Joshua G',
                                                                      'Smut-Talk',
                                                                      'MrMaxwell',
                                                                      'onwebcam',
                                                                      'OneHungLo',
                                                                      'Just Alex',
                                                                      'GFED',
                                                                      'BobJones123',
                                                                      'Boozer',
                                                                      'MFCT',
                                                                      'Scott McD',
                                                                      'Drax',
                                                                      'DraX',
                                                                      'JohnnyNight',
                                                                      'Juicifer',
                                                                      'Steve Rupe',
                                                                      'oppoten',
                                                                      'Matt-ADX',
                                                                      'xKingx',
                                                                      'Acepimp',
                                                                      'hottoddy',
                                                                      'ianmoone332000',
                                                                      'ghjghj',
                                                                      'Ernie D. Links',
                                                                      'Bladewire',
                                                                      'SilentKnight',
                                                                      'DBS.US',
                                                                      'SIK',
                                                                      '8pt-buck',
                                                                      '$5 submissions',
                                                                      '2MuchMark',
                                                                      'Busty2'
                                                                  ];
                                                                   
                                                                  $(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>&#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
                                                                   
                                                                      }); //end of nested forloops for checking both posts and quotes.
                                                                  }); 
                                                                  
                                                                  Nice safe space faggot

                                                                  Comment

                                                                  • brassmonkey
                                                                    Pay It Forward
                                                                    • Sep 2005
                                                                    • 77397

                                                                    #34
                                                                    you crack me up negro i needed that this mornin thanx dogg


                                                                    Originally posted by blackmonsters
                                                                    This is the browser extension to install : https://tampermonkey.net/


                                                                    This is the script to put into tampermonkey :


                                                                    PHP 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 = [
                                                                        'Juicy D. Links',
                                                                        'mineistaken',
                                                                        'TheSquealer',
                                                                        '420',
                                                                        '#23',
                                                                        'Brian837',
                                                                        'desertfoxx',
                                                                        'xXXtesy10',
                                                                        'L-Pink',
                                                                        'escorpio',
                                                                        'Sid70',
                                                                        'Horatio Caine',
                                                                        'CjTheFish',
                                                                        'nico-t',
                                                                        'Relic',
                                                                        'Smack dat',
                                                                        'Grapesoda',
                                                                        'Matt 26z',
                                                                        'Nitzer Ebb',
                                                                        'wehateporn',
                                                                        'Google Expert',
                                                                        'Joshua G',
                                                                        'Smut-Talk',
                                                                        'MrMaxwell',
                                                                        'onwebcam',
                                                                        'OneHungLo',
                                                                        'Just Alex',
                                                                        'GFED',
                                                                        'BobJones123',
                                                                        'Boozer',
                                                                        'MFCT',
                                                                        'Scott McD',
                                                                        'Drax',
                                                                        'DraX',
                                                                        'JohnnyNight',
                                                                        'Juicifer',
                                                                        'Steve Rupe',
                                                                        'oppoten',
                                                                        'Matt-ADX',
                                                                        'xKingx',
                                                                        'Acepimp',
                                                                        'hottoddy',
                                                                        'ianmoone332000',
                                                                        'ghjghj',
                                                                        'Ernie D. Links',
                                                                        'Bladewire',
                                                                        'SilentKnight',
                                                                        'DBS.US',
                                                                        'SIK',
                                                                        '8pt-buck',
                                                                        '$5 submissions',
                                                                        '2MuchMark',
                                                                        'Busty2'
                                                                    ];
                                                                     
                                                                    $(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>&#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
                                                                     
                                                                        }); //end of nested forloops for checking both posts and quotes.
                                                                    }); 
                                                                    
                                                                    TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
                                                                    DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.com

                                                                    Comment

                                                                    • blackmonsters
                                                                      Making PHP work
                                                                      • Nov 2002
                                                                      • 20984

                                                                      #35
                                                                      Originally posted by brassmonkey
                                                                      you crack me up negro i needed that this mornin thanx dogg
                                                                      Haters gonna hate.

                                                                      Your neighbor will murder you with frogs
                                                                      Click here

                                                                      Comment

                                                                      • blackmonsters
                                                                        Making PHP work
                                                                        • Nov 2002
                                                                        • 20984

                                                                        #36
                                                                        Originally posted by 2MuchMark
                                                                        Thank you for thinking of me!
                                                                        I think you are on the list for making too many threads one day.
                                                                        I don't really remember.
                                                                        Your neighbor will murder you with frogs
                                                                        Click here

                                                                        Comment

                                                                        • CaptainHowdy
                                                                          Too lazy to set a custom title
                                                                          • Dec 2004
                                                                          • 94744

                                                                          #37
                                                                          We already knew that, Ryu . . .

                                                                          Comment

                                                                          • DraX
                                                                            Confirmed User
                                                                            • Oct 2002
                                                                            • 7147

                                                                            #38
                                                                            Originally posted by brassmonkey
                                                                            if you need a filter to do biz start looking at vans and vacant homes
                                                                            Deposit Today With BTC - Play With Bitcoins

                                                                            Comment

                                                                            • NatalieMojoHost
                                                                              Confirmed User
                                                                              • Aug 2013
                                                                              • 1479

                                                                              #39
                                                                              Originally posted by Speigelau
                                                                              All political posts will stop as soon as you can guarantee we never have to see you biting some random chick's ass.
                                                                              I wish it was that easy. I'm sure Alex would sacrifice his public butt-biting for the good of GFY if this was the requirement.

                                                                              MojoHost.COM | natalie at mojohost dot com | Skype natalie.ac | Telegram @znatalie. Since 1999: 70 Adult Industry awards for Best Hosting Company and professional excellence.

                                                                              Comment

                                                                              • dyna mo
                                                                                just a fucking jerk
                                                                                • Dec 2008
                                                                                • 68184

                                                                                #40
                                                                                to summarize:

                                                                                groping and biting women at professional business trade shows is good for op

                                                                                folks discussing politics at GFY is bad for op.

                                                                                not shocked.

                                                                                Comment

                                                                                • $5 submissions
                                                                                  I help you SUCCEED
                                                                                  • Nov 2003
                                                                                  • 32195

                                                                                  #41
                                                                                  LOL, how did I end up on your list? Thanks for the compliment, I guess.

                                                                                  Originally posted by blackmonsters
                                                                                  This is the browser extension to install : https://tampermonkey.net/


                                                                                  This is the script to put into tampermonkey :


                                                                                  PHP 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 = [
                                                                                      'Juicy D. Links',
                                                                                      'mineistaken',
                                                                                      'TheSquealer',
                                                                                      '420',
                                                                                      '#23',
                                                                                      'Brian837',
                                                                                      'desertfoxx',
                                                                                      'xXXtesy10',
                                                                                      'L-Pink',
                                                                                      'escorpio',
                                                                                      'Sid70',
                                                                                      'Horatio Caine',
                                                                                      'CjTheFish',
                                                                                      'nico-t',
                                                                                      'Relic',
                                                                                      'Smack dat',
                                                                                      'Grapesoda',
                                                                                      'Matt 26z',
                                                                                      'Nitzer Ebb',
                                                                                      'wehateporn',
                                                                                      'Google Expert',
                                                                                      'Joshua G',
                                                                                      'Smut-Talk',
                                                                                      'MrMaxwell',
                                                                                      'onwebcam',
                                                                                      'OneHungLo',
                                                                                      'Just Alex',
                                                                                      'GFED',
                                                                                      'BobJones123',
                                                                                      'Boozer',
                                                                                      'MFCT',
                                                                                      'Scott McD',
                                                                                      'Drax',
                                                                                      'DraX',
                                                                                      'JohnnyNight',
                                                                                      'Juicifer',
                                                                                      'Steve Rupe',
                                                                                      'oppoten',
                                                                                      'Matt-ADX',
                                                                                      'xKingx',
                                                                                      'Acepimp',
                                                                                      'hottoddy',
                                                                                      'ianmoone332000',
                                                                                      'ghjghj',
                                                                                      'Ernie D. Links',
                                                                                      'Bladewire',
                                                                                      'SilentKnight',
                                                                                      'DBS.US',
                                                                                      'SIK',
                                                                                      '8pt-buck',
                                                                                      '$5 submissions',
                                                                                      '2MuchMark',
                                                                                      'Busty2'
                                                                                  ];
                                                                                   
                                                                                  $(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>&#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
                                                                                   
                                                                                      }); //end of nested forloops for checking both posts and quotes.
                                                                                  }); 
                                                                                  

                                                                                  Comment

                                                                                  Working...