Race Result Details |
Racer | Manuel_Farfan (manu_233) |
Race Number | 11 |
Date | Wed, 10 Sep 2025 21:59:44 |
Universe | code |
Speed |
37 WPM
![]() |
Accuracy | 91.7% |
Rank | 1st place (out of 9) |
Opponents | chavez_fred (4th place) lemongold (6th place) luis_univ (2nd place) souljin99 (3rd 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)
|