View Pit Stop page for race #14 by blizhte — Ghost race
View profile for Misael Rocha (blizhte)
Official speed | 29.49 wpm (220.55 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 (6 of 17) |
Opponents |
1. jhosmar (40.59 wpm) 3. fanor (34.55 wpm) 7. luis_univ (29.43 wpm) 10. souljin99 (25.39 wpm) 11. magali_alanoca (23.95 wpm) 13. priscilacervantes23 (21.88 wpm) |
Accuracy | 95.0% |
Points | 43.75 |
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--; } |