Skip to content

Instantly share code, notes, and snippets.

@dedy-purwanto
Created December 22, 2011 12:44
Show Gist options
  • Save dedy-purwanto/1510198 to your computer and use it in GitHub Desktop.
Save dedy-purwanto/1510198 to your computer and use it in GitHub Desktop.
BOT for 10fastfingers, automatic typing with adjustable speed
/*
* BOT for 10fastfingers, automatic typing with adjustable speed
* ================================================================
*
* bored in my apartment and decided to hack this game: http://indonesian-speedtest.10fastfingers.com/
* just start the game, when you're ready to type, DON'T TYPE ANYTHING, open up
* your Developer Tools in Chrome (CTRL+SHIFT+J) and click Console tab, and
* then paste the whole code below, then press enter, and enjoy the show.
*
* twitter.com/kecebongsoft
*/
var word_idx = 0;
var interval_per_word = 250; // in milliseconds
function hackit(){
if(word_idx<words.length){
$('#inputfield').val(words[word_idx] + ' ');
var keyup = jQuery.Event('keyup');
keyup.which = 32;
$('#inputfield').trigger(keyup);
word_idx++;
setTimeout('hackit()', interval_per_word);
}
}
setTimeout('hackit()', interval_per_word);
@JZ1324
Copy link

JZ1324 commented Nov 20, 2021

Is it possible to make one for typing club (Ed club)?

@JZ1324
Copy link

JZ1324 commented Nov 20, 2021

The web is this w

@JZ1324
Copy link

JZ1324 commented Nov 20, 2021

@Davidnemeth1500
Copy link

It very good thank you! 😃

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment