View Pit Stop page for race #8 by jasssel — Ghost race
View profile for jaselsss (jasssel)
| Official speed | 39.80 wpm (163.42 seconds elapsed during race) |
|---|---|
| Race Start | June 18, 2025 8:11:22pm UTC |
| Race Finish | June 18, 2025 8:14:05pm UTC |
| Outcome | Win (1 of 15) |
| Opponents |
2. maria_ortega10 (33.64 wpm) 3. beltran_tarqui (33.53 wpm) 5. tocsky (28.99 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 | 94.0% |
| Points | 59.04 |
| 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--; } |