View Pit Stop page for race #10 by jhonny_ct — Ghost race
View profile for Jhonny Condori (jhonny_ct)
Official speed | 26.17 wpm (204.05 seconds elapsed during race) |
---|---|
Race Start | June 18, 2025 7:56:28pm UTC |
Race Finish | June 18, 2025 7:59:52pm UTC |
Outcome | No win (9 of 13) |
Opponents |
1. jasssel (39.58 wpm) 3. beltran_tarqui (36.45 wpm) 4. tocsky (31.97 wpm) 5. sharick_chungara (30.58 wpm) 6. liz_mariela (29.17 wpm) 10. machuran3 (24.13 wpm) |
Accuracy | 95.0% |
Points | 24.86 |
Text | #10001 (Length: 445 characters) /** Loop waiting for a connection and a valid command */ while (true) { Socket socket = null; InputStream stream = null; try { socket = serverSocket.accept(); socket.setSoTimeout(10 * 1000); stream = socket.getInputStream(); } catch (AccessControlException ace) { log.warn("StandardServer.accept security exception: " + ace.getMessage(), ace); continue; } catch (IOException e) { log.error("StandardServer.await: accept: ", e); System.exit(1); } |