Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)RH
Posts
4
Comments
194
Joined
4 yr. ago

  • they’re not really illegal at all, are they?

    If a police officer commits murder but the D.A. covers it up and the officer is never charged with a crime, does this make murder by the police legal?

    Yes, it is illegal, and the government does not enforce laws consistently. The point is, this is a moral failing of Starfleet/the US government. This is an injustice.

  • "Illegal?" DS9’s S31 was protected by Starfleet Command. They were completely untouchable.

    They can be both protected and illegal. Sisko noted that the organization was completely antithetical to the laws of Starfleet, e.g. committing genocide against the Changlings of the Dominion (they used the actual word "genocide" to describe what Section 31 did in the show). But their existence was neither denied nor acknowledged by Starfleet. This is part of the reason why he asked Bashir to act as a double-agent.

    It was clearly analogous to the CIA, which for decades has been collecting money from the illegal drug trade and supporting terrorist organizations around the world, all in the name of "national security." It was a critique of the US government, like most of the Star Trek episodes that deal with the moral shades of gray within the laws of Starfleet. It is clear from their political commentary that the shows morality was staunchly anti-fascist.

    And this new film on Section 31 completely reversing their former politics and joining with and celebrating the fascists is more than I can stomach.

  • Poisoning the well

    Yeah, that seems to be the M.O. of the Anti-Defamation League with regard to anti-zionism: poison the well against anyone who might feel empathy with the Palestinian people before they have a chance to speak, by equating them with antisemitism and Nazis.

    Ironically, the Palestinian people are technically Semitic people also, but their wells are being literally poisoned by white Phosphorus bombs "made with [white] pride in the USA," and dropped by different Semitic people who have the privilege to do that.

    This is why white supremacy is so evil, it is so arbitrary. Who gets counted as "white" and that dividing line between enjoying privilege and being a victim of mass murder changes from day to day, and place to place. Zionism just happens to include Jews in that definition of white (while also excluding Palestinians), where as antisimitism excludes Jews, but both are white supremacy.

  • Deep Space Nine made it absolutely clear that Section 31 is an illegal black-ops org with garb somewhat reminiscient of Nazi storm troopers, they were the bad guys.

    Yeoh has described it as “Mission: Impossible in space,” and likened the tone to the Guardians of the Galaxy movies.

    Mission: Impossible, the longest-running, pro-CIA anti-socialist propaganda series in US history. OK... so now Star Trek is about making illegal black-ops Nazis look cool?

    Fuck these fucking producers. I want my gay space communism back.

  • Until the ADL gets rid of their pro-genocide leadership and spokespeople, I can't take any of their reports seriously. Its a shame, since this particular report seems to be more concerned with anti-Trans and neo-Nazi propaganda which is indeed a real problem, and their research here would otherwise probably be very useful. They have really damaged their own reputation this past half year by equating support of Palestinian victims of genocide with antisemitism.

  • I am genuinely surprised that the US only abstained, not vetoed, this resolution. Something like the past 40 or 50 similar resolutions to help the Palestinian victims of war and occupation were all vetoed by the US over the past 30 or so years. I wonder if this might actually be the first such resolution not vetoed by the US in... I don't even know how long.

    It is just so typical of a fascist state like the US what they do at the UN, where they talk big about upholding and enforcing international law, but then at every opportunity the US simply excepts itself (and Israel) from the law. They take exception by vetoing every single UN resolution ever passed toward the peaceful coexistence of ethnic Jews and Palestinians, and so the US keeps this White Supremacist project that is Israel to commit crimes against humanity continuously for decades, to such a severe degree that it spirals into a full-on genocide.

    Now, finally, the US does something to NOT overtly support White Supremacist genocide. That amazes me.

  • I would go with Fedora or Mint, both for their software support and stability. Personally I like Mint over Fedora, I think it has a larger selection of software packages but I could be wrong.

    Btrfs is more stable nowadays, I wouldn't worry about that. And anyway you can choose XFS or Ext4 during installation while setting up your disk partitions.

    If you are worried about a particular software package being too old, try installing FlatPaks instead, or use the Nix or Guix package managers which can co-exist easily with any other package manager.

  • The Voyager theme song is by far my most favorite, probably of any TV series. I haven't seen the whole series yet, but I like it a lot so far. Still, I think DS9 is my favorite.

  • @joeldebruijn@lemmy.ml the /run/user/1000 directory is an in-memory file system of a fairly small size. The operating system creates it for you to store certain things that are for your user account only. The permission settings on this directory forbid any other user on the system (except for "root") to see what is inside. This makes it safe to store secret information that only you should know.

    One typical example of something stored in this directory would be your plain text (unencrypted) password database if you use a password manager. No other user but you (and "root") can see it, and it is in-memory only so it is not accidentally copied to your persistent memory (HDD or SSD disk drive) where it might be removed and read by hackers if someone steals your computer from you. At the same time, any program running on the system that was launched by you and only you has access to your passwords so you don't need to remember passwords for everything. (Actually it is a socket to a server containing your unencrypted password database in memory, it is probably not actually a file in that directory.)

    Other things that go in this /run/user/1000 directory are socket connections to the desktop bus (allows for things like copy-and-paste or drag-and-drop to work between programs), socket connections to your audio mixer (allows you do things like to listen to music and do video chat at the same time), and a record of what external media devices you have connected to the computer which you are using via GVFS, and so on.

    Also, the number 1000 is your user ID number assigned to you by the operating system. If you create other accounts, they will have ID 1001, 1002, and so on, and each of them will have a directory with that number created in the /run/user directory for them when they login.

  • According to the wiki, ZFS "works well" but doesn't seem to be as stable as in FreeBSD or OpenIndiana, and is not enabled by default so you have to update your rc.conf file to build the ZFS drivers.

  • Yes, it is mostly appliances, but an (informal?) stated goal of NetBSD is too run on all computing hardware.

    • FreeBSD = user-friendly free Unix (plus ZFS and jails 😀)
    • OpenBSD = very secure free Unix (no ZFS 🙁 but has the VMM hypervisor 😀)
    • OpenIndiana = user-friendly free Unix that runs old Solaris software (plus ZFS and zones 😀)
    • NetBSD = runs on any computer chip ever built within the past 40 years (some ZFS support, but no zones, jails, or VMs 🙁)

    Naturally, that makes NetBSD a good choice for appliances, especially ones that might only have limited memory.

    (Here is a quick explainer on the difference between Jails, Zones, Containers, and VMs)

    EDIT1: someone pointed out to me that ZFS is not supported on OpenBSD. Sorry about that everyone.

    EDIT2: there is a ZFS driver for NetBSD

  • I guess the Btrfs snapshopt approach is not possible for your setup since the devices you want to backup are not Btrfs and cannot create snapshots.

    Yes, the snapshots will be the size of the whole partition, I had not thought about that problem. I do not know if it is possible to create incremental snapshots with Btrfs.

  • I like it! What I would have done differently: use the original colors, the deep blue color for the window decoration in Windows 98 is quite different from the color you are using. Also I would use a green wallpaper of a shade closer to the default on Windows 95/98, and an icon theme with beige and yellow icons.

    I have actually been wanting to do something like this with the old Mac OS 7 "Platinum" theme, modernizing it for Xfce so it looks like the old Mac OS 7 in spirit, but not exactly like Mac OS 7 the way most immitation Platinum themes try to do.

  • I am also going to recommend the same solution as @matcha_addict@lemy.lol in this comment: https://lemmy.ml/comment/7998407

    You can create a key pair that is specifically just for this kind of backup transaction.

    To limit its affects, create a user and group on each of the devices that are highly restricted.

    This is actually the most secure solution that doesn’t require an interactive password prompt. The passwordless key only serves this one purpose and has small attack surface.

    Basically, you can tell SSH to allow root login on certain devices by setting up a root key pair. You configure SSH on the target device such that when it logs in, the login must run a script or a single command instead of running a shell, this limits what attackers can do if they somehow steal your private keys. You can also keep these private keys in your SSH agent so you only have to enter their passwords once, this will allow you to run remote commands without a password.

    I would recommend also exploring the possibility of setting up an Rsync Daemon on each remote device, it keeps an Rsync process running on a remote device and listens for connections from Rsync clients. https://linuxconfig.org/how-to-setup-the-rsync-daemon-on-linux

    On an unrelated topic: you might also want to look into using Btrfs and making and transferring snapshots to other devices.

  • Someone with more expertise can correct me if I am wrong, but the last I heard about this, I heard that cluster computing was obsoleted by modern IaaS and cloud computing technology.

    For example, the Xen project provides Unikernels as part of their Xen Cloud product. The unikernel is (as I understand it) basically a tiny guest operating system that statically links to a programming language runtime or virtual machine. So the Xen guest boots up a single executable program composed of the programming language runtime environment (like the Java virtual machine) statically linked to the unikernel, and then runs whatever high-level programming language that the virtual machine supports, like Java, C#, Python, Erlang, what have you.

    The reason for this is if you skip running Linux altogether, even a tiny Linux build like Alpine, and just boot directly into the virtual machine process, this tends to be a lot more memory efficient, and so you can fit more processes into the memory of a single physical compute node. Microsoft Azure does something similar (I think).

    To use it, basically you write a program a service in a programming language that runs on a VM and build it to run on a Xen unikernel. When you run the server, Xen allocates the computing resources for it and launches the executable program directly on the VM without an operating system, so the VM is, in effect, the operating system.

  • And once they control the media, no one will ever again have to worry about learning the truth when military and/or police commit war crimes like genocide, or murder protesters at demonstrations, or when the cops murder people for not having the correct skin color, and so on.