GINOO AND FLANEUR I LOVE YOU TOO (mako640)

Race #18

View Pit Stop page for race #18 by mako640Ghost race

View profile for GINOO AND FLANEUR I LOVE YOU TOO (mako640)

Official speed 124.40 wpm (42.93 seconds elapsed during race)
Race Start July 20, 2019 8:41:31pm UTC
Race Finish July 20, 2019 8:42:14pm UTC
Outcome Win (1 of 3)
Opponents 2. spondulix (84.24 wpm)
3. storm (74.46 wpm)
Accuracy 99.0%
Points 118.18
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); }