Happy 15th birthday Hacker News
11–20 of 214 posts
Re: Happy 15th birthday Hacker News
#12Re: Happy 15th birthday Hacker News
#13Re: Happy 15th birthday Hacker News
#14Wasn’t there a thread recently (can’t find it) about the limit of paging back to the earliest posts and that it actually started in October or similar? And feb is just the earliest the UI will let you click to, so anniversary is actually past already? Not to be a party pooper =|
Re: Happy 15th birthday Hacker News
#15Sharing a small snippet I made to convert all links to web archives from 2007: document.querySelectorAll('.titlelink').forEach((link) => link.href = " https://web.archive.org/web/20070601000000*/ " + link.href);
Re: Happy 15th birthday Hacker News
#16Sharing a small snippet I made to convert all links to web archives from 2007: document.querySelectorAll('.titlelink').forEach((link) => link.href = " https://web.archive.org/web/20070601000000*/ " + link.href);
If you are entering this into the browser console, you can use $$() as shorthand for document.querySelectorAll(), with chromium-based browsers at least. As a bonus, it returns an array so you can map/filter.