Update to-dos

This commit is contained in:
Jordan Bancino 2022-07-27 13:38:35 -04:00
parent 90ed321caa
commit bb2e42f659

View file

@ -296,6 +296,7 @@ can get involved.
<li><s>Implement configuration file parsing using the hash map</s></li>
<li><s>Base64 encoding/decoding with padded/unpadded support</s></li>
<li><s>Write a release script</s></li>
<li>UTF-8 encoder/decoder (UTF-8 codepoint chars to int, vice versa)</li>
<li>
Implement a JSON library using the hash map and array
<ul>
@ -303,8 +304,19 @@ Implement a JSON library using the hash map and array
<li>Basic decoding to HashMap/Array/strings, etc.</li>
<li><s>Proper string encoding</s></li>
<li><s>Proper string decoding</s></li>
<li>
"Canonical JSON"
<ul>
<li>Keys are sorted lexicographically by Unicode code point
(4bytes)</li>
<li>Floats are not allowed (fail on encountering a float)</li>
<li>Encode as UTF-8 instead of using <code>\u</code> escapes</li>
</ul>
</li>
</ul>
</li>
<li>Write a <code>TelodendriaServerTs</code> that gets the current
Unix timestamp in milliseconds.</code>
<li><s>Figure out how to w</s>Write unit tests for array/hashmap/etc</li>
<li>Parse the <b>Telodendria</b> config file</li>
<li>Add license/documentation comments to all source files</li>