J Gary (jgary199)

Race #54

View Pit Stop page for race #54 by jgary199Ghost race

View profile for J Gary (jgary199)

Official speed 35.05 wpm (185.56 seconds elapsed during race)
Race Start May 29, 2025 1:30:52am UTC
Race Finish May 29, 2025 1:33:58am UTC
Outcome No win (2 of 17)
Opponents 1. jhosmar (40.59 wpm)
3. fanor (34.55 wpm)
4. erick0334 (33.98 wpm)
6. blizhte (29.49 wpm)
7. luis_univ (29.43 wpm)
10. souljin99 (25.39 wpm)
11. magali_alanoca (23.95 wpm)
13. priscilacervantes23 (21.88 wpm)
Accuracy 92.0%
Points 51.99
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--; }