Spaces:
Sleeping
Sleeping
Update index.html
Browse files- index.html +19 -39
index.html
CHANGED
|
@@ -1,46 +1,26 @@
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
-
<meta charset="UTF-8">
|
| 5 |
-
<title>
|
| 6 |
-
<
|
| 7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
</head>
|
| 9 |
-
|
| 10 |
<body>
|
| 11 |
-
|
| 12 |
-
<
|
| 13 |
-
<
|
| 14 |
-
<p class="equation">
|
| 15 |
-
dΞ/dt = −Λ ∇Ξ ( Θ + Φ − Ψ + Ω )
|
| 16 |
-
</p>
|
| 17 |
-
</header>
|
| 18 |
-
|
| 19 |
-
<main class="container">
|
| 20 |
-
|
| 21 |
-
<!-- SVG Virtual Machine -->
|
| 22 |
-
<svg id="engine" viewBox="-200 -200 400 400">
|
| 23 |
-
<defs>
|
| 24 |
-
<radialGradient id="coreGradient">
|
| 25 |
-
<stop offset="0%" stop-color="#00ffff"/>
|
| 26 |
-
<stop offset="100%" stop-color="#001111"/>
|
| 27 |
-
</radialGradient>
|
| 28 |
-
</defs>
|
| 29 |
-
|
| 30 |
-
<circle id="core" r="40" fill="url(#coreGradient)"/>
|
| 31 |
-
<g id="orbits"></g>
|
| 32 |
-
</svg>
|
| 33 |
-
|
| 34 |
-
<!-- Control Panel -->
|
| 35 |
-
<section class="panel">
|
| 36 |
-
<label>Ψ(t) — Intent Vector</label>
|
| 37 |
-
<input id="psiInput" placeholder="enter intent and press enter"/>
|
| 38 |
-
|
| 39 |
-
<div class="log" id="log"></div>
|
| 40 |
-
</section>
|
| 41 |
-
|
| 42 |
-
</main>
|
| 43 |
-
|
| 44 |
-
<script src="engine.js"></script>
|
| 45 |
</body>
|
| 46 |
</html>
|
|
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<title>CodexWebVM :: Self-Hosting Cognitive System</title>
|
| 6 |
+
<style>
|
| 7 |
+
html, body {
|
| 8 |
+
margin: 0;
|
| 9 |
+
background: black;
|
| 10 |
+
color: white;
|
| 11 |
+
font-family: monospace;
|
| 12 |
+
text-align: center;
|
| 13 |
+
}
|
| 14 |
+
video {
|
| 15 |
+
width: 100%;
|
| 16 |
+
height: auto;
|
| 17 |
+
margin-top: 30px;
|
| 18 |
+
}
|
| 19 |
+
</style>
|
| 20 |
</head>
|
|
|
|
| 21 |
<body>
|
| 22 |
+
<h1>🧠 CodexWebVM Cognitive Engine</h1>
|
| 23 |
+
<video src="/runtime/animation.mp4" autoplay loop muted playsinline></video>
|
| 24 |
+
<script src="/runtime/engine.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
</body>
|
| 26 |
</html>
|