Achromatic - youtu.be/VuzE718Ac1M (bladevampirek)

Race #129

View Pit Stop page for race #129 by bladevampirekGhost race

View profile for Achromatic - youtu.be/VuzE718Ac1M (bladevampirek)

Official speed 64.16 wpm (83.23 seconds elapsed during race)
Race Start April 4, 2020 8:40:38pm UTC
Race Finish April 4, 2020 8:42:02pm UTC
Outcome No win (2 of 2)
Opponents 1. landarian (80.76 wpm)
Accuracy 97.0%
Points 60.95
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); }