←back to thread

468 points bookofjoe | 1 comments | | HN request time: 0.361s | source

I would very much like to enjoy HN the way I did years ago, as a place where I'd discover things that I never otherwise would have come across.

The increasing AI/LLM domination of the site has made it much less appealing to me.

1. 65 ◴[] No.44573924[source]
One liner you can use in a GreaseMonkey/TamperMonkey script:

[...document.querySelectorAll('.titleline > a')].filter(link => link.innerText.split(' ').find(word => ['llm', 'ai'].includes(word.toLowerCase()))).forEach(el => {const sub = el.closest('.submission'); sub.nextElementSibling.remove(); sub.remove() })

I wrote this in 2 minutes so I'm sure someone is going to reply with something better.