Eternal religion (youvakishore27)

Race #20

View Pit Stop page for race #20 by youvakishore27Ghost race

View profile for Eternal religion (youvakishore27)

Official speed 41.53 wpm (128.58 seconds elapsed during race)
Race Start July 10, 2023 1:28:36pm UTC
Race Finish July 10, 2023 1:30:44pm UTC
Outcome Win (1 of 3)
Opponents 2. dragon_surfer (38.70 wpm)
Accuracy 94.0%
Points 39.45
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); }