Yes, :q!
in normal mode to exit without saving changes.
Yes, :q!
in normal mode to exit without saving changes.
Well, not really. Twitter was his own private property that he bought with borrowed money secured against his Tesla shares. xAI on the other hand is financed by investors whose money he used to bail himself out at a price he made up himself since Twitter is no longer publicly traded. So this is, in my opinion, misuse of investor funds; the picture would be true if xAI used how own money to do this, but no.
On one hand,I think this is serious fraud. On the other, my understanding for anyone investing into his companies is very limited, there are so many red flags on so many levels.
But it’s geared for the convenience and privacy of the average user not military security.
Military security (or military grade whatever) is a buzzword that makes sense in some contexts. In a lot of them, it doesn’t.
For example, for a lot of military-grade products you can have assumptions that are not always given for a platform that messenger operate on. Like that the device is always stored in a secure location. That it’s administered by trained personnel. That the device operator has received training on proper usage etc. In fact, a lot of military systems probably couldn’t be operated securely in a John Doe context b because of environmental security requirements. In that regard, messengers have to be more secure.
It appears that Germany has updated their information several times. So much so that your second link gives me a 404 error
It hasn’t been updated, but Lemmy thinks the colon is part of the URL. https://www.auswaertiges-amt.de/de/reiseundsicherheit/suedsudansicherheit-244250 it’s not about the US but South Sudan, to show what an official travel warning looks like. The US page is just advisory.
Germany
I don’t know for other countries, but Germany has not issued any travel warnings. The page with information to the US is the following: https://www.auswaertiges-amt.de/de/service/laender/usa-node/usavereinigtestaatensicherheit-201382. It contains only information, but no advisory against traveling which a warning usually contains stuff that one might call warnings, but they formally aren’t. Compare it with https://www.auswaertiges-amt.de/de/reiseundsicherheit/suedsudansicherheit-244250: The title of the page contains “(Reisewarnung)” which translates to “warning against travel”. The page contains the wording “Vor Reisen nach X wird gewarnt”. Only those constitute a warning. No such warning can be found on the page about the US.
Personally, I can only advise against traveling there, but the page for the US has existed basically always. New information was added this month, but the official status / stance on US travel hasn’t changed: the US is on the same level as France and Spain.
$800, or about 5€.
Mephisto is the least scary part of the dungeon, it’s the dolls that can really fuck you up, and blinking into an unlucky stunlock
Interesting enough, the chains in this graphic that operate in Germany are German. Apart from some small outlets, the German market is controlled by German chains. It’s just that these also became relatively successful internationally.
That’s more hours per week than I have to work.
But you can always do more. I have a childhood friend who, when some leagues were released, averaged about 14 hours per day for Path of Exile for two weeks straight. Like 180 hours playtime in two weeks.
Another friend of mine should be at about 8000 hours of Rocket League by now on his main account only. That’s over the game’s full lifespan though.
Even when using in a basic way, I think it has one very tangible advantage: the fact that you can “compartmentalize” different aspects of your configuration.
Let’s say I set up a specific web service that I want to put behind a reverse proxy, and it uses a specific folder that doesn’t exist yet, like Navidrome which is a web-based audio player. It requires a set of adjustments of different system parts. My nix file for it looks like this:
{ config, ... }:
let
domain = "music." + toString config.networking.domain;
in
{
services.navidrome = {
enable = true;
settings = {
Address = "127.0.0.1";
Port = 4533;
MusicFolder = "/srv/music";
BaseUrl = "https://" + domain;
EnableSharing = true;
Prometheus.Enabled = true;
LogLevel = "debug";
ReverseProxyWhitelist = "127.0.0.1/32";
};
};
services.nginx = {
upstreams = {
navidrome = {
servers = {
"127.0.0.1:${toString config.services.navidrome.settings.Port}" = {};
};
};
};
};
services.nginx.virtualHosts."${domain}" = {
onlySSL = true;
useACMEHost = config.networking.domain;
extraConfig = ''
include ${./authelia/server.conf};
'';
locations."/" = {
proxyPass = "http://navidrome/";
recommendedProxySettings = false;
extraConfig = ''
include ${./authelia/proxy.conf};
include ${./authelia/location.conf};
'';
};
};
systemd.tmpfiles.settings."navidrome-music-dir"."${toString config.services.navidrome.settings.MusicFolder}" = {
d = {
user = "laser";
mode = "0755";
};
};
systemd.services.navidrome.serviceConfig.BindReadOnlyPaths = ["/run/systemd/resolve/stub-resolv.conf"];
security.acme.certs."${config.networking.domain}".extraDomainNames = [ "${domain}" ];
}
All settings related to the service are contained in a single file. Don’t want it anymore? Comment it out from my main configuration (or whereever it’s imported from) and most traces of it are gone, the exception being the folder that was created using systemd.tmpfiles
. No manually deleting the link from sites-available or editing the list of domains for my certificate. The next generation will look like the service never existed.
And in my configuration, at least the port could be changed and everything would still work – I guess there is room for improvement, but this does what I want pretty well.
Just to clarify, I wouldn’t recommend putting everything in a single file, but rather modularize the configuration.
I also came from Arch, but have since abandoned it, and I don’t think I want to use distributions for myself that use the the classic imperative concept. One you get a better understanding of it, it makes so much more sense.
Which was the whole point of the thread: it doesn’t matter by which power you get exploited, China doesn’t give a fuck about other countries either and they’ll happily fuck up other countries’ environments.