View Pit Stop page for race #40 by tocsky — Ghost race
View profile for Alvaro Moyata (tocsky)
Official speed | 28.99 wpm (224.35 seconds elapsed during race) |
---|---|
Race Start | June 18, 2025 8:11:22pm UTC |
Race Finish | June 18, 2025 8:15:06pm UTC |
Outcome | No win (5 of 15) |
Opponents |
1. jasssel (39.80 wpm) 3. beltran_tarqui (33.53 wpm) 6. liz_mariela (28.97 wpm) 7. sharick_chungara (28.68 wpm) 8. jhonny_ct (27.12 wpm) 10. samiraarancibia123426 (26.21 wpm) 11. nessa2 (23.59 wpm) |
Accuracy | 95.0% |
Points | 43.00 |
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--; } |