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

help-circle







  • Same honestly. Like it was a hunk of junk that didn’t work half the time, but I think people kinda forget that the scope was pretty ambitious. Being able to scan people’s bodies and get each limb’s position in 3D, and to do so in many different lighting conditions and room setups, is stuff we still barely have working today even with AI.

    Like don’t get me wrong, the tech was jank as fuck, but as a kid it was genuinely really cool.









  • Let me reverse this question and ask what is the benefit of dynamic typing? What is gained from vaguely defined objects?

    The purpose of typed languages is to ensure the bare minimum when it comes to safety. That when you’re accessing a field of an object that field is real, and that field is always going to be an int or a string.

    Try/catch only goes so far before it becomes way more cumbersome than necessary, as is checking every field of an object.

    Typescript is an example of a language that does static typing poorly, because by design it has to. It’s a quick bandaid fix over an inherently awful language.