From baf5e52c0da79c28617c7a1fa65d313448eab17e Mon Sep 17 00:00:00 2001 From: Joshua Potter Date: Sun, 29 Sep 2024 09:17:39 -0600 Subject: [PATCH] Flashcard fixes. --- .../plugins/obsidian-to-anki-plugin/data.json | 6 ++-- notes/_journal/2024-09-29.md | 9 ++++++ notes/_journal/{ => 2024-09}/2024-09-28.md | 2 +- notes/c17/types/simple.md | 32 ++++++++++++------- 4 files changed, 34 insertions(+), 15 deletions(-) create mode 100644 notes/_journal/2024-09-29.md rename notes/_journal/{ => 2024-09}/2024-09-28.md (80%) diff --git a/notes/.obsidian/plugins/obsidian-to-anki-plugin/data.json b/notes/.obsidian/plugins/obsidian-to-anki-plugin/data.json index 52f18ec..6892d21 100644 --- a/notes/.obsidian/plugins/obsidian-to-anki-plugin/data.json +++ b/notes/.obsidian/plugins/obsidian-to-anki-plugin/data.json @@ -783,7 +783,7 @@ "c17/enums.md": "9414fb67aa256a0a11b7240534c67bf6", "c17/derived-types.md": "6fb8f23a2423f05d5bdccb6672a32e38", "c17/basic-types.md": "7c6653bf6dc24c2f2aa72fc95c4f7875", - "c17/types/simple.md": "0edbd5da2138aa46669135a03b935db9", + "c17/types/simple.md": "d9579d4f34e525494f63fbaa72e00f70", "c17/types/enumerated.md": "e1f70a30677c776b7b44ac3e0ff4e76d", "c17/types/derived.md": "aff0d2b6d218fb67af3cc92ead924de3", "c17/types/basic.md": "5064e21e683c0218890058882e06b6f3", @@ -847,7 +847,9 @@ "_journal/2024-09/2024-09-26.md": "2d3e8325e7ab63168c460f18e7aa1afc", "_journal/2024-09-28.md": "7726baed125a2561def07dcaf48bf5a0", "_journal/2024-09/2024-09-27.md": "d788fa04c029009f42387317c549d93e", - "encoding/binary.md": "0b9beb6913906aa2523d8ab193c67f67" + "encoding/binary.md": "0b9beb6913906aa2523d8ab193c67f67", + "_journal/2024-09-29.md": "0afacc43ea98a86a50a5248e0d7afba6", + "_journal/2024-09/2024-09-28.md": "1b47792313acf09b1ae768d5918df703" }, "fields_dict": { "Basic": [ diff --git a/notes/_journal/2024-09-29.md b/notes/_journal/2024-09-29.md new file mode 100644 index 0000000..3bc9874 --- /dev/null +++ b/notes/_journal/2024-09-29.md @@ -0,0 +1,9 @@ +--- +title: "2024-09-29" +--- + +- [ ] Anki Flashcards +- [x] KoL +- [x] OGS +- [ ] Sheet Music (10 min.) +- [ ] Korean (Read 1 Story) \ No newline at end of file diff --git a/notes/_journal/2024-09-28.md b/notes/_journal/2024-09/2024-09-28.md similarity index 80% rename from notes/_journal/2024-09-28.md rename to notes/_journal/2024-09/2024-09-28.md index 81b862f..67f2e67 100644 --- a/notes/_journal/2024-09-28.md +++ b/notes/_journal/2024-09/2024-09-28.md @@ -2,7 +2,7 @@ title: "2024-09-28" --- -- [ ] Anki Flashcards +- [x] Anki Flashcards - [x] KoL - [x] OGS - [ ] Sheet Music (10 min.) diff --git a/notes/c17/types/simple.md b/notes/c17/types/simple.md index 1b6809e..9a430e8 100644 --- a/notes/c17/types/simple.md +++ b/notes/c17/types/simple.md @@ -350,7 +350,7 @@ END%% %%ANKI Basic What is the minimum width of a `bool`? -Back: $1$ +Back: $1$ bit. Reference: Jens Gustedt, _Modern C_ (Shelter Island, NY: Manning Publications Co, 2020). END%% @@ -366,7 +366,7 @@ END%% %%ANKI Basic What is the minimum width of an `unsigned char`? -Back: $8$ +Back: $8$ bits. Reference: Jens Gustedt, _Modern C_ (Shelter Island, NY: Manning Publications Co, 2020). END%% @@ -390,7 +390,7 @@ END%% %%ANKI Basic What is the minimum width of an `unsigned short`? -Back: $16$ +Back: $16$ bits. Reference: Jens Gustedt, _Modern C_ (Shelter Island, NY: Manning Publications Co, 2020). END%% @@ -414,7 +414,7 @@ END%% %%ANKI Basic What is the minimum width of an `unsigned int`? -Back: $16$ +Back: $16$ bits. Reference: Jens Gustedt, _Modern C_ (Shelter Island, NY: Manning Publications Co, 2020). END%% @@ -430,7 +430,7 @@ END%% %%ANKI Basic What is the minimum width of an `unsigned long`? -Back: $32$ +Back: $32$ bits. Reference: Jens Gustedt, _Modern C_ (Shelter Island, NY: Manning Publications Co, 2020). END%% @@ -454,14 +454,22 @@ END%% %%ANKI Basic What is the minimum width of an `unsigned long`? -Back: $32$ +Back: $32$ bits. Reference: Jens Gustedt, _Modern C_ (Shelter Island, NY: Manning Publications Co, 2020). END%% +%%ANKI +Basic +What is the minimum width of an `unsigned long long`? +Back: $64$ +Reference: Jens Gustedt, _Modern C_ (Shelter Island, NY: Manning Publications Co, 2020). + +END%% + %%ANKI Basic What is the minimum precision of an `unsigned long long`? -Back: $32$ +Back: $64$ Reference: Jens Gustedt, _Modern C_ (Shelter Island, NY: Manning Publications Co, 2020). END%% @@ -563,7 +571,7 @@ END%% %%ANKI Basic What is the minimum width of a `signed char`? -Back: $8$ +Back: $8$ bits. Reference: Jens Gustedt, _Modern C_ (Shelter Island, NY: Manning Publications Co, 2020). END%% @@ -587,7 +595,7 @@ END%% %%ANKI Basic What is the minimum width of a `signed short`? -Back: $16$ +Back: $16$ bits. Reference: Jens Gustedt, _Modern C_ (Shelter Island, NY: Manning Publications Co, 2020). END%% @@ -603,7 +611,7 @@ END%% %%ANKI Basic What is the minimum width of a `signed int`? -Back: $16$ +Back: $16$ bits. Reference: Jens Gustedt, _Modern C_ (Shelter Island, NY: Manning Publications Co, 2020). END%% @@ -626,7 +634,7 @@ END%% %%ANKI Basic What is the minimum width of a `signed long`? -Back: $32$ +Back: $32$ bits. Reference: Jens Gustedt, _Modern C_ (Shelter Island, NY: Manning Publications Co, 2020). END%% @@ -642,7 +650,7 @@ END%% %%ANKI Basic What is the minimum width of a `signed long long`? -Back: $64$ +Back: $64$ bits. Reference: Jens Gustedt, _Modern C_ (Shelter Island, NY: Manning Publications Co, 2020). END%%