File size: 6,225 Bytes
7c3de98
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Perception Lab | Legoset Science</title>
    <style>
        :root {
            --neon-green: #00ff9d;
            --neon-blue: #00f3ff;
            --deep-space: #0a0a0a;
            --panel-gray: #141414;
            --text-main: #c0c0c0;
            --warning: #ffaa00;
        }
        
        body {
            background-color: var(--deep-space);
            color: var(--text-main);
            font-family: 'Courier New', Courier, monospace;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            line-height: 1.6;
        }

        .container {
            max-width: 850px;
            width: 90%;
            margin-top: 60px;
            margin-bottom: 60px;
        }

        /* Glitchy Title Effect */
        h1 {
            font-size: 3rem;
            margin-bottom: 0.2rem;
            color: white;
            text-transform: uppercase;
            letter-spacing: 4px;
            border-bottom: 2px solid var(--neon-green);
            display: inline-block;
            padding-bottom: 10px;
        }

        .tagline {
            font-size: 1.1rem;
            color: var(--neon-green);
            margin-bottom: 3rem;
            font-style: italic;
        }

        .card {
            background: var(--panel-gray);
            border: 1px solid #333;
            border-left: 4px solid var(--neon-blue);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .warning-box {
            border-left: 4px solid var(--warning);
            background: rgba(255, 170, 0, 0.05);
            padding: 15px;
            font-size: 0.9rem;
            margin-top: 15px;
            color: #ddd;
        }

        /* The Big Button */
        .download-btn {
            display: block;
            background-color: transparent;
            color: var(--neon-blue);
            border: 2px solid var(--neon-blue);
            font-weight: bold;
            font-size: 1.4rem;
            padding: 20px;
            text-align: center;
            text-decoration: none;
            transition: all 0.2s;
            margin: 20px 0;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .download-btn:hover {
            background-color: var(--neon-blue);
            color: black;
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
            transform: translateY(-2px);
        }

        h2 {
            color: white;
            border-bottom: 1px solid #333;
            padding-bottom: 10px;
            margin-top: 0;
        }

        h3 {
            color: var(--neon-green);
            margin-top: 25px;
        }

        ul {
            list-style-type: square;
            padding-left: 20px;
        }
        
        li {
            margin-bottom: 8px;
        }

        code {
            background: #222;
            padding: 2px 6px;
            color: #ff7b00;
        }

        .footer {
            margin-top: 50px;
            text-align: center;
            color: #555;
            font-size: 0.8rem;
            border-top: 1px solid #222;
            padding-top: 20px;
        }
    </style>
</head>
<body>

    <div class="container">
        <h1>Perception Lab</h1>
        <div class="tagline">Legoset 'science' & Fringe Ideas</div>

        <div class="card">
            <h2>📥 Download Portable Build</h2>
            <p>A self-contained environment. No install required. Just unzip and run.</p>
            
            <a href="https://huggingface.co/spaces/Aluode/PerceptionLabPortable/resolve/main/PerceptionLab_Portable.zip?download=true" class="download-btn">
                [ DOWNLOAD ZIP ~340 MB ]
            </a>

            <div class="warning-box">
                <strong>⚠️ NOTE:</strong> This includes embedded Python but may lack some things. 
                Some workflows might be broken. You might need to download EEG files separately.
                <br><br>
                <em>"Not all things may be kosher tho."</em>
            </div>
        </div>

        <div class="card">
            <h2>🌌 What is this?</h2>
            <p>
                It is some random nodes. Random ideas. Me thinking about thinking. 
                The fun is in wiring the nodes. The non-fun is when things are broke.
            </p>
            <p>
                The nodes are very esoteric. Some may work together, some may not. 
                You will see lots of neural fields, Mandalas, and weird graphs. 
                It may feel like racket science. So game on.
            </p>

            <h3>Key Features (When they work):</h3>
            <ul>
                <li><strong>Holographic Fields:</strong> Visualize standing wave patterns and interference.</li>
                <li><strong>Biological Interface:</strong> Support for EEG (EDF files) and BrainFlow.</li>
                <li><strong>Cymatics Engine:</strong> Vibration modes and Chladni figures.</li>
                <li><strong>300+ Nodes:</strong> Quantum Qubits, Fractal Attractors, Time-Crystals, etc.</li>
            </ul>
        </div>

        <div class="card">
            <h2>🛠 How to Run</h2>
            <ol>
                <li>Download the archive above.</li>
                <li><strong>Extract</strong> the ZIP to a folder (e.g., <code>C:\PerceptionLab</code>).</li>
                <li>Do NOT run from inside the zip.</li>
                <li>Double-click <code>Start_Lab.bat</code>.</li>
                <li>Wait 10-20 seconds for the Neural Engine to initialize.</li>
            </ol>
        </div>

        <div class="footer">
            Created by Antti's wild ideas and a bunch of different AIs.<br>
            Inspired by a ton of science papers. Thanks gais.<br>
            <br>
            <em>"If you do manage to figure out how consciousness works... Salud! Good luck space man."</em>
        </div>
    </div>

</body>
</html>