Just sign up for HN Gold to get infinite scrolling and more.
Fix HackerNews Issue #11, which is driving us all crazy: Unknown or expired link
21–30 of 35 posts
Re: Fix HackerNews Issue #11, which is driving us all crazy: Unknown or expired link
#22Technically i understand its importance but in terms of UX this thing is terrible. For a non English speakers, they usually take some time to reply and most of the time they end up with `expired link`. I doubt the user who wrote very big comment (usually highest rated comment in that thread) use HN editor, I guess they first write in the word processor and then copy it here since the amount of time it involved in wri…
For a non English speakers, they usually take some time to reply and most of the time they end up with `expired link`. I doubt the user who wrote very big comment (usually highest rated comment in that thread) use HN editor, I guess they first write in the word processor and then copy it here since the amount of time it involved in writing comment is not sufficient. I use the HN edit box. On mobile, I take care to co…
Re: Fix HackerNews Issue #11, which is driving us all crazy: Unknown or expired link
#23Re: Fix HackerNews Issue #11, which is driving us all crazy: Unknown or expired link
#24I'd consider it more of a minor inconvenience.
Re: Fix HackerNews Issue #11, which is driving us all crazy: Unknown or expired link
#25Earlier quoted context omitted.
For a non English speakers, they usually take some time to reply and most of the time they end up with `expired link`. I doubt the user who wrote very big comment (usually highest rated comment in that thread) use HN editor, I guess they first write in the word processor and then copy it here since the amount of time it involved in writing comment is not sufficient. I use the HN edit box. On mobile, I take care to co…
And you are okay with it?
Re: Fix HackerNews Issue #11, which is driving us all crazy: Unknown or expired link
#26The reason this happens is that the link is actually a reference to a live closure[1] held in memory on the server. Notice how the URL has `fnid=...`? Well fnid is short for function ID. There isn't an obvious way to fix this without dramatically changing the way pages are rendered. The reason the link expires is probably that the garbage collector picks them up after a timeout interval. I remember this was something…
Is there any obvious reason why this isn't done?
Re: Fix HackerNews Issue #11, which is driving us all crazy: Unknown or expired link
#27Re: Fix HackerNews Issue #11, which is driving us all crazy: Unknown or expired link
#28Honestly it's nice to see an esoteric correct approach. If you're using a web "app" you shouldn't expect anything but a toy anyway. The only place it ever actually bothers me is paginated topics.
Probably the most straightforward way to 'fix' this would be to serialize delimited continuations to disk, but who knows if it would be easy to import that functionality into Arc.
On the other hand, C-a C-c C-r .. the mousing is by far the hardest part.
Re: Fix HackerNews Issue #11, which is driving us all crazy: Unknown or expired link
#29It is hard to convince someone to fix what you see as a bug, when the author of the software is really so proud of this "feature" he's filed a patent on it: http://www.reddit.com/r/programming/comments/67iza/patent_on...
Re: Fix HackerNews Issue #11, which is driving us all crazy: Unknown or expired link
#30It's not driving me crazy because I'm using AutoPager to load the continuation pages before they expire.