The hottest Hashing Substack posts right now

And their main takeaways
Category
Top Technology Topics
Get a weekly roundup of the best Substack posts, by hacker news affinity:
Technology Made Simple 19 implied HN points 03 Nov 22
  1. The post discusses finding all occurrences of a substring in a given string, emphasizing the need to identify starting indices.
  2. Devansh, the author, shares a personalized message and requests feedback from the readers by asking about their university experiences.
  3. Subscribers are encouraged to participate in a survey, fill out forms to support the newsletter, and explore additional content on different platforms of the author.
Technology Made Simple 39 implied HN points 23 Aug 21
  1. When solving problems, start with a simple solution even if it's not optimal. It's better to have a working brute-force solution than no solution at all.
  2. Optimizing code involves identifying and eliminating redundant parts. For instance, in string matching problems, consider using techniques like hashing to improve efficiency.
  3. The Rabin-Karp algorithm is a rolling hash function used for string searching. It involves using hashes to compare substrings efficiently, reducing false positives and improving overall performance.
Photon-Lines Substack 2 HN points 09 Jul 23
  1. Hash tables allow for efficient storage and retrieval of key-value pairs using hash functions.
  2. Real-world applications of hash tables include dictionaries, caching systems, database indexing, and symbol tables in compilers.
  3. Good hash functions must be efficient, deterministic, and ensure a uniform distribution of generated keys to avoid collisions.