> One small challenge was maximizing the size of the message text. Sometimes a message is just a word or two; other times it might be several sentences. A single font size can’t accommodate such a wide range of text content. I couldn’t find a pure CSS way to automatically maximize font size so that a text element with word wrapping would display without clipping. > I ended up writing a small JavaScript function to ma…
I've been watching the evolution of the web since 1995, and I remember when css got popular in the late 90s thinking that it didn't match real-world use cases. Somehow design-by-committee took us from drawing our sites with tables in the browser's WYSIWYG editor, to not being able to center text no matter how much frontend experience we have. Css jumped the shark and today I'd vote to scrap it entirely, which I know…
MomBoard: E-ink display for a parent with amnesia
171–180 of 259 posts
Re: MomBoard: E-ink display for a parent with amnesia
#172What a beautiful use of technology to uphold someone's personhood, and let them know they are loved, despite (and with regard to) a profound injury. This reminds me of a desire I've had for a long time: a simple, wall-mountable eInk device that could be configured with a URL (+wifi creds) and render a markdown file, refreshing once every hour or so. It would be so useful for so many applications – I'm a parish priest…
Re: MomBoard: E-ink display for a parent with amnesia
#173Earlier quoted context omitted.
for your family cal, check out TRMNL. can go on a fridge w/ magnets: https://usetrmnl.com (disclaimer, i'm the founder)
My fridge isn't magnetic. A lot of modern fridges aren't. Might be a neat idea to offer a magnetic mount for it, like a flexible flat magnetic board shaped to fit the TRMNL with a sticky backing so you can attach it somewhere and then use that to attach the TRMNL (your site doesn't seem to say anything about being magnetic so I'm guessing you have to attach magnets to the TRMNL too though?). For that matter, the site…
we included magnets for VIP backers on our crowdfunding campaign and may start selling them again. device has a mounting hole on the back for nails / hooks, we’ll probably release mechanical specs so people can 3D print or otherwise fabricate their own mounts. for example some people want to mash up an array of them. but until then, adhesive magnets work great for the fridge use case.
Re: MomBoard: E-ink display for a parent with amnesia
#174I wish this had come up on HN (or I had had that idea myself) some years ago when my mother suffered from that same cruel condition, for the last four years of her life. With her body, all her older memories and her considerable intelligence largely intact, she had multiple moments of clarity every single day, in which she fully realized the terrible and hopeless situation she was in. But of course, within seconds th…
[flagged]
Re: MomBoard: E-ink display for a parent with amnesia
#175What a beautiful use of technology to uphold someone's personhood, and let them know they are loved, despite (and with regard to) a profound injury. This reminds me of a desire I've had for a long time: a simple, wall-mountable eInk device that could be configured with a URL (+wifi creds) and render a markdown file, refreshing once every hour or so. It would be so useful for so many applications – I'm a parish priest…
Just an aside, but “parish priest” must surely be the opposite of “software developer” on the Hacker News Table of Occupational Frequency. Neat!
TLDR: 20 years as SWE, then used his skills for his calling.
Re: MomBoard: E-ink display for a parent with amnesia
#176Does any commercial version of this exist? Using an existing tablet makes the DIY aspect a little less but then you have to roll your own site as well.
Re: MomBoard: E-ink display for a parent with amnesia
#177> One small challenge was maximizing the size of the message text. Sometimes a message is just a word or two; other times it might be several sentences. A single font size can’t accommodate such a wide range of text content. I couldn’t find a pure CSS way to automatically maximize font size so that a text element with word wrapping would display without clipping. > I ended up writing a small JavaScript function to ma…
I've been watching the evolution of the web since 1995, and I remember when css got popular in the late 90s thinking that it didn't match real-world use cases. Somehow design-by-committee took us from drawing our sites with tables in the browser's WYSIWYG editor, to not being able to center text no matter how much frontend experience we have. Css jumped the shark and today I'd vote to scrap it entirely, which I know…
Re: MomBoard: E-ink display for a parent with amnesia
#178Earlier quoted context omitted.
The principal of my son’s former school was a Sister of St Joseph, and a huge HN fan. More amazing was how creative the sisters were in managing themselves with technology. Many decisions are made by votes, done in real time globally! Religious people get short shrift.
Reminds me of the monks in the third season of Babylon 5. Who says you can't both be an IT person and a cleric?
Re: MomBoard: E-ink display for a parent with amnesia
#179Re: MomBoard: E-ink display for a parent with amnesia
#180> One small challenge was maximizing the size of the message text. Sometimes a message is just a word or two; other times it might be several sentences. A single font size can’t accommodate such a wide range of text content. I couldn’t find a pure CSS way to automatically maximize font size so that a text element with word wrapping would display without clipping. > I ended up writing a small JavaScript function to ma…
I've had dozens of clients complain about headings wrapping onto the next line when they add one too many letters, and ask if we can make the font size smaller without affecting the others. There are several ways to accomplish that, but they're all annoying compared to a theoretical one-line CSS solution like:
font-size: 12-18px 400px;
Or something of that nature that could hopefully do it automatically.