

Uppercase letters are different letters
No, they’re different glyphs, they’d still be alphabetized the same way as X and x are the same letter
Uppercase letters are different letters
No, they’re different glyphs, they’d still be alphabetized the same way as X and x are the same letter
Im stupid Stones but I think it’s in the user agent information, browser and version and other shit
Been thinking about swapping away from Plex when I move to New hardware later this month
If I’m reading all this right sounds like Overseerr and Plex both can be replaced with this, as well as a unified app for the two?
If so I’m def getting this installed and testing it out this weekend, my goal for a while has been to get the rest of my family into my streaming ecosystem but having to use 2 whole apps (Plex and Overseerr on a website) is enough to scare them away despite using 6 apps currently
I’m semi convinced the downloads don’t work right if you use the GUI distros like Mint provide for Nvidia drivers
My 2080ti had multiple issues until I installed a different version (same issues) and then RE-installrd the original drivers manually
When I updated later: same exact series of events went down except I was able to get it to install on the third try from GUI properly because I wanted to see how many tries it might take for the lulz
I think it’s older cards and some sort of glitch in the proprietary driver manager shit most people use by default
Because OSM doesn’t already do that for them? Every edit is saved under your account, as has been said, they don’t need to do any of that
Paranoia that someone doing something that you’re explicitly allowing them to do makes you look silly, you know
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
Blank spaces arent characters by definition as they’re the space that allows the letters to exist
smashing printers with baseball bats
I have years of IT experience, offer Linux support, and am visibly the kind of guy you just know can fix your computer problem (or, if I take my glasses off, I look like I sell weed apparently), and when asked to help with printers I have one answer:
They’re sentient and they hate you. I was trained in IT, not exorcisms. Send it as a PDF, PNG, or smoke signal before you try troubleshooting.
Like, I broke my big office one the other day so bad the tech had to come out. What had I done to brick it so badly? Tap a menu option, tap back, then tap a different menu option. If you don’t wait 3s between the second and third tap it errors and freezes and they have to send a tech out to do some sort of 2 hour long ritual where he rubs it and whispers how sorry he is.
What the fuck is wrong with printers
This remains my #1 complaint every time they send me a “how are we doing” survey
I check, then reply:
Your email app still doesn’t support basic functionality like creating and editing filters, something I had to code for a phone app back in high school
Like, holy shit, the feature exists on desktop why the fuck can’t I have it in the app rreeeeeeeeeeeeeee
the fact that issues exists doesn’t justify the proposed “solutions”
Ok but they never said it did. They just pointed out that saying “assholes like Andrew State are responsible” leaves out that there’s a reason people go to him and thus is not the actual root problem
I think that even having no one talk about problems is better than having someone talk about problems to actively do harm and gain power
Wow, you’re trash
conflate liberal/conservative with the dominant left/right parties in these nations
Why do so many people on Lemmy insist on pretending that liberal/conservative aren’t relative terms?
Every single time those words get used with their little l/c to mean "relatively liberal/conservative) I see multiple people go “well ackshully a Liberal is a right wing ideology!”
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”)
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)
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
Ok i get it, it’s best practice to do rushed releases without QA because users are the free testers.
You literally used the wrong version. As I stated: the app you’re talking about clearly states it does not have a stable release for the version of nextcloud you’re running.
They definitely had no way to know that their own app was incompatible
They knew, and told you, right on the app page
Idiot user who believed their newsletter "update now, hub 9 is the best thing ever
You said it, not me. I tried being nice but that really is what happened: you fell for what the marketing team wrote and skipped basic IT steps in doing so. Now, rather than just admit you made a mistake that a LOT of people have made (including me, I’m a fucking idiot too) you are whining and doing your best to me talk gymnastics this into you being a victim of something
How you managed to convince your IT department of anything with a knowledge that shallow and an attitude like that I’ll never know. Grow up.
then a bit of warning is suggested
Which was given by the app that gets broken by the update
Windows doesn’t tell you that upgrading to 11 will break x, y, and z that you have installed, you’re expected to go to the sites for those programs and check if they work. Same exact idea
The same company making both apps is never a guarantee that they’ll play nice day 1, for many reasons
I’ll repeat: learn from your mistake instead of blaming other people for your naivete. If an app is important and might break during an update of something: check the apps documentation to see if it supports said update
Literally just googled “nextcloud forms” and looked at their supported versions and whaddya know, it says right on that webpage that there’s no stable version for 30 yet, so safe bet would be that it wouldn’t properly work when upgrading:
There is a supported nightly build, though, so you could probably have tried that
It’s on you to look up what will break when you update, or to test and see what happens when you do. A major update page isn’t going to list all of the things that rely on it that break because that’s fucking unreasonable
Seeing shit like this makes me wonder what different Plex I’m using from everyone else. Pinned my local library at the top 4 years ago and now every device shows that tab first when logging in and hasn’t ever behaved differently except when the home server is down (it’ll still go to the tab but read OFFLINE)