Progress is never linear! (cloudjumper)

Race #253

View Pit Stop page for race #253 by cloudjumperGhost race

View profile for Progress is never linear! (cloudjumper)

Official speed 97.77 wpm (54.62 seconds elapsed during race)
Race Start September 9, 2023 4:52:44am UTC
Race Finish September 9, 2023 4:53:39am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 92.88
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); }