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)

2MuchMark 02-03-2019 07:36 PM

You should call that the "build your own bubble" script, Mr. Pheer.

I think it's better to talk to people that you disagree with once in a while. Make your point, argue if you want, but at least consider other peoples ideas. It'll make you a better person and maybe one day, you can get to be as cool as me.
(o)(o)TITS!

just a punk 02-03-2019 07:44 PM

Quote:

Originally Posted by EddyTheDog (Post 22409568)
My brain comes with it's own ignore feature - It's incredible - I don't want to read something and just like that I don't...

I have this superpower too. GFY super heroes unite!

http://elevati.com/wp-content/upload...og-680x234.jpg

beerptrol 02-03-2019 08:12 PM

You alt right have your heads so far up Chump's ass, you don't need a script

Mr Pheer 02-03-2019 08:30 PM

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


ruff 02-03-2019 08:54 PM

What a bunch of whiny little right wing shits. I imagine every single one of you has a hard-on right now.:1orglaugh:1orglaugh:1orglaugh

astronaut x 02-03-2019 08:56 PM

So original OP.

So original.

Mr Pheer 02-03-2019 09:36 PM

Quote:

Originally Posted by astronaut x (Post 22410023)
So original OP.

So original.

LoL I don't give a shit about your fucking approval :thumbsup


baddog 02-03-2019 09:52 PM

Quote:

Originally Posted by Mr Pheer (Post 22410014)
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', 'CyberSEO', '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.
});


That is a pretty good list.

Bladewire 02-03-2019 10:03 PM

↑↑↑ Fagdog posting drunk again

GAMEFINEST 02-03-2019 10:07 PM

America first!

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?


All times are GMT -7. The time now is 08:46 PM.

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