Live data from Hacker News

Show HN: An Open Source Tool to Combat Clickbait Links

links.spince.com

11–20 of 29 posts

Re: Show HN: An Open Source Tool to Combat Clickbait Links

#12

So that means it's fetching the content (or at least the HTML portion) of every eligible link? That seems like potentially a lot of network traffic for what it does. Find if you have a fast connection, I suppose.

Can be even worse. I have seen some ugly corporate services using links with GET request to perform delete operations and having serious data loss caused by crawlers like this tool.

Re: Show HN: An Open Source Tool to Combat Clickbait Links

#13
Oh this is exactly what I wanted - I hope you make a firefox addon soon.

How does your approach of looking for text frequency compared to, say, pattern-matching existing clickbait titles from a database? Can the two approaches be combined (say, by using Splice to generate a corpus, remove false positives manually, then use it to train a pattern matcher?) Not having to load the linked article has huge benefits on bandwidth, robustness, etc.

Re: Show HN: An Open Source Tool to Combat Clickbait Links

#14
It seems to work pretty well. I can understand how this is far from perfect so far but the thing that bothers me the most is that there is no apparent caching mechanism and even though my internet connection is pretty fast it will take a good 10-20 seconds to go through all the links. Once you have determined a site to be clickbait or not maybe cache it so i don't have to wait 20 seconds every time i come back. Additionally this will save a lot of bandwidth.

Re: Show HN: An Open Source Tool to Combat Clickbait Links

#15
Note: there is a form of writing where the headline introduces a weird or interesting concept and then the writer makes the reader wait for it. When done well, these can be some really good articles.

Not sure how to account for that. Just wanted to point out the lossiness of the algorithm.

Looks like a cool app. Thanks!

Re: Show HN: An Open Source Tool to Combat Clickbait Links

#16

Be interesting to train a model using user generated, is this click bait title yes/no. Is this something machine learning could get very good at?

"Avoid clickbait links with this one weird trick!"

"Publishers hate it!"

Re: Show HN: An Open Source Tool to Combat Clickbait Links

#19
post #4

Be interesting to train a model using user generated, is this click bait title yes/no. Is this something machine learning could get very good at?

There are definitely training sets paired with Bayesian inference that attempt to do this.

You could probably get a decent result just by looking at the domain.

Re: Show HN: An Open Source Tool to Combat Clickbait Links

#20
I'm not sure that term frequency is the right way to go about the problem of clickbait. Frequently, titles and body text is meant to match up as a form of SEO.

I'm not sure if this can be done through an extension, but an alternative way to go about this is by measuring time spent on the page. If the page has X words which takes Y minutes to read, but a certain number of people bounce before that time, the score is lowered. The more users that stay on the page for Y minutes, the higher the score.

There are a lot of assumptions in that solution, but it might be worth considering.

Post reply on HN