• 0 Posts
  • 12 Comments
Joined 10 months ago
cake
Cake day: June 23rd, 2024

help-circle


  • 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.







  • 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.