- go docs strings
- There Ain’t No Such Thing As Plain Text.
- pipelining bash commands
- more on pipelining
- quich tour of Unicode
- strings and characters aren't the same, strings hold bytes and not characters, rune is basically an alias for int32, it makes the program clear whether when the int value represents a code point
- Unicode provides a unique number (a code point). Character encoding defines each character-code point.
- Know what character encoding you are using, as it may not be easy to convert between one encoding to another, using Unicode is usually the best idea as it can interpret nearly every known character.