Fátima (nessa2)

Race #18

View Pit Stop page for race #18 by nessa2Ghost race

View profile for Fátima (nessa2)

Official speed 28.10 wpm (190.04 seconds elapsed during race)
Race Start June 22, 2025 10:50:05pm UTC
Race Finish June 22, 2025 10:53:15pm UTC
Outcome No win (10 of 14)
Opponents 4. samiraarancibia123426 (32.42 wpm)
5. sharick_chungara (30.72 wpm)
7. alex_ramos (29.77 wpm)
9. tocsky (28.90 wpm)
11. sarai_vega012 (23.48 wpm)
Accuracy 96.0%
Points 26.70
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); }