Live data from Hacker News

Hacker News for Hackers

ontology2.com

11–20 of 41 posts

Re: Hacker News for Hackers

#11

> Videos, Podcasts, etc.: If I am rating 100+ articles a day I just can't spend the time it takes to look at time-based media. It makes me sad when I see an interesting looking post, and it turns out that it is only a video or podcast, with no proper writeup. I just don't have time to watch an hour-long video, for content that I could read at my own pace in ten/fifteen minutes.

Usually those submissions are affixed with a [video] or [audio] tag.

Re: Hacker News for Hackers

#12

> Off-Topic: ... If they'd cover it on TV news, it's probably off-topic. That would be nice but unfortunately in practice all the big news make their way to the top of HN, despite the fact that we've already read and heard about them from countless other sources. For example some of the top posts at the moment are: - Catalan parliament declares independence from Spain - New Zealand to ban foreigners from buying exist…

I do enjoy the HN comments perspectives on that stuff, though.

Re: Hacker News for Hackers

#13
I don't have time to read the whole thing, so maybe it's already there, but, ....

I'd like to be able to credit comments that got me to re-think or even change my position on a topic. Upvotes basically say, 'that's a good point', or 'I agree with you'. But I'd like to see a way to gauge 'influence', in terms of affecting what people think in a positive way.

Can that be worked in?

Re: Hacker News for Hackers

#14

I don't have time to read the whole thing, so maybe it's already there, but, .... I'd like to be able to credit comments that got me to re-think or even change my position on a topic. Upvotes basically say, 'that's a good point', or 'I agree with you'. But I'd like to see a way to gauge 'influence', in terms of affecting what people think in a positive way. Can that be worked in?

What about stating this in a reply?

Re: Hacker News for Hackers

#15

That's an interesting project. I've been exploring this from a different angle, in the form of generated email newsletters ( https://www.findlectures.com/form?type=alert ). This uses the contents of the articles as well - I'm crawling links on programming subreddits. If you start from keywords you can use NLP (Word2vec) to measure how close articles are to your interests, so for instance "python, machine learning" gi…

Many years ago, back when Bayesian spam filtering was the hot new thing, I wrote up a little program that would classify articles in RSS feeds based on whether I found similar articles to be interesting or not interesting in the past.

The ultimate goal was to save me time and effort in manually classifying them, as I and everyone else do when we scan through what we come across on a daily basis. Instead of manually doing that, the hope was the program could do it for me, and I could just focus on reading the interesting articles and not even have to deal with the uninteresting ones.

From that experiment I learned a few things:

- First, that I'd have to manually scan through all the articles anyway, just in case the classifier made a mistake and maybe dumped an article I found intensely interesting in the uninteresting pile.

- Second, that having to consciously think about which article was interesting or uninteresting in order to do the training, about whether the classifier was working or not and which articles needed to be reclassified, about having to re-train it when it messed up, and so on was a hell of a lot more work than just scanning through my RSS feed manually and deciding on which articles I found interesting or not myself.

- Third, my interests were not static things that the algorithm could learn and classify on correctly from then on out. My interests were constantly changing. Sure, maybe there were a handful of things I always found interesting or uninteresting -- but overall what I found interesting or not changed from day to day. It was also kind of unpredictable, even to myself.

The third point kind of argues towards the approach of the HN front page, which is un-classified and un-tagged. I've read all sorts of great articles on HN that if I'd been going by some pre-written list of interests that I had, I would have never have read. I do still often wish for tagging on HN anyway, just because there are certain types of articles that I really never ever want to read, and I'd love to be able to exclude them. But the vast majority of HN articles aren't of that kind (or I wouldn't be here).

That experiment with bayesian classification turned out to be rather short-lived, as I found the whole thing way too much of a bother to maintain and to retrain when it misclassified articles. I'm still reading RSS feeds the old fasioned way today, and am a little suspicious about any AI/machine-learning-like approaches to article classification.

Re: Hacker News for Hackers

#16
Impressive. The aspect I find of particular interest is dog piling. When I first heard about Prismatic[0] (RIP), I thought that would be a great way of discovering articles on topics I was in interested from sources I didn't already know. I ended up being overwhelmed by articles dog piling without a useful way to filter them for either (a) the original source of the news or (b) articles written on the topic from sources who added valuable context or insight into the topic. I'm glad to see someone tackling this particular issue.

One aspect the author touched on is "I'd like to be suprised by relevant things that I don't know about." It's not immediately clear how to discover serendipitously items that are outside of the things you're already interested in, and therefore would already be in your feed. This is an area I'd like to know more about.

I'm also really keen on someone taking the time to automate curation of their own feed. One can still fall prey to the more negative aspects of Daily Me[1], but at least you're better aware of what's going into producing the feed you're reading and have the tools to update it if you find it's not serving your best interests.

[0]: https://en.wikipedia.org/wiki/Prismatic_(app)

[1]: https://en.wikipedia.org/wiki/Daily_Me

Re: Hacker News for Hackers

#17

> Off-Topic: ... If they'd cover it on TV news, it's probably off-topic. That would be nice but unfortunately in practice all the big news make their way to the top of HN, despite the fact that we've already read and heard about them from countless other sources. For example some of the top posts at the moment are: - Catalan parliament declares independence from Spain - New Zealand to ban foreigners from buying exist…

“All the big news”? That’s quite a stretch. If it were true, it would mean the most of the other 27 stories on the HN front page could conceivably be found on a newspaper front page, which is clearly untrue. I don’t think it’s unreasonable that some news is so big — such as the potential creation of a new European country — that HN users want to discuss it.

Re: Hacker News for Hackers

#18
post #14

I don't have time to read the whole thing, so maybe it's already there, but, .... I'd like to be able to credit comments that got me to re-think or even change my position on a topic. Upvotes basically say, 'that's a good point', or 'I agree with you'. But I'd like to see a way to gauge 'influence', in terms of affecting what people think in a positive way. Can that be worked in?

What about stating this in a reply?

I've often prefaced such replies with "Because sometimes a upvote isn't enough...", and those get downvoted about 40% of the time. Not that I care, I bathe daily in karma points, it's just a tiny bit disheartening.

I would also argue that an upvote is not "I agree with you", but "this contributes to the conversation in a positive manner". I frequently upvote posts with which I disagree. Conversely, a downvote in my book says, "hey, you're kind of being a dick and dragging the conversation down" rather than "I disagree". I mean, I'll downvote something that is just demonstrably wrong, but more often than not it's "quit being a dick".

Re: Hacker News for Hackers

#19

That's an interesting project. I've been exploring this from a different angle, in the form of generated email newsletters ( https://www.findlectures.com/form?type=alert ). This uses the contents of the articles as well - I'm crawling links on programming subreddits. If you start from keywords you can use NLP (Word2vec) to measure how close articles are to your interests, so for instance "python, machine learning" gi…

Many years ago, back when Bayesian spam filtering was the hot new thing, I wrote up a little program that would classify articles in RSS feeds based on whether I found similar articles to be interesting or not interesting in the past. The ultimate goal was to save me time and effort in manually classifying them, as I and everyone else do when we scan through what we come across on a daily basis. Instead of manually d…

Yeah, that makes a lot of sense. I started this from making an email list where I'm sending "lunch and learn" talks which I manually curate / write up descriptions. About half the people like that style, and half have specifically requested something more topical.

There are a bunch of great curated email newsletters around specific interests (Javascript Weekly, etc) so I'm aiming to do something similar, but more granular. So far the ML thing has been promising, but it helps to start from a pre-vetted dataset.

Re: Hacker News for Hackers

#20
Are you not setting this up as a website? I was really hoping that this would turn out as an announcement to be an aggregator of an aggregator. Personally I dont understand either why Apple news and 'Why is X down' links dont get banned, these are the most obvious offenders. I was just about to make a list of posts on the top page that I personally wouldnt allow on a serious hackernews site and I stopped because it would include almost every single link and at that point I feel like I'm just grandstanding. The number one rule that I would have for news that I dont want to read is that if this is some political decision, I dont want to hear it. Politics change all the time, it's messy, it's opinionated and frankly populated by stupid people with stupid commentators. Absolutely no value gets generated by reading some post about how solar power is now 20% more affordable in Florida or how France just banned Monsanto crop nr. 4 or how country X wants independence. These daily occurences will happen over the course of thousands of years, I dont care. You would have to keep reading and following that particular industry/country in a research-like capacity to be up to date at all. Other rules are of course any kind of 'do this to be a better programmer' post. Look I heard it all, I dont need to hear it for the next 30 years too, this is all too similar to politics and they are always blatantly opinion pieces instead of objective looks at the landscape.
Post reply on HN