From 564b5c583e9c2d1291be69eab0b1857453f0a33b Mon Sep 17 00:00:00 2001 From: Garrit Franke Date: Tue, 17 Nov 2020 20:11:51 +0100 Subject: [PATCH] Fix date --- content/posts/2020-11-17-booleans-are-wasted-memory.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/2020-11-17-booleans-are-wasted-memory.md b/content/posts/2020-11-17-booleans-are-wasted-memory.md index 9c503d9..3ef6192 100644 --- a/content/posts/2020-11-17-booleans-are-wasted-memory.md +++ b/content/posts/2020-11-17-booleans-are-wasted-memory.md @@ -1,6 +1,6 @@ --- title: Booleans are wasted memory -date: "2020-11-06" +date: "2020-11-17" --- A boolean is either `true` or `false`. That translates to 1 or 0. If you think that one bit is enough to store this information, you'd be wrong.