Earlier quoted context omitted.
Wait, are you being facetious or did you not catch on to the fact that the comments not being included is what makes it "quiet HN"?
Your comment reminds me why "No Feigned Surprise" is a virtue ( https://www.recurse.com/manual#no-feigned-surprise ). Yes, it is entirely possible to miss the tiny link at the bottom that says "What is this?" and even then still possible to skim or dismiss it thereafter.
Quiet Hacker News
31–40 of 62 posts
Re: Quiet Hacker News
#32document.querySelectorAll("td.subtext").forEach( function(currentValue, currentIndex, listObj) { currentValue.hidden = true; } );
.itemlist .subtext {display: none;}Re: Quiet Hacker News
#33Don't forget to read the about page: http://tomspeak.co.uk/posts/quiet-hacker-news I somewhat agree. For example I try to avoid discussion with more than 100 comments. Usually the small discussions are more technical and have a better signal to noise ratio.
Agreed, but I wish HN would experiment more with new technical tools to improve civility. For all its flaws, HN is still home to some of the very best discussion, and there's no reason to throw up one's hands. For instance, removing public vote counts seems to have been a net positive (although I mistakenly opposed it at the time). Even a small nudge to get people to vote based on constructiveness rather than agree/d…
Incivility is a social problem, and that requires community involvement and reinforcement of accepted norms, not attempts at operant conditioning through the UI.
Re: Quiet Hacker News
#34Don't forget to read the about page: http://tomspeak.co.uk/posts/quiet-hacker-news I somewhat agree. For example I try to avoid discussion with more than 100 comments. Usually the small discussions are more technical and have a better signal to noise ratio.
The collapsing feature is helpful, usually longer threads wane into an infinite stream of increasingly off-topic rants. But because it happens after when the page is loaded, it messes up the feature where when you navigate history it jumps to where you left, and with collapsed comments it scrolls past there.
Re: Quiet Hacker News
#35However, if I see off topic rants and arguments, then I tend to dismiss the article as an opinion or puff piece.
Generally like that the comments on here tend to stay on topic and thoughtful, although I am disappointed that some of my posts on here lately, which have merely been questions about aspects of the article, have been downvoted. Hope HN doesn't turn into another StackOverflow imitating over-moderated "that doesn't belong here" type site.
Re: Quiet Hacker News
#36Re: Quiet Hacker News
#37Yeah I can understand the motivation for creating this. When I first started browsing HN, I couldn't believe how supplemental, civil and noiseless the comments were. However, after several years, I've started to jump straight to the comments, especially when I have a vague clue about what the article is about. That's when I don't feel the incentive to actually read and create my own opinions. I've also started to vie…
Edit: Good to know the system works?
Re: Quiet Hacker News
#38document.querySelectorAll("td.subtext").forEach( function(currentValue, currentIndex, listObj) { currentValue.hidden = true; } );
you can't use forEach with a NodeList ;)
Also if we're going to make a snazzy one-liner, let's cut out the unused arguments:
Array.from(document.querySelectorAll("td.subtext")).forEach(currentValue => { currentValue.hidden = true; });Re: Quiet Hacker News
#39Re: Quiet Hacker News
#40I would likely never use this. I'm almost always here for the comments on the Show HN & Ask HNs as well as the Stories. The comments on the Ask HN, Show HN are usually very informative, and have helped me a lot in my own side projects and entrepreneurial pursuits. The comments on stories (for me) act as a curation tool, and based on what I read, I actually decide to either read the posted story, or pass on it. W.r.t.…