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