Earlier quoted context omitted.
I think it's interesting at how many of these are "Ask HN" type posts. It could be that people are often seeking to gather specific crowd-sourced knowledge from experts, what happened to Quora?
SEOs happened
Most-favorited Hacker News posts
241–250 of 270 posts
Re: Most-favorited Hacker News posts
#242Earlier quoted context omitted.
1. Ask HN: What books changed the way you think about almost everything? - https://news.ycombinator.com/item?id=19087418 2. Ask HN: What are the best MOOCs you've taken? - https://news.ycombinator.com/item?id=16745042 3. Ask HN: How to self-learn electronics? - https://news.ycombinator.com/item?id=16775744 4. Ask HN: Successful one-person online businesses? - https://news.ycombinator.com/item?id=21332072 5. Ask HN: W…
Thank you! Now I just wonder - did you use some command line magic to do this, or did you compose it manually? (no complaints if you did, but it would be interesting to know how to do that in a line of script). Anyway, thanks again.
cat list| cut -d ' ' -f 4 | xargs -I{} echo "https://news.ycombinator.com/item?id={}" | paste list - | cut -d ' ' -f 5-
Re: Most-favorited Hacker News posts
#243The OP says " The most favorited articles by the top 10k most active Hacker News members. " How was "most active" defined? (Edit: oh I see - the users who post the most comments: https://news.ycombinator.com/item?id=24352688 ). It's an interesting list, and it never occurred to me that by counting the top favorites of different subsets of users you might get quite different interesting lists. I got curious about what…
Re: Most-favorited Hacker News posts
#244Earlier quoted context omitted.
1. Ask HN: What books changed the way you think about almost everything? - https://news.ycombinator.com/item?id=19087418 2. Ask HN: What are the best MOOCs you've taken? - https://news.ycombinator.com/item?id=16745042 3. Ask HN: How to self-learn electronics? - https://news.ycombinator.com/item?id=16775744 4. Ask HN: Successful one-person online businesses? - https://news.ycombinator.com/item?id=21332072 5. Ask HN: W…
Thank you! Now I just wonder - did you use some command line magic to do this, or did you compose it manually? (no complaints if you did, but it would be interesting to know how to do that in a line of script). Anyway, thanks again.
Re: Most-favorited Hacker News posts
#245Earlier quoted context omitted.
Yikes, what a horror: either no new features, or complexity increases forever. Fortunately we don't live in that prison. And what a dystopian reason you give for removing things! The humane reason, of course, for removing features, is so you can add new ones while staying simple. I have always found this to be a deep part of, let's call it, healthy software development, at every level. If you remove things as well as…
>Yikes, what a horror: either no new features, or complexity increases forever. Fortunately we don't live in that prison. And fortunately, I didn't suggest that we do, or that features should never be removed... rather that removing a feature that people use because not enough of them use it doesn't make sense for a site like this. If you want more people to use new features, I think you need to put more effort than…
Re: Most-favorited Hacker News posts
#246Re: Most-favorited Hacker News posts
#247Earlier quoted context omitted.
What about most favorited comments?
140 https://news.ycombinator.com/item?id=4247615 138 https://news.ycombinator.com/item?id=15603013 108 https://news.ycombinator.com/item?id=18442941 93 https://news.ycombinator.com/item?id=13436420 86 https://news.ycombinator.com/item?id=8902739 81 https://news.ycombinator.com/item?id=11042400 81 https://news.ycombinator.com/item?id=14948078 76 https://news.ycombinator.com/item?id=6199544 65 https://news.ycombinator.…
Re: Most-favorited Hacker News posts
#248Earlier quoted context omitted.
This needs links :( a gist perhaps?
1. Ask HN: What books changed the way you think about almost everything? - https://news.ycombinator.com/item?id=19087418 2. Ask HN: What are the best MOOCs you've taken? - https://news.ycombinator.com/item?id=16745042 3. Ask HN: How to self-learn electronics? - https://news.ycombinator.com/item?id=16775744 4. Ask HN: Successful one-person online businesses? - https://news.ycombinator.com/item?id=21332072 5. Ask HN: W…
Re: Most-favorited Hacker News posts
#249Earlier quoted context omitted.
1. Ask HN: What books changed the way you think about almost everything? - https://news.ycombinator.com/item?id=19087418 2. Ask HN: What are the best MOOCs you've taken? - https://news.ycombinator.com/item?id=16745042 3. Ask HN: How to self-learn electronics? - https://news.ycombinator.com/item?id=16775744 4. Ask HN: Successful one-person online businesses? - https://news.ycombinator.com/item?id=21332072 5. Ask HN: W…
Thank you! Now I just wonder - did you use some command line magic to do this, or did you compose it manually? (no complaints if you did, but it would be interesting to know how to do that in a line of script). Anyway, thanks again.
- Paste the original list
- Block-Select (Alt + Pressed Mouse1) a block-line behind (trailing) all entries; I admit this step is hard to describe with words, but currently im unable to provide an image/video
- Paste "https://news.ycombinator.com/item?id="
- Block-Select all ids from original list and paste it at the end
- You may be finished now or you can Regex-Replace " +" with " " to remove the long spaces between the link title and the link itself.
Block-Selection + Copy-Paste is amazingly fast for doing things like that.
Re: Most-favorited Hacker News posts
#250The OP says " The most favorited articles by the top 10k most active Hacker News members. " How was "most active" defined? (Edit: oh I see - the users who post the most comments: https://news.ycombinator.com/item?id=24352688 ). It's an interesting list, and it never occurred to me that by counting the top favorites of different subsets of users you might get quite different interesting lists. I got curious about what…
I did normalize by number of favorites too, so each person had 1 vote shared over all their favorites. The idea that a person who only had one favourite was a really strong signal for that single link, whereas people who have lots of favorites are using it differently to what I want to select for. At some point I had a similar selection of Ask HN dominance. One problem with my data is I only grabbed the first page of…