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)
-   -   BWWWAAAAHAHAHAHA! hehehe hahaha (https://gfy.com/showthread.php?t=1294693)

blackmonsters 02-16-2018 10:02 AM

BWWWAAAAHAHAHAHA! hehehe hahaha
 
:1orglaugh

// ==UserScript==
// @name gfy.com
// @description block threads, posts, etc from certain users
// @include https://gfy.com/*
// @include http://*.gfy.com/*
// @require https://code.jquery.com/jquery-1.7.2.min.js
// @version 1.0
// @grant none
// ==/UserScript==

var hide_users = [
'Juicy D. Links',
'Mr Pheer',
'mineistaken',
'TheSquealer',
'420',
'#23',
'Brian837',
'desertfoxx',
'xXXtesy10',
'L-Pink',
'escorpio',
'Sid70',
'Horatio Caine',
'CjTheFish',
'nico-t',
'Relic',
'Smack dat',
'Grapesoda',
'Matt 26z',
'Nitzer Ebb',
'Relic',
'wehateporn',
'Google Expert',
'Joshua G',
'Smut-Talk',
'MrMaxwell',
'onwebcam',
'OneHungLo',
'Just Alex',
'GFED',
'BobJones123',
'Boozer',
'MFCT',
'Scott McD',
'Drax',
'JohnnyNight',
'Juicifer',
'Steve Rupe',
'oppoten'
];

$(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

}); //end of nested forloops for checking both posts and quotes.
});

brassmonkey 02-16-2018 10:03 AM

thank u :2 cents::2 cents:

blackmonsters 02-16-2018 10:11 AM

Quote:

Originally Posted by brassmonkey (Post 22207117)
thank u :2 cents::2 cents:

You might want to add CaptainHowdy

He's starting to go off the edge this week.

:1orglaugh

brassmonkey 02-16-2018 10:14 AM

Quote:

Originally Posted by blackmonsters (Post 22207127)
You might want to add CaptainHowdy

He's starting to go off the edge this weeks.

:1orglaugh

i added him a few days ago!! :1orglaugh:1orglaugh:1orglaugh

2MuchMark 02-16-2018 10:16 AM

http://t.fod4.com/t/56332bbaf7/c640x360_16.jpg

blackmonsters 02-16-2018 10:26 AM

Quote:

Originally Posted by brassmonkey (Post 22207135)
i added him a few days ago!! :1orglaugh:1orglaugh:1orglaugh

:1orglaugh

blackmonsters 02-16-2018 10:40 AM

Matt-ADX
xKingx

DraX 02-16-2018 10:41 AM

Ignore list? By who?

And what did little me do to get added to that list? :(

Bladewire 02-16-2018 11:17 AM

Quote:

Originally Posted by blackmonsters (Post 22207113)
:1orglaugh

// ==UserScript==
// @name gfy.com
// @description block threads, posts, etc from certain users
// @include https://gfy.com/*
// @include http://*.gfy.com/*
// @require https://code.jquery.com/jquery-1.7.2.min.js
// @version 1.0
// @grant none
// ==/UserScript==

var hide_users = [
'Juicy D. Links',
'Mr Pheer',
'mineistaken',
'TheSquealer',
'420',
'#23',
'Brian837',
'desertfoxx',
'xXXtesy10',
'L-Pink',
'escorpio',
'Sid70',
'Horatio Caine',
'CjTheFish',
'nico-t',
'Relic',
'Smack dat',
'Grapesoda',
'Matt 26z',
'Nitzer Ebb',
'Relic',
'wehateporn',
'Google Expert',
'Joshua G',
'Smut-Talk',
'MrMaxwell',
'onwebcam',
'OneHungLo',
'Just Alex',
'GFED',
'BobJones123',
'Boozer',
'MFCT',
'Scott McD',
'Drax',
'JohnnyNight',
'Juicifer',
'Steve Rupe',
'oppoten'
];

$(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

}); //end of nested forloops for checking both posts and quotes.
});

You're awesome! Brassmonkey too but every time you guys post this I always wish it was available for Android because 98% of my post on gfy are from my phone.

I want to block all the Russian bots / fake nics on here. Officially over them now.

thommy 02-16-2018 11:19 AM

Quote:

Originally Posted by blackmonsters (Post 22207113)
:1orglaugh

// ==UserScript==
// @name gfy.com
// @description block threads, posts, etc from certain users
// @include https://gfy.com/*
// @include http://*.gfy.com/*
// @require https://code.jquery.com/jquery-1.7.2.min.js
// @version 1.0
// @grant none
// ==/UserScript==

var hide_users = [
'Juicy D. Links',
'Mr Pheer',
'mineistaken',
'TheSquealer',
'420',
'#23',
'Brian837',
'desertfoxx',
'xXXtesy10',
'L-Pink',
'escorpio',
'Sid70',
'Horatio Caine',
'CjTheFish',
'nico-t',
'Relic',
'Smack dat',
'Grapesoda',
'Matt 26z',
'Nitzer Ebb',
'Relic',
'wehateporn',
'Google Expert',
'Joshua G',
'Smut-Talk',
'MrMaxwell',
'onwebcam',
'OneHungLo',
'Just Alex',
'GFED',
'BobJones123',
'Boozer',
'MFCT',
'Scott McD',
'Drax',
'JohnnyNight',
'Juicifer',
'Steve Rupe',
'oppoten'
];

$(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

}); //end of nested forloops for checking both posts and quotes.
});

this is a very nice and professional selected list :-)
add asspimp and you can sell it as a standard feature :1orglaugh:1orglaugh:1orglaugh

Bladewire 02-16-2018 11:21 AM

^^^ Truth

CaptainHowdy 02-16-2018 11:34 AM

The best ignore feature is inside your head ...

blackmonsters 02-16-2018 11:38 AM

Quote:

Originally Posted by thommy (Post 22207239)
this is a very nice and professional selected list :-)
add asspimp and you can sell it as a standard feature :1orglaugh:1orglaugh:1orglaugh

'Acepimp'

Good catch!
Geeze, How did I miss that one?

:1orglaugh

blackmonsters 02-16-2018 11:41 AM

Disclaimer : The only reason 'Mr Pheer' is on the list is because he got all bent out of shape because I trashed his drone ideology about where drones could fly and he put me
in this script.

:1orglaugh

blackmonsters 02-16-2018 11:48 AM

Quote:

Originally Posted by Bladewire (Post 22207235)
You're awesome! Brassmonkey too but every time you guys post this I always wish it was available for Android because 98% of my post on gfy are from my phone.

I want to block all the Russian bots / fake nics on here. Officially over them now.

You need a browser that accepts tampermonkey on your phone.
I haven't tried that but try using chrome on your phone.

brassmonkey 02-16-2018 11:53 AM

Quote:

Originally Posted by blackmonsters (Post 22207295)
Disclaimer : The only reason 'Mr Pheer' is on the list is because he got all bent out of shape because I trashed his drone ideology about where drones could fly and he put me
in this script.

:1orglaugh

if i remember right he acted like he coded it. it was made by a mainstream guy. no porn it was about some sports bs. i gave him credit

Bladewire 02-16-2018 12:51 PM

Quote:

Originally Posted by blackmonsters (Post 22207319)
You need a browser that accepts tampermonkey on your phone.
I haven't tried that but try using chrome on your phone.

Thanks!

I installed tampermonkey and I'm trying to import the script from the text area and it says it can't parse it.

blackmonsters 02-16-2018 12:55 PM

Quote:

Originally Posted by Bladewire (Post 22207497)
Thanks!

I installed tampermonkey and I'm trying to import the script from the text area and it says it can't parse it.

The script is plain javascript so it should work fine.
Maybe you are picking up something extra when you copy it.

Bladewire 02-16-2018 12:57 PM

Quote:

Originally Posted by blackmonsters (Post 22207511)
The script is plain javascript so it should work fine.
Maybe you are picking up something extra when you copy it.

Yeah I'll work it out thanks again :thumbsup

blackmonsters 02-16-2018 02:55 PM

:)


......

Speigelau 02-16-2018 04:51 PM

You can remove L pink, he passed away 18 months ago.

blackmonsters 02-16-2018 05:05 PM

Quote:

Originally Posted by Speigelau (Post 22207935)
You can remove L pink, he passed away 18 months ago.

Nope, that fucker will come back as a zombie.

:2 cents:

brassmonkey 02-16-2018 05:12 PM

blackmonsters 2020

brassmonkey 02-16-2018 06:15 PM

Quote:

Originally Posted by Speigelau (Post 22207935)
You can remove L pink, he passed away 18 months ago.

wrong! he's on a smaller forum don't know why :helpme

blackmonsters 02-16-2018 07:12 PM

Quote:

Originally Posted by brassmonkey (Post 22208033)
wrong! he's on a smaller forum don't know why :helpme

Which one? I want to go there and photoshop his avatar.

:1orglaugh

sarettah 02-16-2018 08:09 PM

Quote:

Originally Posted by brassmonkey (Post 22207339)
if i remember right he acted like he coded it. it was made by a mainstream guy. no porn it was about some sports bs. i gave him credit

As far as I know it was originally coded and distributed by Killswitch (I don't remember right now what other names he had and which name he was on when he did the script)

Edited in: I found when Mr Pheer did his thread and he gave creedit to killswitch.

https://gfy.com/fucking-around-and-pr...-gift-gfy.html

Quote:

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

.

sarettah 02-16-2018 08:16 PM

Here is where Killswitch dropped it on the board:

https://gfy.com/fucking-around-and-pr...st-inside.html

Quote:

Originally Posted by Killswitch (Post 19311551)
So with recent stuff going on with idiotic users (DamianJ, DVTimes, Paul Markham) and the lack of awesome plugins like the old school FireFox plugin that StuartD made back in the day... I have spent the last 20 minutes throwing together this Chrome extension for everyone.

I will expand on it, but for now it makes a great TRUE ignore feature.

Instead of getting the dumb "You can't see this post because so and so is on your ignore list" message, it completely removes them from the page.

Right now you have to load it into your Chrome using the "Load Unpacked Extension..." feature, and you also have to edit the plugin to add users to the ignore list, then reload the plugin, but it works, and that's a plus.

Soon I will make it better like an extra option under every users posts that when clicked easily adds the user to the ignore list for you, and an options page to easily add/remove users also.

You can currently download it by clicking this link:
https://github.com/killswitch/gfy-ig...ive/master.zip

Instructions:
  1. Download zip file.
  2. Unzip into wherever you want it.
  3. Open hide_users.js
  4. Add users you want to ignore to the array in same format as current.
  5. Go to your chrome extensions list
  6. Click "Developer Mode"
  7. Click "Load unpacked extension..."
  8. Select folder of extension
  9. Reload GFY
  10. ???
  11. PROFIT!!!!

If you have any questions, problems, or feature requests, keep this thread bumped and I'll respond whenever possible.

Thanks and enjoy this little extension and a better GFY.

Edit::

Also a note, it only works in the Fucking Around & Program Discussion forum list, and all threads because I'm to lazy to make it work in all forums right now.

It completely removes all threads from the thread list by those users, and their posts in the thread itself.

.

brassmonkey 02-16-2018 09:28 PM

Quote:

Originally Posted by blackmonsters (Post 22208123)
Which one? I want to go there and photoshop his avatar.

:1orglaugh

ask bladewire add that bitch sarettah

MFCT 02-17-2018 12:06 AM

So you don't wanna see my pro-Hillary threads? What are you, a bunch of Trump supporters??

By the way, vote Hillary in 2020. Four more years!

DraX 02-17-2018 05:22 AM

^^^ A handful of gfy members yapping about nothing...:2 cents:

blackmonsters 02-17-2018 08:42 AM

Quote:

Originally Posted by brassmonkey (Post 22208245)
ask bladewire add that bitch sarettah

Nope!

Will never add sarettah.

Sarettah was the only one on GFY who help me out after I got out of the hospital.
Although I sometimes think he may have did it just to verify my identity to make sure I wasn't Brassmonkey, I really appreciated the help.

I had nothing when I got out of the hospital.
The hospital gave me a T-shit, nylon shorts and shower shoes to go home because
I had been brought into the hospital naked and unconscious.

If I made a TV show about what happened to me, I would call the show "Naked and Dead".

:2 cents:

sarettah 02-17-2018 09:51 AM

Quote:

Originally Posted by brassmonkey (Post 22208245)
that bitch sarettah

That's pretty funny to see Butcher's Bitch call someone else a bitch.

:1orglaugh

.

nico-t 02-17-2018 09:55 AM

Quote:

Originally Posted by blackmonsters (Post 22207113)
:1orglaugh

// ==UserScript==
// @name gfy.com
// @description block threads, posts, etc from certain users
// @include https://gfy.com/*
// @include http://*.gfy.com/*
// @require https://code.jquery.com/jquery-1.7.2.min.js
// @version 1.0
// @grant none
// ==/UserScript==

var hide_users = [
'Juicy D. Links',
'Mr Pheer',
'mineistaken',
'TheSquealer',
'420',
'#23',
'Brian837',
'desertfoxx',
'xXXtesy10',
'L-Pink',
'escorpio',
'Sid70',
'Horatio Caine',
'CjTheFish',
'nico-t',
'Relic',
'Smack dat',
'Grapesoda',
'Matt 26z',
'Nitzer Ebb',
'Relic',
'wehateporn',
'Google Expert',
'Joshua G',
'Smut-Talk',
'MrMaxwell',
'onwebcam',
'OneHungLo',
'Just Alex',
'GFED',
'BobJones123',
'Boozer',
'MFCT',
'Scott McD',
'Drax',
'JohnnyNight',
'Juicifer',
'Steve Rupe',
'oppoten'
];

$(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

}); //end of nested forloops for checking both posts and quotes.
});

Create your own safe space to censor out anyone who is critical and goes by facts instead of emotions! Fucking social justice warrior snowflake :1orglaugh:1orglaugh:1orglaugh:1orglaugh

blackmonsters 02-17-2018 01:32 PM

celandina

sarettah 02-17-2018 03:29 PM

I made a tweak or two. I think this version works way better. :thumbsup

You're welcome.

Code:

// ==UserScript==
// @name gfy.com
// @description block threads, posts, etc from certain users
// @include https://gfy.com/*
// @include http://*.gfy.com/*
// @require https://code.jquery.com/jquery-1.7.2.min.js
// @version 1.0
// @grant none
// ==/UserScript==

var show_users = [
'sarettah'
];

$(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();
$(show_users).each(function (show_index, show_user) {
if (thread_starter !== show_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();
$(show_users).each(function (show_index, show_user) {
if (post_author !== show_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();
$(show_users).each(function (show_index, show_user) {
if (post_author !== show_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

}); //end of nested forloops for checking both posts and quotes.
});


MFCT 02-17-2018 05:06 PM

If (hypothetically) there was anyone here with alternative nicks (which there aren't), the last thing they'd want is if a buddy were to mistakenly address an alt nick as the primary nick. Thereby blowing the cover of an alt nick.

The safest way (hypothetically) to assure that wouldn't happen is if you were to not see the alt nicks in the first place, no? We wouldn't want anyone to know which nicks on this site are the alts.

Do some of you get it now? Hint hint?

sarettah 02-17-2018 08:40 PM

Quote:

Originally Posted by MFCT (Post 22209137)
If (hypothetically) there was anyone here with alternative nicks (which there aren't), the last thing they'd want is if a buddy were to mistakenly address an alt nick as the primary nick. Thereby blowing the cover of an alt nick.

The safest way (hypothetically) to assure that wouldn't happen is if you were to not see the alt nicks in the first place, no? We wouldn't want anyone to know which nicks on this site are the alts.

Do some of you get it now? Hint hint?


What?






.

Bladewire 02-17-2018 09:23 PM

Quote:

Originally Posted by sarettah (Post 22209273)
What?






.

:1orglaugh:1orglaugh:1orglaugh

blackmonsters 02-18-2018 08:10 AM

:1orglaugh

sarettah 02-19-2018 11:16 AM

Whats so funny? :disgust

.

blackmonsters 02-21-2018 05:26 PM

Damn, I turned if off for for a while and what a mistake.

:2 cents:

Ernie D. Links 02-21-2018 05:33 PM

magaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

blackmonsters 02-21-2018 05:36 PM

Added Ernie D. Links

:1orglaugh

sarettah 02-21-2018 05:41 PM

Quote:

Originally Posted by blackmonsters (Post 22215087)
Added Ernie D. Links

:1orglaugh

I'm telling you, just run the version I put up and you never have to add another user, you will see only the important posters and their posts.

:thumbsup

.

blackmonsters 02-21-2018 05:47 PM

Quote:

Originally Posted by sarettah (Post 22215091)
I'm telling you, just run the version I put up and you never have to add another user, you will see only the important posters and their posts.

:thumbsup

.

I gotta see some of the other posters, I can't keep relying on you to help me out.

:thumbsup

sarettah 02-21-2018 06:30 PM

Quote:

Originally Posted by blackmonsters (Post 22215099)
I gotta see some of the other posters, I can't keep relying on you to help me out.

:thumbsup

Well, still if you add users on the one I put up then they show up. So, might be easier to keep a list of who you want to see instead of who you don't want to see.

Much shorter list to maintain :2 cents:

.

blackmonsters 02-21-2018 07:05 PM

Quote:

Originally Posted by sarettah (Post 22215113)
Well, still if you add users on the one I put up then they show up. So, might be easier to keep a list of who you want to see instead of who you don't want to see.

Much shorter list to maintain :2 cents:

.

I don't know the user names of new clients so that wouldn't work.

nico-t 02-22-2018 03:56 AM

https://vignette.wikia.nocookie.net/...e_Space013.png

when south park makes fun of you, you know you've really become a crybaby loser :1orglaugh

nico-t 02-22-2018 04:04 AM

https://c3.legalinsurrection.com/wp-...ace-600-LI.jpg

blackmonsters: "it's all their fault, it's not me!!!!!" :1orglaugh way to become a winner in life :1orglaugh:1orglaugh:1orglaugh

blackmonsters 02-23-2018 07:28 PM

Added Bladewire

:1orglaugh


All times are GMT -7. The time now is 09:17 PM.

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