Programming | Dominik Mayer – Products, Asia, Productivity

The Source Code of a Coronavirus Vaccine  

Bert Hubert dives into the source code of the BioNTech/Pfizer SARS-CoV-2 vaccine:

The code of the vaccine starts with the following two nucleotides:

GA

This can be compared very much to every DOS and Windows executable starting with MZ, or UNIX scripts starting with #!. In both life and operating systems, these two characters are not executed in any way. But they have to be there because otherwise nothing happens.

It’s absolutely fascinating how we’re just a combination of myriads of little biological computers.

How to Read Haskell  

You came across a Haskell script and have no idea what all the signs and arrows mean? Here’s the answer.

Ten Things You Should Know About Haskell Syntax  

Bartosz Milewski:

Learning a new programming language involves learning syntax, semantics, and idioms. Syntax itself can tell you a lot about the philosophy of the language, but learning syntax without any context is not only hard but also boring. On the other hand, you’d want to get some handle on syntax as soon as possible, so you can sight-read simple programs and try your own hand at modifying them.

So here’s a little introduction to Haskell syntax, without any formal definitions, that touches on the philosophy of the language and tries not to be too boring.

It’s not boring at all.