-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathos.html
More file actions
298 lines (275 loc) · 10.8 KB
/
os.html
File metadata and controls
298 lines (275 loc) · 10.8 KB
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>S.H.I.T. OS v0.1</title>
<meta name="description" content="Experimental OS Interface - Serious S.H.I.T.">
<link rel="stylesheet" href="css/os.css">
</head>
<body>
<!-- BOOT SCREEN -->
<div id="boot-screen">
<div class="boot-content">
<pre class="boot-text">
S.H.I.T. OS v0.1.0
Copyright (c) 2026 Serious Super Hyper Incredible Things
Checking system integrity... <span class="blink">_</span>
</pre>
<div class="boot-progress">
<div class="boot-progress-bar"></div>
</div>
<p class="boot-status">Loading experimental interface...</p>
</div>
</div>
<!-- DESKTOP -->
<div id="desktop">
<!-- Desktop Icons -->
<div class="desktop-icons">
<div class="icon" data-window="workshops">
<div class="icon-img">
<svg viewBox="0 0 32 32" fill="currentColor">
<rect x="4" y="8" width="24" height="18" fill="none" stroke="currentColor" stroke-width="2"/>
<line x1="4" y1="14" x2="28" y2="14" stroke="currentColor" stroke-width="2"/>
<circle cx="8" cy="11" r="1.5"/>
<circle cx="12" cy="11" r="1.5"/>
</svg>
</div>
<span class="icon-label">Workshops.exe</span>
</div>
<div class="icon" data-window="gear">
<div class="icon-img">
<svg viewBox="0 0 32 32" fill="currentColor">
<path d="M16 6 L18 12 L24 12 L19 16 L21 22 L16 18 L11 22 L13 16 L8 12 L14 12 Z" fill="none" stroke="currentColor" stroke-width="2"/>
</svg>
</div>
<span class="icon-label">Fuzilator.exe</span>
</div>
<div class="icon" data-window="contact">
<div class="icon-img">
<svg viewBox="0 0 32 32" fill="currentColor">
<rect x="4" y="8" width="24" height="16" fill="none" stroke="currentColor" stroke-width="2"/>
<polyline points="4,8 16,18 28,8" fill="none" stroke="currentColor" stroke-width="2"/>
</svg>
</div>
<span class="icon-label">Contact.exe</span>
</div>
<div class="icon" data-window="about">
<div class="icon-img">
<svg viewBox="0 0 32 32" fill="currentColor">
<circle cx="16" cy="16" r="10" fill="none" stroke="currentColor" stroke-width="2"/>
<text x="16" y="21" text-anchor="middle" font-size="12" font-weight="bold">?</text>
</svg>
</div>
<span class="icon-label">About.txt</span>
</div>
<div class="icon" data-window="terminal">
<div class="icon-img">
<svg viewBox="0 0 32 32" fill="currentColor">
<rect x="4" y="6" width="24" height="20" fill="none" stroke="currentColor" stroke-width="2"/>
<text x="8" y="20" font-size="10" font-family="monospace">>_</text>
</svg>
</div>
<span class="icon-label">Terminal</span>
</div>
<div class="icon" data-action="exit">
<div class="icon-img">
<svg viewBox="0 0 32 32" fill="currentColor">
<rect x="6" y="6" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2"/>
<line x1="10" y1="10" x2="22" y2="22" stroke="currentColor" stroke-width="2"/>
<line x1="22" y1="10" x2="10" y2="22" stroke="currentColor" stroke-width="2"/>
</svg>
</div>
<span class="icon-label">Exit to Site</span>
</div>
</div>
<!-- Windows Container -->
<div id="windows-container"></div>
<!-- Taskbar -->
<div id="taskbar">
<button id="start-button">
<span class="start-icon">S</span>
<span>Start</span>
</button>
<div id="taskbar-windows"></div>
<div id="system-tray">
<span id="lang-indicator" title="Toggle Language">EN</span>
<span id="clock">00:00</span>
</div>
</div>
<!-- Start Menu -->
<div id="start-menu" class="hidden">
<div class="start-menu-header">
<div class="start-menu-logo">S.H.I.T.</div>
<div class="start-menu-version">OS v0.1</div>
</div>
<div class="start-menu-items">
<div class="start-menu-item" data-window="workshops">
<span class="menu-icon">W</span> Workshops
</div>
<div class="start-menu-item" data-window="gear">
<span class="menu-icon">F</span> Fuzilator
</div>
<div class="start-menu-item" data-window="contact">
<span class="menu-icon">C</span> Contact
</div>
<div class="start-menu-item" data-window="about">
<span class="menu-icon">?</span> About
</div>
<div class="start-menu-item" data-window="terminal">
<span class="menu-icon">></span> Terminal
</div>
<div class="start-menu-divider"></div>
<div class="start-menu-item" data-action="exit">
<span class="menu-icon">X</span> Exit to Normal Site
</div>
</div>
</div>
</div>
<!-- Window Templates (hidden) -->
<template id="window-template">
<div class="window">
<div class="window-titlebar">
<span class="window-title"></span>
<div class="window-controls">
<button class="window-btn minimize">_</button>
<button class="window-btn maximize">[]</button>
<button class="window-btn close">X</button>
</div>
</div>
<div class="window-content"></div>
<div class="window-statusbar">Ready</div>
</div>
</template>
<!-- Window Contents -->
<div id="window-contents" style="display: none;">
<!-- Workshops Window -->
<div data-window="workshops" data-title="Workshops.exe">
<div class="win-content-inner">
<h2>// EDUCATION MODULES</h2>
<div class="file-list">
<div class="file-item" onclick="window.open('workshops.html', '_self')">
<span class="file-icon">[DIR]</span>
<span class="file-name">ESP32_Synth_AI/</span>
<span class="file-meta">7 sessions | 2,200 NIS</span>
</div>
<div class="file-item" onclick="window.open('workshops.html', '_self')">
<span class="file-icon">[DIR]</span>
<span class="file-name">DIY_Guitar_Pedal/</span>
<span class="file-meta">8 sessions | 2,200 NIS</span>
</div>
<div class="file-item" onclick="window.open('workshops.html', '_self')">
<span class="file-icon">[DIR]</span>
<span class="file-name">1Bit_Synth_Drones/</span>
<span class="file-meta">5 sessions | TBD</span>
</div>
</div>
<div class="win-info-box">
<strong>NEXT BATCH:</strong> February 3rd, 2026<br>
<strong>LOCATION:</strong> Haifa Makerspace<br>
<strong>INCLUDES:</strong> Components + 4h/week lab access
</div>
<button class="win-btn" onclick="window.open('workshops.html', '_self')">Open Full Catalog</button>
</div>
</div>
<!-- Gear Window -->
<div data-window="gear" data-title="Fuzilator.exe - Product Viewer">
<div class="win-content-inner">
<h2>// THE FUZILATOR PUKEMACHINE</h2>
<div class="product-ascii">
<pre>
_______________
| [O] [O] [O] |
| GAIN TONE VOL|
|_______________|
| FUZILATOR |
| PUKEMACHINE |
|_______________|
| [FOOTSWITCH] |
|_______________|
</pre>
</div>
<div class="specs-grid">
<div class="spec-row"><span>TYPE:</span> Dual-Stage Fuzz</div>
<div class="spec-row"><span>CIRCUIT:</span> 2x LPB2 + Tone Stack</div>
<div class="spec-row"><span>FEATURES:</span> Feedback Loop, Internal Piezo</div>
<div class="spec-row"><span>POWER:</span> 9V Negative Center</div>
<div class="spec-row"><span>BYPASS:</span> True Bypass</div>
<div class="spec-row"><span>PRICE:</span> $333 / 1,100 NIS</div>
<div class="spec-row"><span>STOCK:</span> 13 units (limited)</div>
</div>
<button class="win-btn" onclick="window.open('sales.html', '_self')">View Full Details</button>
</div>
</div>
<!-- Contact Window -->
<div data-window="contact" data-title="Contact.exe - Communication">
<div class="win-content-inner">
<h2>// DIRECT CHANNELS</h2>
<div class="contact-list">
<a href="https://wa.me/972539263808" target="_blank" rel="noopener noreferrer" class="contact-item">
<span class="contact-icon">[WA]</span>
<span class="contact-label">WhatsApp</span>
<span class="contact-value">+972-53-926-3808</span>
</a>
<a href="mailto:Dogme84@gmail.com" class="contact-item">
<span class="contact-icon">[@]</span>
<span class="contact-label">Email</span>
<span class="contact-value">Dogme84@gmail.com</span>
</a>
<a href="https://www.instagram.com/shitisizers/" target="_blank" rel="noopener noreferrer" class="contact-item">
<span class="contact-icon">[IG]</span>
<span class="contact-label">Instagram</span>
<span class="contact-value">@shitisizers</span>
</a>
</div>
<button class="win-btn" onclick="window.open('contact.html', '_self')">Open Contact Form</button>
</div>
</div>
<!-- About Window -->
<div data-window="about" data-title="About.txt - Notepad">
<div class="win-content-inner notepad">
<pre>
============================================
S.H.I.T. OS v0.1.0
Super Hyper Incredible Things
============================================
OPERATOR: Yaniv Schonfeld
LOCATION: Haifa, Israel
MISSION: Circuit-bending, gear modification,
and creative electronics education.
PHILOSOPHY:
"Nothing Is Holy. Everything is raw material
for transformation."
TECHNOLOGIES:
- ESP32 / Arduino / Raspberry Pi
- Daisy Seed DSP
- Analog Circuit Design
- KiCad / PCB Design
- CNC Machining
- 3D Printing
============================================
This interface is an experiment.
Press [ESC] or click "Exit" to return
to the normal website.
============================================
</pre>
</div>
</div>
<!-- Terminal Window -->
<div data-window="terminal" data-title="Terminal - S.H.I.T. Shell">
<div class="win-content-inner terminal">
<div id="terminal-output">
<div class="term-line">S.H.I.T. Shell v0.1.0</div>
<div class="term-line">Type 'help' for available commands.</div>
<div class="term-line"> </div>
</div>
<div class="term-input-line">
<span class="term-prompt">guest@shit-os:~$</span>
<input type="text" id="terminal-input" autocomplete="off" spellcheck="false">
</div>
</div>
</div>
</div>
<script src="js/os.js"></script>
</body>
</html>