View Pit Stop page for race #1 by machuran3 — Ghost race
View profile for Mauricio Aguilar Rios (machuran3)
Official speed | 26.55 wpm (201.13 seconds elapsed during race) |
---|---|
Race Start | June 6, 2025 1:50:48am UTC |
Race Finish | June 6, 2025 1:54:09am UTC |
Outcome | No win (12 of 17) |
Opponents |
2. jasssel (38.29 wpm) 6. tocsky (32.04 wpm) 11. liz_mariela (28.01 wpm) 13. pedro_serrudo (25.88 wpm) 14. sarai_vega012 (24.93 wpm) 15. jhulmab (23.48 wpm) |
Accuracy | 95.0% |
Points | 25.22 |
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); } |