samiraarancibia (samiraarancibia123426)

Race #25

View Pit Stop page for race #25 by samiraarancibia123426Ghost race

View profile for samiraarancibia (samiraarancibia123426)

Official speed 26.94 wpm (198.22 seconds elapsed during race)
Race Start May 18, 2025 12:38:25am UTC
Race Finish May 18, 2025 12:41:43am UTC
Outcome No win (8 of 14)
Opponents 2. jas_el (34.41 wpm)
4. sharick_chungara (29.86 wpm)
5. erick_vargas (29.73 wpm)
7. liz_mariela_perez (27.32 wpm)
9. alex_ramos (26.09 wpm)
10. tocsky (24.82 wpm)
Accuracy 93.0%
Points 25.60
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); }