Post your results, I got 91 wpm, two mistakes. Darn netbook keyboard
.
http://speedtest.10-fast-fingers.com/

http://speedtest.10-fast-fingers.com/
fronclynne said:pop-up adspam site? shame on you.
Words per minute (WPM) 70
Keystrokes 352
(352 | 0)
Correct words 69
Wrong words 0
You are better than 89.05% of all users (position 12545 of 114606 - last 24 hours)
I find my typing is very accustomed to things like "cd /usr/local/etc" or "ps ax |grep blah"
Oxyd said:You type 486 characters per minute
You have 91 correct words and
you have 1 wrong words
Yay. It's meaningless, though -- it's braindead to just copy the words -- when I have to think what I'm going to type (like on a forum or in a terminal), I'm much slower.![]()
mickey said:Keep it icy man. I don't want to end up a corpse before my time because you were daydreaming...
var _words = $('#row1 span');
var _field = $('#inputfield');
var _cur_interval = 0;
var _step = 1;
function _trigger (code) {
var e = $.Event("keyup");
e.which = code;
e.keyCode = code;
_field.trigger(e);
}
start_countdown();
$.each(_words, function(i, v) {
setTimeout(function () {
if (i == _words.length - 1)
countdown = 0;
var word = $(v).html();
_field.val(word + ' ');
_trigger(32);
}, _cur_interval + _step);
_cur_interval += _step;
});