Mutasim Mualimi (mutasim_2001)

Race #1

View Pit Stop page for race #1 by mutasim_2001Ghost race

View profile for Mutasim Mualimi (mutasim_2001)

Official speed 38.62 wpm (138.27 seconds elapsed during race)
Race Start February 2, 2023 11:40:42am UTC
Race Finish February 2, 2023 11:43:00am UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 36.69
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); }