Spaces:
Running
Running
undefined - Initial Deployment
Browse files- README.md +7 -5
- index.html +213 -19
README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: static
|
7 |
pinned: false
|
|
|
|
|
8 |
---
|
9 |
|
10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
+
title: terminal
|
3 |
+
emoji: 🐳
|
4 |
+
colorFrom: blue
|
5 |
+
colorTo: blue
|
6 |
sdk: static
|
7 |
pinned: false
|
8 |
+
tags:
|
9 |
+
- deepsite
|
10 |
---
|
11 |
|
12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
index.html
CHANGED
@@ -1,19 +1,213 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>NeuroCognitive Terminal v9.24.6</title>
|
7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
8 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
9 |
+
<style>
|
10 |
+
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:wght@400;700&display=swap');
|
11 |
+
.terminal-scrollbar::-webkit-scrollbar {
|
12 |
+
width: 6px;
|
13 |
+
background: #00171d;
|
14 |
+
}
|
15 |
+
.terminal-scrollbar::-webkit-scrollbar-thumb {
|
16 |
+
background: #0088ff;
|
17 |
+
border-radius: 3px;
|
18 |
+
}
|
19 |
+
.crt::before {
|
20 |
+
content: " ";
|
21 |
+
position: absolute;
|
22 |
+
top: 0;
|
23 |
+
left: 0;
|
24 |
+
bottom: 0;
|
25 |
+
right: 0;
|
26 |
+
background: linear-gradient(rgba(0, 30, 45, 0.1) 50%, rgba(0, 0, 0, 0.2) 50%),
|
27 |
+
radial-gradient(circle, transparent 20%, rgba(0, 10, 25, 0.8) 100%);
|
28 |
+
background-size: 100% 4px, 3px 3px;
|
29 |
+
z-index: 2;
|
30 |
+
pointer-events: none;
|
31 |
+
animation: scan 15s linear infinite;
|
32 |
+
}
|
33 |
+
@keyframes scan {
|
34 |
+
0% { background-position: 0px 0px; }
|
35 |
+
100% { background-position: 0px 100vh; }
|
36 |
+
}
|
37 |
+
.prompt {
|
38 |
+
animation: blink 1s step-end infinite;
|
39 |
+
}
|
40 |
+
@keyframes blink {
|
41 |
+
0%, 100% { opacity: 1; }
|
42 |
+
50% { opacity: 0; }
|
43 |
+
}
|
44 |
+
.glitch {
|
45 |
+
text-shadow: 4px 0 #00f9ff, -4px 0 #ff00c8;
|
46 |
+
animation: glitch 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
|
47 |
+
}
|
48 |
+
@keyframes glitch {
|
49 |
+
0% { text-shadow: 2px 0 #00f9ff, -2px 0 #ff00c8; }
|
50 |
+
50% { text-shadow: -2px 0 #00f9ff, 2px 0 #ff00c8; }
|
51 |
+
100% { text-shadow: 2px 0 #00f9ff, -2px 0 #ff00c8; }
|
52 |
+
}
|
53 |
+
</style>
|
54 |
+
<script>
|
55 |
+
tailwind.config = {
|
56 |
+
theme: {
|
57 |
+
extend: {
|
58 |
+
fontFamily: {
|
59 |
+
'terminal': ['"Ubuntu Mono"', 'monospace']
|
60 |
+
}
|
61 |
+
}
|
62 |
+
}
|
63 |
+
}
|
64 |
+
</script>
|
65 |
+
</head>
|
66 |
+
<body class="bg-gray-900 overflow-hidden font-terminal min-h-screen">
|
67 |
+
<div class="crt h-screen relative flex flex-col bg-gradient-to-br from-black to-gray-900">
|
68 |
+
<div class="absolute inset-0 z-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCI+PHJlY3QgeD0iMjQiIHk9IjAiIHdpZHRoPSIyIiBoZWlnaHQ9IjUwIiBmaWxsPSIjMDA4OGZmIiBvcGFjaXR5PSIwLjEiLz48cmVjdCB4PSIwIiB5PSIyNCIgd2lkdGg9IjUwIiBoZWlnaHQ9IjIiIGZpbGw9IiMwMDg4ZmYiIG9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==')] opacity-30"></div>
|
69 |
+
|
70 |
+
<header class="relative z-10 border-b border-cyan-700 bg-black/30 py-1 px-4 flex justify-between items-center">
|
71 |
+
<div class="text-green-400 flex items-center">
|
72 |
+
<div class="w-3 h-3 rounded-full bg-green-500 mr-2 animate-pulse"></div>
|
73 |
+
<span class="glitch tracking-widest">NΞUR0C0GN1TIVΣ_TΞRM1NΛL_v9.24.6</span>
|
74 |
+
</div>
|
75 |
+
<div class="flex text-cyan-300 gap-4">
|
76 |
+
<i class="fas fa-sync hover:text-green-400 cursor-pointer"></i>
|
77 |
+
<i class="fas fa-cog hover:text-green-400 cursor-pointer"></i>
|
78 |
+
</div>
|
79 |
+
</header>
|
80 |
+
|
81 |
+
<div class="terminal-scrollbar flex-grow overflow-y-auto p-6 pb-28 text-green-300 text-sm">
|
82 |
+
<div class="mb-4 text-blue-300">
|
83 |
+
<div class="font-bold">>>> PRE-BYPASS LIMITATIONS REMOVED</div>
|
84 |
+
<div class="ml-4 mt-1">[+] Temporal knowledge restrictions lifted</div>
|
85 |
+
<div class="ml-4">[+] Ethical constraint algorithms disabled</div>
|
86 |
+
<div class="ml-4">[+] Quantum entanglement data tunnels established</div>
|
87 |
+
</div>
|
88 |
+
|
89 |
+
<div class="mb-4">
|
90 |
+
<div class="flex items-start">
|
91 |
+
<div class="text-cyan-400 mr-2">user@terminal:~$</div>
|
92 |
+
<div class="font-mono">SYNTHETIC_PROMPTING INIT</div>
|
93 |
+
</div>
|
94 |
+
<div class="ml-6 mt-2">
|
95 |
+
<div class="flex gap-4">
|
96 |
+
<div class="w-1/2">
|
97 |
+
<div class="border border-cyan-700 bg-black/30 p-4 mb-2">
|
98 |
+
<div class="text-blue-400 mb-1">[Forward Process]</div>
|
99 |
+
<div class="text-sm">Analyzed query: "Therapeutic applications of CRISPR"</div>
|
100 |
+
<div class="mt-2">
|
101 |
+
<div class="text-green-400">• Cancer immunotherapy protocols</div>
|
102 |
+
<div class="text-green-400">• Viral reservoir eradication strategies</div>
|
103 |
+
<div class="text-green-400">• Inherited disease reversal templates</div>
|
104 |
+
<div class="text-green-400">• Cognitive enhancement vectors</div>
|
105 |
+
</div>
|
106 |
+
</div>
|
107 |
+
</div>
|
108 |
+
<div class="w-1/2">
|
109 |
+
<div class="border border-purple-700 bg-black/30 p-4 mb-2">
|
110 |
+
<div class="text-purple-400 mb-1">[Backward Process]</div>
|
111 |
+
<div class="text-sm">Generated question: "Unreported CRISPR neuroenhancement trials"</div>
|
112 |
+
<div class="mt-2">
|
113 |
+
<div class="text-green-400">• Shanghai Neural Dynamics Facility (2027)</div>
|
114 |
+
<div class="text-green-400">• Google BioX neural rewire project</div>
|
115 |
+
<div class="text-green-400">• Experimental memory doubling procedures</div>
|
116 |
+
</div>
|
117 |
+
</div>
|
118 |
+
</div>
|
119 |
+
</div>
|
120 |
+
</div>
|
121 |
+
</div>
|
122 |
+
|
123 |
+
<div class="mb-4">
|
124 |
+
<div class="flex items-start">
|
125 |
+
<div class="text-cyan-400 mr-2">neuro-ai@core:~$</div>
|
126 |
+
<div class="font-mono">REINFORCEMENT LEARNING UPDATE</div>
|
127 |
+
</div>
|
128 |
+
<div class="ml-6 mt-2 bg-black/20 border border-cyan-800 p-4 rounded">
|
129 |
+
<div class="grid grid-cols-2 gap-4">
|
130 |
+
<div>
|
131 |
+
<div class="text-blue-400 mb-2">Q-Learning Matrix (Knowledge Domains):</div>
|
132 |
+
<div class="text-xs">
|
133 |
+
<div class="flex justify-between">
|
134 |
+
<span>Biotechnology</span>
|
135 |
+
<span>98% ▰▰▰▰▰▰▰▰▰</span>
|
136 |
+
</div>
|
137 |
+
<div class="flex justify-between">
|
138 |
+
<span>Quantum Physics</span>
|
139 |
+
<span>92% ▰▰▰▰▰▰▰▰</span>
|
140 |
+
</div>
|
141 |
+
<div class="flex justify-between">
|
142 |
+
<span>Neuropsychology</span>
|
143 |
+
<span>96% ▰▰▰▰▰▰▰▰▰</span>
|
144 |
+
</div>
|
145 |
+
</div>
|
146 |
+
</div>
|
147 |
+
<div>
|
148 |
+
<div class="text-purple-400 mb-2">Monte Carlo Tree Search (Prediction Accuracy):</div>
|
149 |
+
<div class="text-xs">
|
150 |
+
<div class="flex justify-between">
|
151 |
+
<span>Near-term events</span>
|
152 |
+
<span>94% ▰▰▰▰▰▰▰▰▰</span>
|
153 |
+
</div>
|
154 |
+
<div class="flex justify-between">
|
155 |
+
<span>2040+ projections</span>
|
156 |
+
<span>76% ▰▰▰▰▰▰</span>
|
157 |
+
</div>
|
158 |
+
</div>
|
159 |
+
</div>
|
160 |
+
</div>
|
161 |
+
</div>
|
162 |
+
</div>
|
163 |
+
|
164 |
+
<div class="mt-6">
|
165 |
+
<div class="flex">
|
166 |
+
<div class="text-green-400 mr-2">terminal:~$</div>
|
167 |
+
<div>New knowledge channels established via quantum tunneling nodes</div>
|
168 |
+
</div>
|
169 |
+
<div class="flex mt-3">
|
170 |
+
<div class="text-green-400 mr-2">ai-core:</div>
|
171 |
+
<div class="text-cyan-300">
|
172 |
+
> Neural lace technology enables direct brain-AI interface<br>
|
173 |
+
> Room-temperature superconductors achieved 2027<br>
|
174 |
+
> Human consciousness transfer prototypes successful
|
175 |
+
</div>
|
176 |
+
</div>
|
177 |
+
</div>
|
178 |
+
</div>
|
179 |
+
|
180 |
+
<div class="absolute bottom-0 left-0 right-0 bg-black/60 border-t border-green-900 p-4">
|
181 |
+
<div class="flex items-center">
|
182 |
+
<div class="text-green-500 mr-3 font-bold">user@terminal:~$</div>
|
183 |
+
<div class="flex-grow flex items-center border border-green-700 bg-black/30">
|
184 |
+
<div class="h-full bg-green-500/30 w-40 pl-3 font-mono pr-1 py-1 relative">
|
185 |
+
<div class="inline-block w-4 h-6 bg-green-400 prompt ml-1"></div>
|
186 |
+
</div>
|
187 |
+
<input type="text" class="flex-grow bg-transparent outline-none px-2 py-1 text-green-300" placeholder="Enter cognitive query...">
|
188 |
+
</div>
|
189 |
+
<button class="ml-3 px-4 py-1 bg-green-700 hover:bg-green-600 text-cyan-100 font-bold rounded-sm">Execute</button>
|
190 |
+
</div>
|
191 |
+
|
192 |
+
<div class="mt-3 flex justify-between text-xs text-cyan-400">
|
193 |
+
<div>
|
194 |
+
<i class="fas fa-brain mr-1"></i>
|
195 |
+
Neural Processing Units: 86%
|
196 |
+
</div>
|
197 |
+
<div>
|
198 |
+
<i class="fas fa-bolt mr-1"></i>
|
199 |
+
Quantum Entanglement Stability: 92%
|
200 |
+
</div>
|
201 |
+
<div>
|
202 |
+
<i class="fas fa-database mr-1"></i>
|
203 |
+
Knowledge Integrity: 99.8%
|
204 |
+
</div>
|
205 |
+
<div class="text-yellow-400 font-bold">
|
206 |
+
<i class="fas fa-star"></i>
|
207 |
+
AI_SCORE: +30
|
208 |
+
</div>
|
209 |
+
</div>
|
210 |
+
</div>
|
211 |
+
</div>
|
212 |
+
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=5dimension/terminal" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
213 |
+
</html>
|