View Pit Stop page for race #19 by priscilacervantes23 — Ghost race
View profile for priscila (priscilacervantes23)
| Official speed | 21.88 wpm (297.26 seconds elapsed during race) |
|---|---|
| Race Start | May 29, 2025 1:30:53am UTC |
| Race Finish | May 29, 2025 1:35:50am UTC |
| Outcome | No win (13 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) 11. magali_alanoca (23.95 wpm) |
| Accuracy | 92.0% |
| Points | 32.45 |
| 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--; } |