I'm seeing this a lot more often these days, even when just pressing "More" at the bottom of the main page without being logged in.
It makes me think the current continuation-based session scheme isn't enough to guarantee a good experience.
What do you folks think?
Maybe a heretical opinion, but why use continuations here at all? Their drawbacks aren't worth it in a simple app like news.yc. Use URL parameters, like /news?skip=30 for paging. Make the "reply" link lead to /item?id=12345 , it already has a reply box.
In my own apps I give a lot of thought to URL design. And yeah, don't explain, I do know about closure/cont-based web frameworks - used to be a contributor to Borges back in the day, then wrote my own one ;-)