View Pit Stop page for race #14 by jhonnymartinez — Ghost race
View profile for jhonny (jhonnymartinez)
Official speed | 23.78 wpm (224.56 seconds elapsed during race) |
---|---|
Race Start | June 4, 2025 8:04:43pm UTC |
Race Finish | June 4, 2025 8:08:28pm UTC |
Outcome | No win (13 of 17) |
Opponents |
4. yarot123 (30.80 wpm) 6. samiraarancibia123426 (29.54 wpm) 8. alexlopez114387 (28.76 wpm) 11. tocsky (28.03 wpm) 12. jhonny_ct (25.14 wpm) |
Accuracy | 92.0% |
Points | 22.59 |
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); } |