• 0 Posts
  • 22 Comments
Joined 2 years ago
cake
Cake day: July 9th, 2023

help-circle


  • One issue I could see is using it not as a second opinion, but the only opinion. That doesn’t mean this shouldn’t be pursued, but the incentives toward laziness and cost-cutting are obvious.

    EDIT: One another potential issue is the AI detection being more accurate with certain groups (i.e. White Europeans), which could result in underdiagnosis in minority groups if the training data set doesn’t include sufficient data for those groups. I’m not sure if that’s likely with breast cancer detection, however.






  • Traditional server-based self-hosting will have lower average uptime, will be easier to attack, and will have a much higher chance of disappearing out of nowhere (bus factor event, or for any other reason).

    It’s not a single point of failure at least but if your particular project is targeted then yeah. I was thinking more about using it for private repos, where it isn’t public at all but that’s a separate case.



  • vividspecter@lemm.eetoGames@lemmy.worldThoughts on Final Fantasy VII Remake
    link
    fedilink
    English
    arrow-up
    7
    arrow-down
    1
    ·
    10 days ago

    Feels slightly hyperbolic. Atlus’s games are mostly turn based and seem to have sold in only somewhat worse numbers compared to FF7 remake (Persona 5 in particular). One series (Yakuza / Like a Dragon) even switched from action combat to turn based.

    Anyway, I found the combat to be kind of forgettable and didn’t really add to the game, although I understand there have been improvements in the second game.



  • I’m not arguing in the slightest that FLAC shows an audible difference in most cases for most tracks. However, it just makes sense as an archival format given it’s lossless which means you can transcode to any other format without generational loss.

    This means if there is a massive breakthrough in lossy compression in the future, I can use it for mobile purposes. If you store as lossy, you’re stuck with whatever losses have been incurred, forever.






  • There’s likely a firewall on the system that hosts the docker services, and docker’s default bridge rules bypass it when publishing a port. And since the docker rules are prioritised, it can be quite difficult to override them in a reliable way. I personally wish that the default rules would just open a rule to the host, but there might be some complexity that I’m missing that makes that challenging.

    I personally use host networking to avoid the whole mess, but be aware you’ll have to change the internal ports for a bunch of services most likely, and that’s not always well-documented. And using the container name as the host name won’t work when referencing other containers, you’ll have to use e.g. localhost:<port number> even inside the network.

    You can do the bind to localhost thing that others have mentioned, as long as the reverse proxy itself is inside the docker network (likely there are workarounds if not).