sS hSilentComputator() {
  int port = subBot_currentPort();
  ret div("Calculating", id := 'calcing)
  + hcss([[#calcing {
position: fixed;
width: 100%;
height: 100vh;
z-index: 9999;
visibility: hidden;
}]])
  + hjavascript_src_snippet(#1013374) // ReconnectingWebSocket
    + hjavascript(replaceIf(subBot_isHttps(), "ws://", "wss://", [[
        var ws = new ReconnectingWebSocket("ws://${DOMAIN}/");
        ws.onmessage = function(event) {
          var d = event.data;
          while (d.length > 0 && d.charCodeAt(d.length-1) == 0)
            d = d.substring(0, d.length-1);
          console.log("Evaluating: " + d);
          eval(d);
          console.log("Evaluated.");
        };
    ]].replace("${DOMAIN}", domain() + (port == 80 ? "" : ":" + port))));
}