Warning: session_start(): open(/var/lib/php/sessions/sess_094h7ufjitmb1dbj9ouhq8kbo5, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
!747
m {
static S ip = "second.tinybrain.de";
static int port = 5000;
p {
if (args.length > 0) ip = args[0];
if (args.length > 1) port = parseInt(args[1]);
final DialogIO io = talkTo(ip, port);
// output
thread {
S line;
while ((line = readLine()) != null)
io.sendLine(line);
}
// input
while (io.isStillConnected()) {
if (io.waitForLine()) {
S line = io.readLineNoBlock();
print("> " + line);
}
}
print();
print("[logout]");
}
}