View Pit Stop page for race #76 by liz_mariela — Ghost race
View profile for Liz Mariela Perez Gervacio (liz_mariela)
Official speed | 29.17 wpm (183.06 seconds elapsed during race) |
---|---|
Race Start | June 18, 2025 7:56:28pm UTC |
Race Finish | June 18, 2025 7:59:31pm UTC |
Outcome | No win (6 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) 9. jhonny_ct (26.17 wpm) 10. machuran3 (24.13 wpm) |
Accuracy | 92.0% |
Points | 27.71 |
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); } |