(delirious)

Race #62

View Pit Stop page for race #62 by deliriousGhost race

View profile for (delirious)

Official speed 99.45 wpm (53.70 seconds elapsed during race)
Race Start February 10, 2019 7:53:05pm UTC
Race Finish February 10, 2019 7:53:59pm UTC
Outcome Win (1 of 5)
Opponents 2. jlachney (74.85 wpm)
3. poem (60.95 wpm)
4. ness_20xx (54.27 wpm)
5. hyper_racer (51.55 wpm)
Accuracy 98.0%
Points 94.48
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); }