Mine is beaverhabits, just a good habit app that has come out recently.

  • Ugurcan@lemmy.world
    link
    fedilink
    English
    arrow-up
    9
    arrow-down
    1
    ·
    edit-2
    2 days ago

    KitchenOwl - Smart Shopping List & Recipe Manager - paste any online recipe (including YouTube) and it will add the missing ingredients to your shopping list.

    N8N - IFTTT/Zapier alternative visual scripter with NodeRed touch. Has integrations with thousands of APIs.

    Not directly a docker image but Obsidian LiveSync, an Obsidian plugin that uses a self-hosted CouchDB or Object storage to replicate official Sync.

      • Ugurcan@lemmy.world
        link
        fedilink
        English
        arrow-up
        2
        ·
        1 day ago

        Node-RED requires enough technical knowledge that it becomes not easier, but harder than writing JS code when things go medium size. N8N is superior in UX.

        Also although I greatly appreciate everyone’s efforts, I don’t want to rely on community plugins that require maintenance and may or may not abandoned after it’s developer loses interest/move on with their life. TBH NPM is brimming with those.

      • Ugurcan@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 day ago

        Yeah, businesses went big in N8N but home users are somehow unaware of it. It even has Home Assistant integration.

  • blockheadjt@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    2
    ·
    19 hours ago

    Does anyone have a guide or tutorial that can help me make sense of what everyone is talking about here?

      • ComradeMiao@lemmy.worldOP
        link
        fedilink
        English
        arrow-up
        4
        ·
        2 days ago

        Have you tried beaver docking? I really like it. I just learned of it recently and do it everyday. Better than a lot of other docking.

      • sugar_in_your_tea@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        4
        ·
        2 days ago

        Firefly

        Nope. I found AB and saw that they had experimental support for SimpleFIN, which supports financial institutions in my country (USA), and it was cheaper than my old, non-selfhosted solution (Tiller). SimpleFIN provides a pretty simple API, so there’s no reason Firefly couldn’t support it as well (and there’s an issue for it).

        I also really hate PHP, so the fact that Actual Budget is written in node.js is a plus.

  • BrianTheeBiscuiteer@lemmy.world
    link
    fedilink
    English
    arrow-up
    14
    ·
    2 days ago

    Not useful on its own but https://sablierapp.dev/ was really useful for me in getting back resources from some of the heavyweight containers I use. For those unfamiliar with it, Sablier can stop containers that go idle and then spin them back up automatically when a request comes in. It requires Traefik, NGINX, or Caddy running always so it could complicate your server but for me I couldn’t do without it.

    • shaserlark@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      1
      ·
      2 days ago

      So would this work well e.g. with the the *arr stack? Because most of the services wouldn’t even need to run always

      • BrianTheeBiscuiteer@lemmy.world
        link
        fedilink
        English
        arrow-up
        2
        ·
        2 days ago

        It probably would work well with those as long as the startup time was quick (my containers come up almost instantly) and the initiating clients can handle a bit of latency. I didn’t notice any hiccups in my use at all.

    • paradox2011@lemmy.ml
      link
      fedilink
      English
      arrow-up
      3
      arrow-down
      1
      ·
      2 days ago

      I’ve been wanting to spin this up myself, but the fact that the Dev says his example docker-compose.yml is incomplete has stopped me in the past. Did you have to add anything to get it functional?

      • blue lion@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        2
        ·
        2 days ago

        the only change I had to make was to add the config file to the volumes list:

        compose.yml
        services:
          fmd-server:
            image: registry.gitlab.com/nulide/findmydeviceserver:v0.7.0
            container_name: fmd-server
            volumes:
              - data:/data
              - ./fmd/data:/fmd/db/
              - ./fmd/config/config.yml:/fmd/config.yml:ro
            restart: unless-stopped
            networks:
              - fmd_server
        #    ports:
        #      - 8080:8080
        
        # legacy
        volumes:
          data:
        
        networks:
          fmd_server:
        
        • paradox2011@lemmy.ml
          link
          fedilink
          English
          arrow-up
          2
          ·
          1 day ago

          Awesome, thanks. I’m going to give it a try. It seems like the best FOSS find my device type service available by far.

  • mbirth@lemmy.ml
    link
    fedilink
    English
    arrow-up
    8
    ·
    2 days ago

    traefik-kop which allows me to use Docker-Compose labels for Traefik even on my other Docker hosts without the need for Docker Swarm or K8s.