Live data from Hacker News

Ask HN: How do I hide a user's comments?

news.ycombinator.com

1–10 of 13 posts

Ask HN: How do I hide a user's comments?

#1
Hi,

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.

Re: Ask HN: How do I hide a user's comments?

#5
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' }
      } 
  }

Re: Ask HN: How do I hide a user's comments?

#8

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.

Re: Ask HN: How do I hide a user's comments?

#9
post #8

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.

Re: Ask HN: How do I hide a user's comments?

#10
post #3

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

Seeing shitposts on HN from bozos like myself isn’t the character building exercise in stoicism that you think it is.
Post reply on HN