/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

darkcoding.net
| | zylinski.se
3.3 parsecs away

Travel
| | This post is an adapted excerpt from Understanding the Odin Programming Language - the acclaimed eBook on learning Odin and understanding low-level concepts. Visit https://odinbook.com for more information. Text strings in Odin use Unicode. Unicode is a standard that makes it possible to use characters from most languages. You can mix different languages within the same string, and even use exotic things such as emojis! Odin has two primary types for representing text: string and cstring.
| | www.sixfoisneuf.fr
2.5 parsecs away

Travel
| | [AI summary] A developer explores the technical intricacies of UTF-8 encoding, analyzing how emojis, flags, and complex symbols are constructed and decomposed using code points and zero-width joiners.
| | benbrougher.tech
2.5 parsecs away

Travel
| | What are all the different ASCII and UTF-x encodings and why do they matter?
| | emre.me
21.8 parsecs away

Travel
| A hash table is an unordered collection of key-value pairs, where each key is unique. Also, they are the most commonly used data structure for implementing associative arrays1 (maps, dictionaries).