• 3 Posts
  • 36 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle















  • I mean, that only says something about the money making part and not the pure usability. For many people the commercial options are a gimmick, sure. But are these options, with a clear focus on milking the customers for money, really the ultimate state for voice assistants? I’d argue they are not. There is a space for free voice assistants that let users control their data and that still provide a value. Beyond users with disabilities that make it hard to impossible to use computers, voice assistants won’t ever do something you cannot do with a computer (which includes smartphones). If that makes you consider them a gimmick then I don’t have an argument. But I think it is nice and convenient to be able to use a computer with your voice while doing something else.





  • Here’s an example docker-compose.yaml for gluetun with Nordvpn and qBittorrent"

    version: "3"
    services:
      gluetun:
        image: qmcgaw/gluetun
        container_name: gluetun
        cap_add:
          - NET_ADMIN
        devices:
          - /dev/net/tun:/dev/net/tun
        ports:
          # this makes qBittorrent's web UI accessible on localhost:8080
          - "127.0.0.1:8080:8080"
        environment:
          # See https://github.com/qdm12/gluetun-wiki/tree/main/setup#setup
          - VPN_SERVICE_PROVIDER=nordvpn
          - VPN_TYPE=wireguard
          - WIREGUARD_PRIVATE_KEY=aGFoYWltbm90dGhhdGR1bWJnb2RkYW1taXQ=
          - TZ=Europe/Berlin
          # Server list updater
          # See https://github.com/qdm12/gluetun-wiki/blob/main/setup/servers.md#update-the-vpn-servers-list
          - UPDATER_PERIOD=
          - SERVER_COUNTRIES=Germany
          - SERVER_REGIONS=p2p
      qbittorrent:
        image: lscr.io/linuxserver/qbittorrent:latest
        container_name: qbittorrent
        network_mode: "service:gluetun"
        environment:
          - PUID=1000
          - PGID=1000
          - TZ=Europe/Berlin
          - WEBUI_PORT=8080
        volumes:
          - ./config:/config
          - ./downloads:/downloads
          - ./torrents:/torrents
        restart: unless-stopped
    

    You can use qBittorrent’s API (enable it in the settings) to add magnet links. I have a small wrapper tool for that, so I can just click on a magnet link in the browser and it gets added to the queue.