Warning: session_start(): open(/var/lib/php/sessions/sess_mcj3ehq3f7ai5upcucs11020dc, 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
!7
cmodule TrainableBot > DynSockPuppetConvo {
LS suggestions;
S functions;
transient SingleComponentPanel scpSuggestions;
transient FunctionsLoader loader;
transient Thread playThread;
visual jvsplit(super,
jhsplit(
jCenteredSection("Suggestions", scpSuggestions = singleComponentPanel(renderSuggestions())),
dm_textAreaAsSection functions()));
JComponent renderSuggestions() {
ret ele_renderSuggestions(null, suggestions);
}
void showSuggestions(LS suggestions) {
setField(+suggestions);
showSuggestions();
}
void showSuggestions {
scpSuggestions?.setComponent(renderSuggestions());
}
void loadFunctions {
dispose loader;
loader = new FunctionsLoader(tlftj(functions));
loaded.onLoaded(play);
loader.loadInBackground();
}
void play enter {
cancelThread(playThread);
playThread = null;
playThread = startThread(r play_impl);
}
void play_impl enter {
showSuggestions(ll("test " + now()));
}
}