thanks dems...what a time to be alive

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Phoenix
    BACON BACON BACON
    • Nov 2002
    • 35475

    #1

    thanks dems...what a time to be alive

    Telegram PhoenixBrad
    https://quantads.io
  • 2MuchMark
    Mark of 2Much.net
    • Aug 2004
    • 50991

    #2
    LOL ok, thats a good one.

    Comment

    • blackmonsters
      Making PHP work
      • Nov 2002
      • 20984

      #3
      // ==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 = [
      'Phoenix'
      ];

      $(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

      • BaldBastard
        Too lazy to set a custom title
        • Jan 2001
        • 16817

        #4
        Originally posted by Phoenix
        Sorry hun you cant kill it you have to birth.. so BIG Push now..


        ..


        .
        .

        .
        .

        .
        .
        .
        .
        .

        .
        .
        .
        .
        .
        .


        Comment

        • seeandsee
          Check SIG!
          • Mar 2006
          • 50945

          #5
          Originally posted by Phoenix
          its not ok to kill it that late
          BUY MY SIG - 50$/Year

          Contact here

          Comment

          • RedFred
            Confirmed User
            • Feb 2016
            • 9782

            #6

            Comment

            • Matt 26z
              So Fucking Banned
              • Apr 2002
              • 18481

              #7
              Shitlibs trying to ride their anti-Trump wave as far as they can.

              Comment

              • Acepimp
                All Facts Matter
                • Jan 2012
                • 20316

                #8
                Originally posted by RedFred
                LOL You're so gullible, it's amazing

                Earn Recurring Money with ➜ Live Adult Webcams | CrakRevenue | Dream Cash

                Just Surfing? The Sexiest Models Are At >> CBCamgirls.com

                Chat with live Streamate Camgirls

                Comment

                • wehateporn
                  Promoting Debate on GFY
                  • Apr 2007
                  • 27176

                  #9
                  Unbelievable times we are living in

                  Comment

                  • wehateporn
                    Promoting Debate on GFY
                    • Apr 2007
                    • 27176

                    #10

                    Comment

                    • RedFred
                      Confirmed User
                      • Feb 2016
                      • 9782

                      #11
                      Originally posted by Acepimp
                      LOL You're so gullible, it's amazing


                      Why does a Russian troll want the US to have a border wall??

                      Comment

                      • Acepimp
                        All Facts Matter
                        • Jan 2012
                        • 20316

                        #12
                        Originally posted by RedFred
                        Why does a Russian troll want the US to have a border wall??
                        Why do you want massive crime & more burden on taxpayers? It's required by the constitution. All the top Democrats voted for at before.

                        Earn Recurring Money with ➜ Live Adult Webcams | CrakRevenue | Dream Cash

                        Just Surfing? The Sexiest Models Are At >> CBCamgirls.com

                        Chat with live Streamate Camgirls

                        Comment

                        • Phoenix
                          BACON BACON BACON
                          • Nov 2002
                          • 35475

                          #13
                          Originally posted by blackmonsters
                          // ==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 = [
                          'Phoenix'
                          ];

                          $(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.
                          });
                          hey thanks...never knew you were sucha fuckin tool
                          Telegram PhoenixBrad
                          https://quantads.io

                          Comment

                          • PR_Glen
                            Confirmed User
                            • Oct 2006
                            • 9058

                            #14
                            Originally posted by wehateporn
                            Unbelievable times we are living in
                            i'm pretty sure he was joking.. as it is a joke.

                            I know brittish don't understand how humour works but you should be able to at least figure it out.
                            webmaster at pimproll dot com

                            Comment

                            • blackmonsters
                              Making PHP work
                              • Nov 2002
                              • 20984

                              #15
                              Originally posted by Phoenix
                              hey thanks...never knew you were sucha fuckin tool
                              Yo mamma!

                              Your neighbor will murder you with frogs
                              Click here

                              Comment

                              • bronco67
                                Too lazy to set a custom title
                                • Dec 2006
                                • 29032

                                #16
                                Originally posted by Phoenix
                                Straw man much?

                                Comment

                                • wehateporn
                                  Promoting Debate on GFY
                                  • Apr 2007
                                  • 27176

                                  #17
                                  Originally posted by PR_Glen
                                  i'm pretty sure he was joking.. as it is a joke.

                                  I know brittish don't understand how humour works but you should be able to at least figure it out.
                                  If he was joking it would make little difference, a sick topic to joke about by a governor on radio, he has screwed up big time

                                  https://www.washingtonpost.com/opinions/ralph-northam-just-got-donald-trump-reelected/2019/01/31/aac0de36-257e-11e9-ad53-824486280311_story.html

                                  Comment

                                  • beerptrol
                                    Confirmed Asshole
                                    • Feb 2003
                                    • 12722

                                    #18
                                    What a time to be alive. We have a russian asset in the white house who has a cult following!
                                    “If we are to have another contest in the near future of our national existence, I predict that the dividing line will not be Mason and Dixon's but between patriotism and intelligence on the one side, and superstition, ambition and ignorance on the other.”
                                    -- Ulysses S. Grant

                                    Comment

                                    • wehateporn
                                      Promoting Debate on GFY
                                      • Apr 2007
                                      • 27176

                                      #19
                                      Hmmm... what a great ‘joker’

                                      https://www.rt.com/usa/450375-govern...arbook-racist/

                                      Comment

                                      • wehateporn
                                        Promoting Debate on GFY
                                        • Apr 2007
                                        • 27176

                                        #20
                                        Originally posted by beerptrol
                                        What a time to be alive. We have a russian asset in the white house who has a cult following!
                                        Seems a far better alternative than having President Hillary legalizing infanticide while initiating WW3

                                        Comment

                                        • MFCT
                                          Confirmed User
                                          • Jan 2015
                                          • 1489

                                          #21
                                          You're all wrong! Caterpillars are the only lives that are worth saving.



                                          Sanctity of Caterpillars: Virginia Legislator Who Pushed Infanticide Law Also Filed Bill To Save Bugs

                                          https://bigleaguepolitics.com/sancti...-to-save-bugs/
                                          Keeping you abreast of the teens that get undressed.
                                          Girls By Location - Couples By Location - Guys By Location - Trans By Location

                                          Comment

                                          • Natalie_K
                                            Confirmed User
                                            • Oct 2016
                                            • 217

                                            #22
                                            The state of New York prohibits the death penalty, but now allows abortions of unborn babies up until the day of their birth. That makes it so that while convicted murderers can’t receive a lethal injection, unborn babies can.

                                            Comment

                                            Working...