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)
-   -   Content A gift for GFY (https://gfy.com/showthread.php?t=1177787)

Mr Pheer 10-31-2015 09:25 PM

A gift for GFY
 
Tired of the daily news posters (brassmonkey and others) and just the general annoying posters?

Want to make them disappear?

You dont have to add them to your ignore list. that crap just doesnt work.

Download this chrome extension and install it. Edit the file 'hide_users.js' to include the users you no longer want to see.

I added a few by default:

Code:

var hide_users = [
'DamianJ',
'DVTimes',
'Rochard',
'crockett',
'Twitter',
'CyberSEO',
'crucifissio',
'brassmonkey',
'blackmonsters',
'clickity click'
];

I've been using this for a few years, but i didnt write it. I believe Killswitch originally wrote it... I dont remember exactly. I do remember him saying that he didnt mind if I gave it out. So here it is.

Only works on Chrome. Not sure if it will work on a mobile device or not (havent tried it). Since I didnt write it, I cant offer support for it... but this daily news bot network is too fucking much around here.

http://www.mrpheer.com/gfy-ignore-ch...ion-master.zip

Enjoy :thumbsup

AMDWarrior 10-31-2015 10:40 PM

Best post in a while!

Denny 10-31-2015 11:18 PM

Great, thanks :pimp

Seth Manson 10-31-2015 11:21 PM

I love this!

Downloaded the zip and extracted it, went to settings in chrome, then clicked extensions, clicked load unpacked extension, selected the unzipped folder for the extension, then closed and reloaded chrome.

Every thread from brassmonkey is gone! It's like he doesnt even exist anymore. I cant even see when people quote him in threads.

Relic 10-31-2015 11:22 PM

When that unhygienic asshole makes his next appearance, we will be ready.

Seth Manson 11-01-2015 12:16 AM

Be sure to add 'TTI-Rich' to the list

Code:

var hide_users = [
'DamianJ',
'DVTimes',
'Rochard',
'crockett',
'Twitter',
'CyberSEO',
'crucifissio',
'brassmonkey',
'blackmonsters',
'clickity click',
'TTI-Rich'
];


CPA-Rush 11-01-2015 04:20 AM

Quote:

Originally Posted by Mr Pheer (Post 20622223)
Tired of the daily news posters (brassmonkey and others) and just the general annoying posters?

Want to make them disappear?

You dont have to add them to your ignore list. that crap just doesnt work.

Download this chrome extension and install it. Edit the file 'hide_users.js' to include the users you no longer want to see.

I added a few by default:

Code:

var hide_users = [
'DamianJ',
'DVTimes',
'Rochard',
'crockett',
'Twitter',
'CyberSEO',
'crucifissio',
'brassmonkey',
'blackmonsters',
'clickity click'
];

I've been using this for a few years, but i didnt write it. I believe Killswitch originally wrote it... I dont remember exactly. I do remember him saying that he didnt mind if I gave it out. So here it is.

Only works on Chrome. Not sure if it will work on a mobile device or not (havent tried it). Since I didnt write it, I cant offer support for it... but this daily news bot network is too fucking much around here.

http://www.mrpheer.com/gfy-ignore-ch...ion-master.zip

Enjoy :thumbsup

awesome work :1orglaugh

CPA-Rush 11-01-2015 05:25 AM

hope someone can help .

i'm testing a firexfox version now...


Quote:

// ==UserScript==
// @name gfy ignore list
// @description block threads, posts, etc from certain users
// @include https://gfy.com/*
// @include http://*.gfy.com/*
// @require http://ajax.googleapis.com/ajax/libs.../jquery.min.js
// @version 1.0
// @grant none
// ==/UserScript==



$(document).ready(function () {
$('tbody#threadbits_forum_26 tr').each(function (thread_index, thread_value) {
var hide_users = ['DamianJ','DVTimes','Rochard','Twitter'];
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)
{
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();
}
});
});
});
what i'm doing wrong?

Helix 11-01-2015 06:12 AM

Thanks..it works great :)

MetaMan 11-01-2015 08:35 AM

Bump.....

CPA-Rush 11-01-2015 09:03 AM

i guess i'm done with the firefox version .

i will post the link ...

blackmonsters 11-01-2015 09:06 AM

http://www.mememaker.net/static/imag...es/3982081.jpg


:1orglaugh

CPA-Rush 11-01-2015 09:33 AM

works on firefox now

require greasemonkey addon only and it should work with tampermonkey.

https://greasyfork.org/en/scripts/13533-gfy-ignore-list

let me know if this make your browser a bit slower

:pimp:pimp:pimp

CPA-Rush 11-01-2015 09:35 AM

current users DamianJ ,DVTimes,Rochard,Juicy D. Links,Twitter

Twitter 11-01-2015 09:47 AM

http://www.bloomingprairieonline.com...-news_news.jpg

mineistaken 11-01-2015 10:44 AM

Quote:

Originally Posted by Mr Pheer (Post 20622223)
this daily news bot network is too fucking much around here

:2 cents::thumbsup

wocnom 11-01-2015 11:48 AM

Hi there,

this is actually not a bad idea considering useless spam on this forum. I fork the version from CPA-Rush with these changes:
  • It's applicated to the whole forum (search, all sections - not only to "Fucking Around & Program Discussion").
  • In thread listings, the threads stared by users in your hide_list are moved to the bottom of the list and set opacity to 0.5. So you can still see the spam, if you want, but the priority is lower than proper threads from other users.
  • Posts from users in your hide_list are not removed from the thread, but the background color of these posts are set to black. So it's somehow optical marked for you.

Why is this more suitable for me?
  • I still wanna know about existence of these junk posts/threads but I wanna set them lower priority (threads) and mark the posts.

The version is tested with firefox and greasemonkey in last stable versions, but with minor changes it can be easily ported to chrome.
Feel tree to optimise the code, it can be a little slow.

Source: http://pastebin.com/raw.php?i=B7S14EtV

CPA-Rush 11-01-2015 12:21 PM

Quote:

Originally Posted by wocnom (Post 20622539)

thanks :pimp

AaronM 11-01-2015 02:25 PM

Thanks for the gift. It's working pretty good.

Was hoping it would hide quoted users on the list too. Oh well, better than nothing. :)

RyuLion 11-01-2015 02:28 PM

Finally a solution! Thanks man!
Cheers!

AaronM 11-01-2015 02:33 PM

Quote:

Originally Posted by RyuLion (Post 20622647)
Finally a solution! Thanks man!
Cheers!


Thanks for reminding me to add you to the list.

c ya! :321GFY


EDIT: Actually, I won't be C'n ya! Pretty fucken cool. :glugglug

AaronM 11-01-2015 02:36 PM

Hell yeah! Totally awesome!

Thanks again. :thumbsup

clickity click 11-01-2015 02:53 PM

Quote:

Originally Posted by Mr Pheer (Post 20622223)
Tired of the daily news posters (brassmonkey and others) and just the general annoying posters?

Want to make them disappear?

You dont have to add them to your ignore list. that crap just doesnt work.

Download this chrome extension and install it. Edit the file 'hide_users.js' to include the users you no longer want to see.

I added a few by default:

Code:

var hide_users = [
'DamianJ',
'DVTimes',
'Rochard',
'crockett',
'Twitter',
'CyberSEO',
'crucifissio',
'brassmonkey',
'blackmonsters',
'clickity click'
];

I've been using this for a few years, but i didnt write it. I believe Killswitch originally wrote it... I dont remember exactly. I do remember him saying that he didnt mind if I gave it out. So here it is.

Only works on Chrome. Not sure if it will work on a mobile device or not (havent tried it). Since I didnt write it, I cant offer support for it... but this daily news bot network is too fucking much around here.

http://www.mrpheer.com/gfy-ignore-ch...ion-master.zip

Enjoy :thumbsup

I shouldn't be on that list.

L-Pink 11-01-2015 02:54 PM

Quote:

Originally Posted by clickity click (Post 20622664)
I shouldn't be on that list.

:1orglaugh:1orglaugh

clickity click 11-01-2015 03:01 PM

This script is great and works really well. I like the way it pushes the crap down to the bottom.
Couple of things though:

1. When you are browsing a thread you can still see the user post it's just the background is black, not grey like normal.

2. How do I amend the list as I seem to have blocked me..

wocnom 11-01-2015 03:33 PM

Quote:

Originally Posted by clickity click (Post 20622673)
This script is great and works really well. I like the way it pushes the crap down to the bottom.
Couple of things though:

1. When you are browsing a thread you can still see the user post it's just the background is black, not grey like normal.

2. How do I amend the list as I seem to have blocked me..

Just edit the script.

1. If you wanna block the post from listed users completely, just change this:

Code:

//post_block.remove();
$(post_block).find("td.alt2").css("background", "black").next().css("background", "black");

to this:

Code:

post_block.remove();
If you don't care about blocking/marking the posts at all just remove this section:

Code:

  $('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();
        $(post_block).find("td.alt2").css("background", "black").next().css("background", "black");
      }
    });
  });

2. Edit the array hide_users and remove the element with your nick.

Then import the modified script. Or you can edit directly the script itself (in firefox it's located in your_profile_directory/gm_scripts/name_of_the_script).

AmeliaG 11-01-2015 04:05 PM

Thank you, Mr Pheer and CPA-Rush!

clickity click 11-01-2015 04:20 PM

You know. I don't know if I like this.

I don't really dislike any posts enough to have them pushed to the bottom of the page except perhaps that annoying spammer from the other day.
Even DVT sometimes posts interesting stuff. Same can be said for Harmon, wehateporn, CyberSEO and brassdonkey

If I had to add one to the list I guess it would be L-Pink.

Twitter 11-01-2015 04:21 PM

Me and Brass are changing nicks soon

Mr Pheer 11-01-2015 04:30 PM

I'm glad people are finding it useful, and glad to see others making modifications.

Mr Pheer 11-01-2015 04:32 PM

I can tell that some people on my list have posted, but I cant see who posted or what they said. This is why I love this thing and kind of kept it a secret for a long time.

clickity click 11-01-2015 04:47 PM

Quote:

Originally Posted by Mr Pheer (Post 20622718)
I can tell that some people on my list have posted, but I cant see who posted or what they said. This is why I love this thing and kind of kept it a secret for a long time.

But you can see me right?

clickity click 11-01-2015 04:49 PM

Can I just point out that it's as slow as fuck when closing tabs. That's my only issue really. For now.

Juicy D. Links 11-01-2015 04:59 PM

I love it!!!!!!!!!!!!!!!!!

Harmon 11-02-2015 12:49 AM

Works like a charm. :thumbsup

CPA-Rush 11-02-2015 04:31 AM

Quote:

Originally Posted by AmeliaG (Post 20622700)
Thank you, Mr Pheer and CPA-Rush!

yw :pimp:pimp

marlboroack 11-02-2015 05:06 AM

Nice, it works!

CaptainHowdy 11-02-2015 05:45 AM

I feel like I'm fading away ...

O MARINA 11-02-2015 07:53 AM

Quote:

Originally Posted by Mr Pheer (Post 20622223)
Tired of the daily news posters (brassmonkey and others) and just the general annoying posters?

Want to make them disappear?

You dont have to add them to your ignore list. that crap just doesnt work.

Download this chrome extension and install it. Edit the file 'hide_users.js' to include the users you no longer want to see.

I added a few by default:

Code:

var hide_users = [
'DamianJ',
'DVTimes',
'Rochard',
'crockett',
'Twitter',
'CyberSEO',
'crucifissio',
'brassmonkey',
'blackmonsters',
'clickity click'
];

I've been using this for a few years, but i didnt write it. I believe Killswitch originally wrote it... I dont remember exactly. I do remember him saying that he didnt mind if I gave it out. So here it is.

Only works on Chrome. Not sure if it will work on a mobile device or not (havent tried it). Since I didnt write it, I cant offer support for it... but this daily news bot network is too fucking much around here.

http://www.mrpheer.com/gfy-ignore-ch...ion-master.zip

Enjoy :thumbsup


Cool thanks. Where is Killswitch these days?

brassmonkey 11-02-2015 07:56 AM

crybabies go hide in your virtual corner! :1orglaugh:1orglaugh

mineistaken 11-02-2015 08:01 AM

Quote:

Originally Posted by brassmonkey (Post 20623141)
crybabies

Says the #1 gfy member in terms of pressing post report button :thumbsup:1orglaugh
Unbelievable :helpme:1orglaugh

just a punk 11-02-2015 08:10 AM

Quote:

Originally Posted by blackmonsters (Post 20622432)

LOL :1orglaugh

ruff 11-02-2015 10:12 AM

I put every last one of you bastards on the list including myself. Now when I go to GFY. There is absolutely nothing. Now I can finally get some work done.

Juicy D. Links 11-02-2015 11:16 AM

Quote:

Originally Posted by mineistaken (Post 20623147)
Says the #1 gfy member in terms of pressing post report button :thumbsup:1orglaugh
Unbelievable :helpme:1orglaugh

:1orglaugh:1orglaugh:1orglaugh:1orglaugh very true the little c unt snitch :pimp

Rob 11-02-2015 11:22 AM

This should be a sticky!

http://i1108.photobucket.com/albums/...not-worthy.gif

crockett 11-02-2015 04:28 PM

I don't post daily news.. lol I just troll dumb Republicans and Russians.. I wonder which category McPhee falls into..

Must be the dumb Republican category otherwise he'd never add cyberseo. :1orglaugh

RyuLion 11-02-2015 05:17 PM

Back to the Top ^^^

CaptainHowdy 11-02-2015 05:33 PM

Quote:

Originally Posted by crockett (Post 20623658)
I don't post daily news.. lol I just troll dumb Republicans and Russians.. I wonder which category McPhee falls into..

Must be the dumb Republican category otherwise he'd never add cyberseo. :1orglaugh

There is no such thing as bad publicity??

Juicy D. Links 11-02-2015 05:39 PM

i am lovin it

Mr Pheer 11-02-2015 06:06 PM

Quote:

Originally Posted by O MARINA (Post 20623138)
Cool thanks. Where is Killswitch these days?

I dont think anyone has heard from him in a long time


All times are GMT -7. The time now is 05:28 AM.

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