Created
November 1, 2020 02:31
-
-
Save Cemu0/84ed255d5529297da5c9be6622972ec5 to your computer and use it in GitHub Desktop.
Code for cheater
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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