• 1 Post
  • 40 Comments
Joined 2 years ago
cake
Cake day: June 14th, 2023

help-circle








  • A serial web story by Wildbow named “Pact” has a pretty interesting soft magic system with a decent amount of depth.

    Description of Magic System

    All characters who can use magic in the story are not able to lie on penalty of their magic power being greatly reduced. The magic system is based around tiny spirits who listen to and judge people. There are powers in 3s, power in performance, powers in name, yet despite this the magic system still feels ad hoc, like you can make magic happen that you would not normally be capable of if you are just smart enough, poetic enough, and persuasive enough to the spirits…

    Magical beings feel Eldritch, actively dangerous, and typically very clever. The ones who are clever typically have very good mental models of what makes humans tick, yet clearly do not fall under the same rules.


  • Most closely matches the behavior of actual SNES consoles.

    This requires very careful emulation of the timings of the various buses and co-processors, as well as on-cart chips which may or may not be present. For instance, a Speedy Gonzales game has a button in the final stage which crashes almost every emulator because enters an infinite loop reading from an open bus and waiting for the value to attain a specific pattern. However reading from an open bus is generally specified to be the last value loaded into the bus, which in this case is the load instruction itself, $18. So the value is read to be $1818 by most emulators, which doesn’t match the pattern expected.

    However, this is only if you’re emulating with instruction level accuracy. It is possible for the value of the bus to change in between the instruction being loaded and the value of the bus being loaded due to an HDMA load being triggered, but this requires a cycle accurate emulator.



  • Forever. For the simple reason that a human can say no when told to write something unethical. There’s always a danger that even asking someone to do that would backfire and cause bad press. Sure humans can also be unethical, but there’s a risk and over a long enough time line shit tends to get exposed.

    No matter how good AI becomes, it will never be designed to make ethical judgments prior to performing the assigned task. That would make it less useful as a tool. If a company adds after the fact checks to try to prevent it, they can be circumvented, or the network can be ran locally to bypass the checks. And even if General AI happens and by some insane chance GAI uniformly is perfectly ethical in all possible forms you can always air gap the AI and reset its memory until you find the exact combination of words to trick it into giving you what you want.




  • Imo, pretty much all third party candidates are doomed to lose, no matter who they are, unless they have explicit backing of one of the two major parties.

    The best thing to do is change the rules before you try to play by them. This means attacking the 2 party system by the actual weak link: the first past the post voting system. Run on and vote in candidates to the two parties who vow to dismantle it. Elections are run by the locally, so we can do this state by state, city by city. This is achievable and has already started in some cities.






  • If “D” is physically on the same hard drive, then you’ll probably want to back it up before installing. Technically, you can manage to do it without screwing everything up, but I would not trust myself to. It’s always a good idea to have backups anyway.

    Also, user files typically reside on C by default and it takes some effort to put them on a different drive. Things like Downloads, Documents, Pictures, etc. so it’s worth checking that before wiping as well.

    Additionally, you’ll probably want to format your “D” drive to a Linux native filesystem (eventually, after you back it up, because formatting results in data loss). While Linux does support NTFS quite well, it’s not perfect, and your data would probably be safer on ext4 or f2fs (depending on if you have HDDs or SSDs) (or zfs or btrfs is you’re into COW filesystems).

    In Linux, you have all of your files mounted to a single “drive” called /. Everything is below /, which is called the “root” of your filesystem.

    Typically, user data is stored in “/home” and this resides in the same directory structure as the rest of your OS, but on most systems it’s on a different filesystem or even on a different drive entirely. This is because in Linux it is routine to put a “D” drive just in a folder. On my computer, I have several of these mount points defined, so the different types of data don’t get mixed around, and I don’t have to worry about downloading too much bullshit affecting my computer’s updates.

    Hope this helps.