RSSAmplifier

Blog

Joel Laity

joellaity.comRSS feed ↗8 posts

Latest posts

Music cheat sheet

Keyboard diagram

Book review: Vaxxers

Intro

libc++’s implementation of std::string

I. Introduction

How linking works

I. Introduction

Discrete Fourier analysis notes

These are my notes on discrete Fourier analysis. It’s basically just an expanded version of the first chapter of my master’s thesis.

Network flow notes

These are my notes on network flow. The max-flow min-cut theorem is proved at the end.

Checkmate, undefined behavior

Undefined behavior is the bane of C and C++ programmers. The compiler can choose to do whatever it wants if a program has undefined behavior. This is normally not a good thing, but I recently wrote some code with undefined behavior and amazingly the compiler chose to do exactly what I had intended, not what I told it to do.

Principal component analysis: pictures, code and proofs

The code used to generate the plots for this post can be found here.