add cvm link

This commit is contained in:
Lily Tsuru 2024-04-03 02:23:08 -04:00
parent 77ea56e1a8
commit 0343784087
2 changed files with 5 additions and 2 deletions

View file

@ -28,9 +28,12 @@
</div> </div>
<p style="margin-top: 30px; text-align: center; font-size: 11px; color: #999;"> <p style="margin-top: 30px; text-align: center; font-size: 11px; color: #999;">
To avoid misusage, we re-snapshot the computer every 15 minutes! <a href="TBD: Check cngit lol">[Source code]</a> To avoid misusage, we re-snapshot the computer every 15 minutes! <a href="https://git.computernewb/collabvm/socketcomputer">[Source code]</a>
</p> </p>
<a href="https://computernewb.com/collab-vm">For more VMs check out CollabVM!</a>
<center><iframe src="https://xat.com/embed/chat.php#id=213019806&gn=computernewb" width="650" height="486" frameborder="0" scrolling="no"></iframe><br><small><a target="_BLANK" href="https://xat.com/web_gear/chat/embed.php?id=213019806&GroupName=computernewb">Get computernewb chat group</a> | <a target="_BLANK" href="https://xat.com/computernewb"> Go to computernewb website</a></small><br></center> <center><iframe src="https://xat.com/embed/chat.php#id=213019806&gn=computernewb" width="650" height="486" frameborder="0" scrolling="no"></iframe><br><small><a target="_BLANK" href="https://xat.com/web_gear/chat/embed.php?id=213019806&GroupName=computernewb">Get computernewb chat group</a> | <a target="_BLANK" href="https://xat.com/computernewb"> Go to computernewb website</a></small><br></center>

View file

@ -323,6 +323,6 @@ class SocketClient {
let globalclient = null; let globalclient = null;
document.addEventListener("DOMContentLoaded", async () => { document.addEventListener("DOMContentLoaded", async () => {
globalclient = new SocketClient("ws://127.0.0.1:4050", document.getElementById("xp-canvas") as HTMLCanvasElement); globalclient = new SocketClient("wss://socket.computer/ws", document.getElementById("xp-canvas") as HTMLCanvasElement);
globalclient.connect(); globalclient.connect();
}) })