Show HN: Simple typing speed test with Knockoutjs and Nodejs
broody.nodejitsu.com
Show HN: Simple typing speed test with Knockoutjs and Nodejs
1–7 of 7 posts
Re: Show HN: Simple typing speed test with Knockoutjs and Nodejs
#2"Enter" ends the phrase on the last word. "Space" feels weird when you're done typing.
Auto select the input box after selecting a phrase. I was half-way through the exercise before realizing the page wasn't registering my input.
Re: Show HN: Simple typing speed test with Knockoutjs and Nodejs
#3Nice. A couple of suggestions. "Enter" ends the phrase on the last word. "Space" feels weird when you're done typing. Auto select the input box after selecting a phrase. I was half-way through the exercise before realizing the page wasn't registering my input.
Re: Show HN: Simple typing speed test with Knockoutjs and Nodejs
#4Although it's not impossible to make that same kind of mistake with a strongly typed language, I'm glad my day job involves C#.
Re: Show HN: Simple typing speed test with Knockoutjs and Nodejs
#5When in your program I have to write "one's" for example, I CAN'T. When I press "'" and then "space" your textfield just blocks me and vibrates... and I can't go forward.
Long story short: for a user with us-international keyboard mapping it is impossible to insert the char "'" and probably many others like " ~ ` ^ that with that mapping require to press "space" after them
Re: Show HN: Simple typing speed test with Knockoutjs and Nodejs
#6Example, I spell "Charactet" instead of "Character". Space submits the word and creates "Charactet " in my brain so to correct this, I do two backspaces. Result is "Charact" instead of expected "Characte".
Re: Show HN: Simple typing speed test with Knockoutjs and Nodejs
#7There is a bug. I use the us-international version of my keyboard so to print ' i have to click "'" + "space" (because otherwise the input buffer awaits for me to insert a vocal to make something like é á ó ú í all used in my language) When in your program I have to write "one's" for example, I CAN'T. When I press "'" and then "space" your textfield just blocks me and vibrates... and I can't go forward. Long story sh…
Now I've tested with your layout and it turns out that you can type it as you say by just omitting the space (except for the letters that can be accented) or otherwise just use my method by entering ' twice and deleting the second one (maybe at the expense of greater error rate).