Taiwan is a country (17lingh1)

Race #1

View Pit Stop page for race #1 by 17lingh1Ghost race

View profile for Taiwan is a country (17lingh1)

Official speed 34.31 wpm (155.64 seconds elapsed during race)
Race Start November 10, 2021 12:26:27am UTC
Race Finish November 10, 2021 12:29:03am UTC
Outcome No win (2 of 3)
Accuracy 91.0%
Points 32.59
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); }