Lainesc's recent activity
-
Comment on Passkey vs smart use of passwords in ~tech
-
Comment on Original ‘Looney Tunes’ no longer available on Max in ~tv
Lainesc That’s what it sounds like to me: Or at least that’s the way it was publicly presented.That’s what it sounds like to me:
“We all love HBO, and it’s a brand that has been built over five decades” to stand for “edgy, groundbreaking entertainment for adults,” Perrette said. “But it’s not exactly where parents would most eagerly drop off their kids. And yet Warner Bros. Discovery has some of the best-known kids’ characters, animation and brands in the industry. Not surprisingly, the category has not met his true potential on HBO Max.”
Or at least that’s the way it was publicly presented.
-
Comment on TRMNL - Open source e-ink "companion" device in ~tech
Lainesc I'm using a 7" Inky Impression with a Raspberry Pi Zero W. It takes ~5-10 seconds to process the image before the screen starts to refresh. The core of the script is this function: from PIL import...I'm using a 7" Inky Impression with a Raspberry Pi Zero W. It takes ~5-10 seconds to process the image before the screen starts to refresh. The core of the script is this function:
from PIL import Image from inky.auto import auto def display_image(image_file_path): inky = auto() image = resize_image(Image.open(image_file_path), inky.resolution) inky.set_image(image, saturation=1) inky.show()
And
resize_image
is copied from this old (now removed) function in Pillow. I found the photos looked terrible until I addedsaturation=1
. It's not as good as a real photo print or a good LCD screen, but it's certainly not bad. With a few feet of distance, the dithering is much less noticeable.I'd love to get a bigger one, but yeah, I'm not paying that much. I wish e-ink weren't so expensive.
-
Comment on TRMNL - Open source e-ink "companion" device in ~tech
Lainesc I hope they release a color e-ink version of this. I have a color e-ink display hooked up to a Raspberry Pi as a digital picture frame, and it works really well. But it’s a bit annoying to add...I hope they release a color e-ink version of this. I have a color e-ink display hooked up to a Raspberry Pi as a digital picture frame, and it works really well. But it’s a bit annoying to add photos to it and it requires things like manually updating the OS (and fixing scripts that break during updates). This seems like it would be a much more user friendly option.
I've been trying to figure out how passkeys work under the hood. That's proving a bit difficult since most information about them is focused on informing users about how easy they are to use and how passkeys make it look like you're logging in with you fingerprint or facial recognition. But here's the big benefits from what I've been able to gather:
Longer term, passwords are going to have to be longer and longer as computers get more powerful. Eventually they’ll have to be so long that we can’t be expected to remember them (though I have no idea what the projected timeline on this is). Getting people to use a password manager isn’t really an option - people see all of their passwords in one place and can’t believe it’s secure. Passkeys are a potential solution for this. Using public key encryption is an added benefit that makes them even better than long passwords.