Settings

Theme

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

2 points by ogeiczvm 4 years ago · 12 comments (11 loaded) · 1 min read


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.

thomassmith65 4 years ago

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' }
      } 
  }
  • ogeiczvmOP 4 years ago

    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.

    • thomassmith65 4 years ago

      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.

lovelearning 4 years ago

I think you just have to select the right ancestor element.

    news.ycombinator.com##.athing:has(a[href="user?id=example"])
seems to work.
  • ogeiczvmOP 4 years ago

    of course, in retrospective now it makes sense - thanks for taking the time to look into this, appreciate it.

water8 4 years ago

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

  • krapp 4 years ago

    On the contrary, when you actually grow up you realize life is too short and your time has value, and you no longer feel obliged to entertain every fool and asshole who wanders by.

    • water8 4 years ago

      If you dismiss every single person on a rapid judgment you’re going to go through a lot of people

  • paulcole 4 years ago

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

    • water8 4 years ago

      Nor is it the trauma inducing scourge of society that really needs sheltering from

krapp 4 years ago

Install a browser plugin or userscript with that capability.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection