gamermanh

joined 1 year ago
[–] [email protected] 19 points 3 weeks ago (2 children)

Be nice to Owen, ok, it's been a hard life for him

[–] [email protected] 2 points 3 weeks ago (1 children)

Android has webcam support in USB mode and has for like 3 versions now, though?

When it asks you what you want your device to do when plugged into a PC you get options like "file transfer (ftp)”, webcam should be on the bottom

Works flawlessly for me in both Linux and Windows for OBS

[–] [email protected] 7 points 3 weeks ago

Meanwhile I've had FedEx give me the "sorry we missed you" email as their truck is still speeding away from my house

[–] [email protected] 11 points 4 weeks ago (1 children)

someone bought those machines in liquidation, whether they want them or not, or even know if they're theirs

It's a risk to remove the machine and do something with it if whoever that is eventually says "give those the fuck back to me I wanna sell em to nerds who'll use em for their collections" or whatever

[–] [email protected] 2 points 4 weeks ago* (last edited 4 weeks ago)

The Boss, MGS

Not Big Boss, the man with the eye patch and is a bad guy, the woman who taught him and the mother of Ocelot

She was such a badass woman that she inspired basically everyone around her to try to mold the world in the way they thought she saw it. Shes a great example of a woman/mother who's a badass directly because of the skills normally associated with those roles. Yeah, she can fight and kick your main characters ass, but that's mostly because she's spent time nurturing him and caring for him to the point where he emotionally cannot fight her. She regularly disarms strong, imposing men (some with superpowers like lightning channeling) by just looking at them sternly and implying she's about to call them by all 3 of their names in a disapproving tone

Time and again she does badass things while she's alive, and her death is technically the catalyst for the rest of the series as those who loved and admired her try to shape the world as she saw it, which isn't even something she herself did because of her loyalty to her country.

Oh and she's voiced by the same woman who does Pearl from SpongeBob, which is wild

[–] [email protected] 8 points 4 weeks ago

Linux users are hard for using a terminal when they could just open a document in a text editor.

This remains my #1 gripe with an annoyingly large bit of the Linux community, though there slowly becoming a smaller and smaller group

CLI is great for some things, but holy shit it's terrible for all of the uses you people try to shove down it's fucking throat. A text editor works better when you can scroll through and click around if it's any bigger than a few lines, my audio mixer is a lot easier to use with click and drag sliders than it was as ASCII text in a terminal, and in what fucking world is "MV file/path/could/be/long/as/shit another/long/as/shit/path" faster than click-drag between the 2 windows I opened to copy the path names in the first place?

[–] [email protected] 2 points 4 weeks ago

Yeah, my domains are .com or .us, the .com ones face the outside world for whatever reason and the .us I use to mean "us my family" rather than US, though I'm a citizen so I'm in the clear

If .us suddenly goes somewhere its prrrrrobably true that I am also gone in whatever caused that, too

[–] [email protected] 20 points 1 month ago

ChatGPT has gotten scary good with both entirely misunderstanding me in almost the exact way my ND ass does to NTs AND with how well it responds to "no, silly, and please remember this in future"

I don't use it super often, but every 6mo or so and it's gotten crazy good at remembering all my little nuances when I have it so shit for me (nothing like research, mostly "restructure data in format a to format b pls")

[–] [email protected] 2 points 1 month ago

Leave it to the Germans to use a longer abbreviation when GSPR is right there and we're speaking Englisch

[–] [email protected] 2 points 1 month ago (1 children)

It took me too long to get everything working myself because people love to share shit exclusively in CLI format and look down at anyone who asks for YAML it seems, so I'm always glad to pass it on

(I can understand CLI, but the ADHD brain finds YAML much easier for documentation purposes and it surprises me how many people seem to disagree)

[–] [email protected] 3 points 1 month ago* (last edited 1 month ago) (5 children)

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

[–] [email protected] 1 points 1 month ago (7 children)

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

view more: ‹ prev next ›