J Gary (jgary199)

Race #53

View Pit Stop page for race #53 by jgary199Ghost race

View profile for J Gary (jgary199)

Official speed 38.04 wpm (140.38 seconds elapsed during race)
Race Start May 29, 2025 1:24:21am UTC
Race Finish May 29, 2025 1:26:42am UTC
Outcome No win (2 of 17)
Opponents 1. jhosmar (38.40 wpm)
3. erick0334 (34.60 wpm)
4. fanor (32.57 wpm)
6. luis_univ (30.16 wpm)
8. blizhte (28.91 wpm)
9. souljin99 (25.53 wpm)
11. magali_alanoca (23.32 wpm)
12. priscilacervantes23 (20.33 wpm)
Accuracy 93.0%
Points 36.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); }