Race Result Details |
Racer | Marco Soria Ali (souljin99) |
Race Number | 37 |
Date | Wed, 10 Sep 2025 22:00:26 |
Universe | code |
Speed |
29 WPM
![]() |
Accuracy | 94.6% |
Rank | 3rd place (out of 9) |
Opponents | chavez_fred (4th place) lemongold (6th place) luis_univ (2nd place) manu_233 (1st place) |
Text typed:
/** 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); }
— (software)
by Apache Project
(see stats)
|