• 5 Posts
  • 82 Comments
Joined 1 year ago
cake
Cake day: August 22nd, 2023

help-circle
  • “We leveraged the fact that many people know about the world and story of the original Final Fantasy VII when we designed the remakes,” Hamaguchi told me during the leadup to Rebirth’s release. “In this title, our general framework follows the original storyline, but at the same time we incorporated elements clearly not included in the original, such as the Whispers and Zack.” This creates a unique opportunity for a remake: uncertainty. “That sort of thrill is very important for this title as a piece of entertainment.”

    We have a name for that, “reboot”. Or more cynically, “cash grab”



  • brisk@aussie.zonetoTechnology@lemmy.mlNever Forgive Them
    link
    fedilink
    arrow-up
    10
    ·
    edit-2
    8 days ago

    Since the title gives nothing away:

    This is an extensive article by Ed Zitron on how the technology that you’re required to interact with every day has become explicitly user hostile. It’s a 42 minute read, but IMO worth reading at least the first section.

    Ed Zitron also has an excellent podcast on the topic of tech companies being awful called “Better Offline”










  • I worked on software at one point that had at it’s core a number of “modes” that it switched between. It was, at the time, in the process of migrating from enums and switch/case trees to an inheritance based system.

    In practice this meant there was a single instance of “Mode” for each mode which used pointer equality to switch/case on modes like an enum.

    To add a new mode (that did nothing) I think I had to change about 6 different places.