/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

blog.teamleadnet.com
| | thepythoncorner.com
3.1 parsecs away

Travel
| | Hi guys, have you ever wondered how can Python dictionaries be so fast and reliable? The answer is that they are built on top of another technology: hash tables. Knowing how Python hash tables work will give you a deeper understanding of how dictionaries work and this could be a great advantage for your Python understanding because dictionaries are almost everywhere in Python. Hash Functions Before introducing hash tables and their Python implementation you have to know what is a hash function and how it works. A hash function is a function that can map a piece of data of...
| | tashian.com
2.7 parsecs away

Travel
| | The story of a major hash table vulnerability, and how it took a decade to uncover and resolve.
| | initialcommit.com
3.1 parsecs away

Travel
| | Diving into the world of Hash Tables and understanding the underlying mechanics is extremely interesting, and very rewarding. So let's get into it and get started from the beginning. They are used commonly in algorithm design.
| | purplesyringa.moe
19.0 parsecs away

Travel
| I have recently done some performance work and realized that reading about my experience could be entertaining. Teaching to think is just as important as teaching to code, but this is seldom done; I think something I've done last month is a great opportunity to draw the curtain a bit. serde is the Rust framework for serialization and deserialization. Everyone uses it, and it's the default among the ecosystem. serde_json is the official serde "mixin" for JSON, so when people need to parse stuff, that's wh...