J Gary (jgary199)

Race #61

View Pit Stop page for race #61 by jgary199Ghost race

View profile for J Gary (jgary199)

Official speed 34.50 wpm (154.78 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 (3 of 17)
Opponents 1. jhosmar_carlos (36.89 wpm)
4. fa1progra (34.43 wpm)
5. erick0334 (34.30 wpm)
6. blizhte (30.92 wpm)
7. luis_univ (30.37 wpm)
10. souljin99 (26.47 wpm)
11. magali_alanoca (25.71 wpm)
12. priscilacervantes23 (25.48 wpm)
14. cris1310 (21.24 wpm)
15. iverjoel (19.95 wpm)
Accuracy 94.0%
Points 32.77
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); }