View Pit Stop page for race #2 by machuran3 — Ghost race
View profile for Mauricio Aguilar Rios (machuran3)
Official speed | 24.13 wpm (221.30 seconds elapsed during race) |
---|---|
Race Start | June 18, 2025 7:56:28pm UTC |
Race Finish | June 18, 2025 8:00:09pm UTC |
Outcome | No win (10 of 13) |
Opponents |
1. jasssel (39.58 wpm) 2. maria_ortega10 (37.99 wpm) 3. beltran_tarqui (36.45 wpm) 4. tocsky (31.97 wpm) 5. sharick_chungara (30.58 wpm) 6. liz_mariela (29.17 wpm) 9. jhonny_ct (26.17 wpm) |
Accuracy | 91.0% |
Points | 22.92 |
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); } |