Jon (jlachney)

Race #39

View Pit Stop page for race #39 by jlachneyGhost race

View profile for Jon (jlachney)

Official speed 74.85 wpm (71.34 seconds elapsed during race)
Race Start February 10, 2019 7:53:05pm UTC
Race Finish February 10, 2019 7:54:16pm UTC
Outcome No win (2 of 5)
Opponents 1. delirious (99.45 wpm)
3. poem (60.95 wpm)
4. ness_20xx (54.27 wpm)
5. hyper_racer (51.55 wpm)
Accuracy 95.0%
Points 71.10
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); }