Mauricio Aguilar Rios (machuran3)

Race #3

View Pit Stop page for race #3 by machuran3Ghost race

View profile for Mauricio Aguilar Rios (machuran3)

Official speed 24.96 wpm (213.94 seconds elapsed during race)
Race Start June 18, 2025 8:06:17pm UTC
Race Finish June 18, 2025 8:09:51pm UTC
Outcome No win (12 of 15)
Opponents 1. jasssel (45.26 wpm)
2. beltran_tarqui (39.12 wpm)
3. maria_ortega10 (37.59 wpm)
5. sharick_chungara (32.31 wpm)
7. samiraarancibia123426 (31.33 wpm)
8. tocsky (30.46 wpm)
9. liz_mariela (29.40 wpm)
10. jhonny_ct (28.23 wpm)
11. nessa2 (25.37 wpm)
Accuracy 91.0%
Points 23.71
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); }