From 3f996d20ad251a8184a5a83fd8327631e357275e Mon Sep 17 00:00:00 2001 From: Aly Date: Fri, 12 Feb 2021 13:55:05 -0800 Subject: [PATCH] Update to February --- journal/2021-02-09.md | 3 +++ journal/2021-02-10.md | 11 +++++++++++ journal/2021-02-11.md | 8 ++++++++ 3 files changed, 22 insertions(+) create mode 100644 journal/2021-02-09.md create mode 100644 journal/2021-02-10.md create mode 100644 journal/2021-02-11.md diff --git a/journal/2021-02-09.md b/journal/2021-02-09.md new file mode 100644 index 0000000..60b6c52 --- /dev/null +++ b/journal/2021-02-09.md @@ -0,0 +1,3 @@ +# 2021-02-09 + +- Learned how to solve a 4x4x4 Rubik's Cube. diff --git a/journal/2021-02-10.md b/journal/2021-02-10.md new file mode 100644 index 0000000..7374ce3 --- /dev/null +++ b/journal/2021-02-10.md @@ -0,0 +1,11 @@ +# 2021-02-10 + +- Worked more on the GUI system for [[monadmachines]]. +- Worked more on the Timezone system for [[chalkbot]]. + - [[chalkbot]] now uses [[OpenStreetMap]] to determine the timezone for a + location. + +[//begin]: # "Autogenerated link references for markdown compatibility" +[monadmachines]: ../monadmachines "monadmachines" +[chalkbot]: ../chalkbot "chalkbot" +[//end]: # "Autogenerated link references" diff --git a/journal/2021-02-11.md b/journal/2021-02-11.md new file mode 100644 index 0000000..609c92a --- /dev/null +++ b/journal/2021-02-11.md @@ -0,0 +1,8 @@ +# 2021-02-11 + +- Learned how to solve a 5x5x5 Rubik's Cube. +- Learned about different ways to render text with [[OpenGL]] and [[FreeType]]. + - To squish and stretch text like how it is done in [[Mario Kart Wii]], + either [[FreeType]] can [[rasterize]] each transformed character, or + possibly, each character can be pre-rendered to a [[Signed Distance Field]] + and then shaders can transform characters from there.