Race Result Details |
Racer | joel gary (jgary1) |
Race Number | 6 |
Date | Wed, 10 Sep 2025 22:23:00 |
Universe | code |
Speed |
26 WPM
![]() |
Accuracy | 93.1% |
Rank | 5th place (out of 8) |
Opponents | fanor (1st place) freddytarqui (3rd place) jhamelpinto (2nd place) mishael_manrrique (6th place) nessa2 (4th 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)
|