

Sounds like someone who’s never seen a wild banana.
I take my shitposts very seriously.
Sounds like someone who’s never seen a wild banana.
I’ve seen Don’t Look Up. Having the technology to carry out a mission like that is the easy part.
corporations that would ban Linux from their network
You can’t change the license retroactively. Corporations would likely hard-fork the kernel at the last GPL2 commit and move it to a restricted but compliant access model like Red Hat did.
I’m not convinced that is the case. The studio was purchased by a holdings company, then its CEO bought four early sketches of DE from the studio for pocket change. When Kurvitz, Rostov, and Hindpere (writer) objected, they were demoted and later fired. Unless another exchange took place, I don’t see how this would amount to Kurvitz selling his rights; at the very least, he still owns Sacred And Terrible Air (with DE itself naturally belonging to the studio).
Shitty people are abundant in the creative industries, I have no delusions about that. Probably even more of those that have no public presence. But that has no bearing on whether or not he should retain sole ownership of his work. It’s an entirely separate issue. Andrzej Sapkowski is also a massive douchebag, but nobody would deny that The Witcher is his property.
Kurvitz and Aleksander Rostov (the lead artist) formed their own company Red Info in 2023. I will only recognise a game as Disco Elysium’s successor if it comes from them.
Did you completely miss the part where I said “Not the solution, and not a possible solution for everyone, but it is a solution”? I don’t know what you think the usual troubleshooting process is, but it doesn’t start with “uninstall Windows”. Obviously the user was sufficiently intelligent to consider the advantages and disadvantages of switching, and based on that information, chose a course of action that they thought was correct, and it ended up being the solution to their issue.
I don’t know how else I can spell it out for you. Computer users are not dumbasses. They have agency over their own actions.
Are they still experiencing whatever problem they were having?
No? Then it is a solution. Not the solution, and not a possible solution for everyone, but it is a solution.
Bring Me The Horizon: “CAN YOU HEAR THE SILENCE?”
Me, with mild-to-moderate tinnitus: boy I sure wish I couldn’t
Not within the computer’s lifetime. Consumer-grade SSDs are generally rated for 3000-5000 write cycles or more, and contain some kind of wear levelling mechanism to distribute write operations over the entire physical medium to reduce the chance of individual block failures. The first SSD I ever bought is still going strong as my server’s root filesystem.
imagine going to a McDonald’s and complaining to the waiters about all the unhealthy food
hesoyam
and impulse 101
And the most powerful one: bind w kill
It’s a reference to a line in a Stargate episode, uttered by a historian in reference to outdated medieval practices (specifically trepanning). If I have to make a point, it is that historical fiction about a specific time and culture should reflect the values and prejudices of the people and not be condemned for it.
That article reads like that other shitpiece that called Ghost of Tsushima racist for portraying Mongols as evil. Like, bruh. It wasn’t called “the dark ages” for a lack of sunlight.
Not useless, but it can go bad much quicker. A few years ago I lost a rotary hoe because the engine had been damaged and the carburetor had gotten clogged. The fuel was less than a year old, but closer in color to cooking oil.
If gasoline sits in open air or a non-sealed container for a long time, its lighter fractions will eventually evaporate. The heavier fractions can cause blockages and misfires. It can still be used, but you have to dilute it with fresh gasoline. If it happens while inside an engine, the carburetor should be rinsed with fresh gasoline to remove clogs.
I don’t understand, please show me which part of this bike needs gasoline to function.
Some, but the output drops significantly. Solar panels like direct sunlight. Even a thin cloud layer can reduce the output just by both blocking and diffusing sunlight.
(The graphs are just for illustration, I have no context for them)
A car-sized EV’s convenience is wasteful when energy is scarce and other options are available.
Zombie flicks are not exactly known for their strict adherence to realism. Residential power would likely be the first to go, if only to reserve generator capacity and fuel for military, medical, and government facilities, and rich assholes’ mansions.
Maintaining the electric grid takes an incredible amount of work and the tight cooperation of all of its facilities. If one or several large generator were to shut down, it might cause a cascading collapse. Executing a black start is a massive challenge at the best of times, and probably impossible in a post-collapse society.
Clouds.
Without the power grid to back them up, solar panels are only as reliable as the weather. A week of overcast skies will drain everything you have in your batteries. No output during the night either. There’s also the problem of theft, vandalism, natural wear, and the difficulty of finding replacement parts.
If you have solar energy and a way to store it, it should be used for more vital applications, like lights, cooking, and refrigeration.
My compose.yaml inside...
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= - MYSQL_USER= 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= - MYSQL_USER= - MYSQL_HOST=db secrets: mysql_root_password: file: ... mysql_nextcloud_password: file: ...
If you use the
links:
element in thenextcloud
service, the services listed there will be available using their hostnames. On the Nextcloud setup screen, choose mysql as the database engine, usedb
as the database host, and enter matching values into the other fields.