blintz 2 days ago

I'm surprised at how normal some of the unseen words are. I expected them to all be archaic or niche, but many are pretty reasonable: 'congregant', 'definer', 'stereoscope'.

  • gkoberger 2 days ago

    For what it's worth, there's 1.7bn posts on Bluesky according to this: https://bsky.jazco.dev/stats

    The dictionary site has only checked 4,920,000 posts, which is 0.28% of all messages.

    • IshKebab 9 hours ago

      It now claims to have checked 11 million posts but only seen "the" 16 thousand times. I'm not sure its numbers are entirely reliable.

    • SomewhatLikely 2 days ago

      It's likely that the commenter has read less than 5 million posts worth of text though. So perhaps this still points to a lack of diversity in content.

      • wolfram74 2 days ago

        You got me wondering. Supposing the average post is 10 words, and a typical page of text is 250 words, that would only be ~50 pages of text a day over the last 10 years. Which I don't think I manage, but over 20 years I am probably in that window.

  • awinter-py 2 days ago

    dentel, exclaustrations, gryding, datolite, frabbing?

    • Kye 2 days ago

      I can't keep up with all these new Pokemon.

anywhichway 2 days ago

I noticed one of the cited bluesky posts was all in French, so one might argue that technically it didn't find the English word "mouch", but rather a different French word that happens to be spelled the same. But trying to sort that out seems unrealistically challenging. "Mouch" is only in the dictionary as an alternative spelling to mooch, so probably a pretty rare word to see in English.

  • steinuil 2 days ago

    Bluesky lets you select the language your post is written in before posting it and it is attached as metadata to the skeet. I guess the backend for this only searches posts in English, but it's possible the dataset is not 100% accurate due to some users forgetting to switch language before posting.

neaden 2 days ago

Is this not working or am I missing something, it just shows as seeing 0 words for me. Firefox on a PC.

  • accrual 2 days ago

    You may need to allow scripts from the domain avibagla.com, it shows 0 when the scripts are blocked.

    • Noumenon72 2 days ago

      All the scripts are ERR_SSL_PROTOCOL_ERROR for me in Chrome, I'm assuming because of a corporate firewall.

      • 71bw 2 days ago

        Indeed, all I get in Firefox are CORS issues

    • zem 2 days ago

      ugh, it ought to be building the results on the server and serving up static pages.

      • rafram 2 days ago

        But it updates live...

        • forgotmypw17 2 days ago

          It could do both...

          • dymk 2 days ago

            then go build it…

  • AgentME 2 days ago

    For me it took a minute to start loading data and switch from just showing 0.

  • SirFatty 2 days ago

    Same... maybe you need a Bluesky account, which I don't have.

    • gpm 2 days ago

      It doesn't... I can open it in a private browsing window.

  • GalaxyNova 2 days ago

    It's working fine for me on Firefox

wantlotsofcurry 2 days ago

I'm very curious as to how this works in the backend. I realize it uses Bluesky's firehose to get the posts, but I'm more curious on how it's checking whether a post contains any of the available words. Any guesses?

  • avibagla1 2 days ago

    Hey! this is my site - it's not all that complex, i'm just using a sqlite db with two tables - one for stats, the other for all the words that's just word | count | first use | last use | post.

    I... did not expect this to be so popular

    • gumboshoes 2 days ago

      What is your source dictionary to compare to? Seems kind of small. Also, how are you handling inflected forms?

      • avibagla1 2 days ago

        https://github.com/words/an-array-of-english-words

        using this, a combo of "covered enough" for the bit and easy to use

        also, since i'm tracking every word (technically a better name for this project would be The Bluesky Corpus) all inflected forms are different words, which aligns with my thinking

    • blendo 2 days ago

      What are the table sizes?

      And what ingress bandwidth do you have?

      • avibagla1 2 days ago

        DB is currently 58mb (damn lol)

        Ingress is actually pretty manageable, ~900kbps

  • f311a 2 days ago

    You can probably fit all words under 10-15MB of memory, but memory optimisations are not even needed for 250k words...

    Trie data structures are memory-efficient for storing such dictionaries (2-4x better than hashmaps). Although not as fast as hashmaps for retrieving items. You can hash the top 1k of the most common words and check the rest using a trie.

    The most CPU-intensive task here is text tokenizing, but there are a ton of optimized options developed by orgs that work on LLMs.

  • stwrzn 2 days ago

    I very much hope that the backend uses one of the bluesky jetstream endpoints. When you only subscribe to new posts, it provides a stream of around 20mbit/s last time I checked, while the firehose was ~200mbit/s.

  • gpm 2 days ago

    Probably just a big hashtable mapping word -> the number of times it's been seen, and another hashset of all the words it hasn't seen. When a post comes in you hash all the words in it and look them up in the hashtable, increment it, and if the old value was 0 remove it from the hash set.

    250k words at a generous 100 bytes per word is only 25MB of memory...

  • bangaladore 2 days ago

    Maybe I'm being naive, but with only ~275k words to check against, this doesn't seem like a particularly hard problem. Ingest post, split by words, check each word via some db, hashmap, etc... and update metadata.

    • somebehemoth 2 days ago

      I think the cool part is watching words go brrr.

xnorswap 2 days ago

Someone just got a double-combo:

> We just visited wheal Martyn museum in Cornwall, nice scones and a waterwheel, they also have a lot of gutters, sluices and pipes and a bit of a fixation about China Clay. More importantly they appear to be unattached at the moment

Both "wheal" (kind of cheating, that should be Wheal and is a place name) and "sluices" were new to the dictionary.

spullara 2 days ago

I did this against a pretty large tweet archive and got hits on about 125k of the words in the unix dictionary.

pona-a 2 days ago

For a moment I thought it would be an AT-Proto based Urban Dictionary clone.

GalaxyNova 2 days ago

fascinating! I think it's really cool that this is possible, and at the same time kine of sad that the norm is slowly moving towards more locked-down APIs.

  • timeon 2 days ago

    > slowly moving towards

    Depends what we accept as norm.

75345d4c 2 days ago

I just saw it indexed "eluvium," but the post was referring to a band with that same name

  • atlgator 2 days ago

    I checked out the author's other projects and this is common issue. For example, he has a "lean checker" for bluesky that claims it is right-leaning simply because of all the people saying "That's right," "He was right," etc. None of the supposed right-leaning posts were actually conservative in nature. They just used to word right to mean correct.

    • avibagla1 2 days ago

      one, thank you for checking my website. two, that is the joke, 100% - at the time people kept talking about how "left leaning" bsky was and that idea came to mind

  • Kye 2 days ago

    GeologySky will get to it soon enough.

    • k7sune 2 days ago

      Thanks to this I just learned about alluvium, eluvium, illuvium, and colluvium.

refreeze654 2 days ago

I've wondered how blueksy affords the bandwidth to let anyone stream the full firehose.

  • dgacmu 2 days ago

    Not an answer to your question, but I suspect most people don't -- my bot (a pi searcher bot, of course) just runs on Jetstream, which is pretty lightweight and heavily compressed.

    (The website in question uses jetstream also.)

  • psionides 2 days ago

    From what they say, it is a lot, but it's generally on the order of a few hundreds of connections total at the moment

max_ 2 days ago

This website is so pretty!

  • runflyswim 2 days ago

    thank you!! design support and advice from my good friend vedantswarup.com

tough 2 days ago

Words We Haven't Seen

- Search unseen words

made me chuckle

  • crm9125 2 days ago

    I've found content for all of my future skeets.

croes 2 days ago

So now someone is simply posting a dictionary

fudged71 2 days ago

I'm just surprised that there's revolt when Bluesky posts are used for LLMs, but regular NLP is fine for some reason.