20mg (chakk)

Race #23

View Pit Stop page for race #23 by chakkGhost race

View profile for 20mg (chakk)

Official speed 118.88 wpm (44.92 seconds elapsed during race)
Race Start November 23, 2018 9:58:24pm UTC
Race Finish November 23, 2018 9:59:09pm UTC
Outcome Win (1 of 3)
Opponents 2. 1a2a (111.81 wpm)
Accuracy 98.0%
Points 112.94
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); }