Also available on crt.sh: https://crt.sh/?id=6316640888 (from comment #7)
HN user
xblau
On Android you can use Keepass2Android[0] to open your KeePass files. You still have to copy your kdbx file to your phone somehow, of course.
[0] https://play.google.com/store/apps/details?id=keepass2androi...
What are "[email protected]$$ snapshots"
Looks like it was fixed, as it now reads "bad@$$ snapshots" for me. From reading another related article[0] I guess they didn't want to write "badass":
(...) and completing the snapshots code and that the Bcachefs snapshots design is "badass."
[0] https://www.phoronix.com/scan.php?page=news_item&px=Bcachefs...
Archived link, since it appears to be down at the moment: https://web.archive.org/web/20211031124351/https://www.slony...
Why isn’t SHA256 good as a password hash?
Because it wasn't designed for it. For password hashing you want a hash that has a salt (so that the same password on two accounts doesn't have the same hash on the database) and is as slow as possible (that is, fast enough to validate on logins) to increase brute-force time.
Historically Bcrypt was a good option, but I think Argon2[0] is the current best option.