Skip to content

Instantly share code, notes, and snippets.

@Cemu0
Created November 1, 2020 02:31
Show Gist options
  • Save Cemu0/84ed255d5529297da5c9be6622972ec5 to your computer and use it in GitHub Desktop.
Save Cemu0/84ed255d5529297da5c9be6622972ec5 to your computer and use it in GitHub Desktop.
Code for cheater
# this code writen by Cemu0
# no Copyright or license
import keyboard
import time
string = "your typing things here"
keyboard.wait('end')
for i in string:
if i == ' ':
keyboard.press_and_release('space')
continue
keyboard.write(i)
time.sleep(0.03) #slowdown becauseof ... lag
#code javascritp, insert it in to consoler of the page https://10fastfingers.com/typing-test/english
# note you may have to change the code !!!
'''
var strin = ""
for(var i = 0; i<=346; i++){
strin += document.getElementsByTagName("span")[66+i].textContent + " "
}
'''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment