• 0 Posts
  • 206 Comments
Joined 1 year ago
cake
Cake day: July 18th, 2023

help-circle
  • Maybe I’m not aware of similar configurations you can do, but it’s only sorta it’s own container. VSCode can actually directly connect to it automatically so you can develop in host os but run directly against the container. Additionally this means some visualization/gui interfaces can be visible on the host side (this is a gift and a curse).

    So you basically have system integrated containers/vms. It’s not perfect, but it is definitely leagues better than what windows development was prior and may have some advantages over Linux only deployments (not sure if the system integrations are feasible in Linux hosts).














  • Threads all run on the same core, processes can run on different cores.

    Because threads run on the same core, the only time they can improve performance is if there are non-cpu tasks in your code - usually I/O operations. Otherwise the only thing multi threading can provide is the appearance of parallelism (as the cpu jumps back and forth between threads progressing each in small steps).

    On the other hand, multiprocessing allows you to run code on different cores, meaning you can take full advantage of all your processing power. However, if youre program has a lot of I/O tasks, you might end up bottlenecked by the I/O and never see any improvements.

    For the example you mentioned, it’s likely threading would be the best as it’s got a little less overhead, easier to program, and you’re task is mostly I/O bound. However, if the calculations are relatively quick, it’s possible you wouldn’t see any improvement as the cpu would still end up waiting for the I/O.





  • Don’t know if you ended up watching it, but effectively they’re able to randomly execute code during the loading screen using a bug caused by audio generation vs controller polling. So by using TAS tools they can spam the controller to cause an audio bug that let’s them jump to executing code from Ram that they are able to manipulate using controller inputs.

    TLDR: Using a bug in the audio processing, they can use controller inputs to write arbitrary code that jumps them to the end of the game.