View Pit Stop page for race #10 by magali_alanoca — Ghost race
View profile for Florencia Magali Alanoca (magali_alanoca)
Official speed | 23.32 wpm (228.99 seconds elapsed during race) |
---|---|
Race Start | May 29, 2025 1:24:21am UTC |
Race Finish | May 29, 2025 1:28:10am UTC |
Outcome | No win (11 of 17) |
Opponents |
1. jhosmar (38.40 wpm) 2. jgary199 (38.04 wpm) 3. erick0334 (34.60 wpm) 4. fanor (32.57 wpm) 6. luis_univ (30.16 wpm) 8. blizhte (28.91 wpm) 9. souljin99 (25.53 wpm) 12. priscilacervantes23 (20.33 wpm) |
Accuracy | 95.0% |
Points | 22.15 |
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); } |