SIDD ON TRAIN (1a2a)

Race #3

View Pit Stop page for race #3 by 1a2aGhost race

View profile for SIDD ON TRAIN (1a2a)

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