• 10 Posts
  • 666 Comments
Joined 1 year ago
cake
Cake day: March 14th, 2024

help-circle

  • Those distros are fine, I haven’t heard anything bad about them. The only distros I wouldn’t recommend are Ububtu and Manjaro (I can explain why if you want).

    About Excel, it doesn’t work on Linux unfortunately. But you have some options. You can try LibreOffice and OnlyOffice (you can install them on Windows to try them out before switching) and see if they’re enough for your needs. There’s also a web version of Excel which you can use in your browser but it doesn’t have all the features. If you really need Excel, you can also try using a virtual machine with Windows and run it inside of that but dual booting might be easier for you at that point.


  • I don’t really know what you mean by checking. I’m pretty sure you can import from there but I haven’t used that yet anyway because not a single food I’ve looked up there has had enough data for it to be usable for me and a lot haven’t been added at all. Might be because I’m in Germany tho.

    Edit: I’ve actually imported a product that did have all the information and it worked perfectly fine. You just share the link from OpenFoodFacts to Food You. Only monounsaturated and polyunsaturated fats didn’t import but I’ve already opened and issue for that and it’ll be fixed in version 3.




  • I use podman too and I set up hardware acceleration for Jellyfin. I’ll update this with how I did it once I’m home.

    Edit: Here’s my compose.yml (I use podman-compose):

    services:
      jellyfin:
        image: lscr.io/linuxserver/jellyfin:latest
        container_name: jellyfin
        dns:
          - 9.9.9.9
        environment:
          - PUID=1000
          - PGID=1000
          - TZ=Europe/Berlin
        volumes:
          - ./config:/config:Z
          - ~/drive/media:/media:z
        devices:
          - /dev/dri:/dev/dri
        ports:
          - 8096:8096
          - 7359:7359/udp
          - 1900:1900/udp
        restart: unless-stopped