• 11 Posts
  • 4.34K Comments
Joined 6 months ago
cake
Cake day: February 13th, 2026

help-circle














  • Huh… Come to think of it, that would be a really difficult show to produce. Not only do you need a lot of SFX-heavy TF scenes, you’re also going to need a lot of different well-trained animals (some of them quite exotic) to represent the characters in their animal forms … or else a whole lot of CGI budget for CGI animals instead. I guess in the modern reboot, they’ll probably go mostly CGI for the animals. Working with live animals in film is usually a huge headache – they often don’t cooperate, and you need special treatment and expensive 3rd party verification that you’re not harming the animals.






  • But as a web page, it would be delivered by the web server, requiring you to trust that the server is not snooping on your decrypted content

    Anybody interested (and capable) enough could view the web page’s source and verify that the scripts running on it are identical to what they’re supposed to be, and if they want to, they can even go through the entire code line-by-line to verify.

    Honestly, web scripts are easier to verify than a browser extension or stand-alone app, because you can quickly and easily view the (local) source code that you’re actually running.

    I’d say that browser extensions and apps are more difficult to verify. You can, of course, publish the source code, but unless end users are compiling it from source every time, you have an issue with them having a difficult time verifying that the compiled code they download and run is actually the same as the publicly visible source code. A malicious developer could publish clean source code, but then provide compromised compiled versions for download and install.

    I suppose there is a frequency argument to be made, though. With a browser extension or standalone app, you only need to check and re-verify the code each time it’s updated. But a script running on a web page would need to be verified every time you use it.