Luis Alberto Delgado Pinto (luis_univ)

Race #19

View Pit Stop page for race #19 by luis_univGhost race

View profile for Luis Alberto Delgado Pinto (luis_univ)

Official speed 30.16 wpm (177.06 seconds elapsed during race)
Race Start May 29, 2025 1:24:21am UTC
Race Finish May 29, 2025 1:27:18am UTC
Outcome No win (6 of 17)
Opponents 1. jhosmar (38.40 wpm)
2. jgary199 (38.04 wpm)
3. erick0334 (34.60 wpm)
4. fanor (32.57 wpm)
8. blizhte (28.91 wpm)
9. souljin99 (25.53 wpm)
11. magali_alanoca (23.32 wpm)
12. priscilacervantes23 (20.33 wpm)
Accuracy 97.0%
Points 28.65
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); }