View Pit Stop page for race #15 by magali_alanoca — Ghost race
View profile for Florencia Magali Alanoca (magali_alanoca)
Official speed | 25.71 wpm (207.70 seconds elapsed during race) |
---|---|
Race Start | June 1, 2025 12:25:41am UTC |
Race Finish | June 1, 2025 12:29:09am UTC |
Outcome | No win (11 of 17) |
Opponents |
1. jhosmar_carlos (36.89 wpm) 4. fa1progra (34.43 wpm) 7. luis_univ (30.37 wpm) 10. souljin99 (26.47 wpm) 12. priscilacervantes23 (25.48 wpm) 15. iverjoel (19.95 wpm) |
Accuracy | 95.0% |
Points | 24.43 |
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); } |