View Pit Stop page for race #11 by magali_alanoca — Ghost race
View profile for Florencia Magali Alanoca (magali_alanoca)
Official speed | 23.95 wpm (271.57 seconds elapsed during race) |
---|---|
Race Start | May 29, 2025 1:30:53am UTC |
Race Finish | May 29, 2025 1:35:24am UTC |
Outcome | No win (11 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) 7. luis_univ (29.43 wpm) 10. souljin99 (25.39 wpm) 13. priscilacervantes23 (21.88 wpm) |
Accuracy | 94.0% |
Points | 35.52 |
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--; } |