(sidd_)

Race #103

View Pit Stop page for race #103 by sidd_Ghost race

View profile for (sidd_)

Official speed 119.66 wpm (44.63 seconds elapsed during race)
Race Start February 10, 2019 7:47:59pm UTC
Race Finish February 10, 2019 7:48:44pm UTC
Outcome Win (1 of 6)
Opponents 2. delirious (89.57 wpm)
3. jlachney (74.31 wpm)
4. poem (64.40 wpm)
Accuracy 100.0%
Points 113.68
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); }