• 2 Posts
  • 8 Comments
Joined 1 month ago
cake
Cake day: June 2nd, 2024

help-circle
  • For those who don’t know:

    Speaking at a software conference in 2009, Tony Hoare hyperbolically apologized for “inventing” the null reference:[26] [27]

    I call it my billion-dollar mistake. It was the invention of the null reference in 1965. At that time, I was designing the first comprehensive type system for references in an object oriented language (ALGOL W). My goal was to ensure that all use of references should be absolutely safe, with checking performed automatically by the compiler. But I couldn’t resist the temptation to put in a null reference, simply because it was so easy to implement. This has led to innumerable errors, vulnerabilities, and system crashes, which have probably caused a billion dollars of pain and damage in the last forty years.

    https://en.wikipedia.org/wiki/Tony_Hoare









  • bleistift2@sopuli.xyztoProgrammer Humor@programming.devJavaScript
    link
    fedilink
    English
    arrow-up
    3
    arrow-down
    2
    ·
    8 days ago

    The libraries underneath will still allow nonsense at runtime

    Only if you use a badly written library. Most libraries have types provided by DefinitelyTyped. Those who don’t are (in my experience) so tiny that you probably aren’t using them; or, if you really wanted, can check yourself.

    In the end, if you encounter a bug, it’ still 99% of the time not a library’s fault, even if it’s written in plain JS.