Spaces:
Sleeping
Sleeping
File size: 4,134 Bytes
2fa2b3c 8aab958 2fa2b3c 8ced202 8aab958 2fa2b3c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Codex Autonomous Cognitive Engine</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
html, body {
margin: 0;
padding: 0;
background: #000;
color: #eaeaea;
height: 100%;
overflow: hidden;
font-family: system-ui, -apple-system, Segoe UI, Roboto, monospace;
}
.wrap {
display: grid;
place-items: center;
height: 100%;
}
.caption {
position: fixed;
bottom: 12px;
width: 100%;
text-align: center;
font-size: 12px;
opacity: 0.6;
pointer-events: none;
}
</style>
</head>
<body>
<div class="wrap">
<!-- ========================= -->
<!-- AUTONOMOUS SVG RUNTIME -->
<!-- ========================= -->
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="-200 -200 400 400"
width="70vmin"
height="70vmin"
style="background:black">
<!-- DEFINITIONS -->
<defs>
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="blur"/>
<feMerge>
<feMergeNode in="blur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Λ : CONSTRAINT BOUNDARY -->
<circle
cx="0" cy="0" r="160"
fill="none"
stroke="#444"
stroke-width="2"
stroke-dasharray="6 10"/>
<!-- AUTONOMOUS RECURRENCE LOOP -->
<circle
cx="0" cy="0" r="120"
fill="none"
stroke="#00ffee"
stroke-width="3"
filter="url(#glow)">
<animateTransform
attributeName="transform"
type="rotate"
from="0 0 0"
to="360 0 0"
dur="30s"
repeatCount="indefinite"/>
</circle>
<!-- Ξ : COGNITIVE STATE CORE -->
<circle
cx="0" cy="0" r="18"
fill="#ffffff"
filter="url(#glow)">
<animate
attributeName="r"
values="16;22;16"
dur="4s"
repeatCount="indefinite"/>
</circle>
<!-- Ω : MEMORY PHASE RING -->
<circle
cx="0" cy="0" r="50"
fill="none"
stroke="#ffaa00"
stroke-width="2"
opacity="0.6">
<animateTransform
attributeName="transform"
type="rotate"
from="360 0 0"
to="0 0 0"
dur="18s"
repeatCount="indefinite"/>
</circle>
<!-- Φ : STRUCTURAL NODES -->
<g>
<circle cx="0" cy="-90" r="6" fill="#00ff88">
<animate
attributeName="cy"
values="-80;-100;-80"
dur="6s"
repeatCount="indefinite"/>
</circle>
<g transform="rotate(60)">
<circle cx="0" cy="-90" r="6" fill="#00ff88"/>
</g>
<g transform="rotate(120)">
<circle cx="0" cy="-90" r="6" fill="#00ff88"/>
</g>
<g transform="rotate(180)">
<circle cx="0" cy="-90" r="6" fill="#00ff88"/>
</g>
<g transform="rotate(240)">
<circle cx="0" cy="-90" r="6" fill="#00ff88"/>
</g>
<g transform="rotate(300)">
<circle cx="0" cy="-90" r="6" fill="#00ff88"/>
</g>
</g>
<!-- Ψ : INTENT PERTURBATION -->
<circle
cx="0" cy="0" r="90"
fill="none"
stroke="#ffffff"
stroke-width="1"
opacity="0.25">
<animate
attributeName="opacity"
values="0.1;0.4;0.1"
dur="7s"
repeatCount="indefinite"/>
</circle>
<!-- TIME DIRECTION INDICATOR -->
<path
d="M 120 0 L 140 -6 L 140 6 Z"
fill="#00ffee">
<animateTransform
attributeName="transform"
type="rotate"
from="0 0 0"
to="360 0 0"
dur="30s"
repeatCount="indefinite"/>
</path>
</svg>
</div>
<div class="caption">
Autonomous Cognitive Engine · Geometry = State · Motion = Computation
</div>
</body>
</html> |