• 0 Posts
  • 4 Comments
Joined 2 years ago
cake
Cake day: June 13th, 2023

help-circle

  • Because it has a lot of photo specific features:

    • face recognition: enables you to (mostly) automatic tagging of who’s in the photo
    • map of images, e.g. look at all the images you have taken in Italy
    • (local) AI to search images by keywords, e.g. “sunset at the beach”
    • memories: what happened on this day in the previous years

    These are just the ones on top of my head, but you’ll probably get the idea. If you just want to back up you photos then nextcloud is more than enough, but you’d probably enjoy the immich features once you used them.

    Regarding the two copies: you can use immich on an external library, so you don’t have to have to copies.

    It’s like asking why should I use paperless when I can just keep my documents as PDFs in my nextcloud.



  • You shouldn’t use modulo to get a random number in a specific range (solution already in another comment). Reason is that numbers below 64 will be twice as likely as number 64-101 (in your example) due to how binary numbers and modulo works.

    This is obviously no real issue for this game, just keep in mind that you shouldn’t implement something like that (random ranges) yourself, this is especially true for crypto related things.