TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: BatName, Redis and Bloom Filter = fun domain search

10 pointsby gurgeousabout 7 years ago

5 comments

gurgeousabout 7 years ago
I built this with a friend. This is based on a script that I&#x27;ve used for several years to find great domains for my projects. It mashes words together to build huge numbers of potential domains, then quickly excludes registered domains using a bloom filter.The bloom filter runs on Redis and the thing is amazingly fast, even when checking tens of thousands of domains.<p>Plus it&#x27;s just fun and (unlike many tools) rapidly produces tons of viable domain names.
评论 #16740415 未加载
alixaxelabout 7 years ago
You&#x27;re not generating all the combos:<p><a href="https:&#x2F;&#x2F;namegrep.com&#x2F;#%28urban%7Cspoon%7Cfork%7Cdine%7Ceat%7Cyum%7Ccity%7Cwhere%7Cchow%7Cspork%29%28urban%7Cspoon%7Cfork%7Cdine%7Ceat%7Cyum%7Ccity%7Cwhere%7Cchow%7Cspork%29" rel="nofollow">https:&#x2F;&#x2F;namegrep.com&#x2F;#%28urban%7Cspoon%7Cfork%7Cdine%7Ceat%7...</a>
itamarhaberabout 7 years ago
Did you use <a href="http:&#x2F;&#x2F;rebloom.io" rel="nofollow">http:&#x2F;&#x2F;rebloom.io</a>, or have you implemented your own Bloom filter?
评论 #16738366 未加载
xcubicabout 7 years ago
Nicely done! Can I ask one question, how do you check if the domains are available?
runnr_azabout 7 years ago
Fun! Nice job...