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 is for linux! | |
GOV=1.22.2 # Go version to install. Find the latest on https://go.dev/dl/ | |
curl -sS https://storage.googleapis.com/golang/go$GOV.linux-amd64.tar.gz > go$GOV.linux-amd64.tar.gz | |
tar xvf go$GOV.linux-amd64.tar.gz | |
rm go$GOV.linux-amd64.tar.gz | |
# You can then run the following command to use go | |
./go$GOV.linux-amd64/go/bin/go |
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
// Howto: | |
// Copy the code and put it in your developer console when on https://play.typeracer.com. | |
// It doesn't matter when you put the code in and it will stay loaded aslong as you don't reload the page. | |
// Just join a race and press enter to automaticly fill in the word. | |
// Todo: | |
// - Track on what word you currently are | |
// - Type each letter? | |
const trc = (cfg => { | |
const log = s => console.log("[TRC]", s); |