View Pit Stop page for race #80 by alex_ramos — Ghost race
View profile for alexVladimirQuecaña (alex_ramos)
Official speed | 29.77 wpm (179.38 seconds elapsed during race) |
---|---|
Race Start | June 22, 2025 10:50:05pm UTC |
Race Finish | June 22, 2025 10:53:04pm UTC |
Outcome | No win (7 of 14) |
Opponents |
1. beltran_tarqui (34.73 wpm) 4. samiraarancibia123426 (32.42 wpm) 5. sharick_chungara (30.72 wpm) 6. liz_mariela (30.56 wpm) 9. tocsky (28.90 wpm) 10. nessa2 (28.10 wpm) 11. sarai_vega012 (23.48 wpm) |
Accuracy | 97.0% |
Points | 28.28 |
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); } |