View Pit Stop page for race #61 by fanor — Ghost race
View profile for Fanor (fanor)
| Official speed | 33.23 wpm (160.70 seconds elapsed during race) |
|---|---|
| Race Start | October 26, 2025 12:14:35am UTC |
| Race Finish | October 26, 2025 12:17:16am UTC |
| Outcome | No win (3 of 9) |
| Opponents |
2. manu_233 (41.85 wpm) 4. nessa2 (31.72 wpm) 5. luis_univ (30.78 wpm) 6. jhony99 (29.79 wpm) 7. iverjoel (25.85 wpm) 8. cris1310 (23.99 wpm) |
| Accuracy | 93.0% |
| Points | 31.57 |
| 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); } |