vitoplantamura / HackerNewsRemovals

List of stories removed from the Hacker News Front Page, updated in real time.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UPDATE (February 4, 2024): This is the discussion about this project on HN: here. Please specifically read @dang's comment regarding the core assumption of this project: here. On a personal note, the number of Stories removed yesterday (Saturday, February 3, 2024) was the lowest ever recorded by the service. This includes 2 duplicate Stories. As a side note, in the list always check whether a Story is a duplicate or not: this is a very reasonable reason for removal and unfortunately I have no way of automatically determining it in the service!

Introduction

The purpose of this project is to try to understand the type and scale of the moderation of the Hacker News Front Page.

NOTE: I love Hacker News. I try to read it every day. In the case of OnnxStream (here for example), 95% of the comments were helpful and intelligent. I also understand that moderating a site with huge traffic and where users are basically anonymous must be a very difficult task.

Returning to the purpose of this project, from what I have been able to see, the "public" (i.e. observable from the outside) moderation of the Front Page consists of two main tools: modification of the title of a Story (voluntarily or involuntarily influencing its growth in terms of rank) or directly its removal.

Regarding the first type of moderation, an excellent site is already available that tracks changes to Story titles. Here instead I will focus on the second type.

For the reasons explained in the "Why?" section below, I have developed a small application that logs all the Stories that are removed from the Front Page, for personal use. I later discovered that there is no tool/website that provides this type of information and I decided to make it public here. It was a difficult decision but my rationale is: is it better to have more transparency or less transparency?

If you know of a tool/website similar to this, please let me know: I will archive this repo or set it to private.

A possible very positive outcome for this project could be to have a list similar to this, but available directly among the HN lists. Or even to notify a user when a Story is penalized on the Front Page, perhaps indicating the number of flags and/or the reason, for example.

Why?

Feel free to skip this part or click to expand

A friend of mine posted two Stories on Hacker News related to OnnxStream (31 days apart), the first related to SDXL Turbo support and the second related to TinyLlama and Mistral 7B support.

In the case of the first, the Story was among the first on the Front Page, until its title was changed from "Stable Diffusion Turbo on a Raspberry Pi Zero 2 generates an image in 29 minutes" to "OnnxStream: Stable Diffusion XL 1.0 Base on a Raspberry Pi Zero 2". This effectively "killed" the Story. One user pointed out that the new title didn't reflect the spirit of the Story (thanks @practice9).

In the case of the second, the Story was in third place on the Front Page, less than an hour after the submission. In this case it was simply removed from the Front Page.

Having discovered this, perplexed, I sent an email to the moderator. @dang, who was very kind and quick in his response, explained to me that the Story had been flagged by users even without being explicitly [flagged], and that he could therefore only hypothesize the causes of the flag. His hypothesis was that (some?) users might be fed up with news related to LLMs.

While I have no reason to doubt Daniel's good faith, it's hard to believe that HN users would be tired of LLM-related news.

So I decided to develop a small console application to determine the frequency of this phenomenon (actually I was also motivated by the prospect of writing some C# code, after more than 2 years of complete abstinence). I subsequently discovered that there were no tools/websites that monitored this specific phenomenon and I therefore decided to make it public here.

How it works

Using the official HN API, the service fetches 90 Top Stories every minute and makes a comparison with the first 30 Top Stories (i.e. the Front Page) fetched the previous minute. It logs all missing Stories here. The assumption is that a Story cannot go from the top 30 to a position greater than 90 in a single minute, without having been explicitly removed. If a Story reappears on the Front Page, it is removed from this log. All Stories present in the second-chance pool are excluded from the log. Title and URL are those from when the Story first appeared in the top 30. The number of points and comments and the rank are those from when the Story was removed from the Front Page. The ID points to the news.social-protocols.org page for that Story, which provides a graph of the Story's position on the Front Page over time.

The list (updated in real time, max delay: 1 minute)

NOTE: always check whether a Story is a duplicate or not: this is a very reasonable reason for removal and unfortunately I have no way of automatically determining it in the service!

Friday, March 1, 2024

Saturday, March 2, 2024

Sunday, March 3, 2024

Monday, March 4, 2024

Tuesday, March 5, 2024

Wednesday, March 6, 2024

Thursday, March 7, 2024

Friday, March 8, 2024

Saturday, March 9, 2024

Sunday, March 10, 2024

Monday, March 11, 2024

Tuesday, March 12, 2024

Wednesday, March 13, 2024

Thursday, March 14, 2024

Friday, March 15, 2024

Saturday, March 16, 2024

Sunday, March 17, 2024

Monday, March 18, 2024

Tuesday, March 19, 2024

Wednesday, March 20, 2024

Thursday, March 21, 2024

Friday, March 22, 2024

Saturday, March 23, 2024

Sunday, March 24, 2024

Monday, March 25, 2024

Tuesday, March 26, 2024

Wednesday, March 27, 2024

Thursday, March 28, 2024

Friday, March 29, 2024

Saturday, March 30, 2024

Sunday, March 31, 2024

Monday, April 1, 2024

Tuesday, April 2, 2024

Wednesday, April 3, 2024

Thursday, April 4, 2024

Friday, April 5, 2024

Saturday, April 6, 2024

Sunday, April 7, 2024

Monday, April 8, 2024

Tuesday, April 9, 2024

Wednesday, April 10, 2024

Thursday, April 11, 2024

Friday, April 12, 2024

Saturday, April 13, 2024

Sunday, April 14, 2024

Monday, April 15, 2024

Tuesday, April 16, 2024

Wednesday, April 17, 2024

Thursday, April 18, 2024

Friday, April 19, 2024

Saturday, April 20, 2024

Sunday, April 21, 2024

Monday, April 22, 2024

Tuesday, April 23, 2024

About

List of stories removed from the Hacker News Front Page, updated in real time.


Languages

Language:C# 100.0%