header.gif banner2.gif Anim By: 45Acres
Categories

Charity
www.hrudaya.org
Advertisements
$12.95 Domains $4.95/mo  Hosting
Blog Roll
Archives

What would you do, if you are not afraid?

Visit www.dilt.orgVisit www.dilt.org
Google
 
Web www.ramdhanyk.com
Visit www.deeshaa.net

www.BPODigest.com i-Vortal


February 10, 2005

Utlra Seepd Raeidng - Ultra Speed Reading

Disclaimer:

There is no scientific evidence behind this application. This comes with no warranty.

Click here to access 'Ultra Speed Reading' practice applet.

To download the application go to this link.


FAQ


#0 What is this and where did this come from?
Ans: For a while there is a messsage that is travelling on internet about a research at Cambridge University. The message is as below:
Aoccdrnig to a rscheearch at Cmabrigde Uinervtisy, it deosn't mttaer in waht oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht the frist and lsat ltteer be at the rghit pclae. The rset can be a toatl mses and you can sitll raed it wouthit porbelm. Tihs is bcuseae the huamn mnid deos not raed ervey lteter by istlef, but the wrod as a wlohe.

Or rather...


According to a researcher (sic) at Cambridge University, it doesn't matter in what order the letters in a word are, the only important thing is that the first and last letter be at the right place. The rest can be a total mess and you can still read it without problem. This is because the human mind does not read every letter by itself but the word as a whole.


One day I tried reading this text and realized that when I read it fast, I am able to read it very easily. Then I thought of making an application which can randomly shuffle the words of a whole essay and try to increase my reading speeds. After developing it, I thought to open it up up for everybody, to use and benefit from it. I hope that this will help you to increase your reading speeds and comprehending abilities. If you find it useful, please let me know. I will be glad to hear from you.


#1 How should I read the shuffled text?
Ans: In my experience, if you try to read shuffled text slowly it will be difficult for you to read. But, if you read the FAST, you will be able to read it easily, thus increasing your reading speeds as well as your comprehending abilities.

#2 Applet is not loading. What should I do?
Ans: Please down load Java Plug in from http://java.com/en/download/windows_automatic.jsp. Restart your computer and you should be good to go.

#3 I am not able to copy paste content from external sources. What should I do?

Ans: This happnes due to the security constraint of the browser. You have to do a few things to allow this to happen.

    a) Follow step #2.

    b) Locate a Java Icon in the from of java cup in right-bottom corner of your computer if you are using Windows operating system.

    c) Right click on the Java cup icon and select "Open Control Panel".

    d) In the pop-up window select "Open/Show Control Panel" radio button as shown in the images below. You will be able to see on of the below images based on the java version on your desktop. Once done go ahead and open a new browser and you should be able to copy paste content from external sources.





#4 Still have questions more questions?
Ans: Mail me @ ram.dhan@gmail.com


Finally, I love to hear your comments from you, please feel free to leave a comment below.

Posted by Ramdhan Yadav at February 10, 2005 11:36 PM Perma Link
Comments

Hi Ram,
Can i get a desktop copy of the applet- something like an executable - so that i can run the tool as and when i need it, without connecting to the internet?

Thanks,
Satish VArma

Posted by: Satish Varma at March 13, 2005 03:03 PM

Hi Satish,

I Didn't think about it, i will compile a desktop version and upload it soon.

Posted by: Ramdhan Kotamaraja at March 13, 2005 06:35 PM


Hi,

Your applet is on the right track, and I was HAPPY to find it, but it has a major flaw (in my opinion).

I would suggest that it ALWAYS scramble any word of four or more letters if it can.

As it is currently behaving, it allows the unscrambled form of the word as one of the possible outcomes. This causes text not to scramble enough .

For example, I put in the following text:

Are the new voip telephones really good enough ?
I find that the quality of sound is not great,
particularly when I use the phone to record the
greeting of another phone line, such as my cell
phone.

and your applet produces:

Are the new viop tleephoens raelly good enoguh ?
I find that the qauilty of sunod is not graet,
partiuclarly wehn I use the ponhe to record the
gretenig of another pnohe lnie, scuh as my cell
phnoe.

It would be better in my opinion if the scrambled version of this text were NOT allowed to show "find" or "that" or "record" or "another" or "cell" .

In other words, my request is that if the applet can scramble a word under the rules (which it can for most words longer than 3 letters, not all, since the word "good" can't be scrambled !) then it should scramble it.

What do you think ?

Thanks !

EricOsman@rcn.com 8-dec-2005

Posted by: Eric Osman at December 8, 2005 11:22 AM

can i get the desktop version or can u tell me where i can download this script ?

Posted by: MikeHo at December 26, 2005 03:15 AM

Hey Ramdhan Yadav,

Men you are really doing a good job. I found the application quite intresting. Can you mail me the application so that I can use it as and when required.

Regards,
Ashish Malpani.

Posted by: Ashish Malpani at February 11, 2006 11:28 PM

Hi Eric,

Thank you for the good comments and pointers. My objective of developing this tool is just to help people practice speed reading. Scrambling each and every word is not a necessary requirement.

Mike/Ashish,

I will try to release a desktop version asap.

Thank You,

Posted by: Ramdhan Yadav at May 27, 2006 06:02 PM

Very interesting! I saw this first on NGC channel a few days ago, and decided to try it for myself. I wasn't aware of this applet so I wrote my own pascal program just a few hours ago to check it out, see below.


PROGRAM BEW;
VAR CH: CHAR;
TEST:BOOLEAN;
INF,OUTF: TEXT;
K,TEL: BYTE;
ARPERM: ARRAY OF BYTE;
ARCH: ARRAY[1..256] OF CHAR;
FUNCTION TESTLET(X:CHAR):BOOLEAN;
BEGIN
CASE X OF
#65..#90,#97..#122,#128..#151,#153,#154,#159..#165,#181..#183,
#198,#199,#210..#212,#214..#216,#224..#229,#233..#237: TESTLET:=TRUE
ELSE
TESTLET:=FALSE;
END;
END;
PROCEDURE PRM(N:BYTE;VAR AR:ARRAY OF BYTE);
VAR INTM,K,R:BYTE;
BEGIN
FOR K:=0 TO N-1 DO
AR[K]:=K;
FOR K:=0 TO N -2 DO
BEGIN
R:=RANDOM(N-K)+K;
IF R>K THEN
BEGIN
INTM:=AR[K];
AR[K]:=AR[R];
AR[R]:=INTM;
END;
END;
END;
BEGIN
RANDOMIZE;
ASSIGN(INF,'IN.TXT');
ASSIGN(OUTF,'OUT.TXT');
REWRITE(OUTF);
RESET(INF);
REPEAT
READ(INF,CH);
IF TESTLET(CH) AND NOT(EOF(INF))
THEN
BEGIN
TEL:=0;
REPEAT
TEL:=TEL+1;
ARCH[TEL]:=CH;
READ(INF,CH);
TEST:=TESTLET(CH);
UNTIL NOT(TEST) OR EOF(INF);
IF TEST THEN BEGIN
TEL:=TEL+1;
ARCH[TEL]:=CH;
END;
IF TEL>3 THEN BEGIN
SETLENGTH(ARPERM,TEL-2);
PRM(TEL-2,ARPERM);
WRITE(OUTF,ARCH[1]);
FOR K:=0 TO TEL-3 DO WRITE(OUTF,ARCH[ARPERM[K]+2]);
WRITE(OUTF,ARCH[TEL]);
END
ELSE FOR K:=1 TO TEL DO WRITE(OUTF,ARCH[K]);
IF NOT(TEST) THEN WRITE(OUTF,CH);
END
ELSE WRITE(OUTF,CH);
UNTIL EOF(INF);
CLOSE(INF);
CLOSE(OUTF);
END.

Posted by: Count Iblis at July 10, 2006 06:23 PM

I find it annoying that you can not copy and past text into the applet. It is kind of redundant to have to type your own text in, before re-reading it.

Posted by: Charles Allen at August 21, 2006 05:05 AM
Post a comment









Remember personal info?








Please click the POST button ONLY ONCE, it might take a while to post your comment as a spam checking program is running in the background