Gustavo (gustxw)

Race #5

View Pit Stop page for race #5 by gustxwGhost race

View profile for Gustavo (gustxw)

Official speed 32.17 wpm (165.99 seconds elapsed during race)
Race Start May 17, 2016 10:33:48pm UTC
Race Finish May 17, 2016 10:36:34pm UTC
Outcome No win (9 of 10)
Opponents 1. marliseu (52.77 wpm)
3. adalwulf (45.56 wpm)
5. gbonell (36.57 wpm)
6. henrym0503 (34.63 wpm)
8. abielr (34.34 wpm)
Accuracy 91.0%
Points 0.00
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); }