tstats[abu_egila] (abu_egila)

Race #5

View Pit Stop page for race #5 by abu_egilaGhost race

View profile for tstats[abu_egila] (abu_egila)

Official speed 39.21 wpm (136.19 seconds elapsed during race)
Race Start September 19, 2023 3:29:50pm UTC
Race Finish September 19, 2023 3:32:06pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 37.25
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); }