Spritz – read 500 words per minute without any training
21–30 of 216 posts
Re: Spritz – read 500 words per minute without any training
#22Looks like the same technology as spreeder ( http://www.spreeder.com/app.php )... what's the difference between the two? As someone who tried using spreeder for a while, I can say that your retention is quite a bit lower than normal reading, especially when reading complicated texts, since you loose contextual clues (your brain is really good at doing look-aheads for clues).
Re: Spritz – read 500 words per minute without any training
#23I wonder whether this uses the front-facing camera for blink detection, particularly at higher WPM settings. A blink typically lasts 100-400ms (per Wikipedia), and 500 WPM is .8333... words per 100ms. A blink thus seems very likely to miss a word or two once you're using this the way its creators intend. I don't see any mention of blinking or mitigating its impact on the site, though.
Re: Spritz – read 500 words per minute without any training
#24This is called RSVP. It is easier (for the same WPM) with 2-4 words at a time than 1 word. I really hope this catches on more and allows different chunk sizes. 500 wpm with no training is an exaggeration. wpm also depends a lot on which book you're reading. however, RSVP is the fastest way to read and way over 500 wpm is possible with practice.
Re: Spritz – read 500 words per minute without any training
#25I'm impressed. I often get my Mac to read things to me as I find it difficult to follow text. This was great.
@achalkley what speed do you use? This is where I have mine: http://i.imgur.com/nIO0gRw.png It's a little quick, but it keeps thing interesting ;)
Re: Spritz – read 500 words per minute without any training
#26Looks like the same technology as spreeder ( http://www.spreeder.com/app.php )... what's the difference between the two? As someone who tried using spreeder for a while, I can say that your retention is quite a bit lower than normal reading, especially when reading complicated texts, since you loose contextual clues (your brain is really good at doing look-aheads for clues).
Re: Spritz – read 500 words per minute without any training
#27That's interesting. A technology like this was predicted, on theoretical grounds from reading research, in the book Reading in the Brain [1] by Stanislas Dehaene (which I highly recommend as a very good read). For years 500 words per minute (approximately one printed page per minute) has been my baseline speed for most of the material I read in English. I read slower in my second languages, of course. Back in my coll…
How many second languages can you have?
Re: Spritz – read 500 words per minute without any training
#28I wonder whether this uses the front-facing camera for blink detection, particularly at higher WPM settings. A blink typically lasts 100-400ms (per Wikipedia), and 500 WPM is .8333... words per 100ms. A blink thus seems very likely to miss a word or two once you're using this the way its creators intend. I don't see any mention of blinking or mitigating its impact on the site, though.
Re: Spritz – read 500 words per minute without any training
#29As someone with horrible reading speed, the demo on their home page worked pretty well. I'd like to see a demo with some more advanced text. Marketing language is pretty easy to digest quickly. I'd like to see a selection from Gödel, Escher, & Bach or something to see how well I could comprehend more dense texts.
Re: Spritz – read 500 words per minute without any training
#30Compile: c++ speedread.cpp
Usage: ./a.out [delay_in_ms] Should work on Mac and Linux, and maybe Windows if you uncomment the first line. (Looks like a #include needs to be included to make it compile on Linux. Not sure what I don't need that on Mac).
It's kind of fun. I played around with showing words at a constant rate, and with throwing in an extra delay whenever there was punctuation. The version below does the latter. I had thought of this as a possibly good way for displaying text on the limited phones of the early 2000s. Also, I thought it might be an interesting way to display status information on many processes at once. A display line wide enough to display, say, 10 words could be used to display 10 status messages at once instead of one.
Oh...2 clause BSD license, if anyone cares.
//#include
#include
#include
#include
#include
#include
#include
typedef unsigned long DWORD;
bool cont = true;
void
stop( int sig )
{
cont = false;
}
void
Sleep( int msec )
{
usleep( msec * 1000 );
}
DWORD
GetTickCount()
{
static unsigned long base = 0;
struct timeval tv;
gettimeofday( &tv, 0 );
if ( base == 0 )
base = tv.tv_sec;
return (tv.tv_sec - base) * 1000 + tv.tv_usec / 1000;
}
int main( int argc, char *argv[] )
{
int delay = 250;
std::string word;
if ( argc == 2 )
delay = atoi(argv[1]);
signal( SIGINT, stop );
std::cout > word && cont )
{
Sleep(delay);
++words;
if ( display_word.length() )
display_word += ' ';
display_word += word;
//if ( display_word.length()