View Pit Stop page for race #64 by alex_ramos — Ghost race
View profile for alexVladimirQuecaña (alex_ramos)
Official speed | 30.58 wpm (174.62 seconds elapsed during race) |
---|---|
Race Start | June 6, 2025 1:50:48am UTC |
Race Finish | June 6, 2025 1:53:42am UTC |
Outcome | No win (8 of 17) |
Opponents |
2. jasssel (38.29 wpm) 4. yarot123 (34.54 wpm) 6. tocsky (32.04 wpm) 7. samiraarancibia123426 (31.22 wpm) 10. sharick_chungara (30.08 wpm) 11. liz_mariela (28.01 wpm) 12. machuran3 (26.55 wpm) 13. pedro_serrudo (25.88 wpm) 14. sarai_vega012 (24.93 wpm) 15. jhulmab (23.48 wpm) |
Accuracy | 97.0% |
Points | 29.05 |
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); } |