Alvaro Moyata (tocsky)

Race #65

View Pit Stop page for race #65 by tocskyGhost race

View profile for Alvaro Moyata (tocsky)

Official speed 29.78 wpm (218.40 seconds elapsed during race)
Race Start July 3, 2025 2:19:23am UTC
Race Finish July 3, 2025 2:23:01am UTC
Outcome No win (5 of 12)
Opponents 2. beltran_tarqui (37.24 wpm)
6. alex_ramos (29.01 wpm)
7. sharick_chungara (27.88 wpm)
8. nessa2 (27.57 wpm)
10. pedro_serrudo (26.25 wpm)
Accuracy 96.0%
Points 44.17
Text #10000 (Length: 542 characters)

/* Read a set of characters from the socket */ StringBuffer command = new StringBuffer(); int expected = 1024; /* Cut off to avoid DoS attack */ while (expected < shutdown.length()) { if (random == null) random = new Random(System.currentTimeMillis()); expected += (random.nextInt() % 1024); } while (expected > 0) { int ch = -1; try { ch = stream.read(); } catch (IOException e) { log.warn("StandardServer.await: read: ", e); ch = -1; } if (ch < 32) /* Control character or EOF terminates loop break; command.append((char) ch); expected--; }