David (david_chen)

Race #1

View Pit Stop page for race #1 by david_chenGhost race

View profile for David (david_chen)

Official speed 33.37 wpm (160.02 seconds elapsed during race)
Race Start April 24, 2025 5:19:58pm UTC
Race Finish April 24, 2025 5:22:38pm UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 31.70
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); }