Race Result Details |
Racer | Beimar Ramirez (jhony99) |
Race Number | 24 |
Date | Thu, 29 May 2025 1:28:08 |
Universe | code |
Speed |
24 WPM
![]() |
Accuracy | 91.9% |
Rank | 10th place (out of 17) |
Opponents | alvaro_ (7th place) blizhte (8th place) erick0334 (3rd place) fanor (4th place) jgary199 (2nd place) jhosmar (1st place) luis_univ (6th place) magali_alanoca (11th place) priscilacervantes23 (12th place) souljin99 (9th 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)
|