• 0 Posts
  • 713 Comments
Joined 3 years ago
cake
Cake day: June 21st, 2023

help-circle



  • The entropy stems from the words, not characters. With random words and no repetition, you have C(n, k) combinations P(n, k) permutations (or n^k with repetition), where n is your dictionary size and k is the number of words you chain together. These passwords tend to be longer, but not by much. A big enough dictionary can yield some pretty high entropy with only a few words.

    I’ve had passwords as limiting as 16 characters for some services (unfortunately)…

    16 characters is hardly enough for random characters unless you include Unicode (which rarely works for those same services that usually have shitty implementations).

    Not much can be done there, sadly. You’re lucky if they even hash their passwords anyway - you’ll probably just get your password emailed to you if you click “forgot password” like it’s 2003.

    I would never, ever want my users relying on their brain…

    I never would either. People should just use a password manager. I was just mentioning an alternative that generated more memorable passphrases, but I wouldn’t advocate for it over random high-entropy strings saved in a password manager.




  • I’m not sure where you live, but here in the US, bats tend to be one of the biggest carriers of rabies alongside various animals that depend on the state. You can actually look up which animals are the primary carriers within a state (if you’re here). Outside of the US, naturally it varies from country to country, but you’d still be looking at bats, plus potentially stray dogs and such. It’ll take some effort, but you should eventually be able to find a carrier.


    I would expect with the nondeterminism and the regular evolution of search results that reproducing the output would be difficult even if DDG didn’t make a patch already. It’s really easy to get these “AI overviews” to make up random shit, though. All you have to do is search normally about a topic that the model wasn’t trained on, and there’s a good chance it’s making shit up, even if only in part of the answer.






  • Not financial advice of course, but I don’t know anyone who has wanted to touch the bubble at all in the past year or so. I also don’t know anyone who could invest billions into the industry either, so maybe it’s just a matter of greed clouding judgement here (“maybe” is pulling a lot of weight because we all know the reason is greed).

    The whole thing reeks of crypto scams, just on a higher scale. With companies investing in each other circularly to pump their valuations, we’re just waiting to see who tries to cash out first.



  • I’ve used it as a sort of find and replace in the past, but by feeding it the output from Ripgrep to skip the “find” part. The “replace” was just unwrapping unnecessarily confusing “try” blocks and allowing errors to propagate to the appropriate handlers. This would have required a syntax-aware replacement tool (and some exist but I didn’t really feel like learning one for a one-off).

    As a simple “find this text and replace with this other text” it makes no sense.