Slashdot Mirror


Can You Raed Tihs?

An aoynmnuos raeedr sumbtis: "An interesting tidbit from Bisso's blog site: Scrambled words are legible as long as first and last letters are in place. Word of mouth has spread to other blogs, and articles as well. From the languagehat site: 'Aoccdrnig to a rscheearch at an Elingsh uinervtisy, it deosn't mttaer in waht oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht frist and lsat ltteer is at the rghit pclae. The rset can be a toatl mses and you can sitll raed it wouthit porbelm. Tihs is bcuseae we do not raed ervey lteter by it slef but the wrod as a wlohe. ceehiro.' Jamie Zawinski has also written a perl script to convert normal text into text where letters excluding the first and last are scrambled."

147 of 997 comments (clear)

  1. Yes, a cat's got my tongue, OK? by inertia187 · · Score: 4, Funny

    Quick! Someone go register goaste.cx, micorsoft.com, ssdlhoat.org...etc.

    Actually, does this work well with letter pairs like, "th ch wh sh qu?" I forget what those are called.

    --
    A programmer is a machine for converting coffee into code.
    1. Re:Yes, a cat's got my tongue, OK? by Anonymous Coward · · Score: 4, Informative

      Actually, does this work well with letter pairs like, "th ch wh sh qu?" I forget what those are called.

      Digraphs?

    2. Re:Yes, a cat's got my tongue, OK? by Bame+Flait · · Score: 5, Insightful

      Actually, does this work well with letter pairs like, "th ch wh sh qu?" I forget what those are called.

      The reason it DOES work well with those letter pairs is that they aren't familiar at all in reverse. You're more likely to udnerstand their juxtaposition as what it's supposed to be, because you're used to it being one way.

      Where it DOESN'T work as well is when you begin breaking up complex phonemes or diphthongs in short words. Konw what I'm sayin'?

    3. Re:Yes, a cat's got my tongue, OK? by MourningBlade · · Score: 2, Insightful

      Actually, does this work well with letter pairs like, "th ch wh sh qu?" I forget what those are called.

      They're called dipthongs. There's also tripthongs, though I can't think of any English ones right now.

      And no, they don't appear to work quite as well. I had trouble reading a few words that had split dipthongs.

      Split dipthongs? Sounds kinky.

    4. Re:Yes, a cat's got my tongue, OK? by focitrixilous+P · · Score: 2, Funny

      I know! goaste.cx could be some kind of crazy ASCII based pr0n site! That would creep people out who were trying for goatse.cx!

      --
      SAILING MISHAP
    5. Re:Yes, a cat's got my tongue, OK? by shadowcabbit · · Score: 3, Funny

      I personally find it more creepy that people would be trying for goatse.cx .

      --
      "Why Subscribe?" Good question...
    6. Re:Yes, a cat's got my tongue, OK? by inertia187 · · Score: 4, Interesting

      I noticed that compression is worse using scrambled text:

      [anthonym@uniblab scrbameld]$ ./scrmable.pl genesis.txet
      [anthonym@uniblab scrbameld]$ gzip g*
      [anthonym@uniblab scrbameld]$ ls -l
      total 304
      -rwxr-xr-x 1 anthonym staff 63830 Sep 15 16:33 genesis.text.gz
      -rw-r--r-- 1 anthonym staff 84945 Sep 15 16:36 genesis.txet.gz
      -rwxr-xr-x 1 anthonym staff 1396 Sep 15 15:56 scrmable.pl
      [anthonym@uniblab scrbameld]$ gunzip g*
      [anthonym@uniblab scrbameld]$ zip genesis.zip g*
      adding: genesis.text (deflated 70%)
      adding: genesis.txet (deflated 60%)
      [anthonym@uniblab scrbameld]$


      Interesting. Anyone have an explaination for tihs?

      --
      A programmer is a machine for converting coffee into code.
    7. Re:Yes, a cat's got my tongue, OK? by spongman · · Score: 4, Funny

      tripthong: falling flat on your face after getting out of bed the morning after a particularly successful date.

    8. Re:Yes, a cat's got my tongue, OK? by Jucius+Maximus · · Score: 2, Funny

      So this explains how 'music' groups like the BLackstreet Boys came into existence.

    9. Re:Yes, a cat's got my tongue, OK? by adamsan · · Score: 3, Informative

      "They're called dipthongs (sic)"

      No they ain't, diphthongs are pairs of vowels that merge together. Pairs of consonants are called err..consonant pairs.

    10. Re:Yes, a cat's got my tongue, OK? by edwdig · · Score: 4, Informative

      By randomly scrambling the letters, you're eliminating a lot of the redundancy.

      Huffman compression would be unaffected though, as it works on a per character basis.

    11. Re:Yes, a cat's got my tongue, OK? by stienman · · Score: 2, Informative

      Yes, and it's quite simple. The script you used scrambles words randomly - again agian aagin aaign aigan aiagn - become seperate words to the compressor. Instead of changing every occurance of the word again into a short binary string, it has to treat each iteration seperately with their own binary string (simplified - compression is more complex, but the basic idea is the same)

      In other words, the scramble.pl adds machine randomness to a rather organized and non-random set of data. Humans can still parse it (meaning that the data is very redundant) but the machine cannot compressed this 'more random' data.

      -Adam

    12. Re:Yes, a cat's got my tongue, OK? by Demodian · · Score: 3, Informative

      diphthongs and triphthongs are the vowel-only subsets of digraphs and trigraphs.

    13. Re:Yes, a cat's got my tongue, OK? by kcurtis · · Score: 5, Funny

      My neighbor weighed your argument. He used a beige scale, and decided it was probably the heinous act of a foreigner to make such a statement. And you're weird. So rein in yourself, and remove the veil of ignorance, ye feisty cad!

      Thou should forfeit karma, but that is neither here nor there.

    14. Re:Yes, a cat's got my tongue, OK? by Pseudonym · · Score: 2, Interesting

      Nit: Huffman coding is just a technique for taking a symbol alphabet with associated probability model and generating a minimal-entropy prefix-free binary code.

      It is not a compression algorithm, though it often appears as the last step in a compression algorithm. In particular, it doesn't deal with the problem of how you generate the probability model, or what your symbol alphabet is.

      The gzip algorithm, for example, uses "Huffman compression" just fine, but it still does poorly on scrambled text.

      --
      sub f{($f)=@_;print"$f(q{$f});";}f(q{sub f{($f)=@_;print"$f(q{$f});";}f});
    15. Re:Yes, a cat's got my tongue, OK? by pbox · · Score: 2, Interesting

      Yes, but it brings up interesting lossy text compression, where you can rearrange the middle of the words to reduce the compressed file size. Kinda like MP3 or JPG for your reading.

      --
      Code poet, espresso fiend, starter upper.
    16. Re:Yes, a cat's got my tongue, OK? by panaceaa · · Score: 2, Funny

      I could feign a plebeian ignorance, but I inveigh your deceiving sleights. By seeing correspondence I've received, including eight receipts from my leisure activities and a weird lein on my sovereign freight sleigh, a weighty surveillance can be unveiled: SOMETIMES E COMES BEFORE I!

      Now, where are my reindeer?! (for my sleigh!!)

      Signed, der Weihnachtsmann

    17. Re:Yes, a cat's got my tongue, OK? by boojum.cat · · Score: 3, Funny


      They're called dipthongs.

      Don't you mean "dgnthpois"? You're right, it doesn't seem to work very well...

      --
      Lost: one sig, witty, 120 chars, sentimental value. Reward offered.
    18. Re:Yes, a cat's got my tongue, OK? by M.+Silver · · Score: 2, Funny

      SOMETIMES E COMES BEFORE I!

      Yes, but those are "ei" pairs.

      --

      Slashdot's token middle-aged housewife
  2. At Lsat! by Urantian · · Score: 5, Funny

    Bad splelnig no logner nedes to hlod aynnoe bcak!

    --
    Urantian -- and proud of it!
    1. Re:At Lsat! by Hamstaus · · Score: 5, Funny

      Bad splelnig no logner nedes to hlod aynnoe bcak!

      As if that's stopped anyone on Slashdot before.

      --
      I moderate "-1, Fool"
    2. Re:At Lsat! by scalis · · Score: 4, Funny

      So it IS true! Dyslexics definitely has more fnu!

      --

      True ravers don't need drugs
    3. Re:At Lsat! by insanecarbonbasedlif · · Score: 3, Funny

      As if that's stopped anyone on Slashdot before.

      Hehemmm. Taht solhud be: As if tath's stpoped aonnye on Sasldoht boeefr.

      --
      Just because I doubt myself does not mean I find your position compelling.
    4. Re:At Lsat! by Bob+Wehadababyitsabo · · Score: 5, Funny

      As if tath's stpoped aonnye on Sasldoht boeefr.

      You cna't eevn get the fekucd up snleiplg rghit!!!

      --
      fsck -u
    5. Re:At Lsat! by The+Old+Burke · · Score: 2, Funny
      You cna't eevn get the fekucd up snleiplg rghit!!!

      Die speilnlg Tllor, die!!

      --
      Proud patriot and republican voter.
    6. Re:At Lsat! by falzer · · Score: 3, Funny

      Dyslexics of the world untie!

    7. Re:At Lsat! by Darth_Burrito · · Score: 2, Funny

      Dyslexia, Cure found for.

    8. Re:At Lsat! by MikeFM · · Score: 2, Funny

      I know you were joking but I do find this idea funny because I am dyslexic and it takes me a lot of effort to get my letters in the right order consistantly. The idea that non-dyslexic people are purposely getting their letters out of order when for years I've been trying not to is just funny to me. What next? Will we begin to see typefaces with characters turned upside down or backwards? Maybe we'll see normal people getting the order of words all wrong. At least from now on I can claim that my accidents were done on purpose as part of a code. :)

      --
      At what price learning? At what cost wisdom? The price is a man's peace of mind, and the cost is his life.
  3. Here you go by JM+Apocalypse · · Score: 5, Informative

    No need to open the terminal ... Jeff comes to the rescue!

    http://jeff.zoplionah.com/scramble.php

    --

    - - - - - - -
    Orppf urp mf y.ppcxn. yflcbi otcnnov C am yflcbi yr n.apb Ekrpatv (Dvorak -> Qwerty)
    1. Re:Here you go by DoomHaven · · Score: 4, Interesting

      Yuor porgarm has a falw. It csnoiders pinctuouatn mkars as ltteers and tuhs any word wtih a pntctuuaion mark at the end wlil condeisr the fanil mark to be the lsat letter.

      --
      "Don't mind me cutting myself on Occam's Razor"
    2. Re:Here you go by Anonymous Coward · · Score: 2, Funny

      You're not too bright, are you?

  4. In the Sivoet Uonin by tarquin_fim_bim · · Score: 4, Funny

    WRDOS SBRCALME YOU!

  5. holy.. by the+uNF+cola · · Score: 4, Funny

    Holy FCUK!

    --

    --
    "I'm not bright. Big words confuse me. But Wanda loves me and that should be enough for you." - Cosmo

    1. Re:holy.. by brian728s · · Score: 2, Funny

      On the French Connection UK site (FCUK), it was asking for my screen size, and it said

      FCUK.COM

      Please Choose Your Screen Size

      >FCUKSMALL
      >FCUKLARGE

      Automatically redirecting to fcuklarge in ten seconds

  6. FINALLY by Rathian · · Score: 4, Funny

    Justification for the lack of spell checking on Slashdot...

  7. Hmmm by Verteiron · · Score: 5, Interesting

    So d__s t__s m__n t__t we d_n't n__d t_e m____e l____s at all?

    --
    End of lesson. You may press the button.
    1. Re:Hmmm by Verteiron · · Score: 5, Interesting

      Okay, I know it's bad form to reply to one's own post, but I noticed something. When writting "letters", l____rs seems more recognizable than l_____s. Apparently plurals are handled by the brain as the word followed by the plural suffix. Interesting...

      --
      End of lesson. You may press the button.
    2. Re:Hmmm by insanecarbonbasedlif · · Score: 5, Insightful

      I t___k y__r p__t is p___f t__t we d________y do n__d t_e m____e l_____s.





      Read: I think your post is proof that we definately do need the middle letters.

      --
      Just because I doubt myself does not mean I find your position compelling.
    3. Re:Hmmm by Verteiron · · Score: 5, Insightful

      Bt we nd te ss fr te wd cs.

      But we need the spaces, at least, for the word cues.

      So how many "bits" of information can we strip from a sentence, on average, before we can no longer intuitively decipher it? The spaces give us information, but not as much as the letters themselves. Yet clearly the ordering of the letters contains much less information than the contents of a word's endpoints. This is odd stuff.

      --
      End of lesson. You may press the button.
    4. Re:Hmmm by insanecarbonbasedlif · · Score: 2, Informative

      The problem comes from words that have the same ending letters, but different middle letters: Like "car" and "cur", or (more confusingly) "from", "form", "firm", "film", "farm", etc. Context would give us some cues, but it would definately require more thought to process.

      --
      Just because I doubt myself does not mean I find your position compelling.
    5. Re:Hmmm by Jucius+Maximus · · Score: 3, Insightful
      " So d__s t__s m__n t__t we d_n't n__d t_e m____e l____s at all?"

      No, the middle letters are still necessary. I find myself misreading all the time because my brain took in the first and last letter and read it as a word with similar spelling and length.

      So I would hypothesize that the first/last letters along with the lengths of the words and a rough idea of what letters go in the middle are what our brains look for.

      But this only comes with practice. English is my first language and I have read millions and millions of words in English in my lifetime so I am very used to taking in written information this way. But if I switch to reading something in French (for which I took for 11 years in school but never became fluent, mainly because I hated learning french) I still have to read each word carefully because I am not used to reading it.

      So if some person who is just learning english looked at words with jumbled internals, I expect that they would have a terrible time trying to figure them out. Their brains have not read each word thousands of times so they still have to decode them letter by letter.

    6. Re:Hmmm by FFFish · · Score: 2, Interesting

      A lt of vwls rn't necsry. U jst nd th mjr phnms. Thus ltrs, not ls.

      --

      --
      Don't like it? Respond with words, not karma.
    7. Re:Hmmm by rusty0101 · · Score: 3, Insightful

      ActuallyIHaveFoundThatWeDoNotNeedSpaces.

      WeDoNeedPunctuation,AndSomeQueThatASpaceShouldBe Th ere.

      IWasAbleToWriteASetOfScriptsThatWouldCapitalizeT he First
      LetterOfEveryWord,ThenStripOutSpaces.IUseTh atScrip tToSend
      TextPagesToMyCellPhoneToSaveSpace.

      ToFollowUpOnYourIdea,WeCouldStripOutVowlesFromTh eM iddleOf
      WrdsAndStllFndMstOfTheTxtRdbl.IThnkWeNdTo LveAnyAtT heBgngOr
      EndOfTheWrdsThgh.

      At the moment it takes a bit of extra thinking to do that though.

      -Rusty

      --
      You never know...
    8. Re:Hmmm by ikkyikkyikkypikang · · Score: 2, Informative

      Hree's a cool ltitle scprit taht I use to sned emial to my mboil phnoe: email2sms

      --
      -- This post (c) 2003, Knights who say Ni, LTD.
    9. Re:Hmmm by FuzzyBad-Mofo · · Score: 2, Funny

      Argh! VB Flsahbcak!!

  8. Nwo, Teh Gebalrd Ptsos by thatguywhoiam · · Score: 2, Funny

    Why do I get the feeling that this particular thread will hvae a few mroe snpellig eorers tehn uusal?

    --
    If Jesus wants me it knows where to find me.
  9. Microsoft calls that by Penguinshit · · Score: 5, Funny

    "encryption".

  10. So in other words... by Valar · · Score: 5, Funny

    It's a perl script to format normal text into text that looks like a perl script? I think my head is spinning.

    1. Re:So in other words... by gdchinacat · · Score: 3, Funny

      I any language were to program itself, perl would be it.

    2. Re:So in other words... by Raffaello · · Score: 2, Informative

      No, that would be lisp.

  11. Does this work for non native speakers? by PredatoryDuck · · Score: 5, Interesting

    I showed this to a student here who is native to Indonesia, so english is not her first language, and she had a very difficult time reading it. Any thoughts on why this might be so tied to your native tongue? I would have thought that anyone fluent in english (which she is) would be able to read the post without much difficulty.

    D

    1. Re:Does this work for non native speakers? by Hamstaus · · Score: 4, Interesting

      Spoken language and written language are two separate entities when it comes to usage and process. It is not uncommon to find people who are very well-spoken in a second language, but cannot write a word. I would venture to guess that your student takes much longer to read something in English than in her native language, despite her fluency. The patterns of English words would still require more concentration and interpretation by her brain than those of her native language, which have been ingrained into her since she was very young.

      You did not mention if she is a fluent reader/writer, speaker, or both? From what you describe I would say that when you said "fluent" you meant as a speaker.

      --
      I moderate "-1, Fool"
    2. Re:Does this work for non native speakers? by RobertB-DC · · Score: 4, Interesting

      I would have thought that anyone fluent in english (which she is) would be able to read the post without much difficulty.

      Actually, since I'm not British, the final word of the canonical scramble threw me off:

      Tihs is bcuseae we do not raed ervey lteter by it slef but the wrod as a wlohe. ceehiro.

      I read the rest of the text correctly, but I had a devil of a time figuring out the reference to the Miyazaki film Spirited Away, also known as Sen to Chihiro no Kamikakushi !

      --
      Stressed? Me? Of course not. Stress is what a rubber band feels before it breaks, silly.
    3. Re:Does this work for non native speakers? by PredatoryDuck · · Score: 2, Interesting

      Interesting that you mention this. I asked her about it, and she says that she does not, in fact, take any longer to process a page of english text than her native text. While writing takes her longer in english, reading does not. (This is simply what she tells me...I don't have any evidence for that).

    4. Re:Does this work for non native speakers? by TLouden · · Score: 2, Insightful

      It's all based on predictability. If you don't REALLY know the language well then forget it.

      --
      -Tim Louden
    5. Re:Does this work for non native speakers? by Tarrio · · Score: 2, Interesting

      It's probably because she cannot read English directly. English is my third language, but I have been reading English-language texts for years, so now I can read it directly, without having to decypher or translate anything. So yes, I can raed toshe srbalcemd txtes wtohiut mcuh dtfcifuily.

      (Funnily, it is very hard for me to actually understand what I'm reading if I'm reading it aloud. Probably the text-to-speech process takes resources that would be normally spent understanding the text ;-). That doesn't happen when I read Spanish or Galician (my two mother languages).

    6. Re:Does this work for non native speakers? by gdchinacat · · Score: 3, Informative

      I think it is actually cheerio.

      WordNet (r) 1.7 [wn]

      cheerio
      n : a farewell remark; "they said their good-byes" [syn: adieu,
      adios, arrivederci, auf wiedersehen, au revoir,
      bye, bye-bye, good-by, goodby, good-bye, goodbye,
      good day, sayonara, so long]

    7. Re:Does this work for non native speakers? by Mattsson · · Score: 2, Interesting

      It's probably more of an experience problem.
      My native tounge is not english, nor do I live in a englishspeaking country, but I had no problem what so ever reading the post.
      I do, however, read a lot of english litterature and have been doing so for the last 13 years.

      --
      /.Mattsson - My native language is not English, so please don't whine over linguistic errors. (That's lame anyway...)
  12. Take that 9th grade English teacher.... by SomeoneGotMyNick · · Score: 5, Funny

    Throw out the I before E rule once and for all.

  13. grammar still not optional by kellan1 · · Score: 4, Interesting

    This meme has been kicking around blogland for a couple of days, and it definitely seems to be true. The only part of the above paragraph that was difficult to read was the sentence, "the olny iprmoetnt tihng is taht frist and lsat ltteer is at the rghit pclae".

    Normally I would never post a comment about grammar, but it is kind of startling that in a block of text that jumbled the absence of 'the', and the swapping of 'is' for 'are' still jump out at you.

  14. all this research and still by another+misanthrope · · Score: 2, Insightful

    ...I bet people won't the RTFA

  15. Eggs by vevva · · Score: 4, Funny

    Agrlhit cleevr clogs - see if you can sbarclme eggs

  16. Re:tahn, you fool! by Lord+Bitman · · Score: 2, Funny

    TAHN!

    --
    -- 'The' Lord and Master Bitman On High, Master Of All
  17. Yes I could read it but... by mark_space2001 · · Score: 4, Funny
    Aoccdrnig to a rscheearch at an Elingsh uinervtisy, it deosn't mttaer in waht oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht frist and lsat ltteer is at the rghit pclae. The rset can be a toatl mses and you can sitll raed it wouthit porbelm. Tihs is bcuseae we do not raed ervey lteter by it slef but the wrod as a wlohe. ceehiro.

    ...but it's like reading a post by a 12 year old on a forum someplace ... or like playing an online game with a bunch of l33t doodz. I hate it.

    Don't ever do this again, Slashdot.

  18. Cool by retro128 · · Score: 2, Funny

    And to think I was about to apologize for my last typo-ridden post.

    --
    -R
  19. I'm I the only one who's curious if... by WndrBr3d · · Score: 2

    if raeding tihs txet would voilate the DMCA ;-)

  20. Only part of the answer.... by Mattcelt · · Score: 5, Interesting

    Understanding a language is only 50% comprehension. The other 50% is being able to predict what will come next based on previous experience. This is especially important in spoken language, because the brain simply does not have the power to parse each word separately in real time.

    So while it is possible to understand words that are not spelled correctly, it can still take a while to understand if the nxet few wdors are not qieut waht you epcext. It is aslo mcuh lses pbatldicree wehn you use lgenor wdros.

    I hpoe tihs was an imuilntinag eplamxe!

    Mclettat

    1. Re:Only part of the answer.... by MMaestro · · Score: 3, Interesting

      True. I've tried this before when I was younger with my parents, who did not learn English as their first language (their first language was Chinese) and they were unable to read the scrambled words. I doubt anyone who learned English as a second language would be able to read the scrambled words as easily as most Slashdotters.

    2. Re:Only part of the answer.... by Ummite · · Score: 2, Interesting

      Wait a minute. What you just say is very interesting : imagine you have someone (spy) who actually try to make himself an american. If he learn very much about english, it could be very hard for anyone to proove he's not what he is telling. BUT : with some scrambled sentence as posted, I think we could rapidly find out who is native american (or at least, english as first language), or who actually learned english. My first language is french and I will assure you that I read pretty well english, but I was descrambling very slowly all the posts. And, it can probably work also for regional expression, to know if someone actually lived somewhere or not. What do you think?

  21. Excuse? by theolein · · Score: 2, Funny

    I wonder if the origins of this trend aren't in the terrible spelling and bad grammar that many internet age children employ, having gone through a school system that accepts MS Word's spelling correction as normal?

  22. but try reading one word at a time by redenopolis · · Score: 2, Interesting

    the mistake is in saying that the unscrambling is
    done at the word level. jump you eyes randomly into
    the text and try to read just one word in isolation.
    as someone on cogling@ucsd pointed out, there are
    also a bunch of non-scrambled key words that help
    your brain figure out what the in-betweens should
    be. anyhow, point being that it's not a feature
    of word recognition that you can read it, but rather
    a feature of higher-level reconstruction.

    mt

  23. The bset prat by kuwan · · Score: 5, Funny

    The best part of the pearl script is the copyright notice:

    # Coyprgiht (C) 2003 Jamie Zawinski
    #
    # Premssioin to use, cpoy, mdoify, drusbiitte, and slel this stafowre and its
    # docneimuatton for any prsopue is hrbeey ganrted wuihott fee, prveodid taht
    # the avobe cprgyioht noicte appaer in all coipes and that both taht
    # cohgrypit noitce and tihs premssioin noitce aeppar in suppriotng
    # dcoumetioantn. No rpeersneatiotns are made about the siuatbliity of tihs
    # srofawte for any puorpse. It is provedid "as is" wiuotht exerpss or
    # ilmpied waanrrty.

    1. Re:The bset prat by cybermace5 · · Score: 3, Insightful

      Uh oh, Jamie Zawinski has shown an interest in something. We have very little time before it is integrated into the standard xscreensaver loadout.

      --
      ...
    2. Re:The bset prat by piranha(jpl) · · Score: 2, Funny
      The variable and subroutine names are also sreamblcd.
      my $porgnmae = $0; $porgnmae =~ s@.*/@@g;
      my $vresoin = q{ $Revision: 2.1 $ }; $vresoin =~ s/^[^0-9]+([0-9.]+).*$/$1/;
      ...
      sub scrmable {
      ...
      sub usgae {
      ...
      sub mian {
      ...
    3. Re:The bset prat by Poeir · · Score: 2, Funny

      He swapped the "e"s.

      --
      Sigs are like bumper stickers.
  24. Just english? and for all words? by gmuslera · · Score: 4, Insightful
    Can this assumptions be false for other kind of languages or a priori is universal? At least in spanish after a few tries looked to me less clear than in english.

    Also... what happen when the scrambled word is another valid word? Or a misspelled valid words?

    1. Re:Just english? and for all words? by PMuse · · Score: 2, Interesting

      Also... what happen when the scrambled word is another valid word?

      This sounds like a good way to confuse the ole word detector. Four variants spring to mind for an original word of n letters. In all variants, hold the first and last character constant and mix the interior letters. First, can a new n-letter word be formed. Second, can a new (n-1)-letter word be formed including the original first letter, but excluding the original last letter. Third, can a new (n-1)-letter word be formed including the original last letter, but excluding the original first letter. Fourth, can a new (n-2)-letter word be formed excluding both the original first and last letters. I suppose that if n is large (e.g. >= ~7), the pattern could be continued or multiple new valid words might be formed from the n letters.

      The resulting false clues should tend to mislead the reader.

      Another way to fool the old noggin would be to start with a misspelled original.

      --
      "We reject as false the choice between our safety and our ideals." --The American President (20.1.2009)
  25. Not entirely accurate by StewedSquirrel · · Score: 5, Interesting

    The "consonant pairs" seem to always be still paired in these words.

    If I type

    sllpenig it's clear I'm typing "spelling"

    but, if I type

    slpenlig it's not so clear anymore.

    What about: according

    Aoccdrnig (as in the article) is ok but...
    aocdrncig is not nearly as clear

    There's a limit to how far your brain can stretch it. Some consonant pairs your brain DOES intepret much like a single letter, because it's an irregularity in english.

    Words that use such consonant pairs and triplets like "tch" are much harder to distinguish when those pairs and triplets (which really sound like a single letter) are split.

    Stewey

    --
    There are 10 kinds of people in the world. Those who understand binary and those who don't.
  26. What?!? No "Frist Psot"? by momerath2003 · · Score: 5, Funny
    I can't believe it! I was assuming that someone, someone out there (especially the first poster) would do it!

    Come on, you slacker trolls!

    (ethighy-ftifh psot!)

    --
    I had but a simple dream, to destroy all humans.
    1. Re:What?!? No "Frist Psot"? by RobertB-DC · · Score: 4, Funny

      "Frist Psot" was rejected by the Lameness Filter, which was specially audjestd for this story. Note that the Slashdot spell-uncheck program was also adjusted to aollw the correct spellings of the non-scrambled wdors in the story to be let thourgh.

      (tihs siht is too mcuh fun! sotp me!)

      --
      Stressed? Me? Of course not. Stress is what a rubber band feels before it breaks, silly.
    2. Re:What?!? No "Frist Psot"? by Dirtside · · Score: 4, Funny
      What?!? No "Frist Psot"?
      Given the nature of the story, I'd expect the trolls to end up posting a properly spelled "First Post" message. :)
      --
      "Destroy science and religion. Science would re-emerge exactly the same; but not religion." - Penn Jillette, paraphrased
    3. Re:What?!? No "Frist Psot"? by Guppy06 · · Score: 2, Funny

      We were all too busy looking at pron.

    4. Re:What?!? No "Frist Psot"? by bill_mcgonigle · · Score: 4, Funny

      Let's see if I can get this over with in one fell swoop:

      all your bsae are boleng to us
      In Seviot Rsuisa Words Srcmable You
      Imangie a sbcramled bwelouf ctsuler
      Tihs mhigt be big eunogh to hold all my mp3's if I smalrcebd tehm (remmeber that one?)
      cehck out this lnik.

      Did I miss any?

      --
      My God, it's Full of Source!
      OUTSIDE_IP=$(dig +short my.ip @outsideip.net)
    5. Re:What?!? No "Frist Psot"? by optikSmoke · · Score: 4, Funny

      You only missed one obvious one (to me): i gesus it deonst mtaetr taht sashlodt eidorts cnat selpl !

    6. Re:What?!? No "Frist Psot"? by Lord_Dweomer · · Score: 4, Funny
      I, for one, wcelmoe our new dyselxic oervlrdos!

      --
      Buy Steampunk Clothing Online!
  27. ynlo gcramblins eht tirsf dna tasl setterl by vevva · · Score: 5, Funny

    Eht sbviouo txperimene ot monfirc eht yheort si ot ees thaw sappenh nhew uoy ecrambls ynlo eht tirsf dna tasl setterl dna eeavl eht eiddlm setterl eht eams. Eompletc Kobbledegoog.

    1. Re:ynlo gcramblins eht tirsf dna tasl setterl by Anonymous Coward · · Score: 2, Interesting

      Eompletc Kobbledegoog.

      Actually, this post was more readable for me than the article or many other posts in this discussion. I was quite amazed at how switching the bookend letters made the whole word look backward, but recognizably so, as if all the letters had been reversed. And reading a word backwards (at least for me) is an even easier task than reading the scrambled middle letters (which, I'll admit was suprisingly easy).

      Jacob Fugal

    2. Re:ynlo gcramblins eht tirsf dna tasl setterl by indianajones428 · · Score: 2, Interesting

      Funny, at first I thought all the words were just backwards. When I started to read them as such, it made a lot more sense.

      An experiment like this might be better performed with single words instead of entire sentences, as the human mind excels at finding and deciphering patterns.

      --
      When a thing has been said, and said well, have no scruple. Take it and copy it. --Anatole France
    3. Re:ynlo gcramblins eht tirsf dna tasl setterl by SmackCrackandPot · · Score: 2, Funny

      Complete Googledekobb - I am going to use that word in my thesis.

  28. This is Slashdot... by Osrin · · Score: 3, Funny

    people here don't read just the first and the last letters of a word... we generally don't read anything at all, we just hit reply and dive right in.

  29. Excuse me for being a skeptic... by Sodium+Attack · · Score: 2, Interesting

    Can anyone track down an authoritative source for this?

    Bisso got it from languagehat. Bisso also cites a Nature article that may be related; however, the Nature article clearly deals with hearing time-reversal of segments of spoken sentences, not reading mangled written words. languagehat cites Avva, who languagehat admits doesn't give a source; I can't get to the Avva entry at the moment.

    --

    Never take moderation advice from sigs, including this one.

  30. This doesn't work at all by blunte · · Score: 3, Insightful

    Two reasons your message doesn't work without great effort:

    1 - You've left out the letters, and thus our brain can't do the quick magic to "know" the words. The summary of the story worked really well, surprisingly well. But yours is hosed.

    2 - There's no real context for your sentence, so it's even that much more difficult to guess quickly.

    --
    .sigs are for post^Hers.
  31. Ha! by vDave420 · · Score: 4, Interesting
    Not surprising. Your brains does lots of strange things.

    Please go and feed the the cat.


    Bet ya didn't see that, did ya?

    Re-read it slowly.

    -dave-

    --
    The pig browse. With Google. Sigh is to the chicken. Chicken is fool. Giggle. The DailyWTF giggle.
  32. SPAM?!?!?!? by mcrbids · · Score: 5, Funny

    Ok, so now they discover that randomizing the text within words doesn't detract (too much) from readability - does that mean we'll soon be seeing:

    ELNRAGE YUOR PNEIS!!!

    on the subject lines of emails received? How would any of the pattern matching anti-spam methods out there deal with this one?

    And, we just gave them the tool do use!

    -Ben

    --
    I have no problem with your religion until you decide it's reason to deprive others of the truth.
    1. Re:SPAM?!?!?!? by Dirtside · · Score: 5, Funny
      ELNRAGE YUOR PNEIS!!!
      Wow, when I first read that, my brain parsed it as "ENRAGE YOUR PENIS!!!" Which sounds like a really bad idea.
      --
      "Destroy science and religion. Science would re-emerge exactly the same; but not religion." - Penn Jillette, paraphrased
    2. Re:SPAM?!?!?!? by TLouden · · Score: 3, Insightful

      FUNNY?!

      This is a serious problem. Now we just killed one of our methods for eliminating spam.

      --
      -Tim Louden
  33. My experience by EmbeddedJanitor · · Score: 2, Interesting
    I'm mildly dyslexic. I'm English speaking and grew up in South Africa where we were forced to learn Afrikaans (Dutch-like) at school and used Afrikaans 80% of the time while in the army there so I can read/write/speak this fluently. I also learn to speak a bit of Zulu and Xhosa.

    While at University I thought I'd take some Xhosa courses and eventually packed it in because I was struggling so much to read Xhosa, though I could speak it better than most of the other kids.

    This leads me to think that once one builds a certain familiarity with any language, one can cope with the scramble.

    To me, the most interesting part of this discovery/research is that it might find a way to help dyslexic kids. I sure hope so.

    --
    Engineering is the art of compromise.
  34. And for those of you who remember murf.com... by Mattcelt · · Score: 2, Funny

    F u cn rd ths u cnt spl wrth a drn.

  35. spam by SebNukem · · Score: 2, Insightful

    Bad news, bad news. This seems like a good way to pass through bayesian email filters.

  36. Things just spread like wildfire... by Soul-Burn666 · · Score: 2, Insightful

    Every once in a while, I see a funny thing on some IRC channel, forum or whatever. And then I keep getting that funny thing from every posible place...

    I got this lteters thingy yesterday, and today my dad told me: "I just got a mail with something really interesting" so I asked: "is that the thing about reading words with scrambled letters?" I wasn't surprised to hear that it was that....

    Same thing goes with the badgerbadger flash... I'm pretty sure everyone here saw that aswell...

    --
    ^_^
  37. Someone has to say it... by mog007 · · Score: 2, Funny

    I, for one, wlecmoe our new msispleegin ovrelrods

  38. yeah... by commodoresloat · · Score: 4, Funny

    and I, for one, wlcemoe our new dslyxeic ovlrerdos!

  39. Mod up article! by haggar · · Score: 2, Insightful

    This is the first time I have read something truly original, genuinely new and important, on Slashdot!

    This is a breakthrough for a great part of humanity - it almost puts in question why should we even write the way we do. Sure, legal documents and such will stil have to be thorough and correct, but maybe a lot of other human-created docs could be leniant on typos, as long as the word contains all the necessary letters and the first and last letters are in place.

    This thing really, truly works!

    --
    Sigged!
  40. This is old news, here's the original by thejackol · · Score: 5, Interesting

    This is so darn old... I thought Slashdot was bleeding edge! Here is the original forward FYI:

    Titled: Do Spellings Matter?

    "... randomising letters in the middle of words [has] little or no effect on the ability of skilled readers to understand the text. This is easy to denmtrasote. In a pubiltacion of New Scnieitst you could ramdinose all the letetrs, keipeng the first two and last two the same, and
    reibadailty would hadrly be aftcfeed. My ansaylis did not come to much beucase the thoery at the time was for shape and senqeuce retigcionon.

    Saberi's work sugsegts we may have some pofrweul palrlael prsooscers at work. The resaon for this is suerly that idnetiyfing coentnt by paarllel
    prseocsing speeds up regnicoiton. We only need the first and last two letetrs to spot chganes in meniang"

    And if you liked *that* one so much, you might like this one too:

    Read the sentence below carefully:

    "I do not know where family doctors acquired illegibly perplexing handwriting nevertheless, extraordinary pharmaceutical intellectuality counterbalancing indecipherability, transcendentalizes intercommunications' incomprehensibleness".

    This is a sentence where the Nth word is N letters long.

    e.g. 3rd word is 3 letters long, 8th word is 8 letters long and so on.

    And if you like that one too, here is another one you can try to kill your boredom...

    While sitting, draw clockwise circles on the ground with your right foot. While doing that, try drawing the number "6" in air with your right hand.

    Your foot will change direction.

  41. impruvd inglis by Anonymous Coward · · Score: 5, Funny

    I like the proposed UN English language modifications to make English easier for everyone to learn!

    The European Union commissioners have announced that agreement has been reached to adopt English as the preferred language for European communications, rather than German, which was the other possibility.

    As part of the negotiations, the British government conceded that English spelling had some room for improvement and has accepted a five-year phased plan for what will be known as EuroEnglish (Euro for short).

    In the first year, "s" will be used instead of the soft "c". Sertainly, sivil servants will resieve this news with joy. Also, the hard "c" will be replaced with "k". Not only will this klear up konfusion, but typewriters kan have one less letter.

    There will be growing publik enthusiasm in the sekond year, when the troublesome "ph" will be replaced by "f". This will make words like "fotograf" 20 per sent shorter.

    In the third year, publik akseptanse of the new spelling kan be expekted to reach the stage where more komplikated changes are possible. Governments will enkorage the removal of double letters, which have always ben a deterent to akurate speling. Also, al wil agre that the horible mes of silent "e"s in the languag is disgrasful, and they would go.

    By the fourth year, peopl wil be reseptiv to steps such as replasing "th" by "z" and "w" by " v".

    During ze fifz year, ze unesesary "o" kan be dropd from vords kontaining "ou", and similar changes vud of kors be aplid to ozer kombinations of leters.

    After zis fifz yer, ve vil hav a reli sensibl riten styl. Zer vil be no mor trubls or difikultis and evrivun vil find it ezi tu understand ech ozer. Ze drem vil finali kum tru.

  42. Compression? by PotatoMan · · Score: 2, Funny
    Does this suggest we can compress English text by retaining first, last, and length? Given that we can represent chars with 5 bits, and use another 5 bits for length, we should be able to pack words into two bytes, including a parity bit.


    Does this work only for English? Or only for Romance languages? Or can we find a similar scheme for any language?

  43. Implications for Phonics vs. Whole-word Debate? by Xthlc · · Score: 4, Interesting

    My parents are both teachers, and one of the most tiresome quarrels in education is Phonics vs. Whole-Word debate. Do you teach someone to read by teaching them how to sound out syllables (phonemes)? Or do you teach them to recognize whole-word patterns by rote?

    Experimentally, a pure-phonics approach has proven to have the highest success rate. However, these results would suggest that whole-word approach *does* map onto some important cognitive structure . Perhaps this means that, once past the basic level, whole-word techniques would prove to be valuable in turning beginning readers into advanced readers.

    1. Re:Implications for Phonics vs. Whole-word Debate? by Vaughn+Anderson · · Score: 3, Interesting
      Don't the number of exceptions to the phonics generalizations hamper it greatly as a tool?

      I am no reading expert but a good friend of mine is. From what I gathered from him is that the actual act of "decoding" a written word into a spoken word is the very first step in reading.

      If you don't know what the sound the letter "P" makes you can never ever read the letter. So the basics of reading _is_ phonics. Phonics is not some kind of "method" of teaching how to read, it is a process that every single person reading this text right now has to go through in order to decode the imagery into a sound.

      Then once the person get's good enough at it they no longer have to focus concious attention to the decoding process as it becomes automatic.

      But even I as a very skilled reader when I run into a very new, large or complex word I _have_ to sound it out, or attempt to, because that is the only way a human being can read.

      Decoding visual symbols to auditory symbols = phonics.

      Then after the steps of decoding comes comprehension, which is totally seperate from decoding. (I am sure I have the order of events wrong here...) A child can sound out the sentence-

      "Frank went to the market to buy a german shepard"

      -but they still need to understand what they decoded. Whole language is a guessing game based on assumptions and values that are not concretely 100% based on a system of the intetional ordering of the letters in relation to their auditory equivilants.

      As adults we can use whole language easily in the sense that we can guess words based on previous knowledge of the word (written and spoken) but not so for a small child that has never decoded any words.

      As an example my daughter likes to guess words because that is how they started in Kindegarten, with sight words ( a huge mistake ). So she started with the habit of merely memorizing shapes of words without even considering the auditory values of the letters of those words.

      After teaching my daughter some very basic decoding skills based on help from my friend, my daughter learned to read words she's never seen before. She read the word "giraffe" all by herself using her new found decoding skills. I gurantee you that no skills of the "whole language" idealogy would come close to providing this kind of reading ability in a 6 year old kid.

      Can you explain in detail, step by step how you know how to read the word "giraffe"? In whole language you don't have steps to parse the sounds out and recombine them.

      Here's the logic.
      1. "g" sounds like G as in "Great"
      2. "ir" sounds like "er" as in "Her"
      3. "a" sounds like "a" in "hat"
      4. "ff" sounds like "f" in "fast"
      5. "e" sounds like "e" in "see"

      Then the child comes initially with the word "geraffy" when it should be "jeraf"

      The child at age 6 knows many thousands of words, and does not recognize "geraffy" so...

      1. Child recognizes the silent "e"
      2. Over compensates and makes the "a" sound like "a" in "bay"
      3. "g" can sound like "j"
      4. Now has word "jerayf"
      5. Reverts the "ay" to "a", considers it a mistake, and gets-
      6. "jeraf" which is the correct sound, at which time the child jumps up and down with glee.

      But even easier is reading the word in a sentence. "I saw a giraffe at the zoo today"

      As competent readers we automatically do all the calculations that this child does when we find a new word. After a number of times reading a word, the decoding is either automatic and extermely fast or as I like to view it in my own mind, there is a pre-rendered cached version of the word "giraffe" sitting in my mind, so when I see the word in it's whole, I know it's meaning without having to completely parse the word a single block at a time (by letter) but by the whole word itself.

      Some of this is my opinion and the rest is raw fatual data.

  44. Simpler Perl scrambler by isomeme · · Score: 2, Interesting

    Enojy :)

    #!/usr/bin/perl -p
    # scram: scrambles the innards of words
    # Usage: scram <input-text >scrambled-text
    # Craig Berry (20030915)

    s/
    ([a-z]) # Initial letter
    ([a-z]{2,}) # Two or more middle letters
    ([a-z]) # Final letter
    /$1 . shuffle($2) . $3/egix;

    # Fisher-Yates shuffle

    sub shuffle {
    my @chars = split //, shift;
    my $i = @chars;
    while ($i) {
    my $j = rand $i--;
    @chars[$i, $j] = @chars[$j, $i];
    }
    return join '', @chars;
    }

    --
    When all you have is a hammer, everything looks like a skull.
  45. Common technique! by lonesome+phreak · · Score: 2, Interesting

    This is a common thing when learning speed-reading. You basically do the same thing, but ignore the rest of the word and intuitivly know what the word was from the other words in the sentence.

    However, it also makes reading out-loud difficult when you are used to skipping words when you read them.

    --
    Maybe we DID take the blue pill. You wouldn't remember anyway.
  46. Ok, so let me get this straight. by BlackBolt · · Score: 2, Insightful

    ... all of a sudden, some blogging scientist-types not only think that dyslexia is cool, they actually write perl code to dyslexitize perfect spelling? Are we TRYING to kill the education system?

    Where was this research when I was in Grade 5? If bad spelling was cool, I'd have won a Pultzier Przie by now.

    But seriously folks, it's obviously true that people NOW can read this jumble easily, but that's because we all spend so much time on the internet. We're ACCLIMATIZED to it by now. In fact, we're DESENSITIZED to it. I just ignore it now, like my friend Vince, who doesn't even realize he's got a blue screen, they happen so often.

    They should just rename the internet the Itnerent, the spelling's so bad.... Ask your grandfather to read the same passage you breeze through and watch the cursing begin. See my piont?

  47. We use short words by craw · · Score: 2, Funny

    Is this an incommensurable phenomenological hypothesis or the manifestation of the inteligibility of idiomatic individualistic intercommunications?

    Want me to scramble this?

  48. The Definitive Misspelling Post by The+Monster · · Score: 3, Funny
    I think your post is proof that we definately do need the middle letters.
    But it's apparently not so definite which letters we need.

    <sigh>

    --

    [100% ISO 646 Compliant]
    SVM, ERGO MONSTRO.

  49. Compression worse... by douglips · · Score: 4, Informative

    That's easy. Let's say you have a text file that consists of 14,000 instances of the word "begat". This compresses to a file that simply indicates "repeat 14,000 'begat '".

    Now, after you scrmable it, it's got equal quantities of begat, beagt, baget, baegt, bgeat, and bgaet. It's not so easy to compress any more.

    Essentially, you're increasing the entropy of the file by a fair amount. Truly random data is not so easy to compress as english, because english has lots of order. Added disorder or entropy means compression is just not as easy.

    1. Re:Compression worse... by InadequateCamel · · Score: 2, Informative

      >Essentially, you're increasing the entropy of the file by a fair amount.

      Pardon me for being picky and off-topic, but this is a little peeve of mine...

      Definition: Entropy
      n 1: (thermodynamics) a measure of the amount of energy in a system that is available for doing work; entropy increases as matter and energy in the universe degrade to an ultimate state of inert uniformity [ant: ectropy]

      "Disorder" is a terrible way of describing entropy, and to use the word entropy to describe disorder is even worse. Having said that, in computing the word has long since been hijacked to mean disorder (Shannon's formula?), so I must admit that your use is a little more valid than "My bedroom has a high degree of entropy".

      Just my 2 cents! (sorry)

    2. Re:Compression worse... by HalB · · Score: 2, Informative

      Actually, entropy is the energy NOT available to do work...

      Even though the original poster did misuse entropy, even in the information theory context... From www.dictionary.com:

      2. A measure of the disorder or randomness in a closed system.

      and Webster.com:

      1 : a measure of the unavailable energy in a closed thermodynamic system that is also usually considered to be a measure of the system's disorder

      Get over it. 8')

    3. Re:Compression worse... by CarlDenny · · Score: 3, Informative

      The first half dozen occurances of the definition you quoted also included:
      2: (communication theory) a numerical measure of the uncertainty of an outcome; "the signal contained thousands of bits of information"

      If it's a pet peeve of yours, perhaps you should make a study of statistical mechanics and information theory, where the concept and term are more clearly and quantitatively defined. With a slightly deeper understanding of statistical mechanics, you will find that ther term is more fundamental than you thought, and that they are mathematically identical, applied to two separate fields. With this understanding, your objection is similar to saying that length is defined by the distance between two ends of an object, and that talking about the length of a file, or a length of time, is completely wrong.

      While the term originated in thermodynamics, it was given a formal definition (even within the realm of physics) by Boltzmann with the development of statistical mechanics. Statistical mechanics allow Boltzmann to formulate and discuss entropy well in advance of energy or temperature. When they do enter the picture, thermodynamic (dQ/dt) entropy is identical to the statistical definition, with temperature defined by 1/t = d(Energy)/d(entropy) where those ds are partial derivatives. It's actually a fascinating topic, and a beautiful mathematical insight.

      The description and definition used by Boltzmann for statistical mechanics are exactly the same as those used in information theory:
      Entropy = Sum (-p(state)*ln(p(state)))
      (over all possible states)
      Or, with all states equally likely (the equipartition principle):
      Entropy = ln( # of possible states)

      Which is, of course, why Shannon used the term and the definition.

      Sorry to contradict you, but misunderstandings and misuse of the term entropy are also pet peeves of mine, and this is not one of them. ;)

  50. Original research by fafalone · · Score: 2, Interesting

    I brought this up over at ScienceForums yesterday, and someone pointed to the mentioned article that says: "They wrote up their results in the 29 April 1999 issue of Nature, but I've been unable to find it online."
    The original article that particular blog is based on can be found here
    Abstract is here
    and full text (HTML and PDF w/ images) for those without access to Nature is here

    However, this research was done on words that are reversed, not internally scrambled. I have been unable to locate research on the letter order within longer words, however the principle is accurate and I'm sure it exists.

  51. funny you mention this by _avs_007 · · Score: 2, Interesting

    I work in a lab. A while back, we did a useability(sp?) study on user interfaces.

    We were trying to figure out why text messaging on phones is such a hit in Japan, and yet everyone over here thinks its rather clumsy.

    The study basically pointed out, that to say something like, "I love you", requires you to "type" a lot of characters to convey that message. Using Kanji, one or two characters will suffice. I should've known, (being married to a chinese person), but after I thought about it, it makes a lot of sense. I have flashbacks of watching old chinese movies, and seeing the characters say a few characters, and the english subtitles would be a paragraph long.... And conversly watching english movies, and the guy rambles on-and-on, and the subtitles contains a handful of chinese characters...

  52. Rmiends me of... by TamMan2000 · · Score: 4, Funny

    Pron

    Cna't beileve I was the frist to say it...

    --
    "I'll have a Guinness, no wait, make that a Coors Light" -Grad student I work with, who shall remain anonymous...
  53. Blows Ashcroft's E-Mail Monitor out of the water by Bob+Munck · · Score: 2, Insightful

    "Carnivore" or whatever it's called now suddenly has a much harder problem. Add a liberal use of slang (pun intended), metaphores, spoonerisms, and the massive and increasing volume of spam that also has to be scanned, and it's probably out of business.

  54. Ascenders, Descenders, & ALL CAPS by Skiffley · · Score: 2, Interesting

    As a graphic design student, I have been taught that it is more difficult to read blocks of text that have been made in ALL CAPITAL LETTERS. The reason for this is that the ascenders (pieces going up from the main body of the word, like the top of the "d" in "word") and descenders (like "y" in "you") help us to see the word at a glance. In effect, once we have gotten used to reading the english language, we no longer read letters at all, but words as whole characters. Even when the middle letters are scrambled, the letters have almost the same shape. I would like to see someone try this little experiment with capital letters, as I doubt it would work nearly as well.

  55. Come get me RIAA by Apreche · · Score: 2, Funny

    Let's see if they search for

    Led Zlepneipn - Sriawty to Hvaeen.mp3

    hahahahah!!!!!

    (applies pearl script to mp3 directory)

    --
    The GeekNights podcast is going strong. Listen!
  56. Depends on redundancy in language by Kjella · · Score: 2, Insightful

    As you know, we don't use nearly all the combinations of letters. I imagine the more "compact" the language, the more combinations in use, the less intuitive it is.

    Most of the time we'll probably read it correct based on context anyway (e.g. expecting a verb, not a noun), but I imagine it'll be much harder and confusing.

    Kjella

    --
    Live today, because you never know what tomorrow brings
  57. This might help by pbox · · Score: 2, Informative

    Because english words are made up of some common components. 'i' always comes before 'e' in 'ie' pairs, for example.

    My neighbor weighed your argument. He used a beige scale, and decided it was probably the heinous act of a foreigner to make such a statement. And you're weird. So rein in yourself, and remove the veil of ignorance, ye feisty cad!

    Thou should forfeit karma, but that is neither here nor there.

    --
    Code poet, espresso fiend, starter upper.
  58. The role of context.. by eniu!uine · · Score: 2, Insightful

    I wonder how much context has to do with our understanding of these sentences. Take for example these words, scrambled and taken completely out of context:

    rteglus
    blafams
    frignde

    It could be very frustrating to someone attempting to unscramble them when they find out they were completely random. It's just this sort of frustration that would make someone like me laugh out loud, or lol in the parlance of our times.

  59. Korean pictogram based? I think not by yerricde · · Score: 2, Interesting

    Chinese is ideographic, and Japanese combines Chinese ideograms ("kanji") mixed with phonetic syllable signs ("kana"). Korean has an actual alphabet ("hangul"), except that instead of the letters coming in a row as in Latin, Cyrillic, or Hebrew, each syllable is packed into a box. Korean used to be written with borrowed Chinese ideograms, but nowadays the alphabet dominates writing.

    You can Read more about Hangul, but you may have to have Korean support installed on your OS to display the Hangul characters.

    --
    Will I retire or break 10K?
  60. bah! real men only need 1 line by d_i_r_t_y · · Score: 2, Funny
    perl -pe 's/\b(\w)(\w{2,})(\w)\b/ @a = split m||, $2; $1 . join("", map { splice @a, int( rand @a ), 1 } (1 .. length $2)) . $3; /ge'
    1. Re:bah! real men only need 1 line by Jamie+Zawinski · · Score: 3, Insightful

      Uh huh, and you probably post to Slashdot by tapping on the ethernet jack with battery and a paper clip, right?

      People who actually know how to program realize that while line noise one-liners are sometimes a cute party trick, it's a worthless way to program.

      The more your Perl looks like static, the less well you have written it.

    2. Re:bah! real men only need 1 line by d_i_r_t_y · · Score: 2, Funny

      i think you missed the implicit sarcasm tags. :-)

  61. I downloaded the script - the copyright is no good by NotQuiteReal · · Score: 2, Funny

    I got the perl script. The first thing I notice is that the copyright is tllatoy unecnofirble...

    --
    This issue is a bit more complicated than you think.
  62. Re:I downloaded the script - the copyright is no g by Jamie+Zawinski · · Score: 2, Interesting

    You know, I'm not so sure about that -- is a license rendered invalid just because contains spelling errors? I strongly suspect not.

    (Anyway, the copyright is enforcable because everything is copyrighted by default, even if it has no notice at all. The interesting question is whether the license I put on that thing actually grants you any rights. I think it probably does.)

  63. Bit of a simplistic article... by quinkin · · Score: 5, Interesting
    The best example I can think of for comprehension failure with jumbled text is with ordered interdependant phonemes. For instance - "eau", or "ough".

    Turhgoh = Through

    A topic that does not seem to have had much coverage in this article is the actual iconic visual recognition that our brains appear to use in word recognition.

    Obviously each word approximates a patterned rectangle (serif fonts emphasize this further) with occasional outliers (ie. t, y, l, and any other letters that protrude above or below the base rectangle).

    People with poor eyesight rely on this fuzzy but fast recognition frequently. In fact there is a classic psych experiment based around displaying a word that iconically is very similar to another word, while simultaneously presenting a context that implies the second word, and asking the subject to record the word. The subject mis-records the word roughly 90% of the time.

    Q.

    --
    Insert Signature Here
    1. Re:Bit of a simplistic article... by Biffer4810 · · Score: 2, Funny
      In fact there is a classic psych experiment based around displaying a word that iconically is very similar to another word


      Ironically, this word is very similar to another word... ;)

      --
      -.-- -.-- --..
      One fish / Two fish / Red fish / Blue fish
      ShyaOS - Think Differently!
  64. Real world application by ThesQuid · · Score: 4, Insightful

    Actually, I can think of one extremely interesting application for this idea - cryptography. It is actually highly intelligible, but definitely bound to give any code-breaking algorithims headaches when trying to correlate know words to patterns. I may have to try doing this to send messages to my friend in a chinese prison. I'm sure it would give the censors fits trying to translate it.

  65. A sample sentence by Azureflare · · Score: 3, Funny
    Context is used to determine the actual meaning of the word. A word can be spelled randomly as another valid word. I think given a sample sentence, the true meaning can be derived.

    "Tikang garet crae, I septped bihend the gril, and fdnoled her basters"

    Um, that is a little hard to read isn't it. Well, ok, I think you're right. Notice "gril" and "basters" in the same sentence, make you think of cooking.

    And yes, this statement could be offensive. Well, I'm male. I can't really help it.

  66. I am dyslexic by revividus · · Score: 2, Funny

    Yuo inesnsivite cold!

  67. Errors and inconsistencies by zeath · · Score: 2, Interesting

    I noticed, while testing the script out with a paper I happen to be in the process of writing, that compound words do not seem to work with this scheme. Though I'm hardly a linguist, it may be a result of the compound word being translated seperately and then placed together when we read it. When the letters intermingle, we aren't able to differentiate the two halves.
    Examples from the paragraph I tested with are "worldview", "afterlife", and "humankind". I'm sure iterations that keep the halves partially seperate would be readable, but ones I came up with (like "wirovdelw") simply make no sense.
    Other, larger words that I've noticed do not work are "consciousness" and "unenlightened", though I'm sure it wouldn't be too isn't unusual to expect large words to begin to obfuscate themselves too much.
    This doesn't explain the shorter words that seem to obfuscate very readily, such as "religion" and "autonomous". Once letters and/or vowels become repitious and clump together, the word seems to be more difficult to readily decrypt. I can also confirm this is true from my experience of occasionally playing TextTwist on Yahoo! Games.

    (end random paper-avoiding post)

  68. CmdrTaco? by smyle · · Score: 2, Funny
    Hey Taco,

    There's no need to make up "news" to justify your poor speeling.

    --

    Sleep is just a poor substitute for caffeine, anyway. -Bob Lehmann

  69. Re:ok, like four PhDs here by router · · Score: 2, Interesting

    1. At what age does this manifest itself?
    2. Does this work in other languages? I am guessing japanese (at least) would not work....
    3. What implications does this have for cryptology, in that you can't look for strings anymore?

    Big Bonus question:
    4. If 2 is false, in that it doesn't work for other languages, is this intrinsic property of English the reason that English has become the language of global business or is it simply a by-product of English being spoken by those who sailed the world and conquered the world (British and American Imperialism)? ie because English is recognisable after mangling, is that the reason that it is so "popular"?

    Inquiring minds want to know....

    andy

  70. Word shape is key by Simon · · Score: 2, Insightful
    The reason why this scrambling stuff works is that for the most part it maintains the graphic 'shape' of the words. We read words and phases not by looking at the letters but for recongnising the shape of the words. The first and last letters being important, but also the ascenders (liftbd) and the descenders (jpqyg), since the have the most impact of the shape of the word. This helps explain why uppercase is also hard and slow to read, even when spelt correctly -- all of the words have the same square shape. And it also explains why the scrambling trick does really work if you replace the middle letters with '-'s of underscores. It totally destroys the shape of the words.

    --
    Simon

  71. Regarding question two, I think. by infernow · · Score: 2, Interesting
    This has turned into a theory as to why English can be mangled so. Here it is in all its splendor:

    Modern English is the offspring of many different older languages (as you may know). These languages all had varying ways of representing different sounds with the alphabet given to them by the Romans. When English took all of these methods and combined them into one language. Thus, there are many different ways of creating the same sound, or phoneme.

    Therefore, English does not encode the spoken language into text exactly. Though there are some sounds that can only be created one way ('ng' and 'ch' come to mind), many can be spelled numerous ways. For example: whir, were, and work have the same sound in them, but are spelled differently. This makes spelling words in English more difficult, but makes identifying misspelled words easier. You could say English now comes with error-correction. This has no doubt helped it remain in existence, despite its lack of consistent grammar rules and general lack of user-friendliness.

    Disclaimer: I blame any grammatical or logical errors on my lack of sleep. Now I'm going to bed.

    --

    that that is is that that is not is not

  72. Doesnt really work with German by BibelBiber · · Score: 2, Interesting

    Hi, I just tried that script with a german Tagesschau.de article which is like this: Viele altere Lehrer, zu groBe Klassen, zu wenig Studienanfanger - Deutschland hat laut der jungsten OECD-Bildungsstudie in vielen Bereichen weiter Nachholbedarf. Die zu geringe Zahl der Studenten ist nach Ansicht der OECD auch fur die aktuelle Wirtschaftsschwache mitverantwortlich. scrambled its like this: Veile altere Lheerr, zu groB Ksselan, zu wineg Sninuetdafanegr - Dnulsaechtd hat laut der junstgen OECD-Biudgdsunsitle in vielen Bechreein weteir Nohahlbeacrdf. Die zu gniegre Zhal der Sutednetn ist nach Ahscnit der OECD acuh fur die akleulte Wftrchhssacstiwache martcrwntvoieilth. German words get too long unlike English.

  73. Written by Mark Twain? by Anonymous Coward · · Score: 2, Informative

    Some people have mentioned that they saw this years ago. Actually, it is usually said that Mark Twain originally wrote this!

    http://www.unifon.org/spel-fun.html
    http://www. i18nguy.com/twain.html

    (Too lazy for HTML)

  74. New Tool for Spammers by panda · · Score: 2, Funny

    So, am I really the first to realize that spammers would love this? Now, they can get a message through that a human can decipher, but that a computer would have a very hard time deciphering. You probably now need to attach a spell checker to your spam filter and if there are too many misspelled words, then trash the message. 'Course, I'd lose a lot of mail from my /. friends! :-)

    --
    Just be sure to wear the gold uniform when you beam down -- you know what happens when you wear the red one.
  75. Binary doesn't work! by e03179 · · Score: 2, Funny

    I'm guess this stuff wouldn't working in Binary. 011001101000110101111000

    --
    -516
  76. Nothin' in the middle matters, huh? by Asprin · · Score: 2, Interesting


    Wll, wht abt vwls? Ths r nncssry mst f th tm, t. N fct, nc y gt rd f th vwls nd mddl lttrs, y cn s hw trly wstfl th nglsh lngg rlly s!

    This reminds me of that old programming axiom:
    Every program has at least one bug.
    Every program can be reduced in size by at least one instruction.
    Therefore, by induction every program can be reduced to one instruction which doesn't work.

    --
    "Lawyers are for sucks."
    - Doug McKenzie