He didn’t get called “man of steel”, good old Iosif Vissarionovich Dzhugashvili called himself that just to massage his ego. Kind of like certified Most Fuckable Twink Nick Adams proclaiming himself to be an “alpha male”.
I take my shitposts very seriously.
He didn’t get called “man of steel”, good old Iosif Vissarionovich Dzhugashvili called himself that just to massage his ego. Kind of like certified Most Fuckable Twink Nick Adams proclaiming himself to be an “alpha male”.
Flatpak is not just an alternative packaging format. One of the key advantages is that it provides a predictable runtime environment that is independent from the rest of the system. Sometimes an application needs a particular version of a dependency (called dependency pinning, very common practice in development) and can’t rely on the system having the correct files. It also isolates the application from issues stemming from environment variables and the “global” filesystem.
It also gives developers greater control over packaging. Because of this isolation, they don’t have to rely on downstream packagers to manually adapt the software to the distro’s available packages (potentially introducing bugs).
One infamous example is Bottles. The project is officially distributed as flatpak, but OpenSUSE wanted to distribute it as native binaries. They had to use an outdated, broken version and caused a flood of user reports for issues that were not Bottles’ fault. More in this thread and open letter: https://github.com/bottlesdevs/Bottles/pull/3583
You’d be a perfect fit as a military analyst. Those people make noncredibledefense look positively proficient.
Even worse when you’re already doing the thing, but you are at a part of the process where it doesn’t visually look like you’re doing the thing, and someone chews you out for it.
Love you, mom, but kindly piss off.
It’s for gen-alpha computers. Makes sure all them files are yeeted, no cap.
Smog is just the developers’ workaround for overpopulation because the universe machine can’t handle that many animated entities without distance culling.
wax or pine sap
How the hell do you huff those though?
alias consent='chmod u+x'
makes creating an executable very kinky.
Aaaand you’re gone. Truthfully I should’ve done this yesterday, your original comment was enough to warrant a temporary suspension. If you can’t play nice, if you can’t at least feign tolerance, you can find a different forum where your conduct is accepted.
Feel free to complain on YPTB.
this network needs opposing opinions from its “acceptable” narrative
So it’s okay for you to do it, but not for others to push back against you because they believe the expressed views to be morally wrong? I think you might be looking for an echo chamber of your own.
I’ll remind you that you’re in a public forum and should expect the public to voice their displeasure.
I also want to point out that I can see the votes on every comment. It is incredibly childish of you to downvote every dissenting reply and most of the other comments.
You’re doing the exact same thing with this public crashout about how much their happiness offends you. You’re spreading your vitriol because you want people to take your side. I’d rather surround myself with furries and femboys than the likes of you.
Queer and nonconforming people exist, they have the same right to express themselves as everyone else, and you’d better get used to it real quick.
us reasonable users
If anything, it is hate and prejudice that’s ruining the image of FOSS. If you don’t have the mental composure and maturity to at the very least ignore the people you disagree with, you can hardly call yourself “reasonable”.
I spent a solid minute trying to figure out why the second step ladder looked fucked up.
I am not very perceptive.
Into another environment?
“Live and let live” obviously doesn’t work. 4chan has done so much damage to the world that I wouldn’t mind seeing their big players in gallows in the town square.
Oh, I’m afraid your tokens will be quite fungible when your friends arrive…
I ain’t tryna be racist, but–
Those are two different measurements.
He’s six feet tall.
And he’s three inches.
I’ve never used the AIO image. I’ve heard it’s weird. This is my compose file for the community image:
compose.yaml
volumes: db: services: db: image: mariadb:10.6 restart: always command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW volumes: - db:/var/lib/mysql secrets: - mysql_root_password - mysql_nextcloud_password environment: - MYSQL_ROOT_PASSWORD_FILE=/run/secrets/mysql_root_password - MYSQL_PASSWORD_FILE=/run/secrets/mysql_nextcloud_password - MYSQL_DATABASE=nextcloud - MYSQL_USER=nextcloud nextcloud: image: nextcloud restart: always ports: - 8080:80 depends_on: - db links: - db volumes: - /var/www/html:/var/www/html - /srv/data:/srv/data secrets: - mysql_nextcloud_password environment: - MYSQL_PASSWORD_FILE=/run/secrets/mysql_nextcloud_password - MYSQL_DATABASE=nextcloud - MYSQL_USER=nextcloud - MYSQL_HOST=db secrets: mysql_root_password: file: ./secrets/mysql_root_password.txt mysql_nextcloud_password: file: ./secrets/mysql_nextcloud_password.txt
You can access it on port 8080 and perform the initial setup manually. For the database server address, use the
db
hostname. You’ll have to use a reverse proxy for HTTPS.You could also try OpenCloud, which is a Go rewrite of ownCloud.