home.social

#hashtables — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #hashtables, aggregated by home.social.

  1. Finally uploaded "Adaptive Hashing: Faster Hash Functions with Fewer Collisions" to arXiv for better visibility:

    arxiv.org/abs/2602.05925

    I’ve polished the presentation, fixed typos, and moved to a more readable format than the original ACM version. #HashTables #DataStructures #CommonLisp

  2. 🎩 Oh, the riveting world of hash tables, where "cute" and "power-of-two" collide in an epic saga of nerdy delight! 🌈 Meanwhile, mere mortals feign interest as they scroll past yet another "smorgasbord" of bits and bytes in search of the meaning of life—or at least a cat meme. 🐱
    corsix.org/content/my-favourit #hashTables #nerdCulture #techHumor #programmingLife #catMemes #epicSaga #HackerNews #ngated

  3. #Undergraduate Disproves 40-Year-Old Conjecture, Invents New Kind of #HashTable
    A young computer scientist and two colleagues show that searches within data structures called #hashtables can be much faster than previously deemed possible.
    wired.com/story/undergraduate-
    archive.ph/2Tl3q

  4. #Undergraduate Disproves 40-Year-Old Conjecture, Invents New Kind of #HashTable
    A young computer scientist and two colleagues show that searches within data structures called #hashtables can be much faster than previously deemed possible.
    wired.com/story/undergraduate-
    archive.ph/2Tl3q

  5. Disproves 40-Year-Old Conjecture, Invents New Kind of
    A young computer scientist and two colleagues show that searches within data structures called can be much faster than previously deemed possible.
    wired.com/story/undergraduate-
    archive.ph/2Tl3q

  6. #Undergraduate Disproves 40-Year-Old Conjecture, Invents New Kind of #HashTable
    A young computer scientist and two colleagues show that searches within data structures called #hashtables can be much faster than previously deemed possible.
    wired.com/story/undergraduate-
    archive.ph/2Tl3q

  7. #Undergraduate Disproves 40-Year-Old Conjecture, Invents New Kind of #HashTable
    A young computer scientist and two colleagues show that searches within data structures called #hashtables can be much faster than previously deemed possible.
    wired.com/story/undergraduate-
    archive.ph/2Tl3q

  8. 🚀🚀 Behold, the groundbreaking #rediscovery of Fibonacci Hashing! 🌟 So revolutionary, even the author admits they hadn’t heard of it before—despite being a hash table "expert." 🤔 Who knew that integer modulo had a long-lost cousin everyone ignored? 😂
    probablydance.com/2018/06/16/f #FibonacciHashing #HashTables #IntegerModulo #TechNews #HackerNews #ngated

  9. 🚀🚀 Behold, the groundbreaking #rediscovery of Fibonacci Hashing! 🌟 So revolutionary, even the author admits they hadn’t heard of it before—despite being a hash table "expert." 🤔 Who knew that integer modulo had a long-lost cousin everyone ignored? 😂
    probablydance.com/2018/06/16/f #FibonacciHashing #HashTables #IntegerModulo #TechNews #HackerNews #ngated

  10. 🚀🚀 Behold, the groundbreaking #rediscovery of Fibonacci Hashing! 🌟 So revolutionary, even the author admits they hadn’t heard of it before—despite being a hash table "expert." 🤔 Who knew that integer modulo had a long-lost cousin everyone ignored? 😂
    probablydance.com/2018/06/16/f #FibonacciHashing #HashTables #IntegerModulo #TechNews #HackerNews #ngated

  11. 🚀🚀 Behold, the groundbreaking #rediscovery of Fibonacci Hashing! 🌟 So revolutionary, even the author admits they hadn’t heard of it before—despite being a hash table "expert." 🤔 Who knew that integer modulo had a long-lost cousin everyone ignored? 😂
    probablydance.com/2018/06/16/f #FibonacciHashing #HashTables #IntegerModulo #TechNews #HackerNews #ngated

  12. Amazing.

    "[I]n the midst of his tinkering, Krapivin realized that he had invented a new kind of hash table, one that worked faster than expected — taking less time and fewer steps to find specific elements. [...] “You didn’t just come up with a cool hash table,” [Kuszmaul] remembers telling Krapivin. “You’ve actually completely wiped out a 40-year-old conjecture!”"

    quantamagazine.org/undergradua

    #Mathematics #HashTables

  13. "[Hash tables] need to be fast, meaning that they can quickly retrieve the necessary information. But they also need to be compact, using as little memory as possible. These twin objectives are fundamentally at odds.
    [...]
    Computer scientists have now mathematically proved that they have found the optimal trade-off."

    quantamagazine.org/scientists-

    #Mathematics #HashTables #Optimizations #ComputerScience

  14. O que eu queria mesmo era estar na #PythonBrasil2023 em Caxias do Sul com os amigues, mas como não deu este ano pelo menos eu posso assistir as palestras gravadas. Domingo vou encontrar outros amigues massa aqui em São Paulo. Preparando o coraçãozinho para a do ano que vem no Rio de Janeiro.

    youtube.com/live/JfyB2YGRuDw?f Sala Uva ontem a tarde foi massa, começando com @lr explicando como funcionam os dicionário e conjuntos, com #HashTables, no #Python

  15. @marud What I find weird about is the default comparer is OrdinalIgnoreCaseComparer, but when you "add" them, you get CultureAwareComparer:

    filter Get-Comparer {
    [hashtable].GetProperty("EqualityComparer", [Reflection.BindingFlags]"NonPublic,Instance").GetValue($_)
    }

    @{}, (@{} + @{}) | Get-Comparer

    Both are CaseInsentitive, so if you do New-Object or [hashtable]::new() you must not add hashtables, but you can use the Add or Set methods, or $ht[$key] = $value