Results 1 to 26 of 26

Thread: Itenretisng...

  1. #1

    Thread Starter
    PowerPoster
    Join Date
    Feb 2002
    Location
    Canada, Toronto
    Posts
    5,803

    Itenretisng...

    Aotnher eamil I got:

    "cdnuolt blveiee taht I cluod aulaclty uesdnatnrd waht I was rdanieg.
    The phaonmneal pweor of the hmuan mnid, aoccdrnig to a rscheearch at Cmabrigde Uinervtisy, it deosn't mttaer in waht oredr the ltteers in a wrod are, the olny iprmoatnt tihng is taht the frist and lsat ltteer be in the rghit pclae. The rset can be a taotl mses and you can sitll raed it wouthit a porbelm. Tihs is bcuseae the huamn mnid deos not raed ervey lteter by istlef, but the wrod as a wlohe. Amzanig huh? yaeh and I awlyas tghuhot slpeling was ipmorantt!"

  2. #2
    Frenzied Member thegreatone's Avatar
    Join Date
    Aug 2003
    Location
    Oslo, Norway. Mhz:4800 x12
    Posts
    1,333

    Re: Itenretisng...

    Wow. Had this email so many times, and it's been discussed here half a dozen times already.
    Zeegnahtuer?

  3. #3
    Fanatic Member damasterjo's Avatar
    Join Date
    Nov 2005
    Location
    In front of my Comp DirectX7 EXpert
    Posts
    827

    Re: Itenretisng...

    wow that is seriously cool!v
    Software languages known:
    Qbasic - TI-Basic - Liberty Basic - Visual Basic 6
    Software API's known:
    Directx 7 and 8
    Internet languages, in the process of learning:
    HTML - JAVASCRIPT - PHP - CSS - MYSQL - AJAX

  4. #4

    Thread Starter
    PowerPoster
    Join Date
    Feb 2002
    Location
    Canada, Toronto
    Posts
    5,803

    Re: Itenretisng...

    We should make a program that scrambles the letters in words like that... and post the result in regular threads

    That will be fun !

  5. #5
    Hyperactive Member ..:RUDI:..'s Avatar
    Join Date
    Aug 2005
    Location
    Yorkshire, England! c0d: Da Vinci
    Posts
    344

    Re: Itenretisng...

    I mghit try it msyelf!

    But right, been posted before



    My Personal Home | MageBB Home | Elders Online
    Yes, Noteme is my father.

  6. #6
    Frenzied Member thegreatone's Avatar
    Join Date
    Aug 2003
    Location
    Oslo, Norway. Mhz:4800 x12
    Posts
    1,333

    Re: Itenretisng...

    Quote Originally Posted by CVMichael
    We should make a program that scrambles the letters in words like that... and post the result in regular threads

    That will be fun !
    NoteMe already does it
    Zeegnahtuer?

  7. #7

    Thread Starter
    PowerPoster
    Join Date
    Feb 2002
    Location
    Canada, Toronto
    Posts
    5,803

    Re: Itenretisng...

    Quote Originally Posted by thegreatone
    NoteMe already does it
    Haha

  8. #8
    Hyperactive Member ..:RUDI:..'s Avatar
    Join Date
    Aug 2005
    Location
    Yorkshire, England! c0d: Da Vinci
    Posts
    344

    Re: Itenretisng...




    My Personal Home | MageBB Home | Elders Online
    Yes, Noteme is my father.

  9. #9

    Thread Starter
    PowerPoster
    Join Date
    Feb 2002
    Location
    Canada, Toronto
    Posts
    5,803

    Re: Itenretisng...

    Quote Originally Posted by thegreatone
    NoteMe already does it
    We should ask NoteMe for the program his using, so we don't have to make it again

  10. #10
    Hyperactive Member ..:RUDI:..'s Avatar
    Join Date
    Aug 2005
    Location
    Yorkshire, England! c0d: Da Vinci
    Posts
    344

    Re: Itenretisng...

    NoteMe English Language Interpreter



    My Personal Home | MageBB Home | Elders Online
    Yes, Noteme is my father.

  11. #11
    The Devil crptcblade's Avatar
    Join Date
    Aug 2000
    Location
    Quetzalshacatenango
    Posts
    9,091

    Re: Itenretisng...

    Poop. Aw...dman it.
    Laugh, and the world laughs with you. Cry, and you just water down your vodka.


    Take credit, not responsibility

  12. #12
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Itenretisng...

    Noteme's Translation Service

  13. #13

    Thread Starter
    PowerPoster
    Join Date
    Feb 2002
    Location
    Canada, Toronto
    Posts
    5,803

    Re: Itenretisng...

    Cehck tihs out, cvoenrts form tx1Te.text to TxteT.2ext:
    Code:
    Private Sub Command1_Click()
        Dim Words() As String, TmpChar As String, RndC As Long
        Dim Lines() As String, K As Long, W As Long, C As Long
        
        Randomize
        Lines = Split(Text1.Text, vbNewLine)
        
        For K = 0 To UBound(Lines)
            Words = Split(Lines(K), " ")
            
            For W = 0 To UBound(Words)
                If Len(Words(W)) > 3 Then
                    For C = 2 To 1 + (Len(Words(W)) - 2) \ 2
                        Do
                            RndC = ((Len(Words(W)) - 3) * Rnd) + 2
                        Loop Until RndC <> C
                        
                        TmpChar = Mid$(Words(W), C, 1)
                        Mid$(Words(W), C, 1) = Mid$(Words(W), RndC, 1)
                        Mid$(Words(W), RndC, 1) = TmpChar
                    Next C
                End If
            Next W
            
            Lines(K) = Join(Words, " ")
        Next K
        
        Text2.Text = Join(Lines, vbNewLine)
    End Sub

  14. #14
    The Devil crptcblade's Avatar
    Join Date
    Aug 2000
    Location
    Quetzalshacatenango
    Posts
    9,091

    Re: Itenretisng...

    Quote Originally Posted by CVMichael
    Cehck tihs out, cvoenrts form tx1Te.text to TxteT.2ext:
    Code:
    Private Sub Command1_Click()
        Dim Words() As String, TmpChar As String, RndC As Long
        Dim Lines() As String, K As Long, W As Long, C As Long
        
        Randomize
        Lines = Split(Text1.Text, vbNewLine)
        
        For K = 0 To UBound(Lines)
            Words = Split(Lines(K), " ")
            
            For W = 0 To UBound(Words)
                If Len(Words(W)) > 3 Then
                    For C = 2 To 1 + (Len(Words(W)) - 2) \ 2
                        Do
                            RndC = ((Len(Words(W)) - 3) * Rnd) + 2
                        Loop Until RndC <> C
                        
                        TmpChar = Mid$(Words(W), C, 1)
                        Mid$(Words(W), C, 1) = Mid$(Words(W), RndC, 1)
                        Mid$(Words(W), RndC, 1) = TmpChar
                    Next C
                End If
            Next W
            
            Lines(K) = Join(Words, " ")
        Next K
        
        Text2.Text = Join(Lines, vbNewLine)
    End Sub
    I think I just orgasmed
    Laugh, and the world laughs with you. Cry, and you just water down your vodka.


    Take credit, not responsibility

  15. #15
    Frenzied Member thegreatone's Avatar
    Join Date
    Aug 2003
    Location
    Oslo, Norway. Mhz:4800 x12
    Posts
    1,333

    Re: Itenretisng...

    wow deos tihs porgram ralely wrok ?
    Aaptnarply So
    Zeegnahtuer?

  16. #16
    Hyperactive Member Juan Carlos Rey's Avatar
    Join Date
    Aug 1999
    Location
    Mendoza, Argentina
    Posts
    301

    Re: Itenretisng...

    Srory, I jsut cuolnd't rsesit!
    Combat poverty: kill a poor!!

  17. #17
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Itenretisng...

    Iesmuarongs.

    Don't suppose that rule really applies anymore.

  18. #18

    Thread Starter
    PowerPoster
    Join Date
    Feb 2002
    Location
    Canada, Toronto
    Posts
    5,803

    Re: Itenretisng...

    Quote Originally Posted by mendhak
    Iesmuarongs.


    What ?

  19. #19
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Itenretisng...

    Quote Originally Posted by CVMichael


    What ?
    Didn't you just say "it deosn't mttaer in waht oredr the ltteers in a wrod are, the olny iprmoatnt tihng is taht the frist and lsat ltteer be in the rghit pclae."?

  20. #20
    Banned
    Join Date
    Nov 2005
    Posts
    2,367

    Re: Itenretisng...

    It's obviously "Iresmangous."

    How could you not see that?

  21. #21

    Thread Starter
    PowerPoster
    Join Date
    Feb 2002
    Location
    Canada, Toronto
    Posts
    5,803

    Re: Itenretisng...

    If that actually IS a word... well, google did not find anything...

  22. #22
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Itenretisng...

    Iresmangous = Ignoramuses.

  23. #23
    Hyperactive Member capsulecorpjx's Avatar
    Join Date
    May 2005
    Location
    Renton, WA
    Posts
    288

    Re: Itenretisng...

    I wonder how that works with Mandarin.

    Maybe people don't read the whole character? Just the first and last strokes?
    "I like to run on treadmills, because at least I know I'm getting nowhere."
    - Me

  24. #24
    PoorPoster iPrank's Avatar
    Join Date
    Oct 2005
    Location
    In a black hole
    Posts
    2,729

    Re: Itenretisng...

    it deosn't mttaer in waht oredr the ltteers in a wrod are, the olny iprmoatnt tihng is taht the frist and lsat ltteer be in the rghit pclae.
    Tihs wlil olny wrok if you hvae a srotng varcaulboy.
    Usefull VBF Threads/Posts I Found . My flickr page .
    "I love being married. It's so great to find that one special person you want to annoy for the rest of your life." - Rita Rudner


  25. #25
    PoorPoster iPrank's Avatar
    Join Date
    Oct 2005
    Location
    In a black hole
    Posts
    2,729

    Re: Itenretisng...

    Honilticiaiistoudbnitafibur, 27 lteetrs lnog, is the lngoest Einlgsh wrod cstisoning sricttly of aretnatilg coannsnots and veowls. An eghetien letter wrod wtih tihs prpreoty is eioahcuorpamercler. A seeentevn lteter wrod wtih tihs pptoerry is hvmainssoiypsioet. Seitxen ltteer wdros wtih tihs poprerty iulcnde aioinstlmlicaues, dabitlezorpiaily, and spoergelratoriuy. Ftifeen lteter wrods wtih tihs pproerty idlcune ctayiguelovmros, hyzotroegesises, hxmidsienosaaes, prryxoisvmauaes, parasesanilinor, pliiroagtosacal, tdvsneoonitiyes, tsosnoeevitiyns, ulaanivmntiiegy, and vesisieilitudmr.
    Usefull VBF Threads/Posts I Found . My flickr page .
    "I love being married. It's so great to find that one special person you want to annoy for the rest of your life." - Rita Rudner


  26. #26
    Lively Member Wally Pipp's Avatar
    Join Date
    Jan 2002
    Location
    Carnivàle
    Posts
    79

    Re: Itenretisng...

    I suspect there are only 3 e-mail going around cleverly disguised as new mail every so often.
    A post brought to you by the Grim Reaper Appreciation Society™

    "Buy your lifetime subscription now and save on your coffin"

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width