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