| Race Result Details | 
| Racer | Michaela (michaelapadua) | 
| Race Number | 2 | 
| Date | Thu, 12 Dec 2024 8:58:54 | 
| Universe | code | 
| Speed | 23 WPM  Try to beat? | 
| Accuracy | 90.9% | 
| Rank | 2nd place (out of 4) | 
| Opponents | jellnym (4th place) kopal_124 (3rd place) niggatar123 (1st place) | 
Text typed:
| /** 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); }— (software)
          by Apache Project
          (see stats) |