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
magic_lobster_party @ magic_lobster_party @kbin.run
Posts
1
Comments
624
Joined
1 yr. ago

  • I’m not the same person, but I’ve played a few levels now. I think it’s really good, especially for being early access. Reminds me of original Half Life, so if you like that kind of game it’s a strong recommend!

  • Started playing it and I’m liking it so far! The low health regen is very clever. Solves the problem in Half Life 1 where the player is always finishing encounters at 1 HP without the need for excessive health pickups. Now the player is guaranteed to have at least 35 HP.

    The immersion is really great as well. Often I forget that all the enemies are just 2D sprites.

  • I don’t think they’re dying just because they change one metric. It might just be that the old metric no longer aligns with their goals.

    They’ve probably realized it’s not feasible to put all eggs in one basket and try to collect all users in one big platform. Instead they might aim to build a more diverse set of platforms.

  • Most YouTubers rely on sponsorships and/or Patreon subscriptions. Getting compensation is not a platform problem.

    The reason why content creators choose YouTube is because that’s where all the viewers are. Few people know about peertube. Even fewer have used it.

  • TL;DR:

    In Python, following returns False.

    9007199254740993 == 9007199254740993.0

    The floating point number 9007199254740993.0 is internally represented in memory as 9007199254740992.0 (due to how floating point works).

    Python has special logic for comparing int with floats. Here it will try to compare the int 9007199254740993 with the float 9007199254740992.0. Python sees that the integer parts are different, so it will stop there and return False.

  • Even if AI is able to answer all questions 100% accurately, it wouldn’t mean much either way. Most of programming is making adjustments to old code while ensuring nothing breaks. Gonna be a while before AI will be able to do that reliably.