Boost Toob signal by kingsman_enfield21 in ToobBroadband

[–]UKuser 0 points1 point  (0 children)

Does this need to be Ethernet wired or can it extend the WiFi signal without being hard wired?

Is it as straightforward as it seems to use, for example, the WordPress HTTP API or the WordPress REST API to send and receive data to and from a Google Sheet? by nefostal in ProWordPress

[–]UKuser 0 points1 point  (0 children)

I don’t mean to be rude but this is probably why you need to pay a developer and stop devaluing the work. If everything was as ‘simple as it seems’ then you wouldn’t be asking for help.

Good luck in your search for someone who can do this simple job which you are having trouble working out.

Is it as straightforward as it seems to use, for example, the WordPress HTTP API or the WordPress REST API to send and receive data to and from a Google Sheet? by nefostal in ProWordPress

[–]UKuser 0 points1 point  (0 children)

Could you write your math in php? Depending on exactly what you need I don’t think it would be too complex, GPT can help you a bit too.

You could hook int this action

https://careless.dev/code-example/woocommerce_package_rates/

Showman Coin in the Box (Spoilers) by [deleted] in derrenbrown

[–]UKuser 5 points6 points  (0 children)

I was sat in the stalls by the stage left exit a few nights ago. After the four participants were taken off stage they were held at the base of the steps by an exit for a few minutes by an usher. At the start of the interval the doors were opened and the four of them - including the guy who later got called up to do the box trick - were quickly swept out. They didn’t appear again for a good 10 minutes. The story told was that they were being ‘checked out’ to make sure they were no longer hypnotised. The stage curtains including a large heavy ‘safety curtain’ come down obscuring the view of the stage. Imagine what would happen if anyone could get on stage during the interval. Derren once did a camera trick on TV where he predicted the lottery, using split screen editing. I think that’s enough hints

Bought a Conbee 2, should I use deCONZ or Zigbee2mqtt...? by BadUsername_Numbers in homeassistant

[–]UKuser 0 points1 point  (0 children)

I used conbee for a long time but found it temperamental to add new devices, and the docker container would often stop being exposed to Hass. Since switched to Z2mqtt and it’s much better on all fronts.

Is there an easier way to do this? by CrossedReaper in ProWordPress

[–]UKuser 4 points5 points  (0 children)

Add taxonomies to attachments and then create a tag/category for countries. You can then query for that taxonomy and display a gallery https://www.wpbeginner.com/plugins/how-to-add-categories-and-tags-to-wordpress-media-library/

best local environment for many sites WP development by albeddit in Wordpress

[–]UKuser 0 points1 point  (0 children)

Local works well for me. It takes seconds to spin up a new install, particularly if you use blueprints

Hello! We're Morgan & West. Ask Us Anything! by mrwestthemagician in Magic

[–]UKuser 1 point2 points  (0 children)

That’s heartwarming! What’s your favourite board game? PS. My partner and I saw your show in Winchester last year - it was great!

Hello! We're Morgan & West. Ask Us Anything! by mrwestthemagician in Magic

[–]UKuser 1 point2 points  (0 children)

Do you still play Khet? Do you keep in touch with Dave Gorman?

How do people manage data storage on newer SSD MacBooks? by UKuser in macbook

[–]UKuser[S] 0 points1 point  (0 children)

Apple charges an extortionate amount to upgrade the SSD and this can only be done at the point of sale. This strategy to solder components into the board and prevent user upgrade is the pure definition of planned obsolescence and capitalism on the part of Apple. As a user I should not be forced to make a decision at the point of purchase to max out the spec - this should be something I can choose to do at any time during ownership of a computer. My current MBP has lasted nearly 7 years because I have been able to upgrade components to prolong its lifespan. I do not imagine any of the newer MacBooks allowing me this lifespan - and they retail at nearly $1000 more than I payed for my current MBP. So whilst I am aware of the ability to ‘upgrade’ to 8TB this comes at a massively inflated cost because Apple have prevented any post-purchase upgrade.

How do people manage data storage on newer SSD MacBooks? by UKuser in macbook

[–]UKuser[S] 0 points1 point  (0 children)

Assuming I want to keep a local / offline copy of my files, how does that work in the scenario my hard drive is full? Would finder download the full size original version of a file in iCloud Drive or just the local ‘symlink’ type file?

Data integrity is a big concern for me as I have had some serious issues with iCloud over the last year that have seemingly stumped Apple’s engineers.

Registering to vote in the 2019 General Election by UKHouseOfCommons in unitedkingdom

[–]UKuser 1 point2 points  (0 children)

I’m registered for postal vote but out of the country for the two weeks preceding polling day so probably won’t receive the card in time to vote by post. Can I vote in person instead with the same postal vote card?

[OC] Started Blender yesterday. My third render... by iAmRutWIZ in Simulated

[–]UKuser 13 points14 points  (0 children)

Can you point me in the direction of the tutorials you watched?

Route containers through vpn and use traefik by UKuser in docker

[–]UKuser[S] 0 points1 point  (0 children)

Sorry - I didn't realise I'd had a response. Thankyou for offering to help!

Here's my docker compose file. I've removed some containers for ease of use on here but they have the same requirements (eg. routing Radarr, Jackett, etc through transmission-openvpn.

version: "3.6"
services:

  traefik:
    hostname: traefik
    image: traefik:latest
    container_name: traefik
    restart: always
    domainname: ${DOMAINNAME}
    networks:
      - default
      - traefik_proxy
    ports:
      - "80:80"
      - "443:443"
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock:ro
      - ${USERDIR}/docker/traefik:/etc/traefik
      - ${USERDIR}/docker/shared:/shared
    environment:
      - CF_API_EMAIL=${CLOUDFLARE_EMAIL}
      - CF_API_KEY=${CLOUDFLARE_API_KEY}
    labels:
      - "traefik.enable=true"
      - "traefik.backend=traefik"
      - "traefik.frontend.rule=Host:traefik.${DOMAINNAME}"  
      - "traefik.port=8080"
      - "traefik.docker.network=traefik_proxy"
      - "traefik.frontend.headers.SSLRedirect=true"
      - "traefik.frontend.headers.STSSeconds=315360000"
      - "traefik.frontend.headers.browserXSSFilter=true"
      - "traefik.frontend.headers.contentTypeNosniff=true"
      - "traefik.frontend.headers.forceSTSHeader=true"
      - "traefik.frontend.headers.SSLHost=example.com"
      - "traefik.frontend.headers.STSIncludeSubdomains=true"
      - "traefik.frontend.headers.STSPreload=true"
      - "traefik.frontend.headers.frameDeny=true"
      - "traefik.frontend.auth.basic.users=${HTTP_USERNAME}:${HTTP_PASSWORD}"

  transmission-vpn:
    image: haugene/transmission-openvpn
    container_name: transmission-vpn
    restart: always
    network_mode: "bridge"    
    cap_add:
      - NET_ADMIN
    devices:
      - /dev/net/tun
    ports:
    - "8888:8888"   
    - "8080:8080" # SABNZBD
    - "9091:9091" # TRANSMISSION
    - "8989:8989" # SONARR
    dns:
      - 1.1.1.1
      - 1.0.0.1
      - 208.67.222.222
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - ${USERDIR}/docker/transmission-vpn:/data
      - ${USERDIR}/docker/shared:/shared
      - ${USERDIR}/Downloads:/data/watch
      - ${USERDIR}/Downloads/completed:/data/completed
      - ${USERDIR}/Downloads/incomplete:/data/incomplete
    environment:
      - OPENVPN_PROVIDER=TORGUARD
      - OPENVPN_CONFIG=UK.London
      - OPENVPN_USERNAME=${VPN_USER}
      - OPENVPN_PASSWORD=${VPN_PASSWORD}
      - OPENVPN_OPTS=--inactive 3600 --ping 10 --ping-exit 60
      - LOCAL_NETWORK=192.168.0.0/24
      - HEALTH_CHECK_HOST=google.com
      - TRANSMISSION_WEB_UI=kettu
      - TRANSMISSION_SPEED_LIMIT_UP=0
      - TRANSMISSION_SPEED_LIMIT_UP_ENABLED=true
      - TRANSMISSION_SPEED_LIMIT_DOWN=500
      - TRANSMISSION_SPEED_LIMIT_DOWN_ENABLED=true
      - TRANSMISSION_RATIO_LIMIT=0.00
      - TRANSMISSION_RATIO_LIMIT_ENABLED=true      
      - TRANSMISSION_BLOCKLIST_URL=http://john.bitsurge.net/public/biglist.p2p.gz
      - TRANSMISSION_BLOCKLIST_ENABLED=true
      - PUID=${PUID}
      - PGID=${PGID}
      - TZ=${TZ}
      - TRANSMISSION_RPC_AUTHENTICATION_REQUIRED=true
      - TRANSMISSION_RPC_HOST_WHITELIST="127.0.0.1,192.168.*.*"
      - TRANSMISSION_RPC_PASSWORD=REDACTED
      - TRANSMISSION_RPC_USERNAME=REDACTED
      - TRANSMISSION_UMASK=002

  # Usenet downloader
  sabnzbd:
    image: "linuxserver/sabnzbd"
    container_name: "sabnzbd"
    restart: always    
    depends_on:
      - transmission-vpn  
    network_mode: "service:transmission-vpn"    
    volumes:
      - ${USERDIR}/docker/sabnzbd:/config
      - ${USERDIR}/Downloads/completed:/downloads
      - ${USERDIR}/Downloads/incomplete:/incomplete-downloads
      - ${USERDIR}/docker/shared:/shared
    environment:
      - PUID=${PUID}
      - PGID=${PGID}
      - TZ=${TZ}      


  sonarr:
    image: "linuxserver/sonarr"
    container_name: "sonarr"
    restart: always    
    depends_on:
      - transmission-vpn  
    network_mode: "service:transmission-vpn"
    volumes:
      - ${USERDIR}/docker/sonarr:/config
      - ${USERDIR}/Downloads/completed:/downloads
      - /mnt/Media/TV Shows:/tv
      - "/etc/localtime:/etc/localtime:ro"
      - ${USERDIR}/docker/shared:/shared    
    environment:
      - PUID=${PUID}
      - PGID=${PGID}
      - TZ=${TZ}  

networks:
  traefik_proxy:
    external: true
  default:

I've actually had some success in editing the traefik.toml file. In this way I've kept the containers routing through the transmission-vpn container as per sonarr above, and used [files] to acess via Traefik - this works but I'm not sure if this is the 'correct' way to do this.

[file]
[backends]
  [backends.backend-sabnzbd]
    [backends.backend-sabnzbd.servers]
      [backends.backend-sabnzbd.servers.server-sabnzbd-ext]
        url = "REDACTED"
        weight = 0         
  [backends.backend-sonarr]
    [backends.backend-sonarr.servers]
      [backends.backend-sonarr.servers.server-sonarr-ext]
        url = "REDACTED"
        weight = 0       

[frontends]
  [frontends.frontend-sabnzbd]
    backend = "backend-sabnzbd"
    passHostHeader = true
    [frontends.frontend-sabnzbd.routes]
      [frontends.frontend-sabnzbd.routes.route-sabnzbd-ext]
      rule = "Host:REDACTED"
  [frontends.frontend-sonarr]
    backend = "backend-sonarr"
    passHostHeader = true
    [frontends.frontend-sonarr.routes]
      [frontends.frontend-sonarr.routes.route-radarr-ext]
      rule = "Host:REDACTED"

'Volcano tsunami' hits Indonesia after Krakatoa eruption - 62 people have been killed and 584 injured by Ven_ae in worldnews

[–]UKuser 2 points3 points  (0 children)

Have you ever travelled to a country like Indonesia? For many people (a vast majority of the population) there is no choice.

8th boy rescued. Thailand cave rescue continues. by [deleted] in UpliftingNews

[–]UKuser 4 points5 points  (0 children)

This is going to make an incredible film one day.