• 205 Posts
  • 942 Comments
Joined 1 year ago
cake
Cake day: April 2nd, 2025

help-circle



  • Interesting. This one looks more powerful than most attempts I’ve seen.

    One of my key questions is addressed in the FAQ:

    Hard link or symlink? What about a Mo2 style vfs?

    • They all achieve the same goal but each comes with downsides
    • Hard links can be loaded fast and take up no space, However when the source file is removed the hard link is removed which can cause issues. The hard linked file must also be on the same drive as the source file. They also look like normal files and report as taking up space which can cause confusion
    • Symlinks can be created between drives and are distinguishable from normal files. Removing the source file stops the symlink from working but the symlinked file still shows as a symlink and can be easily removed. The downside of these are they much worse than hard links when playing with large modlists as they take longer to load. The manager allows you to freely swap between both methods and symlinks may be fine for smaller modlists.
    • Mo2 style vfs (FUSE and overlayfs): These have the benefit of not moving any files to the game directory. I have added both of these to a test build, Neither provided any real benefit over hardlink/symlink and caused more issues than it was worth.

    https://github.com/ChrisDKN/Amethyst-Mod-Manager/wiki














  • In case you want to try some others:

    https://simplelogin.io/
    https://relay.firefox.com/
    https://www.33mail.com/
    https://erine.email/

    Unfortunately, some misguided (or possibly malicious) people collect email forwarding domains like these and publish them in lists dishonestly advertised as spam or disposable address lists. An unfortunate number of service developers have taken to using these lists, leading to the situation you’re in now.

    The best suggestions I can offer:

    • Complain to the administrators of each site that does this, making sure to explain why it’s a problem. There’s a chance that some of them honestly don’t realize that legitimate forwarding domains are being swept up into a dragnet intended for spammers, and might stop using those lists if they were made aware.
    • When choosing a forwarding service, pick one offering domain names that haven’t been picked up by the blacklists. This might require non-default settings when creating a forwarding address, or paying for access to the more obscure domains.

  • Thanks for posting this. I’ve been keeping MX Linux in the back of my mind as a possible Debian alternative if I ever need one.

    they aren’t letting me post this testimonial in the MX forum because it doesn’t accept anon-aliased emails for logins.

    Ouch. That’s a red flag for me, since it forces people to expose themselves to spam and tracking if they want to participate in the community. Which alias service did they reject? Maybe there’s one that doesn’t trigger their rule?









  • And it’s not just web development.

    This mindset has been spreading for… probably decades. Nowadays, it is even pushed by certain popular programming languages, by including a toolchain that makes it as easy as possible to pull in third-party dependencies while offering a standard library so minimal that a developer is strongly encouraged to rely on said dependencies.

    This inevitably leads to a world where software supply chain attacks have massive reach and high chances of success. And threat actors take advantage of it, of course.