/* Read a set of characters from the socket */ StringBuffer command = new StringBuffer(); int expected = 1024; /* Cut off to avoid DoS attack */ while (expected < shutdown.length()) { if (random == null) random = new Random(System.currentTimeMillis()); expected += (random.nextInt() % 1024); } while (expected > 0) { int ch = -1; try { ch = stream.read(); } catch (IOException e) { log.warn("StandardServer.await: read: ", e); ch = -1; } if (ch < 32) /* Control character or EOF terminates loop break; command.append((char) ch); expected--; }
Game | Time | WPM | Accuracy |
---|---|---|---|
483 | 2024-06-21 22:22:21 | 53.68 | 95.1% |
479 | 2024-06-21 21:57:26 | 48.72 | 95.1% |
456 | 2024-05-06 05:31:01 | 53.82 | 96.8% |
396 | 2024-04-26 15:22:45 | 56.34 | 97% |
371 | 2024-04-22 19:03:58 | 53.93 | 96.3% |
370 | 2024-04-22 19:01:39 | 49.32 | 94.9% |
295 | 2024-02-11 19:28:26 | 48.71 | 94.6% |
289 | 2024-02-06 02:45:34 | 56.00 | 95.9% |
260 | 2024-01-29 15:02:26 | 49.42 | 96.3% |
80 | 2023-08-27 05:49:54 | 44.19 | 97.3% |
69 | 2023-08-14 06:03:31 | 48.12 | 95.7% |
67 | 2023-08-14 05:59:50 | 42.14 | 93.9% |
56 | 2023-08-12 13:15:10 | 41.07 | 95.5% |
29 | 2023-08-05 14:13:17 | 38.66 | 94.7% |
13 | 2023-07-08 01:58:42 | 39.08 | 93.8% |
10 | 2023-07-02 14:04:13 | 31.03 | 93.4% |
7 | 2023-07-02 13:55:27 | 34.19 | 94.3% |