Aluode commited on
Commit
7c3de98
·
verified ·
1 Parent(s): 925a57b

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +197 -19
index.html CHANGED
@@ -1,19 +1,197 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Perception Lab | Legoset Science</title>
7
+ <style>
8
+ :root {
9
+ --neon-green: #00ff9d;
10
+ --neon-blue: #00f3ff;
11
+ --deep-space: #0a0a0a;
12
+ --panel-gray: #141414;
13
+ --text-main: #c0c0c0;
14
+ --warning: #ffaa00;
15
+ }
16
+
17
+ body {
18
+ background-color: var(--deep-space);
19
+ color: var(--text-main);
20
+ font-family: 'Courier New', Courier, monospace;
21
+ margin: 0;
22
+ display: flex;
23
+ flex-direction: column;
24
+ align-items: center;
25
+ min-height: 100vh;
26
+ line-height: 1.6;
27
+ }
28
+
29
+ .container {
30
+ max-width: 850px;
31
+ width: 90%;
32
+ margin-top: 60px;
33
+ margin-bottom: 60px;
34
+ }
35
+
36
+ /* Glitchy Title Effect */
37
+ h1 {
38
+ font-size: 3rem;
39
+ margin-bottom: 0.2rem;
40
+ color: white;
41
+ text-transform: uppercase;
42
+ letter-spacing: 4px;
43
+ border-bottom: 2px solid var(--neon-green);
44
+ display: inline-block;
45
+ padding-bottom: 10px;
46
+ }
47
+
48
+ .tagline {
49
+ font-size: 1.1rem;
50
+ color: var(--neon-green);
51
+ margin-bottom: 3rem;
52
+ font-style: italic;
53
+ }
54
+
55
+ .card {
56
+ background: var(--panel-gray);
57
+ border: 1px solid #333;
58
+ border-left: 4px solid var(--neon-blue);
59
+ padding: 30px;
60
+ margin-bottom: 30px;
61
+ box-shadow: 0 10px 30px rgba(0,0,0,0.5);
62
+ }
63
+
64
+ .warning-box {
65
+ border-left: 4px solid var(--warning);
66
+ background: rgba(255, 170, 0, 0.05);
67
+ padding: 15px;
68
+ font-size: 0.9rem;
69
+ margin-top: 15px;
70
+ color: #ddd;
71
+ }
72
+
73
+ /* The Big Button */
74
+ .download-btn {
75
+ display: block;
76
+ background-color: transparent;
77
+ color: var(--neon-blue);
78
+ border: 2px solid var(--neon-blue);
79
+ font-weight: bold;
80
+ font-size: 1.4rem;
81
+ padding: 20px;
82
+ text-align: center;
83
+ text-decoration: none;
84
+ transition: all 0.2s;
85
+ margin: 20px 0;
86
+ text-transform: uppercase;
87
+ letter-spacing: 2px;
88
+ }
89
+
90
+ .download-btn:hover {
91
+ background-color: var(--neon-blue);
92
+ color: black;
93
+ box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
94
+ transform: translateY(-2px);
95
+ }
96
+
97
+ h2 {
98
+ color: white;
99
+ border-bottom: 1px solid #333;
100
+ padding-bottom: 10px;
101
+ margin-top: 0;
102
+ }
103
+
104
+ h3 {
105
+ color: var(--neon-green);
106
+ margin-top: 25px;
107
+ }
108
+
109
+ ul {
110
+ list-style-type: square;
111
+ padding-left: 20px;
112
+ }
113
+
114
+ li {
115
+ margin-bottom: 8px;
116
+ }
117
+
118
+ code {
119
+ background: #222;
120
+ padding: 2px 6px;
121
+ color: #ff7b00;
122
+ }
123
+
124
+ .footer {
125
+ margin-top: 50px;
126
+ text-align: center;
127
+ color: #555;
128
+ font-size: 0.8rem;
129
+ border-top: 1px solid #222;
130
+ padding-top: 20px;
131
+ }
132
+ </style>
133
+ </head>
134
+ <body>
135
+
136
+ <div class="container">
137
+ <h1>Perception Lab</h1>
138
+ <div class="tagline">Legoset 'science' & Fringe Ideas</div>
139
+
140
+ <div class="card">
141
+ <h2>📥 Download Portable Build</h2>
142
+ <p>A self-contained environment. No install required. Just unzip and run.</p>
143
+
144
+ <a href="https://huggingface.co/spaces/Aluode/PerceptionLabPortable/resolve/main/PerceptionLab_Portable.zip?download=true" class="download-btn">
145
+ [ DOWNLOAD ZIP ~340 MB ]
146
+ </a>
147
+
148
+ <div class="warning-box">
149
+ <strong>⚠️ NOTE:</strong> This includes embedded Python but may lack some things.
150
+ Some workflows might be broken. You might need to download EEG files separately.
151
+ <br><br>
152
+ <em>"Not all things may be kosher tho."</em>
153
+ </div>
154
+ </div>
155
+
156
+ <div class="card">
157
+ <h2>🌌 What is this?</h2>
158
+ <p>
159
+ It is some random nodes. Random ideas. Me thinking about thinking.
160
+ The fun is in wiring the nodes. The non-fun is when things are broke.
161
+ </p>
162
+ <p>
163
+ The nodes are very esoteric. Some may work together, some may not.
164
+ You will see lots of neural fields, Mandalas, and weird graphs.
165
+ It may feel like racket science. So game on.
166
+ </p>
167
+
168
+ <h3>Key Features (When they work):</h3>
169
+ <ul>
170
+ <li><strong>Holographic Fields:</strong> Visualize standing wave patterns and interference.</li>
171
+ <li><strong>Biological Interface:</strong> Support for EEG (EDF files) and BrainFlow.</li>
172
+ <li><strong>Cymatics Engine:</strong> Vibration modes and Chladni figures.</li>
173
+ <li><strong>300+ Nodes:</strong> Quantum Qubits, Fractal Attractors, Time-Crystals, etc.</li>
174
+ </ul>
175
+ </div>
176
+
177
+ <div class="card">
178
+ <h2>🛠 How to Run</h2>
179
+ <ol>
180
+ <li>Download the archive above.</li>
181
+ <li><strong>Extract</strong> the ZIP to a folder (e.g., <code>C:\PerceptionLab</code>).</li>
182
+ <li>Do NOT run from inside the zip.</li>
183
+ <li>Double-click <code>Start_Lab.bat</code>.</li>
184
+ <li>Wait 10-20 seconds for the Neural Engine to initialize.</li>
185
+ </ol>
186
+ </div>
187
+
188
+ <div class="footer">
189
+ Created by Antti's wild ideas and a bunch of different AIs.<br>
190
+ Inspired by a ton of science papers. Thanks gais.<br>
191
+ <br>
192
+ <em>"If you do manage to figure out how consciousness works... Salud! Good luck space man."</em>
193
+ </div>
194
+ </div>
195
+
196
+ </body>
197
+ </html>