View Pit Stop page for race #27 by fa1progra — Ghost race
View profile for Augusto Aguilar (fa1progra)
Official speed | 34.43 wpm (155.10 seconds elapsed during race) |
---|---|
Race Start | June 1, 2025 12:25:41am UTC |
Race Finish | June 1, 2025 12:28:16am UTC |
Outcome | No win (4 of 17) |
Opponents |
1. jhosmar_carlos (36.89 wpm) 12. priscilacervantes23 (25.48 wpm) 15. iverjoel (19.95 wpm) |
Accuracy | 91.0% |
Points | 32.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); } |