Bootstrappable builds

 Bootstrappable builds

Compilers are often written in the language they are compiling. This creates a chicken-and-egg problem that leads users and distributors to rely on opaque, pre-built binaries of those compilers that they use to build newer versions of the compiler.

To gain trust in our computing platforms, we need to be able to tell how each part was produced from source. We believe that opaque binaries are a threat to user security and user freedom since they are not auditable; we believe the amount of bootstrap binaries should be minimized.

Well, it holds also for Eiffel

Conditional JavaScript for Experts – Hacker Noon

Mastery of conditional expressions for cleaner codes

They say in Conditional JavaScript for Experts – Hacker Noon. What they are suggesting is to use side-effects of  “expression”, as Javascript does not separate commands and queries.

Call me dogmatic but this behavior to look like a fundamental ingredient for disaster. In fact the same article says that’s better to use the ternary operator.