![]() |
![]() |
![]() |
||||
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() ![]() |
|
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
Thread Tools |
![]() |
#51 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
50 crying leftist cunts
![]() ![]() ![]() and 1 Snow Mexican. |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#52 |
So fuckin' bored
Industry Role:
Join Date: Jun 2003
Posts: 32,381
|
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>💩</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 |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#53 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
^^^ not official code update, but use if you want... Especially if you're a leftist
![]() |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#54 |
feeding the wolves
Industry Role:
Join Date: Aug 2012
Location: between sand and stars in Jamaica
Posts: 6,235
|
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 |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#55 |
Too lazy to set a custom title
Join Date: Jan 2003
Location: Los Angeles
Posts: 10,530
|
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.
__________________
![]() ![]() ![]() ![]() ![]() Blue Blood's SpookyCash.com Babe photography portfolio |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#56 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#57 | |
Confirmed User
Industry Role:
Join Date: Sep 2014
Posts: 361
|
Quote:
https://safari-extensions.apple.com/...ari-G3XV72R5TC |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#58 | |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
Quote:
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>💩</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. }); |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#59 |
Confirmed User
Industry Role:
Join Date: Jul 2010
Location: tits
Posts: 2,751
|
we should build a forumwall for the russians
__________________
*SIG SPOT SEND MESSAGE IF INTERESTED* |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#60 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#61 |
So Fucking Banned
Industry Role:
Join Date: Apr 2001
Location: the beach, SoCal
Posts: 107,090
|
Can you block Russian IP blocks?
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#62 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#63 | |
Natalie K
Industry Role:
Join Date: Apr 2010
Location: Spain
Posts: 19,148
|
Quote:
![]() 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 ![]() ![]() ![]() Skype: gspotproductions - "Converting traffic into income since 2005" |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#64 | |
Natalie K
Industry Role:
Join Date: Apr 2010
Location: Spain
Posts: 19,148
|
Quote:
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 ![]() ![]() ![]() Skype: gspotproductions - "Converting traffic into income since 2005" |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#65 | ||
Natalie K
Industry Role:
Join Date: Apr 2010
Location: Spain
Posts: 19,148
|
Quote:
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 ![]() ![]() ![]() Skype: gspotproductions - "Converting traffic into income since 2005" |
||
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#66 |
So fuckin' bored
Industry Role:
Join Date: Jun 2003
Posts: 32,381
|
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 |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#67 | |
StraightBro
Industry Role:
Join Date: Aug 2003
Location: Monarch Beach, CA USA
Posts: 56,232
|
Quote:
![]() ![]() ![]() |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#68 |
feeding the wolves
Industry Role:
Join Date: Aug 2012
Location: between sand and stars in Jamaica
Posts: 6,235
|
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 |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#69 |
Videochat Solutions
Industry Role:
Join Date: Aug 2004
Location: Canada
Posts: 48,583
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#70 |
Videochat Solutions
Industry Role:
Join Date: Aug 2004
Location: Canada
Posts: 48,583
|
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.
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#71 | |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
Quote:
Ok Ok I think I got it ![]() ![]() It sure was easy to throw sand in your vagina with a little bit of code. |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#72 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
I didn't add Sarettah to any list. He's a good guy as far as I know.
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#73 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
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.
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#74 |
Just Doing My Own Thing
Industry Role:
Join Date: Jan 2011
Location: London, Spain, New Zealand, GFY - Not Croydon...
Posts: 25,039
|
I need to get out more...
__________________
- Chaturbate Script - https://gfy.com/fucking-around-and-b...er-issues.html - Now supports White Labels |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#75 |
Confirmed User
Industry Role:
Join Date: Jul 2010
Location: tits
Posts: 2,751
|
eddy what season is it now in new zealand, must be funny having easter in the autumn
__________________
*SIG SPOT SEND MESSAGE IF INTERESTED* |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#76 | |
Natalie K
Industry Role:
Join Date: Apr 2010
Location: Spain
Posts: 19,148
|
Quote:
Acting like you do, well, it´s probably you repulsed by most ![]()
__________________
My official site ![]() ![]() ![]() Skype: gspotproductions - "Converting traffic into income since 2005" |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#77 | |
feeding the wolves
Industry Role:
Join Date: Aug 2012
Location: between sand and stars in Jamaica
Posts: 6,235
|
Quote:
gonna install this evening when I get home, thanks again for the gift to gfy
__________________
throwing molotav cocktails at the precinct |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#78 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
![]() What? |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#79 |
Natalie K
Industry Role:
Join Date: Apr 2010
Location: Spain
Posts: 19,148
|
or you could just have ignored my posts in the first place
![]()
__________________
My official site ![]() ![]() ![]() Skype: gspotproductions - "Converting traffic into income since 2005" |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#80 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
![]() What? |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#81 |
Too lazy to set a custom title
Industry Role:
Join Date: Dec 2011
Posts: 26,732
|
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...
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#82 | |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
Quote:
Why don't you run to another forum like you ran from your country. |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#83 |
Confirmed User
Industry Role:
Join Date: Apr 2007
Posts: 5,169
|
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 |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#84 |
So Fucking Banned
Industry Role:
Join Date: Aug 2016
Posts: 27,033
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#85 |
So Fucking Banned
Join Date: Jun 2005
Posts: 3,770
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#86 |
So Fucking Banned
Join Date: Jun 2005
Posts: 3,770
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#87 |
So Fucking Banned
Join Date: Jun 2005
Posts: 3,770
|
Great thread op
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#88 |
feeding the wolves
Industry Role:
Join Date: Aug 2012
Location: between sand and stars in Jamaica
Posts: 6,235
|
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 |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#89 |
Natalie K
Industry Role:
Join Date: Apr 2010
Location: Spain
Posts: 19,148
|
__________________
My official site ![]() ![]() ![]() Skype: gspotproductions - "Converting traffic into income since 2005" |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#90 |
👏 REVOLUTIONARY 👏
Industry Role:
Join Date: Jan 2016
Posts: 1,440
|
Dang who was the swell guy who originally wrote that script? I bet he was a cool cat. meow.
__________________
![]() |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#92 |
👏 REVOLUTIONARY 👏
Industry Role:
Join Date: Jan 2016
Posts: 1,440
|
Shut the fuck up, shithead.
__________________
![]() |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#93 |
👏 REVOLUTIONARY 👏
Industry Role:
Join Date: Jan 2016
Posts: 1,440
|
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?
__________________
![]() |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#94 | |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
Quote:
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#95 |
StraightBro
Industry Role:
Join Date: Aug 2003
Location: Monarch Beach, CA USA
Posts: 56,232
|
This message is hidden because Mr Pheer is on your ignore list.
![]() |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#96 |
👏 REVOLUTIONARY 👏
Industry Role:
Join Date: Jan 2016
Posts: 1,440
|
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.
__________________
![]() |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#97 |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#98 |
So Fucking Banned
Industry Role:
Join Date: Aug 2016
Posts: 27,033
|
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? |
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#99 | |
Living inside your head.
Industry Role:
Join Date: Dec 2002
Location: In your AirBNB
Posts: 20,550
|
Quote:
|
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() |
#100 | |
👏 REVOLUTIONARY 👏
Industry Role:
Join Date: Jan 2016
Posts: 1,440
|
Quote:
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.
__________________
![]() |
|
![]() |
![]() ![]() ![]() ![]() ![]() |
![]() ![]() |
|||||||
|
|||||||
Bookmarks |