View Pit Stop page for race #10 by jhonnymartinez — Ghost race
View profile for jhonny (jhonnymartinez)
| Official speed | 23.49 wpm (227.33 seconds elapsed during race) |
|---|---|
| Race Start | June 2, 2025 12:33:30am UTC |
| Race Finish | June 2, 2025 12:37:18am UTC |
| Outcome | No win (13 of 16) |
| Opponents |
2. erick_vargas (31.18 wpm) 3. alexlopez114387 (31.16 wpm) 5. samiraarancibia123426 (30.32 wpm) 6. sharick_chungara (29.41 wpm) 7. tocsky (28.45 wpm) 8. yarot123 (27.93 wpm) 10. pedro_serrudo (25.49 wpm) 11. nessa2 (23.67 wpm) 12. jhulmab (23.62 wpm) 14. alex_ramos (23.03 wpm) 15. sarai_vega012 (21.56 wpm) |
| Accuracy | 92.0% |
| Points | 22.32 |
| 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); } |