View Pit Stop page for race #14 by magali_alanoca — Ghost race
View profile for Florencia Magali Alanoca (magali_alanoca)
| Official speed | 25.20 wpm (211.90 seconds elapsed during race) |
|---|---|
| Race Start | June 1, 2025 12:18:45am UTC |
| Race Finish | June 1, 2025 12:22:16am UTC |
| Outcome | No win (11 of 17) |
| Opponents |
1. jhosmar_carlos (36.60 wpm) 2. erick0334 (35.51 wpm) 3. fa1progra (34.20 wpm) 4. jgary199 (32.85 wpm) 6. luis_univ (28.57 wpm) 7. blizhte (28.15 wpm) 10. souljin99 (25.74 wpm) 12. priscilacervantes23 (22.89 wpm) 14. cris1310 (20.59 wpm) 15. iverjoel (19.24 wpm) |
| Accuracy | 95.0% |
| Points | 23.94 |
| 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); } |