viminizer (shohset)

Race #1

View Pit Stop page for race #1 by shohsetGhost race

View profile for viminizer (shohset)

Official speed 44.57 wpm (51.16 seconds elapsed during race)
Race Start July 26, 2025 1:17:44pm UTC
Race Finish July 26, 2025 1:18:35pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 17.09
Text #10019 (Length: 190 characters)

import string from random import * characters = string.ascii_letters + string.punctuation + string.digits password = "".join(choice(characters) for x in range(randint(8, 16))) print password