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