Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)MP
Posts
2
Comments
580
Joined
2 yr. ago

  • I can’t speak from the British Commonwealth perspective, but from a Swedish perspective my opinion is this regarding having a monarch:

    Yeah, it might not reflect our modern values well, but since the (Swedish) monarch is mostly ceremonial and completely unpolitical, there’s actually quite little to hate about it. They’re just the mascot of the country. There’s far more pressing issues in our country than having that confused old guy as head of state.

    At least he doesn’t possess nuclear launch codes.

  • For me I hated Quora because of how locked down it is. Want to view another question on the site? Must register an account first! No fucking thanks. It was always nagging about creating an account.

    Because of this I actively ignored Quora results anytime I googled something.

  • My guess to why the ads are so different:

    The firms making the ads are probably completely separate from the developers. Could be just random people from fiverr making the ads. They get barely any gameplay footage, so they just come up with some random gameplay that looks fun in an ad.

    I guess the game developers might be some random people from fiverr as well.

    As to why it works: no idea. I guess some people just don’t care, and given how cheap these games are to make they probably just need a few people to break even.

  • And if I happen to click on those videos only to confirm it’s not for me they will be like “omg, he’s crazy about this video! Let’s recommend 10 different variations of this video from now on!”

  • Often I use Python for exploratory purposes. Like, I got a bunch of data, and I want to know if a particular algorithm might work or not. I implement the algorithm, but realize the results don’t look good enough. So I tweak the algorithm, maybe even do major refactoring. Or maybe I realize my visualizations or metrics don’t capture what I need to see. Or maybe I must settle for some compromise?

    I iterate on this repeatedly until I find something I’m happy about (or until I give up). Sometimes I end up with something completely different from my initial idea.

    TDD won’t help me much here because the end result is unknown. For each iteration of this idea process I might even need to rewrite all the tests because none of them are valid anymore.

  • Mostly number crunching and data exploration tasks. Just so I can make informed decisions about the data I got. I do this rarely enough so it hasn’t been worth for me to install all these extra third party support wheels.

  • I would swap Python with C++. Constantly dealing with stupid runtime errors that could’ve been easily captured during compile time.

    Did you forget to rename this one use of the variable at the end of the program? Sucks for you, because I won’t tell you about it until after 30 minutes into the execution.