iver (iverjoel)

Race #33

View Pit Stop page for race #33 by iverjoelGhost race

View profile for iver (iverjoel)

Official speed 25.85 wpm (206.58 seconds elapsed during race)
Race Start October 26, 2025 12:14:35am UTC
Race Finish October 26, 2025 12:18:02am UTC
Outcome No win (7 of 9)
Opponents 2. manu_233 (41.85 wpm)
3. fanor (33.23 wpm)
6. jhony99 (29.79 wpm)
8. cris1310 (23.99 wpm)
Accuracy 90.0%
Points 24.56
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); }