View Pit Stop page for race #23 by luis_univ — Ghost race
View profile for Luis Alberto Delgado Pinto (luis_univ)
Official speed | 30.37 wpm (175.83 seconds elapsed during race) |
---|---|
Race Start | June 1, 2025 12:25:41am UTC |
Race Finish | June 1, 2025 12:28:37am UTC |
Outcome | No win (7 of 17) |
Opponents |
1. jhosmar_carlos (36.89 wpm) 4. fa1progra (34.43 wpm) 10. souljin99 (26.47 wpm) 11. magali_alanoca (25.71 wpm) 12. priscilacervantes23 (25.48 wpm) 15. iverjoel (19.95 wpm) |
Accuracy | 96.0% |
Points | 28.85 |
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); } |