View Pit Stop page for race #112 by liz_mariela — Ghost race
View profile for Liz Mariela Perez Gervacio (liz_mariela)
Official speed | 30.56 wpm (174.74 seconds elapsed during race) |
---|---|
Race Start | June 22, 2025 10:50:05pm UTC |
Race Finish | June 22, 2025 10:52:59pm UTC |
Outcome | No win (6 of 14) |
Opponents |
1. beltran_tarqui (34.73 wpm) 4. samiraarancibia123426 (32.42 wpm) 5. sharick_chungara (30.72 wpm) 7. alex_ramos (29.77 wpm) 9. tocsky (28.90 wpm) 10. nessa2 (28.10 wpm) 11. sarai_vega012 (23.48 wpm) |
Accuracy | 92.0% |
Points | 29.03 |
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); } |