Is there a way to Block other users?

Evil Emperor Proteus

Master of Science
Is there a way I can block other users? There is a user called Ihhh who I do not get along with, So I’d rather just not see his posts, if at all possible. When I asked in the comments of an image I was met with angry name-calling.
ArmadilloEater

Administrator
French Taunter
@Evil Emperor Proteus  
Hi, unfortunately we don’t have such a feature, but if this user is harassing you or fucking threads up, you should report him so we can have a look. In the meantime your best bet is to ignore and move on, if possible. I think I saw a userscript that did hide certain posters/commenters, but I can’t find it. Could try to write one, if enough people ask for it.
Evil Emperor Proteus

Master of Science
@ArmadilloEater  
Oh that is unfortunate. He tends to just be a nuisance, sometimes baiting me into doing something I regret, so I was hoping I could just not see him any more. He seems to delight in the fact that mods gave him two duck badges.
ArmadilloEater

Administrator
French Taunter
@Evil Emperor Proteus  
Done. Here is the code to use in Tampermonkey (chrome), just remove the header to use with other script managers.
 
// ==UserScript==
// @name Derpibooru User Hidder
// @description Hides posts and comments from listed users
// @match https://derpibooru.org/*
// ==/UserScript==
(function() {
let names = []; //Insert names you want to filter here, like this: [“username1”, “username2”, “username3”].
let posts = Array.from(document.getElementsByClassName(“block communication”));
posts.forEach(function(post) {
names.includes(post.firstChild.children[1].firstElementChild.innerText) ? post.style.display = ‘none’: ‘’;
});
})();
 
Tested and works, if you have issues make sure you have the right name inserted into the “names” array.
ArmadilloEater

Administrator
French Taunter
@Marker  
The one I remember is from a few years back, but yours looks pretty good! Shame we don’t have a list of useful userscripts… I’ll look into it.
Evil Emperor Proteus

Master of Science
@Zaknel  
If I see someone who does nothing but bait and troll and cause trouble then it is prudent to block them. With your way, basically, on the off-chance a few people might suffer, everyone must suffer indefinitely. If a person abuses the function in the way you describe then their input was worthless anyway. I am not blocking Ihhh for a spur of the moment thing, I am blocking him because of persistent activity over the course of several years and I’m sick of seeing him.
Interested in advertising on Derpibooru? Click here for information!
The Travelling Pony Museum Shop!

Help fund the $15 daily operational cost of Derpibooru - support us financially!

Syntax quick reference: **bold** *italic* ||hide text|| `code` __underline__ ~~strike~~ ^sup^ %sub%

Detailed syntax guide