GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Business Use this to make GFY great again (https://gfy.com/showthread.php?t=1308818)

Mr Pheer 02-03-2019 10:33 PM

50 crying leftist cunts :1orglaugh:1orglaugh:1orglaugh

and 1 Snow Mexican.

just a punk 02-04-2019 08:47 AM

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.
});

:winkwink:

Mr Pheer 02-04-2019 04:54 PM

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

JesseQuinn 02-04-2019 05:46 PM

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

AmeliaG 02-04-2019 06:01 PM

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.

Mr Pheer 02-04-2019 06:06 PM

Quote:

Originally Posted by AmeliaG (Post 22410439)
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?

gorillaz_ 02-04-2019 06:50 PM

Quote:

Originally Posted by AmeliaG (Post 22410439)
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

Mr Pheer 02-04-2019 07:54 PM

Quote:

Originally Posted by JesseQuinn (Post 22410435)
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.
});


babeterminal 02-04-2019 08:23 PM

we should build a forumwall for the russians

Mr Pheer 02-04-2019 08:24 PM

Quote:

Originally Posted by babeterminal (Post 22410488)
we should build a forumwall for the russians

And 1 Serb

And that Snow Mexican.

baddog 02-04-2019 08:26 PM

Can you block Russian IP blocks?

Mr Pheer 02-04-2019 08:28 PM

Quote:

Originally Posted by baddog (Post 22410491)
Can you block Russian IP blocks?

No, that would require IP lookups.

Would require being done at the server level.

NatalieK 02-05-2019 04:04 AM

Quote:

Originally Posted by Acepimp (Post 22409739)
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:

https://www.snopes.com/tachyon/2017/...mp-diarhea.jpg


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!

NatalieK 02-05-2019 04:12 AM

Quote:

Originally Posted by Mr Pheer (Post 22409972)
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 :) :thumbsup

NatalieK 02-05-2019 04:31 AM

Quote:

Originally Posted by Mr Pheer (Post 22410478)
That's a very strange request, but ok.

Quote:

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 :thumbsup

just a punk 02-05-2019 10:44 AM

Quote:

Originally Posted by baddog (Post 22410491)
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 :upsidedow

Bladewire 02-05-2019 10:52 AM

Quote:

Originally Posted by GspotProductions (Post 22410642)
Yes McQeer, take your pikey friends that are not on the list, go start your own forum, this would make GFY a better place :thumbsup

:evil-laug:evil-laug:thumbsup

JesseQuinn 02-05-2019 11:57 AM

Quote:

Originally Posted by Mr Pheer (Post 22410478)
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 :upsidedow

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


2MuchMark 02-05-2019 12:21 PM

Quote:

Originally Posted by Bladewire (Post 22410055)

:1orglaugh:1orglaugh:1orglaugh

2MuchMark 02-05-2019 12:23 PM

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.

Mr Pheer 02-05-2019 02:49 PM

Quote:

Originally Posted by GspotProductions (Post 22410628)
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 :1orglaugh:1orglaugh

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

Mr Pheer 02-05-2019 02:53 PM

Quote:

Originally Posted by JesseQuinn (Post 22410858)
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.

Mr Pheer 02-05-2019 02:56 PM

Quote:

Originally Posted by 2MuchMark (Post 22410867)
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.

EddyTheDog 02-05-2019 03:02 PM

Quote:

Originally Posted by Mr Pheer (Post 22410949)
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...

babeterminal 02-05-2019 03:19 PM

Quote:

Originally Posted by EddyTheDog (Post 22410952)
I need to get out more...

eddy what season is it now in new zealand, must be funny having easter in the autumn

NatalieK 02-05-2019 03:25 PM

Quote:

Originally Posted by Mr Pheer (Post 22410940)
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 :1orglaugh:1orglaugh

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 :2 cents:

JesseQuinn 02-05-2019 03:26 PM

Quote:

Originally Posted by Mr Pheer (Post 22410946)
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

Mr Pheer 02-05-2019 03:38 PM

https://mrpheer.com/pics/gspotnat.png

What?

NatalieK 02-05-2019 04:33 PM

Quote:

Originally Posted by Mr Pheer (Post 22410974)

or you could just have ignored my posts in the first place :thumbsup

Mr Pheer 02-05-2019 05:51 PM

https://mrpheer.com/pics/gspotnat.png

What?

pimpmaster9000 02-05-2019 06:54 PM

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...

Mr Pheer 02-05-2019 06:59 PM

Quote:

Originally Posted by crucifissio (Post 22411053)
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.

femdomdestiny 02-05-2019 07:19 PM

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

King Mark 02-05-2019 07:22 PM

Quote:

Originally Posted by crucifissio (Post 22411053)
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....

ghjghj 02-05-2019 08:16 PM

Quote:

Originally Posted by Dead Eye (Post 22411067)
Lmao....


ghjghj 02-05-2019 08:19 PM

Quote:

Originally Posted by Mr Pheer (Post 22410478)
That's a very strange request, but ok.

I caused that feel.

ghjghj 02-05-2019 08:20 PM

Great thread op

JesseQuinn 02-06-2019 08:54 AM

Quote:

Originally Posted by ghjghj (Post 22411088)
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


NatalieK 02-06-2019 10:25 AM

Quote:

Originally Posted by JesseQuinn (Post 22411309)


:thumbsup :winkwink:

Kittens 02-06-2019 11:22 AM

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

candyflip 03-24-2019 10:15 AM

This really cleans up the front page quite nicely.

Kittens 03-25-2019 07:33 PM

Quote:

Originally Posted by candyflip (Post 22439250)
This really cleans up the front page quite nicely.

Shut the fuck up, shithead.

Kittens 03-25-2019 07:42 PM

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?

Mr Pheer 03-25-2019 08:11 PM

Quote:

Originally Posted by Kittens (Post 22440324)
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.

Bladewire 03-25-2019 08:28 PM

This message is hidden because Mr Pheer is on your ignore list. :thumbsup

Kittens 03-25-2019 08:28 PM

Quote:

Originally Posted by Mr Pheer (Post 22440347)
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.

Mr Pheer 03-25-2019 09:44 PM

Quote:

Originally Posted by Kittens (Post 22440356)
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" :1orglaugh

King Mark 03-25-2019 09:52 PM

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?

Mr Pheer 03-25-2019 10:36 PM

Quote:

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

Kittens 03-26-2019 11:02 AM

Quote:

Originally Posted by Dead Eye (Post 22440382)
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.


All times are GMT -7. The time now is 04:24 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc