pausechamp (dindondoe)

Race #1

View Pit Stop page for race #1 by dindondoeGhost race

View profile for pausechamp (dindondoe)

Official speed 58.84 wpm (90.75 seconds elapsed during race)
Race Start December 7, 2021 12:18:07pm UTC
Race Finish December 7, 2021 12:19:38pm UTC
Outcome No win (4 of 5)
Opponents 1. sura5 (66.84 wpm)
2. scraex (66.62 wpm)
3. peaceinchrist (63.62 wpm)
Accuracy 96.0%
Points 55.89
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); }