<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

      <title>Comments on: 3 sequential sets of double letters?</title>
      <link>http://ask.metafilter.com/75110/3-sequential-sets-of-double-letters/</link>
      <description>Comments on Ask MetaFilter post 3 sequential sets of double letters?</description>
	  	  <pubDate>Wed, 31 Oct 2007 11:33:25 -0800</pubDate>
      <lastBuildDate>Wed, 31 Oct 2007 11:33:25 -0800</lastBuildDate>
      <language>en-us</language>
	  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	  <ttl>60</ttl>

<item>
  	<title>Question: 3 sequential sets of double letters?</title>
  	<link>http://ask.metafilter.com/75110/3-sequential-sets-of-double-letters</link>	
  	<description>I&apos;m interested in websites that explain/list/provide examples of word oddities... Yesterday, the final puzzle on Wheel of Fortune (yes, I know) was BOOKKEEPER.  Pat made a throwaway comment that it was one of only 3 words in the English language that contain 3 sequential sets of double letters.  How can I find out what the other two are?  &lt;br&gt;
&lt;br&gt;
In a similar vein, I remember hearing years ago that there are only two English words that use all the vowels in alphabetical sequence.  I remember FACETIOUSLY was one but can&apos;t remember the other, though I do seem to remember that there was some controversy around the accuracy of this.&lt;br&gt;
&lt;br&gt;
Is there a good resource online for things like these?</description>
  	<guid isPermaLink="false">post:ask.metafilter.com,2008:site.75110</guid>
  	<pubDate>Wed, 31 Oct 2007 11:28:22 -0800</pubDate>
  	<dc:creator>widdershins</dc:creator>
	
	<category>words</category>
	
	<category>puzzles</category>
	
</item>
<item>
  	<title>By: jejune</title>
  	<link>http://ask.metafilter.com/75110/3-sequential-sets-of-double-letters#1116214</link>	
  	<description>http://www.google.com/search?hl=en&amp;amp;q=word+oddities</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.75110-1116214</guid>
  	<pubDate>Wed, 31 Oct 2007 11:33:25 -0800</pubDate>
  	<dc:creator>jejune</dc:creator>
</item>
<item>
  	<title>By: cerebus19</title>
  	<link>http://ask.metafilter.com/75110/3-sequential-sets-of-double-letters#1116241</link>	
  	<description>Dictionary.com&apos;s &lt;a href=&quot;http://dictionary.reference.com/help/faq/language/#Trivia&quot;&gt;trivia list&lt;/a&gt; is pretty good.  It includes &lt;a href=&quot;http://dictionary.reference.com/help/faq/language/t52.html&quot;&gt;an answer&lt;/a&gt; to your first question as well.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.75110-1116241</guid>
  	<pubDate>Wed, 31 Oct 2007 11:44:59 -0800</pubDate>
  	<dc:creator>cerebus19</dc:creator>
</item>
<item>
  	<title>By: cmiller</title>
  	<link>http://ask.metafilter.com/75110/3-sequential-sets-of-double-letters#1116252</link>	
  	<description>So, it&apos;s not a web site I&apos;m going to talk about, but about the Unix command &amp;quot;grep&amp;quot; (or &amp;quot;egrep&amp;quot; if you need slower but fancier work):&lt;br&gt;
&lt;br&gt;
We Unix geeks can solve that sort of thing easily, often.  I&apos;m not sure what the &amp;quot;sequential&amp;quot; part means.  Sequential in position in the word, or sequential in the alphabet?  The first part is easy:&lt;br&gt;
&lt;br&gt;
Sequential in the word:&lt;br&gt;
&lt;br&gt;
cmiller@zippy:~ $ egrep &apos;(.)\1(.)\2(.)\3&apos; /usr/share/dict/words &lt;br&gt;
bookkeeper&lt;br&gt;
bookkeeper&apos;s&lt;br&gt;
bookkeepers&lt;br&gt;
bookkeeping&lt;br&gt;
bookkeeping&apos;s&lt;br&gt;
&lt;br&gt;
&amp;quot;Only three words in the English language&amp;quot;?  Hmm.&lt;br&gt;
&lt;br&gt;
If position doesn&apos;t matter: &lt;br&gt;
&lt;br&gt;
cmiller@zippy:~ $ egrep &apos;(.)\1.*(.)\2.*(.)\3&apos; /usr/share/dict/words &lt;br&gt;
Chattahoochee&lt;br&gt;
Chattahoochee&apos;s&lt;br&gt;
Mississippi&lt;br&gt;
Mississippi&apos;s&lt;br&gt;
Mississippian&lt;br&gt;
Mississippians&lt;br&gt;
Tallahassee&lt;br&gt;
Tallahassee&apos;s&lt;br&gt;
Tennessee&lt;br&gt;
Tennessee&apos;s&lt;br&gt;
addressee&lt;br&gt;
addressee&apos;s&lt;br&gt;
addressees&lt;br&gt;
aggressiveness&lt;br&gt;
barrenness&lt;br&gt;
barrenness&apos;s&lt;br&gt;
bookkeeper&lt;br&gt;
bookkeeper&apos;s&lt;br&gt;
bookkeepers&lt;br&gt;
bookkeeping&lt;br&gt;
bookkeeping&apos;s&lt;br&gt;
cheerlessness&lt;br&gt;
cheerlessness&apos;s&lt;br&gt;
committee&lt;br&gt;
committee&apos;s&lt;br&gt;
committees&lt;br&gt;
greenness&lt;br&gt;
greenness&apos;s&lt;br&gt;
heedlessness&lt;br&gt;
heedlessness&apos;s&lt;br&gt;
keenness&lt;br&gt;
keenness&apos;s&lt;br&gt;
noncommittally&lt;br&gt;
possessiveness&lt;br&gt;
possessiveness&apos;s&lt;br&gt;
rottenness&lt;br&gt;
sleeplessness&lt;br&gt;
sleeplessness&apos;s&lt;br&gt;
stubbornness&lt;br&gt;
stubbornness&apos;s&lt;br&gt;
subcommittee&lt;br&gt;
subcommittees&lt;br&gt;
successfully&lt;br&gt;
suddenness&lt;br&gt;
suddenness&apos;s&lt;br&gt;
sullenness&lt;br&gt;
sullenness&apos;s&lt;br&gt;
unsuccessfully&lt;br&gt;
whippoorwill&lt;br&gt;
whippoorwill&apos;s&lt;br&gt;
whippoorwills&lt;br&gt;
woodenness&lt;br&gt;
woodenness&apos;s&lt;br&gt;
woolliness&lt;br&gt;
woolliness&apos;s&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
If it&apos;s &amp;quot;blahAAblahBBblahCCblah&amp;quot;, then that&apos;s harder.  You&apos;d need a smarter matcher.  A few lines of Python would solve it.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.75110-1116252</guid>
  	<pubDate>Wed, 31 Oct 2007 11:49:12 -0800</pubDate>
  	<dc:creator>cmiller</dc:creator>
</item>
<item>
  	<title>By: jepler</title>
  	<link>http://ask.metafilter.com/75110/3-sequential-sets-of-double-letters#1116267</link>	
  	<description>thanks cmiller for kicking that off.&lt;br&gt;
&lt;br&gt;
Words that have the vowels squentially:&lt;br&gt;
$ grep -i &amp;quot;a.*e.*i.*o.*u&amp;quot; /usr/share/dict/words&lt;br&gt;
abstemious&lt;br&gt;
adventitious&lt;br&gt;
facetious&lt;br&gt;
facetiously&lt;br&gt;
facetiousness&lt;br&gt;
facetiousness&apos;s&lt;br&gt;
sacrilegious</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.75110-1116267</guid>
  	<pubDate>Wed, 31 Oct 2007 11:54:14 -0800</pubDate>
  	<dc:creator>jepler</dc:creator>
</item>
<item>
  	<title>By: cmiller</title>
  	<link>http://ask.metafilter.com/75110/3-sequential-sets-of-double-letters#1116271</link>	
  	<description>Oh, of vowels.  A few lines of Python...&lt;br&gt;
&lt;br&gt;
cmiller@zippy:~ $ python&lt;br&gt;
Python 2.5.1 (r251:54863, Oct  5 2007, 13:36:32) &lt;br&gt;
[GCC 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)] on linux2&lt;br&gt;
Type &amp;quot;help&amp;quot;, &amp;quot;copyright&amp;quot;, &amp;quot;credits&amp;quot; or &amp;quot;license&amp;quot; for more information.&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; import re&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; for line in open(&amp;quot;/usr/share/dict/american-english&amp;quot;):&lt;br&gt;
...     if re.search(&amp;quot;a.*e.*i.*o.*u&amp;quot;, line):&lt;br&gt;
...             print line&lt;br&gt;
... &lt;br&gt;
abstemious&lt;br&gt;
adventitious&lt;br&gt;
facetious&lt;br&gt;
facetiously&lt;br&gt;
facetiousness&lt;br&gt;
facetiousness&apos;s&lt;br&gt;
sacrilegious</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.75110-1116271</guid>
  	<pubDate>Wed, 31 Oct 2007 11:55:14 -0800</pubDate>
  	<dc:creator>cmiller</dc:creator>
</item>
<item>
  	<title>By: jepler</title>
  	<link>http://ask.metafilter.com/75110/3-sequential-sets-of-double-letters#1116276</link>	
  	<description>Or maybe the correct answer to the second question is given by&lt;br&gt;
$ grep -i &amp;quot;^[^aeiou]*a[^aeiou]*e[^aeiou]*i[^aeiou]*o[^aeiou]*u[^aeiou]$*&amp;quot; /usr/share/dict/words&lt;br&gt;
abstemious&lt;br&gt;
facetious&lt;br&gt;
facetiously&lt;br&gt;
facetiousness&lt;br&gt;
facetiousness&apos;s</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.75110-1116276</guid>
  	<pubDate>Wed, 31 Oct 2007 11:56:13 -0800</pubDate>
  	<dc:creator>jepler</dc:creator>
</item>
<item>
  	<title>By: cmiller</title>
  	<link>http://ask.metafilter.com/75110/3-sequential-sets-of-double-letters#1116280</link>	
  	<description>(Heh.  I first misread the vowel thing, which is why I used Python.  /All/ vowels, I thought it said.  Yours is better, jepler.)</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.75110-1116280</guid>
  	<pubDate>Wed, 31 Oct 2007 11:56:39 -0800</pubDate>
  	<dc:creator>cmiller</dc:creator>
</item>
<item>
  	<title>By: jpdoane</title>
  	<link>http://ask.metafilter.com/75110/3-sequential-sets-of-double-letters#1116312</link>	
  	<description>By some strange coincidence, I saw that last night too.  Odd that the only 30 seconds of Wheel of Fortune I&apos;ve watched in the last 10 years would come up again...&lt;br&gt;
&lt;br&gt;
Anyway, his comment caught me too, although I seem to rememeber him saying, &amp;quot;one of only &lt;strong&gt;two&lt;/strong&gt; words in the English language with three sets of double letters&amp;quot;.  I commented to my wife that I thought I had heard that bookkeeper was the only one.  Also, I don&apos;t think he explicitly said consequtive or sequential, so my explaination at the time was that the other word must not have three &lt;strong&gt;consecutive &lt;/strong&gt;pairs, though cmiller seems to have disproven that</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.75110-1116312</guid>
  	<pubDate>Wed, 31 Oct 2007 12:16:18 -0800</pubDate>
  	<dc:creator>jpdoane</dc:creator>
</item>
<item>
  	<title>By: widdershins</title>
  	<link>http://ask.metafilter.com/75110/3-sequential-sets-of-double-letters#1116403</link>	
  	<description>Thx guys - I don&apos;t do any programming, so websites was more along what I was looking for.  The dictionary.com trivia page was great - lots of good info along the lines of what I was looking for.  If anyone has any others, keep &apos;em coming.&lt;br&gt;
&lt;br&gt;
Thx!</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.75110-1116403</guid>
  	<pubDate>Wed, 31 Oct 2007 12:52:00 -0800</pubDate>
  	<dc:creator>widdershins</dc:creator>
</item>
<item>
  	<title>By: futility closet</title>
  	<link>http://ask.metafilter.com/75110/3-sequential-sets-of-double-letters#1116405</link>	
  	<description>Wikipedia, &lt;a href=&quot;http://en.wikipedia.org/wiki/English_words_with_uncommon_properties#Doubled_and_tripled_and_quadrupled_letters&quot;&gt;&amp;quot;English words with uncommon properties.&amp;quot;&lt;/a&gt;</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.75110-1116405</guid>
  	<pubDate>Wed, 31 Oct 2007 12:53:04 -0800</pubDate>
  	<dc:creator>futility closet</dc:creator>
</item>
<item>
  	<title>By: Johnny Assay</title>
  	<link>http://ask.metafilter.com/75110/3-sequential-sets-of-double-letters#1116526</link>	
  	<description>&lt;a href=&quot;http://plex.us/archives/word.html&quot;&gt;A Collection of Word Oddities and Trivia.&lt;/a&gt;  &lt;small&gt;(which I posted to the blue way back in &lt;a href=&quot;http://www.metafilter.com/32761/Stupid-Word-Tricks&quot;&gt;&apos;04&lt;/a&gt;)&lt;/small&gt;</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.75110-1116526</guid>
  	<pubDate>Wed, 31 Oct 2007 13:58:39 -0800</pubDate>
  	<dc:creator>Johnny Assay</dc:creator>
</item>
<item>
  	<title>By: languagehat</title>
  	<link>http://ask.metafilter.com/75110/3-sequential-sets-of-double-letters#1116652</link>	
  	<description>&lt;a href=&quot;http://members.aol.com/gulfhigh2/words.html&quot;&gt;This&lt;/a&gt; is the up-to-date version of the site Johnny Assay posted.  It&apos;ll keep you amused and amazed for hours!</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.75110-1116652</guid>
  	<pubDate>Wed, 31 Oct 2007 15:25:07 -0800</pubDate>
  	<dc:creator>languagehat</dc:creator>
</item>
<item>
  	<title>By: kirkaracha</title>
  	<link>http://ask.metafilter.com/75110/3-sequential-sets-of-double-letters#1116654</link>	
  	<description>beekeeper</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.75110-1116654</guid>
  	<pubDate>Wed, 31 Oct 2007 15:26:37 -0800</pubDate>
  	<dc:creator>kirkaracha</dc:creator>
</item>
<item>
  	<title>By: kirkaracha</title>
  	<link>http://ask.metafilter.com/75110/3-sequential-sets-of-double-letters#1116655</link>	
  	<description>crap</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.75110-1116655</guid>
  	<pubDate>Wed, 31 Oct 2007 15:26:50 -0800</pubDate>
  	<dc:creator>kirkaracha</dc:creator>
</item>

    </channel>
</rss>
