Hacker News new | ask | show | jobs
by sergiosgc 4498 days ago
My comfortable reading speed is a bit above 700wpm. On a book with proper line length, or on my Kindle. Strangely, or not at all, I only read at that speed when parsing non-fiction texts. Reading a novel, the reading times on my Kindle boil down to 300wpm.

Some stuff needs to be savored, I guess. Even at that speed, I'm known for devouring books, so I am probably reading too fast.

On a side note, if Spritz is that good, I'd like to try it out above my comfort zone. Say, 1000wpm.

1 comments

I thought the same thing. Nothing a little JavaScript can't fix:

  // Insert drop down item.
  var li = document.createElement('li');
  li.innerHTML = '<a href="#">1000wpm</a>';
  li.setAttribute('data-value', '1000');
  document.querySelector('.speed ul').appendChild(li);
  
  // Create 1000wpm script
  var s = document.createElement('script');
  s.id = 'learntospritz_en_1000';
  s.type='spritztext';
  var data = JSON.parse(document.querySelector('#learntospritz_en_500').innerText);
  data[17] = '1000';
  s.innerText = JSON.stringify(data);
  document.body.appendChild(s);