Yarot Sanabria L. (yarot123)

Race #9

View Pit Stop page for race #9 by yarot123Ghost race

View profile for Yarot Sanabria L. (yarot123)

Official speed 27.93 wpm (191.19 seconds elapsed during race)
Race Start June 2, 2025 12:33:30am UTC
Race Finish June 2, 2025 12:36:42am UTC
Outcome No win (8 of 16)
Opponents 7. tocsky (28.45 wpm)
10. pedro_serrudo (25.49 wpm)
11. nessa2 (23.67 wpm)
12. jhulmab (23.62 wpm)
14. alex_ramos (23.03 wpm)
15. sarai_vega012 (21.56 wpm)
Accuracy 94.0%
Points 26.53
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); }