u/sullyhabs5

▲ 21 r/sonarr

Automating getting most optimized version of an episode

Is there a way to automate getting the most optimized version of a show. Personally I'd always want the smallest storage space version of the episode that is 1080p (or 720 if 1080 isn't an option). It seems like it usually pulls the version with the most seeders instead. I'd also want it to auto overwrite the episode I already have if it is a more optimized version

reddit.com
u/sullyhabs5 — 4 days ago
▲ 1 r/uber

Lack of Support for Pre-Paid Passes not applying

I’ve tried the official uber support for the last 2.5 weeks without success and I’m at my wits end so I’m trying here. I bought 20 prepaid passes (10 each way) to use over the course of 2.5 weeks. Over the course of a 24 hour period 3 of the passes failed to apply correctly when I went to book the ride.

I contacted support immediately when the first ride failed and let them know. By the time they got back to me it had failed the next two times. All of the rides over the 2.5 weeks were booked in advance in the same method and the passes worked every time except for these three rides.

Uber has now closed 3 cases on me saying either, they were booked for the wrong time (they weren’t) they don’t work on reserved rides (they clearly do as they did before and after these rides) or just sorry for the issue here’s $30! I’ve been given the premium support number for some of these cases and tried it, one time it didn’t work because they didn’t tie my phone number to it, the next time I called 10 times and my call got dropped 9 times before I even spoke to someone, one time dropped after 3 minutes on hold after speaking to someone.

These passes will now be unused meaning I spent over an extra $100 on these rides that $30 far from cuts it.

I’ve cancelled uber one over this. I don’t know what to do next.

reddit.com
u/sullyhabs5 — 1 month ago

ProtonVPN Port-forwarding Dockege

Trying to get ProtonVPN Port forwarding working on my TrueNAS server in Dockege but getting firewalled. Any suggestions as to what settings I could adjust or an alternative set up to what I have here? compose file and env variables below

gluetun:
    image: docker.io/qmcgaw/gluetun:latest
    container_name: gluetun
    cap_add:
      - NET_ADMIN
    devices:
      - /dev/net/tun:/dev/net/tun
    env_file: .env
    environment:
      - TZ=${TZ}
      - VPN_SERVICE_PROVIDER=${VPN_SERVICE_PROVIDER}
      - VPN_TYPE=${VPN_TYPE}
      - OPENVPN_USER=${OPENVPN_USER}
      - OPENVPN_PASSWORD=${OPENVPN_PASSWORD}
      - VPN_PORT_FORWARDING=${VPN_PORT_FORWARDING}
      - SERVER_COUNTRIES=${SERVER_COUNTRIES}
      - PORT_FORWARD_ONLY=on
      - VPN_PORT_FORWARDING_UP_COMMAND=${VPN_PORT_FORWARDING_UP_COMMAND}
    volumes:
      - ${CONFIG_PATH}/gluetun:/gluetun
    ports:
      - ${QBITTORRENT_WEBUI_PORT}:${QBITTORRENT_WEBUI_PORT}
    restart: unless-stopped
  qbittorrent:
    image: lscr.io/linuxserver/qbittorrent:latest
    container_name: qbittorrent
    depends_on:
      - gluetun
    env_file: .env
    environment:
      - PUID=568
      - PGID=568
      - TZ=${TZ}
      - WEBUI_PORT=${QBITTORRENT_WEBUI_PORT}
    volumes:
      - ${CONFIG_PATH}/qbittorrent/:/config
      - ${MEDIA_PATH}:/media
    network_mode: service:gluetun
    restart: unless-stopped

    #qBittorrent Settings
QBITTORRENT_WEBUI_PORT=8080


# Gluetun Settings
VPN_SERVICE_PROVIDER=protonvpn
VPN_TYPE=openvpn
OPENVPN_USER=********+pmp 
OPENVPN_PASSWORD=********
SERVER_COUNTRIES=Canada
VPN_PORT_FORWARDING=on  


# This command auto-replaces {{PORTS}} with the actual forwarded port
VPN_PORT_FORWARDING_UP_COMMAND=/bin/sh -c '/usr/bin/wget -O- --retry-connrefused --post-data "json={\"listen_port\":{{PORTS}}}" http://127.0.0.1:${QBITTORRENT_WEBUI_PORT}/api/v2/app/setPreferences 2>&1'
reddit.com
u/sullyhabs5 — 3 months ago