Aaron Eline

Readings

This page contains a collections of interesting resources, across a variety of topics. My main criterion for posting here is that I found it interesting or useful. My only rule is that I have to have actually read it to post it here. Suggestions always welcome. Page inspired by the great one at mcyoung.xyz .

Programming Language Theory/Type Theory

Resources on the formal definitions of programming languages and type systems. While real languages are always more than theoretical models, it’s essential to ground in these models. You can prevent making mistakes that have been made before, have consistency in your design, and make sure that your type system actually guarantees something.

Programming Language Design

Moving away from considering languages as abstract mathematical objects, this is a series of posts that talk about language design .

Compilers

Notes on (usually optimizing) compilers. Fast languages use compilers. Compilers are cool. I like compilers.

It is very common for people to say — or at least think — something like this: The x86 ADD instruction is used to implement C’s signed add operation, and it has two’s complement behavior when the result overflows. I’m developing for an x86 platform, so I should be able to expect two’s complement semantics when 32-bit signed integers overflow. THIS IS WRONG. You are saying something like this: Somebody once told me that in basketball you can’t hold the ball and run. I got a basketball and tried it and it worked just fine. He obviously didn’t understand basketball.

Security

Automated Reasoning/Formal Methods

This topic is really cool. It’s also frustratingly opaque. There is no equivalent of “software foundations” for other AR techniques, and that’s a shame.

Things That Will Bite You

Systems - distributed or otherwise

Software Engineering