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.

IP Mnemonics

1 pointsby bramgnabout 8 years ago

2 comments

jlgaddisabout 8 years ago
Interesting idea but there&#x27;s the issue of similar sounding words when communicating orally. &quot;gab, with a &#x27;b&#x27; or gap, with a &#x27;p&#x27;?&quot;. There&#x27;s a number of these occurrences in this word list.<p>An alternative is Oren Tirosh&#x27;s mnemonic encoding [0] project. It has 1633 words that were chosen specifically because they are short (4-7 characters), phonetically different, easy to understand over the phone, and recognizable internationally.<p>[0]: <a href="http:&#x2F;&#x2F;web.archive.org&#x2F;web&#x2F;20090918202746&#x2F;http:&#x2F;&#x2F;tothink.com&#x2F;mnemonic&#x2F;wordlist.html" rel="nofollow">http:&#x2F;&#x2F;web.archive.org&#x2F;web&#x2F;20090918202746&#x2F;http:&#x2F;&#x2F;tothink.com...</a>
kseistrupabout 8 years ago
Here&#x27;s a quick and dirty way to make this into a Python dictionary:<p>(echo &#x27;IP_MNEMONICS = {&#x27;; w3m -dump <a href="http:&#x2F;&#x2F;gurno.com&#x2F;adam&#x2F;mne&#x2F;" rel="nofollow">http:&#x2F;&#x2F;gurno.com&#x2F;adam&#x2F;mne&#x2F;</a> | grep -E &#x27;^[0-2][0-9][0-9] &#x27; | while read quad word; do printf &#x27; &quot;%s&quot;: &quot;%s&quot;,\n&#x27; &quot;$quad&quot; &quot;$word&quot;; done; echo &#x27;}&#x27;;) &gt; mnemonics.py