<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: You can stlil raed seabrmlcd wdors&#8230;kindof</title>
	<atom:link href="http://www.mikexstudios.com/archives/2004/09/27/you-can-stlil-raed-seabrmlcd-wdorskindof/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mikexstudios.com/archives/2004/09/27/you-can-stlil-raed-seabrmlcd-wdorskindof/</link>
	<description>portrait of a scientist as a young man. Blog of Michael Huynh.</description>
	<pubDate>Fri, 21 Nov 2008 18:14:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: floppy joe</title>
		<link>http://www.mikexstudios.com/archives/2004/09/27/you-can-stlil-raed-seabrmlcd-wdorskindof/#comment-34949</link>
		<dc:creator>floppy joe</dc:creator>
		<pubDate>Sat, 11 Nov 2006 00:39:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikexstudios.com/archives/2004/09/27/you-can-stlil-raed-seabrmlcd-wdorskindof/#comment-34949</guid>
		<description>i can raed tsehe lertets and it is fnuny the way you can mapunilate wrods.
tanhykou for sahrning. gdoboye. 

p.s. i remain anonymous</description>
		<content:encoded><![CDATA[<p>i can raed tsehe lertets and it is fnuny the way you can mapunilate wrods.<br />
tanhykou for sahrning. gdoboye. </p>
<p>p.s. i remain anonymous</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mikexstudios: You can stlil raed seabrmlcd wdors...kindof</title>
		<link>http://www.mikexstudios.com/archives/2004/09/27/you-can-stlil-raed-seabrmlcd-wdorskindof/#comment-33980</link>
		<dc:creator>mikexstudios: You can stlil raed seabrmlcd wdors...kindof</dc:creator>
		<pubDate>Mon, 16 Oct 2006 11:09:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikexstudios.com/archives/2004/09/27/you-can-stlil-raed-seabrmlcd-wdorskindof/#comment-33980</guid>
		<description>[...] mikeXstudios (mikexstudios) wrote,@ 2004-09-27 18:37:00 &#160;&#160;&#160;&#160;   Current mood:busy  You can stlil raed seabrmlcd wdors...kindof Most of you have heard of this effect from an email that went around beginning with: Aoccdrnig to a rscheearch at Cmabrigde Uinervtisy.... If you didn't, go read it now!So being bored one day (even though I still had piles of homework to get done), I decided to write a python program to scramble my own words and sentences! Grab the file here: WordRearranger.py. I'll post what I have right now (to fill up some space. Otherwise, this post doesn't seem all that important!): """ Word Rearranger by Michael Huynh Rearranges the letters inside words for the idea that wrods can siltl be rbedalae if the fonrt and lsat lteters are kpet cnotsnat. Version 1 (09/28/04) Version 2 (09/29/04) - Fixed bug when punctuation counted as part of a word. For instance: [However,] would be arranged with the H and the , in fixed positions rather than the H, r, and , in fixed positions. Added a recursive solution. Thanks to Penguin for pointing out this bug! Future considerations: Want to modify this program? How about adding a degree of obfuscation to the program? This value can be adjusted to change the *extent* to which letters can be moved around. For instance, the word: [composition] can be extremely jumbled like: [cotiioosmpn], or it can be mildly jumbled like: [copmsotioin]. This would be an interesting study to determine the degree of word jumbling that can occur but still retain elements of recognition. """ import random import re, string "--------------------------------------" "Definitions: " #Function to rearrange letters in a word def shuffleWord(inWord): #Filter for 1, 2, or 3 characters if (len(inWord)&#60;4): return inWord charList = list(inWord) #place list into new sequence firstChar = charList[0:1] lastChar = charList[len(charList)-1:] midCharList = charList[1:len(charList)-1] #----------------------------- #If first and last characters aren't letters or numbers, then #scramble where the letters start if(re.match('W', lastChar[0])): #If the last character is not a word #send first+mid Chars into this function again for processing firstAndMiddleChars = midCharList firstAndMiddleChars.insert(0, firstChar[0]) return (shuffleWord(firstAndMiddleChars)+lastChar[0]) # + means concat if(re.match('W', firstChar[0])): midAndLastChars = midCharList midCharList.append(lastChar[0]) return (firstChar[0]+shuffleWord(midAndLastChars)) #----------------------------- random.shuffle(midCharList) #randomizes the middle characters #print firstChar, midCharList, lastChar #join together in one list wholeShuffledWord = midCharList wholeShuffledWord.insert(0, firstChar[0]) wholeShuffledWord.append(lastChar[0]) #print wholeShuffledWord #convert list into string and return shuffledWord = ''.join(wholeShuffledWord) #print shuffledWord return shuffledWord "--------------------------------------" "Main program: " "!!!! For reading from a file !!!!" """ # Open a file, read the text inputFileHandler = open('sometext.txt', 'r') #Read into string inputFile = inputFileHandler.read() """ "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" "!!!! For manual input !!!!!" inputFile = "Python is an easy to learn, powerful programming language. It has  efficient high-level data ,structures and a simple but effective approach to  object-oriented programming. Python's elegant syntax and dynamic typing,  together with its interpreted nature, make it an ideal language for scripting  and rapid application development in many areas on most platforms." "!!!!!!!!!!!!!!!!!!!!!!!!!!!" #Split string into and word list listWords = inputFile.split() #Scramble word for eachWord in listWords: #Split word by characters print shuffleWord(eachWord), #comma supresses newline """ Sample output: Photyn is an esay to learn, puoerfwl pnmigrramog luganage. It has eiefifnct hilgheve-l data ,sctuuetrrs and a spmile but efeivftce apoprcah to ooerjtenb-eitcd pmoaingrrmg. Ph'tyons elgnaet synatx and damniyc tnyipg, ttehoger wtih its ietnretrped nraute, make it an iaedl lggnuaae for sncirtpig and riapd appioitclan dvlepnmeeot in many areas on msot plmtorafs. """ My conclusions about this letter scrambling idea were very similar to the ones I found on a Cambridge University's site explaining why this works. I also found a paper that related somewhat to this idea: Reading quickly in the periphery — the roles of lettersand sentences.Now back to work for me!View this post on my blog(Post a new comment) skilly 2004-09-30 12:08 am UTC (link) *jaw drops*(Reply to this) (Thread)  mikexstudios 2004-09-30 03:30 pm UTC (link) skillet, if you are a programmer, the above program doesn't seem at all too impressive. One day, you'll be able to read the code like a book.(Reply to this) (Parent) (Thread)  skilly 2004-09-30 09:15 pm UTC (link) Well...looking at it without knowing anything about programming...it looks quite complicated! ^^;; [...]</description>
		<content:encoded><![CDATA[<p>[...] mikeXstudios (mikexstudios) wrote,@ 2004-09-27 18:37:00 &nbsp;&nbsp;&nbsp;&nbsp;   Current mood:busy  You can stlil raed seabrmlcd wdors&#8230;kindof Most of you have heard of this effect from an email that went around beginning with: Aoccdrnig to a rscheearch at Cmabrigde Uinervtisy&#8230;. If you didn&#8217;t, go read it now!So being bored one day (even though I still had piles of homework to get done), I decided to write a python program to scramble my own words and sentences! Grab the file here: WordRearranger.py. I&#8217;ll post what I have right now (to fill up some space. Otherwise, this post doesn&#8217;t seem all that important!): &#8220;&#8221;" Word Rearranger by Michael Huynh Rearranges the letters inside words for the idea that wrods can siltl be rbedalae if the fonrt and lsat lteters are kpet cnotsnat. Version 1 (09/28/04) Version 2 (09/29/04) - Fixed bug when punctuation counted as part of a word. For instance: [However,] would be arranged with the H and the , in fixed positions rather than the H, r, and , in fixed positions. Added a recursive solution. Thanks to Penguin for pointing out this bug! Future considerations: Want to modify this program? How about adding a degree of obfuscation to the program? This value can be adjusted to change the *extent* to which letters can be moved around. For instance, the word: [composition] can be extremely jumbled like: [cotiioosmpn], or it can be mildly jumbled like: [copmsotioin]. This would be an interesting study to determine the degree of word jumbling that can occur but still retain elements of recognition. &#8220;&#8221;" import random import re, string &#8220;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;&#8221; &#8220;Definitions: &#8221; #Function to rearrange letters in a word def shuffleWord(inWord): #Filter for 1, 2, or 3 characters if (len(inWord)&lt;4): return inWord charList = list(inWord) #place list into new sequence firstChar = charList[0:1] lastChar = charList[len(charList)-1:] midCharList = charList[1:len(charList)-1] #&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; #If first and last characters aren&#8217;t letters or numbers, then #scramble where the letters start if(re.match(&#8217;W', lastChar[0])): #If the last character is not a word #send first+mid Chars into this function again for processing firstAndMiddleChars = midCharList firstAndMiddleChars.insert(0, firstChar[0]) return (shuffleWord(firstAndMiddleChars)+lastChar[0]) # + means concat if(re.match(&#8217;W', firstChar[0])): midAndLastChars = midCharList midCharList.append(lastChar[0]) return (firstChar[0]+shuffleWord(midAndLastChars)) #&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; random.shuffle(midCharList) #randomizes the middle characters #print firstChar, midCharList, lastChar #join together in one list wholeShuffledWord = midCharList wholeShuffledWord.insert(0, firstChar[0]) wholeShuffledWord.append(lastChar[0]) #print wholeShuffledWord #convert list into string and return shuffledWord = &#8221;.join(wholeShuffledWord) #print shuffledWord return shuffledWord &#8220;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;&#8221; &#8220;Main program: &#8221; &#8220;!!!! For reading from a file !!!!&#8221; &#8220;&#8221;" # Open a file, read the text inputFileHandler = open(&#8217;sometext.txt&#8217;, &#8216;r&#8217;) #Read into string inputFile = inputFileHandler.read() &#8220;&#8221;" &#8220;!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!&#8221; &#8220;!!!! For manual input !!!!!&#8221; inputFile = &#8220;Python is an easy to learn, powerful programming language. It has  efficient high-level data ,structures and a simple but effective approach to  object-oriented programming. Python&#8217;s elegant syntax and dynamic typing,  together with its interpreted nature, make it an ideal language for scripting  and rapid application development in many areas on most platforms.&#8221; &#8220;!!!!!!!!!!!!!!!!!!!!!!!!!!!&#8221; #Split string into and word list listWords = inputFile.split() #Scramble word for eachWord in listWords: #Split word by characters print shuffleWord(eachWord), #comma supresses newline &#8220;&#8221;" Sample output: Photyn is an esay to learn, puoerfwl pnmigrramog luganage. It has eiefifnct hilgheve-l data ,sctuuetrrs and a spmile but efeivftce apoprcah to ooerjtenb-eitcd pmoaingrrmg. Ph&#8217;tyons elgnaet synatx and damniyc tnyipg, ttehoger wtih its ietnretrped nraute, make it an iaedl lggnuaae for sncirtpig and riapd appioitclan dvlepnmeeot in many areas on msot plmtorafs. &#8220;&#8221;" My conclusions about this letter scrambling idea were very similar to the ones I found on a Cambridge University&#8217;s site explaining why this works. I also found a paper that related somewhat to this idea: Reading quickly in the periphery — the roles of lettersand sentences.Now back to work for me!View this post on my blog(Post a new comment) skilly 2004-09-30 12:08 am UTC (link) *jaw drops*(Reply to this) (Thread)  mikexstudios 2004-09-30 03:30 pm UTC (link) skillet, if you are a programmer, the above program doesn&#8217;t seem at all too impressive. One day, you&#8217;ll be able to read the code like a book.(Reply to this) (Parent) (Thread)  skilly 2004-09-30 09:15 pm UTC (link) Well&#8230;looking at it without knowing anything about programming&#8230;it looks quite complicated! ^^;; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eugene</title>
		<link>http://www.mikexstudios.com/archives/2004/09/27/you-can-stlil-raed-seabrmlcd-wdorskindof/#comment-123</link>
		<dc:creator>Eugene</dc:creator>
		<pubDate>Thu, 30 Sep 2004 21:35:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikexstudios.com/archives/2004/09/27/you-can-stlil-raed-seabrmlcd-wdorskindof/#comment-123</guid>
		<description>Hey, my eugene.mikexstudios.com site is finally googleable!</description>
		<content:encoded><![CDATA[<p>Hey, my eugene.mikexstudios.com site is finally googleable!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mikeXstudios</title>
		<link>http://www.mikexstudios.com/archives/2004/09/27/you-can-stlil-raed-seabrmlcd-wdorskindof/#comment-122</link>
		<dc:creator>mikeXstudios</dc:creator>
		<pubDate>Thu, 30 Sep 2004 02:14:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikexstudios.com/archives/2004/09/27/you-can-stlil-raed-seabrmlcd-wdorskindof/#comment-122</guid>
		<description>Updated source code to fix problem. Thank you again Pen.</description>
		<content:encoded><![CDATA[<p>Updated source code to fix problem. Thank you again Pen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mikeXstudios</title>
		<link>http://www.mikexstudios.com/archives/2004/09/27/you-can-stlil-raed-seabrmlcd-wdorskindof/#comment-121</link>
		<dc:creator>mikeXstudios</dc:creator>
		<pubDate>Tue, 28 Sep 2004 00:34:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikexstudios.com/archives/2004/09/27/you-can-stlil-raed-seabrmlcd-wdorskindof/#comment-121</guid>
		<description>Whoa! You're right! Wow, I didn't notice that! I should fix this error soon before anyone else sees it....</description>
		<content:encoded><![CDATA[<p>Whoa! You&#8217;re right! Wow, I didn&#8217;t notice that! I should fix this error soon before anyone else sees it&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Penguin</title>
		<link>http://www.mikexstudios.com/archives/2004/09/27/you-can-stlil-raed-seabrmlcd-wdorskindof/#comment-120</link>
		<dc:creator>Penguin</dc:creator>
		<pubDate>Mon, 27 Sep 2004 22:41:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikexstudios.com/archives/2004/09/27/you-can-stlil-raed-seabrmlcd-wdorskindof/#comment-120</guid>
		<description>Just in case you didn't notice, the paragraph you posted about Python that was "scrambled" (Pthoyn is an easy to lnare... mnay araes on msot pmofrsatl.) is mis-scrambled. The last letters are not always kept constant, so in some words (for example, 'learn' and 'platforms' in the two fragments I just mentioned) are harder to figure out.

Just wanted to let you know. &lt;&gt;&lt;3

btw, when are you EVER gonna finish the story about your visit?!</description>
		<content:encoded><![CDATA[<p>Just in case you didn&#8217;t notice, the paragraph you posted about Python that was &#8220;scrambled&#8221; (Pthoyn is an easy to lnare&#8230; mnay araes on msot pmofrsatl.) is mis-scrambled. The last letters are not always kept constant, so in some words (for example, &#8216;learn&#8217; and &#8216;platforms&#8217; in the two fragments I just mentioned) are harder to figure out.</p>
<p>Just wanted to let you know. <>&lt;3</p>
<p>btw, when are you EVER gonna finish the story about your visit?!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
