jaselsss (jasssel)

Race #5

View Pit Stop page for race #5 by jassselGhost race

View profile for jaselsss (jasssel)

Official speed 39.58 wpm (134.92 seconds elapsed during race)
Race Start June 18, 2025 7:56:28pm UTC
Race Finish June 18, 2025 7:58:42pm UTC
Outcome Win (1 of 13)
Opponents 3. beltran_tarqui (36.45 wpm)
4. tocsky (31.97 wpm)
5. sharick_chungara (30.58 wpm)
6. liz_mariela (29.17 wpm)
9. jhonny_ct (26.17 wpm)
10. machuran3 (24.13 wpm)
Accuracy 94.0%
Points 37.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); }