Use this to make GFY great again

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Mr Pheer
    So Fucking Banned
    • Dec 2002
    • 22083

    #51
    50 crying leftist cunts

    and 1 Snow Mexican.

    Comment

    • just a punk
      So fuckin' bored
      • Jun 2003
      • 32393

      #52
      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 = [
      'beerptrol', 'Mr Pheer', 'Paul Markham', 'Spunky', 'Bladewire', '2MuchMark', 'crockett', 'Rochard', 'Dead Eye', 'GspotProductions', 'crucifissio', 'blackmonsters', 'thommy', 'RedFred'
      ];
      
      $(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.
      });
      Obey the Cowgod

      Comment

      • Mr Pheer
        So Fucking Banned
        • Dec 2002
        • 22083

        #53
        ^^^ not official code update, but use if you want... Especially if you're a leftist

        Comment

        • JesseQuinn
          feeding the wolves
          • Aug 2012
          • 6631

          #54
          thank you, I didn't have your extension on the comp I use for fucking around/personal stuff. yes I can just scan over crap but it helps me keep my view of recent threads free of shit not worthy of space and saves me time when I take a break to read here.

          question though: it's on my bucket list to end up on someone's ignore list but I have yet to achieve this goal to the best of my knowledge. prithee kind sire, could you add me in to the default settings for the update? it would delight me greatly although I would still be standing on the shoulders of giants (RIP Relic and Coup)

          not sure why DE or Mark, Crus, GSpot Thommy BM are there and tbh wouldn't block any but one member on your list, but I like the self-editing feature for that

          gracias for your tremendous contribution to this space
          throwing molotav cocktails at the precinct

          Comment

          • AmeliaG
            Too lazy to set a custom title
            • Jan 2003
            • 10663

            #55
            Thanks! I mostly use PC/Android products, so I didn't know what the Safari equivalent of Greasemonkey was, but I use my iPad for forum browsing.
            GFY Hall of Famer

            AltStar Hall of Famer




            Blue Blood's SpookyCash.com

            Babe photography portfolio

            Comment

            • Mr Pheer
              So Fucking Banned
              • Dec 2002
              • 22083

              #56
              Originally posted by AmeliaG
              Thanks! I mostly use PC/Android products, so I didn't know what the Safari equivalent of Greasemonkey was, but I use my iPad for forum browsing.
              You know you can put Chrome and Firefox on your iPad, right?

              Comment

              • gorillaz_
                Confirmed User
                • Sep 2014
                • 361

                #57
                Originally posted by AmeliaG
                Thanks! I mostly use PC/Android products, so I didn't know what the Safari equivalent of Greasemonkey was, but I use my iPad for forum browsing.
                https://github.com/Tampermonkey/tampermonkey/issues/558
                https://safari-extensions.apple.com/...ari-G3XV72R5TC

                Comment

                • Mr Pheer
                  So Fucking Banned
                  • Dec 2002
                  • 22083

                  #58
                  Originally posted by JesseQuinn
                  thank you, I didn't have your extension on the comp I use for fucking around/personal stuff. yes I can just scan over crap but it helps me keep my view of recent threads free of shit not worthy of space and saves me time when I take a break to read here.

                  question though: it's on my bucket list to end up on someone's ignore list but I have yet to achieve this goal to the best of my knowledge. prithee kind sire, could you add me in to the default settings for the update? it would delight me greatly although I would still be standing on the shoulders of giants (RIP Relic and Coup)

                  not sure why DE or Mark, Crus, GSpot Thommy BM are there and tbh wouldn't block any but one member on your list, but I like the self-editing feature for that

                  gracias for your tremendous contribution to this space
                  That's a very strange request, but ok.

                  Code updated.

                  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 = [
                  'beerptrol', 'JesseQuinn', 'Paul Markham', 'Spunky', 'Bladewire', '2MuchMark', 'crockett', 'Rochard', 'Dead Eye', 'GspotProductions', 'crucifissio', 'blackmonsters', 'thommy', 'RedFred'
                  ];
                  
                  $(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

                  • babeterminal
                    Confirmed User
                    • Jul 2010
                    • 2751

                    #59
                    we should build a forumwall for the russians
                    *SIG SPOT SEND MESSAGE IF INTERESTED*

                    Comment

                    • Mr Pheer
                      So Fucking Banned
                      • Dec 2002
                      • 22083

                      #60
                      Originally posted by babeterminal
                      we should build a forumwall for the russians
                      And 1 Serb

                      And that Snow Mexican.

                      Comment

                      • baddog
                        So Fucking Banned
                        • Apr 2001
                        • 107089

                        #61
                        Can you block Russian IP blocks?

                        Comment

                        • Mr Pheer
                          So Fucking Banned
                          • Dec 2002
                          • 22083

                          #62
                          Originally posted by baddog
                          Can you block Russian IP blocks?
                          No, that would require IP lookups.

                          Would require being done at the server level.

                          Comment

                          • NatalieK
                            Natalie K
                            • Apr 2010
                            • 20123

                            #63
                            Originally posted by Acepimp
                            Nice script! The main problem is that it also removes the fun that comes from destroying these brainwashed fools with the facts. Like this for example:



                            even MrQeer uses enough brain to know Trump´s an idiot! That is what you´re posting about, aren´t you Acepimp?

                            you´ve just stated you find it fun trolling BS and chatting politics! It´s you that´s destroying this forum with all your Trump shit, he´s a retard!
                            My official site / Custom vids / Make money links / First time girls
                            Email: [email protected] - "Converting traffic into income since 2005"

                            Comment

                            • NatalieK
                              Natalie K
                              • Apr 2010
                              • 20123

                              #64
                              Originally posted by Mr Pheer
                              THAT's why you got added! I'll be reading a thread and then suddenly there you are with those... those "pics" and I'm throwing up into my own fucking mouth. Fuck why should someone be forced to see that?!
                              this above just shows how stupid you really are....

                              I`ve 3 points to be made...

                              first, why would my reviews be higher than any other pornstar on places like rabbits & other top review sites if i´m going to make people throw up, seems like you´re being a twat or, bringing me to the second point, you must be gay or something?


                              I´ve natural tits, a fantastic arse and give an amazing fuck and blowjob, you´re either gay or stupid...

                              and for a third point...

                              making you stupid and not gay, You answered my post, even though you had me on silent and yet I wasn´t posting to you...

                              that´s how pathetic you are!

                              Personally, if you just scroll past my pics, it would be easier for you, then we wouldn´t have been having this conversation & you wouldn´t be making me feel like throwing up, having to speak to an aggravating wanker like your awful self is
                              My official site / Custom vids / Make money links / First time girls
                              Email: [email protected] - "Converting traffic into income since 2005"

                              Comment

                              • NatalieK
                                Natalie K
                                • Apr 2010
                                • 20123

                                #65
                                Originally posted by Mr Pheer
                                That's a very strange request, but ok.

                                starting my own forum as I disrupt most people here...


                                Yes McQeer, take your pikey friends that are not on the list, go start your own forum, this would make GFY a better place
                                My official site / Custom vids / Make money links / First time girls
                                Email: [email protected] - "Converting traffic into income since 2005"

                                Comment

                                • just a punk
                                  So fuckin' bored
                                  • Jun 2003
                                  • 32393

                                  #66
                                  Originally posted by baddog
                                  Can you block Russian IP blocks?
                                  And what benefit you are expecting to achieve? We all use VPN. Personally I do it because the admin areas of all my web resources are protected by fixed IP. For example, according to my IP, I'm located here: 111 West El Camino Real, STE 109-150, Sunnyvale, CA, 94087
                                  Obey the Cowgod

                                  Comment

                                  • Bladewire
                                    StraightBro
                                    • Aug 2003
                                    • 56228

                                    #67
                                    Originally posted by GspotProductions
                                    Yes McQeer, take your pikey friends that are not on the list, go start your own forum, this would make GFY a better place


                                    Skype: CallTomNow

                                    Comment

                                    • JesseQuinn
                                      feeding the wolves
                                      • Aug 2012
                                      • 6631

                                      #68
                                      Originally posted by Mr Pheer
                                      That's a very strange request, but ok
                                      thank you, much obliged!

                                      to explain, I don't think the request is strange, I just feel left out that I'm not provoking (of thought) enough to be block-worthy. Maybe someone somewhere has me blocked but I don't think so :/

                                      so instead of spamming the boards with reggaeton (music should never be used for ill purpose) to acheive my goal I'm taking the American way with a shortcut to success

                                      but yeah, Sarettah aka the second nicest person on the planet (my friend Errol takes the number one spot, he's like a rabbit he's so nice to everyone) and the number one smartest gets on an ignore list and I can't?

                                      fuckery, this will not do (call the schoolmaster)

                                      two things reading the recent posts above this one:

                                      1) Nat is one of the few peeps here who is personable and still all about her money and open about it. yeah she posts her pics and links and info about her biz, that's called doing business. Long may she reign

                                      even if I didn't like her stuff I'd prefer that to endless angry bleating of two legs bad/better any day

                                      2) when did 'queer' become an insult again?

                                      anyways, gracias again. for the add and the extension as well

                                      throwing molotav cocktails at the precinct

                                      Comment

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

                                        #69
                                        Originally posted by Bladewire
                                        ↑↑↑ Fagdog posting drunk again



                                        Comment

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

                                          #70
                                          Lol. Mr. Spheer goes out of his way to un invited himself from the party, instead of just walk out of the party. Oh well. Hey spheer, you're always welcome back if you ever change your mind.

                                          Comment

                                          • Mr Pheer
                                            So Fucking Banned
                                            • Dec 2002
                                            • 22083

                                            #71
                                            Originally posted by GspotProductions
                                            I´ve natural tits, a fantastic arse and give an amazing fuck and blowjob, you´re either gay or stupid...
                                            LoL so someone isn't attracted to you that makes them gay. Someone repulsed by you is stupid.

                                            Ok Ok I think I got it

                                            It sure was easy to throw sand in your vagina with a little bit of code.

                                            Comment

                                            • Mr Pheer
                                              So Fucking Banned
                                              • Dec 2002
                                              • 22083

                                              #72
                                              Originally posted by JesseQuinn
                                              but yeah, Sarettah aka the second nicest person on the planet (my friend Errol takes the number one spot, he's like a rabbit he's so nice to everyone) and the number one smartest gets on an ignore list and I can't?
                                              I didn't add Sarettah to any list. He's a good guy as far as I know.

                                              Comment

                                              • Mr Pheer
                                                So Fucking Banned
                                                • Dec 2002
                                                • 22083

                                                #73
                                                Originally posted by 2MuchMark
                                                Lol. Mr. Spheer goes out of his way to un invited himself from the party, instead of just walk out of the party. Oh well. Hey spheer, you're always welcome back if you ever change your mind.
                                                No thanks. Have fun at your party with all those cheese curds, drinking milk from a bag, and rubbing maple syrup all over yourself. Too much fun for me.

                                                Comment

                                                • EddyTheDog
                                                  Just Doing My Own Thing
                                                  • Jan 2011
                                                  • 25433

                                                  #74
                                                  Originally posted by Mr Pheer
                                                  No thanks. Have fun at your party with all those cheese curds, drinking milk from a bag, and rubbing maple syrup all over yourself. Too much fun for me.
                                                  I need to get out more...

                                                  Comment

                                                  • babeterminal
                                                    Confirmed User
                                                    • Jul 2010
                                                    • 2751

                                                    #75
                                                    Originally posted by EddyTheDog
                                                    I need to get out more...
                                                    eddy what season is it now in new zealand, must be funny having easter in the autumn
                                                    *SIG SPOT SEND MESSAGE IF INTERESTED*

                                                    Comment

                                                    • NatalieK
                                                      Natalie K
                                                      • Apr 2010
                                                      • 20123

                                                      #76
                                                      Originally posted by Mr Pheer
                                                      LoL so someone isn't attracted to you that makes them gay. Someone repulsed by you is stupid.

                                                      Ok Ok I think I got it

                                                      It sure was easy to throw sand in your vagina with a little bit of code.
                                                      agreed, even gay guys say i´m attractive, my bad to say it made you gay. But then, to say you´re repulsed is just a complete load of trolling BS.

                                                      Acting like you do, well, it´s probably you repulsed by most
                                                      My official site / Custom vids / Make money links / First time girls
                                                      Email: [email protected] - "Converting traffic into income since 2005"

                                                      Comment

                                                      • JesseQuinn
                                                        feeding the wolves
                                                        • Aug 2012
                                                        • 6631

                                                        #77
                                                        Originally posted by Mr Pheer
                                                        I didn't add Sarettah to any list. He's a good guy as far as I know.
                                                        apologies for lack of clarity, Sarettah is indeed a wicked dude and I know he's not on your default list. but he was (not sure if still is) on a member's manually-input ignore list and I was jealous

                                                        gonna install this evening when I get home, thanks again for the gift to gfy
                                                        throwing molotav cocktails at the precinct

                                                        Comment

                                                        • Mr Pheer
                                                          So Fucking Banned
                                                          • Dec 2002
                                                          • 22083

                                                          #78


                                                          What?

                                                          Comment

                                                          • NatalieK
                                                            Natalie K
                                                            • Apr 2010
                                                            • 20123

                                                            #79
                                                            Originally posted by Mr Pheer


                                                            What?
                                                            or you could just have ignored my posts in the first place
                                                            My official site / Custom vids / Make money links / First time girls
                                                            Email: [email protected] - "Converting traffic into income since 2005"

                                                            Comment

                                                            • Mr Pheer
                                                              So Fucking Banned
                                                              • Dec 2002
                                                              • 22083

                                                              #80


                                                              What?

                                                              Comment

                                                              • pimpmaster9000
                                                                Too lazy to set a custom title
                                                                • Dec 2011
                                                                • 26732

                                                                #81
                                                                Imagine being such a weak faggot that you need to block somebody...create a little homosexual safe space where words on a screen do not hurt...I bet OP uses nivea for "men" soft skin créme...on his butthole...
                                                                Report a suspicious cracker: Click Here

                                                                Comment

                                                                • Mr Pheer
                                                                  So Fucking Banned
                                                                  • Dec 2002
                                                                  • 22083

                                                                  #82
                                                                  Originally posted by crucifissio
                                                                  Imagine being such a weak faggot that you need to block somebody...create a little homosexual safe space where words on a screen do not hurt...I bet OP uses nivea for "men" soft skin créme...on his butthole...
                                                                  Did I hurt your feelings with some code, you little coward bitch?

                                                                  Why don't you run to another forum like you ran from your country.

                                                                  Comment

                                                                  • femdomdestiny
                                                                    Confirmed User
                                                                    • Apr 2007
                                                                    • 5185

                                                                    #83
                                                                    Lol this is fantastic! Just tried it. Will need to add a few more people on that list. thank you
                                                                    Femdom Destiny


                                                                    --------------------------------------------
                                                                    ICQ: 463-630-426
                                                                    email: webmaster(at)femdomdestiny.com

                                                                    Comment

                                                                    • King Mark
                                                                      So Fucking Banned
                                                                      • Aug 2016
                                                                      • 27033

                                                                      #84
                                                                      Originally posted by crucifissio
                                                                      Imagine being such a weak faggot that you need to block somebody...create a little homosexual safe space where words on a screen do not hurt...I bet OP uses nivea for "men" soft skin créme...on his butthole...
                                                                      Lmao....

                                                                      Comment

                                                                      • ghjghj
                                                                        So Fucking Banned
                                                                        • Jun 2005
                                                                        • 3770

                                                                        #85
                                                                        Originally posted by Dead Eye
                                                                        Lmao....

                                                                        Comment

                                                                        • ghjghj
                                                                          So Fucking Banned
                                                                          • Jun 2005
                                                                          • 3770

                                                                          #86
                                                                          Originally posted by Mr Pheer
                                                                          That's a very strange request, but ok.
                                                                          I caused that feel.

                                                                          Comment

                                                                          • ghjghj
                                                                            So Fucking Banned
                                                                            • Jun 2005
                                                                            • 3770

                                                                            #87
                                                                            Great thread op

                                                                            Comment

                                                                            • JesseQuinn
                                                                              feeding the wolves
                                                                              • Aug 2012
                                                                              • 6631

                                                                              #88
                                                                              Originally posted by ghjghj
                                                                              I caused that feel.


                                                                              as if a nic comprised of 3 keyboard letters in sequence twice could possibly one of the most fun peeps on the board reincarnated

                                                                              crazy talk

                                                                              throwing molotav cocktails at the precinct

                                                                              Comment

                                                                              • NatalieK
                                                                                Natalie K
                                                                                • Apr 2010
                                                                                • 20123

                                                                                #89
                                                                                Originally posted by JesseQuinn

                                                                                My official site / Custom vids / Make money links / First time girls
                                                                                Email: [email protected] - "Converting traffic into income since 2005"

                                                                                Comment

                                                                                • Kittens
                                                                                  👏 REVOLUTIONARY 👏
                                                                                  • Jan 2016
                                                                                  • 1440

                                                                                  #90
                                                                                  Dang who was the swell guy who originally wrote that script? I bet he was a cool cat. meow.

                                                                                  Comment

                                                                                  • candyflip
                                                                                    Carpe Visio
                                                                                    • Jul 2002
                                                                                    • 43069

                                                                                    #91
                                                                                    This really cleans up the front page quite nicely.

                                                                                    Spend you some brain.
                                                                                    Email Me

                                                                                    Comment

                                                                                    • Kittens
                                                                                      👏 REVOLUTIONARY 👏
                                                                                      • Jan 2016
                                                                                      • 1440

                                                                                      #92
                                                                                      Originally posted by candyflip
                                                                                      This really cleans up the front page quite nicely.
                                                                                      Shut the fuck up, shithead.

                                                                                      Comment

                                                                                      • Kittens
                                                                                        👏 REVOLUTIONARY 👏
                                                                                        • Jan 2016
                                                                                        • 1440

                                                                                        #93
                                                                                        Hey Pheery poo, should I update this to have a crowdsourced blocklist, where every user gets a button under their name, and if a certain number of users report that user it adds them to a global blocklist that the script automatically pulls from to keep itself up to date?

                                                                                        Comment

                                                                                        • Mr Pheer
                                                                                          So Fucking Banned
                                                                                          • Dec 2002
                                                                                          • 22083

                                                                                          #94
                                                                                          Originally posted by Kittens
                                                                                          Hey Pheery poo, should I update this to have a crowdsourced blocklist, where every user gets a button under their name, and if a certain number of users report that user it adds them to a global blocklist that the script automatically pulls from to keep itself up to date?
                                                                                          I don't think others would appreciate someone else deciding who should be ignored on their end. Maybe give them the option to accept or deny.

                                                                                          Comment

                                                                                          • Bladewire
                                                                                            StraightBro
                                                                                            • Aug 2003
                                                                                            • 56228

                                                                                            #95
                                                                                            This message is hidden because Mr Pheer is on your ignore list.


                                                                                            Skype: CallTomNow

                                                                                            Comment

                                                                                            • Kittens
                                                                                              👏 REVOLUTIONARY 👏
                                                                                              • Jan 2016
                                                                                              • 1440

                                                                                              #96
                                                                                              Originally posted by Mr Pheer
                                                                                              I don't think others would appreciate someone else deciding who should be ignored on their end. Maybe give them the option to accept or deny.
                                                                                              I was thinking about that after the fact. An option to say "I want to maintain my own list" or "Lets use the global list" sorta like how Adblock scripts work such as uBlock Origin.

                                                                                              Comment

                                                                                              • Mr Pheer
                                                                                                So Fucking Banned
                                                                                                • Dec 2002
                                                                                                • 22083

                                                                                                #97
                                                                                                Originally posted by Kittens
                                                                                                I was thinking about that after the fact. An option to say "I want to maintain my own list" or "Lets use the global list" sorta like how Adblock scripts work such as uBlock Origin.
                                                                                                That could work. Or make a selector for "Block the Left" or "Block the Right"

                                                                                                Comment

                                                                                                • King Mark
                                                                                                  So Fucking Banned
                                                                                                  • Aug 2016
                                                                                                  • 27033

                                                                                                  #98
                                                                                                  Why frequent a forum where you fake blocked most the posters?

                                                                                                  Somebody please explain the logic... I even seen onehung replying to bladewire today, who he supposedly blocked.

                                                                                                  Like wtf is going on here?

                                                                                                  Comment

                                                                                                  • Mr Pheer
                                                                                                    So Fucking Banned
                                                                                                    • Dec 2002
                                                                                                    • 22083

                                                                                                    #99
                                                                                                    This message is hidden because Dead Eye is on your ignore list.
                                                                                                    Uh... What?

                                                                                                    Comment

                                                                                                    • Kittens
                                                                                                      👏 REVOLUTIONARY 👏
                                                                                                      • Jan 2016
                                                                                                      • 1440

                                                                                                      #100
                                                                                                      Originally posted by Dead Eye
                                                                                                      Why frequent a forum where you fake blocked most the posters?

                                                                                                      Somebody please explain the logic... I even seen onehung replying to bladewire today, who he supposedly blocked.

                                                                                                      Like wtf is going on here?
                                                                                                      Some people block others for the sanity of a board with no fucktardary.

                                                                                                      While others, such as bladewire, use the idea of blocking someone as a way of saying "I don't care what you say" but in reality they're not blocked and he does, indeed, care what he says. That is why he cannot refrain himself from either removing the block so he can respond back, or circumventing the block to respond.

                                                                                                      Basically bladewire thrives on the drama. People like Pheer just want to have good discussions without the peanut gallery flooding their board views with shitposting.

                                                                                                      Comment

                                                                                                      Working...