It’s Malisa’s birthday!
Things we did:
- Request API
- Response API
Things we learned:
- The below two code snippets are the same:
- ASCII is limited to only 128 characters, via a 7-bit character set (so, fits in one byte). UTF-8 is flexible, on the other hand, and can represent characters that require between 1 and 4 bytes. The first 128 characters are the same for ASCII and UTF-8. UTF standards encode the “code points” as defined in Unicode.
- This is useful for us to know because we are often converting between
ByteString
types, which are basically sequences of 8-bit unsigned integers, and characters or Strings. Many of the specs we have to follow reference these encodings. Knowing hexadecimal representation of characters is also useful.
- This is useful for us to know because we are often converting between
TODO:
- General:
- Write a blog post!
- Response:
- Continue working on constructor.
- Request:
- Keep addressing comments.