Live data from Hacker News

Please tell us what features you'd like in news.ycombinator

news.ycombinator.com

481–490 of 1001 posts

Re: Please tell us what features you'd like in news.ycombinator

#481
A bug: upvotes are swallowed when initiated while logged out.

Details: If I click up-vote while not logged in and then log in using the form that is subsequently presented, I am returned to the original page. However, every time I try this, the item has the same number of points as before I upvoted it, though it no longer has an upvote arrow next to it, so I cannot upvote it again.

Re: Please tell us what features you'd like in news.ycombinator

#482
I notice that a few others have complained about what is likely the same issue in regard to form submissions.

I generally have hacker news open in the background throughout the day. If I leave it for a while I inevitably get "Unknown or expired link" when next clicking on the "more" link at the bottom.

For example, (I assume this link will give the same result for everyone) http://news.ycombinator.com/x?fnid=x4ipaJEME2

Why do the links expire? I'm sure there's a good back end reason but as a user it seems weird that the site dies if you ignore it for any length of time. Its like a Tamagotchi.

Re: Please tell us what features you'd like in news.ycombinator

#483
Every once in a while I come across a post or comment that's been deaded or a user who's been banned for no apparent reason, which usually turns out to be a mistake by an admin. When I see these I email PG, but there ought to be a more efficient way of going about this. How about a "contraflag" button for calling them to admins' attention?

Re: Please tell us what features you'd like in news.ycombinator

#486
Can you please add an item's publish date () to the RSS feed? It's seriously low-hanging fruit. Just whatever the date in the DB says is fine - there must be a 'created' timestamp in there somewhere. Format it as RFC822 timestamp:

def _format_date(dt): """convert a datetime into an RFC 822 formatted date Input date must be in GMT. """

    #   Sat, 07 Sep 2002 00:00:01 GMT

    return "%s, %02d %s %04d %02d:%02d:%02d GMT" % (
            ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"][dt.weekday()],
            dt.day,
            ["Jan", "Feb", "Mar", "Apr", "May", "Jun",
             "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"][dt.month-1],
            dt.year, dt.hour, dt.minute, dt.second)
-Russ

Re: Please tell us what features you'd like in news.ycombinator

#487
There's so many different HN pages (ie news.ycombinator.com/noobs, news.ycombinator/ask etc.) that it would be helpful if there was one page that listed all of them. It does't need to be nice, or accessible itself, but it would help make it so users don't have to try and remember each one or remember where links to the different pages are located.

Re: Please tell us what features you'd like in news.ycombinator

#488
Somehow, hackernews handles certain transparent caches badly -- it's the only site I use which has a problem. I'm in Kuwait, unlike 100% of the other hackernews users, and can work around it using a proxy, but periodically I show as logged out, or expired link, or wrong user.
Post reply on HN