• 0 Posts
  • 137 Comments
Joined 1 year ago
cake
Cake day: June 14th, 2023

help-circle

  • It was cool for a while but my area is mostly done, even with expanded quests it was basically “what is the road surface here” and “what kind of power pole is this” exclusively

    I also very much hate the incredibly limited areas you’re allowed to download, a 2x2 city block area size limit made me babe to download like 8 map sections desperately for the rural area I live in, and that’s JUST for the housing part. If I want to include the nearby lake and part it’ll be like 3pl0 more


  • French press is basically the same work as a drip machine, but a different shape. You just heat the water seperately and then pour it and the coffee into the French press, let it sit, press the plunger down, and pour. Actually takes slightly less time than any cheap dropper I’ve used and runs 0 risk of burning the coffee (drip machines like to put heating elements into their bases to keep the pot hot, this can burn the coffee and ruin the flavor, French presses cannot burn coffee because they cannot add heat)

    Espresso is finely ground coffee that uses steam pressure to brew (thus why espresso machines are fucking expensive, my mr coffee unit was 80 buck), it’s an involved process (worth learning gif you’ve got 20m to make a cup of coffee every time) but very good if you use beans you like AND you like your coffee flavor strong



  • Because they found it interesting and wanted to discuss it with people?

    Just because it’s low priority doesn’t mean it lacks any interest, we can exist between extremes

    Most people would roll their eyes and move on

    Quite famously 1% of the community are posters, after all. Who the fuck cares what a normal person would post? OP wanted to

    and yet it’s being upvoted because “hooray tribalism” over something as asinine as OS (really kernel) choice.

    Lol, it’s being upvoted because most of us recognize the sub and it’s pathetic mod and are laughing at being reminded of them, if the comments are anything to go by




  • Another way to word this might be “Platform with 8,000,000 monthly streamers/listeners pays less than platform of 1,000 subscribers to view pictures.”

    Think about it for a minute and it becomes pretty clear that shouldn’t be surprising at all

    You subscribe directly to someone on Onlyfans, you subscribe to Spotify as a whole and your listening habits help split the bill. If both are ~10 bucks a month of course one is going to make you more money than the other

    Especially if they’re a lesser known artist. Even if they’re getting listened to, if the same people listen to 3x as much swift or whatever that will impact the lesser known persons earnings

    This article is a dog shit way to bring attention to Spotifys issues, simple as




  • I said “like it’s rape or something” - I didn’t say you’re saying it’s “tantamount to rape”

    ESL or just pretending like you don’t know those are the same thing?

    I’m just talking about the language people use like they’re being personally violated by snaps.

    Theyre literally just using the words to describe what is happening, why are you being weird about it?

    Getting hardcore incel vibes from your attitude, might wanna work on that





  • Ok, had my wife send me the file from my network

    networks:
      main-network:
        name: ${COMPOSE_PROJECT_NAME}
        attachable: true
        ipam:
          driver: default
          config:
            - subnet: configure
              ip_range: this
              gateway: yoself
    
    services:
      # Gluetun - <https://github.com/qdm12/gluetun>
      gluetun:
        image: qmcgaw/gluetun
        container_name: gluetun
        networks:
          - main-network
        cap_add:
          - NET_ADMIN
        environment:
          - PUID=${PUID}
          - PGID=${PGID}
          - TZ=${TZ}
          - VPN_SERVICE_PROVIDER=custom
          - VPN_TYPE=wireguard
          - VPN_PORT_FORWARDING=true
          - VPN_PORT_FORWARDING_PROVIDER=protonvpn
          - WIREGUARD_ADDRESSES=use your own
          - WIREGUARD_ALLOWED_IPS=0.0.0.0/0
          - WIREGUARD_PRIVATE_KEY=nope
          - WIREGUARD_PUBLIC_KEY=69420
          - WIREGUARD_DNS=
          - VPN_ENDPOINT_PORT=
          - VPN_ENDPOINT_IP=
        volumes:
          - ${DOAPPDAT}/gluetun:/gluetun
    

    I left in the wireguard stuff without my details because for me Gluetun refused to work when setting the exact same info to wg0.conf, so I define it in my compose

    Then, services that rely on gluetun go below and look like:

    # qBittorrent - <https://hub.docker.com/r/linuxserver/qbittorrent>
    qbittorrent:
      container_name: qbittorrent
      network_mode: container:gluetun
      image: lscr.io/linuxserver/qbittorrent:latest
      depends_on:
        gluetun:
          condition: service_healthy
      restart: unless-stopped
    
    

    Works perfectly when I run it through portainer



  • What works for me:

    Networks first in docker-compose

    Gluetun first in Services, uses the network I set for it and the stack

    Everything else goes below it, relying on the gluetun CONTAINER (I plan to have another stack running gluetun for other reasons so having it check the service is a no go for me) to be running in a HEALTHY state

    All are set to restart: unless-stopped except gluetun, which is never

    The expected behaviour is that containers will always wait for gluetun to report that it’s healthy before trying again to restart. Should gluetun fail and crash for any reason it won’t reboot and potentially fuck itself up harder, and no services will be able to start because it’s not reporting healthy.

    This works perfectly in portainer and should when running docker-compose up, but for me it took portainer to work. Saw someone somewhere mention it has some sort of priority handling override built into it that docker itself doesn’t, meaning it’s less likely to fuck that lind of thing up, but idk how true it is

    I’ll see if I can remember to snag a couple snips of my YAML to make it more clear


  • My main 2 reasons for installing it both come from needing to restart services sometimes:

    Portainer let me allow other people access to restarting specific containers that occasionally misbehave

    Portainer lets me update and restart all of the containers running in my VPN stack without breaking. For some ungodly reason, even with dependency set and everything in docker-compose, a CLI reboot will basically always start a service or 2 before gluetun is actually advertising it’s in a healthy state and everything breaks. With portainer that doesn’t happen, with the exact same compose, and I don’t get why lol