I recently did a rant on twitter[0] on how release/download pages of various languages/tools get it wrong, especially with respect to giving EoL Dates/policy and a list of supported releases. This is my attempt at solving the problem. If you have to every check the EoL date of anything, or if you have to verify that the version you have is supported, just visit endoflife.date/toolname. The website runs on Netlify, an…
Show HN: Endoflife.date – Site with EOL dates of everything
51–60 of 83 posts
Re: Show HN: Endoflife.date – Site with EOL dates of everything
#52Re: Show HN: Endoflife.date – Site with EOL dates of everything
#53Re: Show HN: Endoflife.date – Site with EOL dates of everything
#54Earlier quoted context omitted.
It'd still be nice to not have this tied to hover, relative dates are more useful to get a gist of how long you've got - those absolute dates are usually what you need to sell it to management.
I started with absolute dates, but my primary use-case is “How much time do I have?”, for which relative dates work better. I’ll see if I can do better.
1 year 7 days (2020-06-03)
or 2020-06-03 (1 year 7 days)
If/when you do absolute days, don’t use US format :) (I don’t know hiw it is right now, can’t hiver on mobile)Re: Show HN: Endoflife.date – Site with EOL dates of everything
#55Re: Show HN: Endoflife.date – Site with EOL dates of everything
#56Suggestion: Relative dates are nice ("1 year and 7 months"), but I'd have an easier time reading it with absolute dates as well ("2019-12-34").
You get the abs date if you hover (it's set as the title attr)
If anything, why not put the "N days from now" text in the title attr instead?
Re: Show HN: Endoflife.date – Site with EOL dates of everything
#57Earlier quoted context omitted.
I started with absolute dates, but my primary use-case is “How much time do I have?”, for which relative dates work better. I’ll see if I can do better.
It can be done as 1 year 7 days (2020-06-03) or 2020-06-03 (1 year 7 days) If/when you do absolute days, don’t use US format :) (I don’t know hiw it is right now, can’t hiver on mobile)
Re: Show HN: Endoflife.date – Site with EOL dates of everything
#58Hey, this seems like a pretty useful website, one quick comment is that it does not seem to be easily usable by colorblind people. Almost 10% of males are red-green colorblind, so while normal people can quickly scan through the lists using color, colorblind people have to manually read each 'Ends in ...' or 'Ended ...'. Not a huge issue in this case since generally you would lookup your product on the left side of t…
Thanks for the feedback, I'll improve upon this.
Re: Show HN: Endoflife.date – Site with EOL dates of everything
#59Earlier quoted context omitted.
You get the abs date if you hover (it's set as the title attr)
I wonder why they didn’t use the ` ` element for this. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ti...
Re: Show HN: Endoflife.date – Site with EOL dates of everything
#60You might want to add: white-space: nowrap; To the CSS class 'page-link' to prevent the situation where a link is broken on a space, allowing it to simultaneously be at both the end of one line, and at the start of the next.
CSS!