Creating a binary storage format

Creating a binary storage format from scratch Sem Postma, January 30, 2024 Binary formats are often the most efficient and performant, the drawback being that they are not human-readable. In this article, I’ll be using Key/Column order The key order is extremely...
Binary Heaps with Javascript

Binary Heaps with Javascript

Binary Heaps with Javascript Sem Postma, April 22, 2023 Even though it might sound like a difficult subject it’s actually not that difficult. We will start by establishing some basics. The first one being that a node will always be equal to or smaller than it’s...