Howdy all, 

I just put together a writing app, and you're welcome to check it out and 
use it (it's hosted on github). 

Here's the demo: https://dela3499.github.io/elm-writer/
And here's the repo: https://github.com/dela3499/elm-writer

One question: 

I update the word count on every keystroke, but that slows things down at 
around 3000+ words. Though I could just update the word count every few 
seconds, I'd prefer to keep things more responsive. Any ideas on how to 
efficiently count words, given that most words don't change from one edit 
to the next? I could try chunking text, and running wordcount on only the 
small, currently-visible portion. Perhaps there's some fast diffing library 
that would prevent me from having to do wordcount over the entire input 
string? 

Best, 
Carlos D. 

-- 
You received this message because you are subscribed to the Google Groups "Elm 
Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to