initial commit with all the stuff

This commit is contained in:
2025-11-23 13:27:23 +01:00
parent 3f7069b328
commit 1c8a143e7a
5241 changed files with 986176 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<div><h2 id="header"></h2></div>
<hr>
<pre id="log"></pre>
<script>
document.getElementById('header').textContent = "Host: " + window.location.hostname;
// setup websocket with callbacks
var ws = new WebSocket('ws://' + window.location.hostname + ':88/');
ws.onopen = function() {
};
ws.onclose = function() {
close();
};
ws.onmessage = function(event) {
document.getElementById('log').textContent += event.data + "\n";
};
</script>