View Pit Stop page for race #63 by alex_ramos — Ghost race
View profile for alexVladimirQuecaña (alex_ramos)
Official speed | 29.60 wpm (180.41 seconds elapsed during race) |
---|---|
Race Start | June 6, 2025 1:45:41am UTC |
Race Finish | June 6, 2025 1:48:42am UTC |
Outcome | No win (7 of 16) |
Opponents |
1. jasssel (40.64 wpm) 4. yarot123 (32.84 wpm) 6. tocsky (30.90 wpm) 8. samiraarancibia123426 (28.86 wpm) 9. pedro_serrudo (25.77 wpm) 10. liz_mariela (25.43 wpm) 11. jhulmab (24.58 wpm) 12. sarai_vega012 (23.98 wpm) 13. sharick_chungara (23.94 wpm) |
Accuracy | 98.0% |
Points | 28.12 |
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); } |