Skip to content

Instantly share code, notes, and snippets.

View pierrelasse's full-sized avatar
🟢
Existing

pierrelasse pierrelasse

🟢
Existing
View GitHub Profile
@pierrelasse
pierrelasse / Install go.sh
Last active April 30, 2024 09:17
Paste the commands into ur terminal and kaboom
# 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
@pierrelasse
pierrelasse / typeracer.com cheat.js
Last active April 30, 2024 09:23
typeracer.com cheat, hack, autotype
// 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);