Ask HN: How do I hide a user's comments?
12 comments
I use this in ViolentMonkey
for (let idiot of ['alice','bob','carol','dick','eve']){
for ( let a of document.querySelectorAll('a[href="user?id=' + idiot + '"]') ){
let node = a.parentNode.parentNode.parentNode.parentNode
if (node.tagName !== 'TABLE') { node.style.display = 'none' }
}
}thank you - I already had GreaseMonkey installed (for old.reddit.com redirection) - wasn't sure if they're compatible but they are - it worked nicely without any modifications - thank you very much.
depending on the size of the list this may be cleaner than the ublock origin one - thanks again.
No problem. I can't remember any longer why I excluded 'TABLE' nodes; I think it's to leave the front page alone when it contains posts from the unwanted users. I was only concerned with hiding comments, not links.
I think you just have to select the right ancestor element.
news.ycombinator.com##.athing:has(a[href="user?id=example"])
seems to work.of course, in retrospective now it makes sense - thanks for taking the time to look into this, appreciate it.
You grow up and learn to accept that there are lots of unsavory things in this world. Part of being mature means facing difficult things instead of hiding them or running away from them
Install a browser plugin or userscript with that capability.
I don't think HN has this capability so I was trying to craft something via ublock origin.
I added:
news.ycombinator.com##div:has(a[href*="user?id=example"])
however, that only hid the div where the user's name was shown, not the comment itself as that's in another subsequent div. Is there an argument I can pass so that it will hide the next div as well?
Some context on why I'm trying to achieve this - there's a small subset of users that insert political comments in highly interesting threads and I'm trying to avoid politics as much as possible so I'd like to "ban" those users by automatically hiding everything they say. I know it's a sledgehammer approach but the vast majority of HN content is extremely interesting and I really enjoy being part of the community.
Thank you.