<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>0xDEADBEEF &#187; Soundex</title>
	<atom:link href="http://deadbeef.psychotomy.net/tag/soundex/feed/" rel="self" type="application/rss+xml" />
	<link>http://deadbeef.psychotomy.net</link>
	<description>Geek Chic?  Or just Geek!</description>
	<lastBuildDate>Sat, 30 Mar 2013 04:06:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Soundex Example 3</title>
		<link>http://deadbeef.psychotomy.net/2008/10/soundex-example-3/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=soundex-example-3</link>
		<comments>http://deadbeef.psychotomy.net/2008/10/soundex-example-3/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 15:14:48 +0000</pubDate>
		<dc:creator>attriel</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[Demonstration]]></category>
		<category><![CDATA[Soundex]]></category>

		<guid isPermaLink="false">http://deadbeef.psychotomy.net/?p=47</guid>
		<description><![CDATA[As a third example we can encode the word BLACKGUARD.  Largely because it demonstrates rule 5, as well as lets us see rule 3 a little better. Step 1, B-LACKGUARD Then we encode the letters L:4 C:2 K:2 G:2 R:6 D:3 Step 2: B-4a222ua63 Step 3, collapsing adjacent identical digits, returns : B-4a2ua63 Step 4 [...]]]></description>
				<content:encoded><![CDATA[<p>As a third example we can encode the word BLACKGUARD.  Largely because it demonstrates rule 5, as well as lets us see rule 3 a little better.</p>
<p>Step 1, B-LACKGUARD</p>
<p>Then we encode the letters</p>
<p>L:4</p>
<p>C:2</p>
<p>K:2</p>
<p>G:2</p>
<p>R:6</p>
<p>D:3</p>
<p>Step 2: B-4a222ua63</p>
<p>Step 3, collapsing adjacent identical digits, returns : B-4a2ua63</p>
<p>Step 4 removes all non-encoded letters, B-4263</p>
<p>Step 5 truncates to 3-digits, leaving us B-426</p>
<p>The SNDX value for BLACKGUARD is B-426 (BLKR)</p>
]]></content:encoded>
			<wfw:commentRss>http://deadbeef.psychotomy.net/2008/10/soundex-example-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Soundex Example 2</title>
		<link>http://deadbeef.psychotomy.net/2008/09/soundex-example-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=soundex-example-2</link>
		<comments>http://deadbeef.psychotomy.net/2008/09/soundex-example-2/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 02:39:52 +0000</pubDate>
		<dc:creator>attriel</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[Demonstration]]></category>
		<category><![CDATA[Soundex]]></category>

		<guid isPermaLink="false">http://deadbeef.psychotomy.net/?p=42</guid>
		<description><![CDATA[Encoding my name (ATTRIEL) Keeping the A, we encode the remaining characters T:3 R:6 L: 4 After step 2 our string is A336ie4 Step 3 removes &#8220;adjacent digits&#8221;, leaving us with A36ie4 Step 4 removes non-encoded letters, giving us A364 Step 5 truncates to 3 digits, which is all we have. The SNDX value for [...]]]></description>
				<content:encoded><![CDATA[<p>Encoding my name (ATTRIEL)</p>
<p>Keeping the A, we encode the remaining characters</p>
<p>T:3</p>
<p>R:6</p>
<p>L: 4</p>
<p>After step 2 our string is A336ie4</p>
<p>Step 3 removes &#8220;adjacent digits&#8221;, leaving us with A36ie4</p>
<p>Step 4 removes non-encoded letters, giving us A364</p>
<p>Step 5 truncates to 3 digits, which is all we have.</p>
<p>The SNDX value for ATTRIEL is A-364</p>
]]></content:encoded>
			<wfw:commentRss>http://deadbeef.psychotomy.net/2008/09/soundex-example-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Soundex Example 1</title>
		<link>http://deadbeef.psychotomy.net/2008/09/soundex-example-1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=soundex-example-1</link>
		<comments>http://deadbeef.psychotomy.net/2008/09/soundex-example-1/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 01:14:21 +0000</pubDate>
		<dc:creator>attriel</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[Demonstration]]></category>
		<category><![CDATA[Soundex]]></category>

		<guid isPermaLink="false">http://deadbeef.psychotomy.net/?p=40</guid>
		<description><![CDATA[Encoding the name of the blog (Deadbeef): We retain the D Then we encode D B and F. D: 3 B: 1 F: 1 So our partial value (after step 2) is : Dea31ee1 Step 3 makes no change (Note that the two 1&#8242;s are not currently by each other) Step 4 removes the &#8220;non [...]]]></description>
				<content:encoded><![CDATA[<p>Encoding the name of the blog (Deadbeef):</p>
<p>We retain the D</p>
<p>Then we encode D B and F.</p>
<p>D: 3</p>
<p>B: 1</p>
<p>F: 1</p>
<p>So our partial value (after step 2) is : Dea31ee1</p>
<p>Step 3 makes no change (Note that the two 1&#8242;s are not currently by each other)</p>
<p>Step 4 removes the &#8220;non encoded letters&#8221; (vowels), giving us: D311</p>
<p>Step 5 limits us to three digits, which is all we had anyway.</p>
<p>So the SNDX for DEADBEEF is D311</p>
]]></content:encoded>
			<wfw:commentRss>http://deadbeef.psychotomy.net/2008/09/soundex-example-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Soundex</title>
		<link>http://deadbeef.psychotomy.net/2008/09/soundex/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=soundex</link>
		<comments>http://deadbeef.psychotomy.net/2008/09/soundex/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 18:37:37 +0000</pubDate>
		<dc:creator>attriel</dc:creator>
				<category><![CDATA[Codes]]></category>
		<category><![CDATA[Descriptions]]></category>
		<category><![CDATA[Soundex]]></category>

		<guid isPermaLink="false">http://deadbeef.psychotomy.net/?p=36</guid>
		<description><![CDATA[Soundex is not technically a Cipher or Code. It&#8217;s invention was for census data. The idea behind Soundex (or SNDX, although not usually referenced in that manner) is to provide a representation of a name that will match for any minor variations that do not greatly alter the pronounciation. Pronunciation. Whichever. The idea being that [...]]]></description>
				<content:encoded><![CDATA[<p>Soundex is not technically a Cipher or Code.  It&#8217;s invention was for census data.</p>
<p>The idea behind Soundex (or SNDX, although not usually referenced in that manner) is to provide a representation of a name that will match for any minor variations that do not greatly alter the pronounciation.  Pronunciation.  Whichever.</p>
<p>The idea being that Robert and Rupert will be represented the same (<a title="Wikipedia reference" href="http://en.wikipedia.org/wiki/Soundex" target="_blank">R163</a>) but Rubin will differ (R150).  Because it was intended for names, it&#8217;s function is limited outside that scope.  The original soundex structure calls for first letter followed by 3 digits, making the algorithm questionable for large words.</p>
<ol>
<li>Keep first letter of word or name, this is the first value in the Soundex value</li>
<li>For remaining letters, convert all consonants with the table after the jump.</li>
<li>All adjacent duplicate digits are collapsed into a single instance of each</li>
<li>All remaining characters (vowels) are dropped</li>
<li>The first three numbers are the remainder of the Soundex Value</li>
</ol>
<p><span id="more-36"></span></p>
<blockquote>
<ul>
<li>B F P V =&gt; 1</li>
<li>C G J K Q S X Z =&gt; 2</li>
<li>D T =&gt; 3</li>
<li>L =&gt; 4</li>
<li>M N =&gt; 5</li>
<li>R =&gt; 6</li>
</ul>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://deadbeef.psychotomy.net/2008/09/soundex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
