AJ (ajansen1318)

Race #25

View Pit Stop page for race #25 by ajansen1318Ghost race

View profile for AJ (ajansen1318)

Official speed 35.15 wpm (151.92 seconds elapsed during race)
Race Start October 20, 2023 12:58:23am UTC
Race Finish October 20, 2023 1:00:55am UTC
Outcome No win (2 of 2)
Opponents 1. chrissypoopoo (68.20 wpm)
Accuracy 92.0%
Points 33.39
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); }