@Halo USB-C for data is fine, but not different things on the same port. Things aren't supposed to connect and then not work, much less break your devices.That's never been a thing
@Halo "One-size-fits-all is great"
@Gronsak It's a well known satire account
re: Desktop Background
@DarkMahesvara @Gronsak @Halo @Kallian @TheDeathRow @Yakotarun I didn't know it could continue downloads, but sure enough
Also noting that currently ytdlp has 1499 supported platforms
@GrungeQueef They also give instructions to people on what to do
https://worldfreedomalliance.org/au/news/un-declares-war-on-dangerous-conspiracy-theories-the-world-is-not-secretly-manipulated-by-global-elite/
>According to UNESCO, “if you are certain you have encountered a conspiracy theory” on the internet then you must “react” immediately post a relevant link to a “fact-checking website” in the comments.
>According to the UN agency, you must not under any circumstances be lured into an argument with the conspiracy theorist. “Any argument may be taken as proof that you are part of the conspiracy and reinforce that belief” and the conspiracy theorist will probably “argue hard to defend their beliefs.“
>Instead you must show “empathy“, avoid “ridiculing them“, and if you are a journalist you must “report” them to social media and “contact your local/national press council or press ombudsman.”
@Koppa O, and the article https://archive.ph/sl6gg
@Koppa Found the snopes article on it https://www.snopes.com/fact-check/hot-jobs/
Snopes says
>the origin of this story was evidently a 18 December 2004 article published in the Berlin newspaper Tageszeitung (also known as TAZ) which did not report that women in Germany must accept employment in brothels or face cuts in their unemployment benefits
But in the actual article it says (translated):
>The profession of prostitute has been legalized since 2002. Being a sex worker is a job like any other. So there would be no reason for the employment agency not to mediate in the area of "sexual services" according to the new Hartz IV legislation. “By law, the profession is no longer considered immoral,” explains Mechthild Garweg, a specialist lawyer for family and social law who prepares people for unemployment in training companies.
So they literally lie about there not being laws around it
So this seems very true
@dave @alex @Hyolobrika @issdeinschnitzel @s8n @coolboymew Techy people all block ads and never click them. I don't feel it will do anything but make ill will
@pleb @LukeAlmighty I dislike the cli/json/caddyfile spread, otherwise seems fine
@Zerglingman @LukeAlmighty You can cut out the two logging one's I guess. I haven't used apache for years and grabbed an example from online and an example from my nginx configs. I mainly just meant it as an example of the syntax
@LukeAlmighty Use nginx instead, it's 500x better and easier to use
Compare:
<VirtualHost *:80>
ServerName example.com
ServerAdmin admin@example.com
ServerAlias www.example.com
DocumentRoot /var/www/example.com/public_html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
server {
listen 80;
server_name example.com;
root /srv/http/;
location / {
try_files $uri $uri/;
}
}