Luis Alberto Delgado Pinto (luis_univ)

Race #20

View Pit Stop page for race #20 by luis_univGhost race

View profile for Luis Alberto Delgado Pinto (luis_univ)

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