-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild-logs.html
More file actions
319 lines (266 loc) · 14.5 KB
/
Copy pathbuild-logs.html
File metadata and controls
319 lines (266 loc) · 14.5 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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Skyden | Engineering Build Logs & Testing</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500;700&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<style>
:root {
--bg-void: #080c14;
--bg-panel: #0e1728;
--bg-panel-2: #101c33;
--line: #1c2c47;
--line-bright: #2c4468;
--cyan: #5eead4;
--cyan-dim: rgba(94, 234, 212, 0.15);
--amber: #ffb020;
--amber-dim: rgba(255, 176, 32, 0.15);
--text: #c7d2e3;
--text-dim: #64769a;
--text-bright: #f3f6fb;
--font-display: 'Space Grotesk', sans-serif;
--font-body: 'Inter', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: var(--font-body);
background-color: var(--bg-void);
background-image:
linear-gradient(var(--line) 1px, transparent 1px),
linear-gradient(90deg, var(--line) 1px, transparent 1px);
background-size: 42px 42px;
color: var(--text);
line-height: 1.6;
padding: 0 1.25rem 1rem;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--cyan-dim); color: var(--text-bright); }
/* ===== TOP NAVBAR ===== */
.top-navbar {
position: sticky;
top: 0;
z-index: 1000;
background: rgba(14, 23, 40, 0.92);
backdrop-filter: blur(8px);
border-bottom: 1px solid var(--line-bright);
margin: 0 -1.25rem 2rem -1.25rem;
padding: 0.85rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-brand { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--text-bright); display: flex; align-items: center; gap: 0.5rem; }
.nav-brand span { color: var(--cyan); font-family: var(--font-mono); font-size: 0.75rem; border: 1px solid var(--cyan); padding: 0.1rem 0.4rem; border-radius: 3px; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-dim); transition: color 0.2s ease; display: flex; align-items: center; gap: 0.3rem; }
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.nav-links a.active::before { content: ">"; color: var(--amber); font-weight: bold; }
/* ===== PAGE LAYOUT ===== */
.page-layout { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 240px 1fr; gap: 2rem; align-items: start; }
.sidebar-nav { position: sticky; top: 5rem; background: var(--bg-panel); border: 1px solid var(--line-bright); padding: 1.25rem; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-section-title { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; color: var(--amber); text-transform: uppercase; border-bottom: 1px solid var(--line-bright); padding-bottom: 0.4rem; margin-bottom: 0.75rem; }
.sidebar-menu { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-menu a { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text); padding: 0.4rem 0.6rem; display: block; border: 1px solid transparent; transition: all 0.2s ease; }
.sidebar-menu a:hover, .sidebar-menu a.active { border-color: var(--cyan); background: var(--cyan-dim); color: var(--cyan); }
.sys-telemetry { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-dim); background: var(--bg-panel-2); border: 1px solid var(--line-bright); padding: 0.75rem; line-height: 1.5; }
.status-online { color: var(--cyan); font-weight: bold; }
/* ===== CORNER FRAME MOTIF ===== */
.frame { position: relative; }
.frame::before, .frame::after { content: ""; position: absolute; width: 14px; height: 14px; pointer-events: none; }
.frame::before { top: -1px; left: -1px; border-top: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
.frame::after { bottom: -1px; right: -1px; border-bottom: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }
.corner-tr, .corner-bl { position: absolute; width: 14px; height: 14px; pointer-events: none; }
.corner-tr { top: -1px; right: -1px; border-top: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }
.corner-bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
/* ===== MAIN CONTENT ===== */
header { padding: 2.5rem 2rem 0; background: var(--bg-panel); border: 1px solid var(--line-bright); margin-bottom: 2rem; }
.eyebrow { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; color: var(--cyan); text-transform: uppercase; }
header h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--text-bright); margin: 0.4rem 0 0.3rem; }
header .tagline { font-size: 1.05rem; color: var(--text-dim); font-style: italic; margin-bottom: 1.75rem; }
.title-block { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-bright); }
.title-block div { padding: 0.75rem 1rem; border-right: 1px solid var(--line-bright); }
.title-block div:last-child { border-right: none; }
.title-block .label { display: block; font-family: var(--font-mono); font-size: 0.62rem; color: var(--text-dim); text-transform: uppercase; }
.title-block .value { display: block; font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-bright); font-weight: 500; }
section { margin-bottom: 3rem; }
.sheet-eyebrow { font-family: var(--font-mono); font-size: 0.72rem; color: var(--amber); text-transform: uppercase; letter-spacing: 0.14em; }
h2 { font-family: var(--font-display); font-weight: 700; color: var(--text-bright); font-size: 1.6rem; margin: 0.35rem 0 1rem; }
.dim-line { height: 1px; background: var(--line-bright); margin-bottom: 1.5rem; }
.panel { background: var(--bg-panel); border: 1px solid var(--line-bright); padding: 1.5rem; margin-bottom: 1.5rem; }
.media-placeholder {
width: 100%; height: 220px; background: var(--bg-panel-2); border: 1px dashed var(--line-bright);
display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-dim);
font-family: var(--font-mono); font-size: 0.75rem; margin-bottom: 1rem;
}
.media-placeholder span { color: var(--amber); font-size: 0.68rem; margin-top: 0.3rem; }
.log-meta { font-family: var(--font-mono); font-size: 0.75rem; color: var(--cyan); margin-bottom: 0.5rem; display: flex; justify-content: space-between; }
.log-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-bright); margin-bottom: 0.75rem; }
.code-block {
background: var(--bg-void); border: 1px solid var(--line-bright); padding: 1rem;
font-family: var(--font-mono); font-size: 0.78rem; color: var(--cyan); overflow-x: auto; margin-top: 1rem;
}
.build-3d-box { height: 180px; background: var(--bg-panel-2); border: 1px solid var(--line-bright); margin-bottom: 1rem; position: relative; }
#build-3d-canvas { width: 100%; height: 100%; display: block; }
footer { text-align: center; margin-top: 3rem; color: var(--text-dim); font-family: var(--font-mono); font-size: 0.72rem; }
@media (max-width: 900px) {
.page-layout { grid-template-columns: 1fr; }
.sidebar-nav { position: relative; top: 0; }
.title-block { grid-template-columns: repeat(2, 1fr); }
}
</style>
</head>
<body>
<!-- STICKY NAVBAR -->
<nav class="top-navbar">
<a href="index.html" class="nav-brand">SKYDEN <span>v2.0</span></a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="build-logs.html" class="active">Build Logs</a></li>
</ul>
</nav>
<!-- PAGE LAYOUT -->
<div class="page-layout">
<!-- SIDEBAR DOCK -->
<aside class="sidebar-nav frame">
<span class="corner-tr"></span><span class="corner-bl"></span>
<div>
<div class="sidebar-section-title">Navigation</div>
<ul class="sidebar-menu">
<li><a href="index.html">01. Home & 3D Viewer</a></li>
<li><a href="about.html">02. About & Bio</a></li>
<li><a href="projects.html">03. CAD & Projects</a></li>
<li><a href="build-logs.html" class="active">04. Build Logs</a></li>
</ul>
</div>
<div>
<div class="sidebar-section-title">Log Entries</div>
<ul class="sidebar-menu">
<li><a href="#log-03">LOG_03: SLA Resin Curing</a></li>
<li><a href="#log-02">LOG_02: Three.js Pipeline</a></li>
<li><a href="#log-01">LOG_01: Wing Airfoil Slicing</a></li>
</ul>
</div>
<div class="sys-telemetry">
<div>SYS STATUS: <span class="status-online">ONLINE</span></div>
<div>TOTAL LOGS: 03 ENTRIES</div>
<div>LAST UPDATED: 2026.07</div>
</div>
</aside>
<!-- MAIN CONTENT AREA -->
<div class="container">
<header class="frame">
<span class="corner-tr"></span><span class="corner-bl"></span>
<span class="eyebrow">CHRONOLOGICAL ENGINEERING LOGS</span>
<h1>BUILD LOGS & TESTING</h1>
<p class="tagline">Print Telemetry, Slicer Tuning, and Interactive WebGL Development Iterations.</p>
<div class="title-block">
<div><span class="label">Total Logs</span><span class="value">03 Posts</span></div>
<div><span class="label">Topic</span><span class="value">Aero / Print / Web</span></div>
<div><span class="label">Sheet</span><span class="value">04 / 04</span></div>
<div><span class="label">Status</span><span class="value">Documented</span></div>
</div>
</header>
<!-- LOG ENTRY 03 -->
<section id="log-03">
<span class="sheet-eyebrow">Sheet 04A</span>
<h2>Manufacturing Telemetry Log</h2>
<div class="dim-line"></div>
<div class="panel frame">
<span class="corner-tr"></span><span class="corner-bl"></span>
<div class="log-meta">
<span>LOG #003 · HIGH PRECISE SLA RESIN CURED NOZZLE</span>
<span>DATE: 2026.07.18</span>
</div>
<h3 class="log-title">Micro-Cooling Channel Dimensional Tolerance Testing</h3>
<div class="media-placeholder">
<span>Replace with sla_print_macro.jpg</span>
</div>
<p style="font-size:0.9rem; color:var(--text); margin-bottom:0.8rem;">
Tested 0.025mm layer height resolution on SLA toughness resin for fluidic cooling channels. Measured internal overhang deflection under 405nm UV post-cure cycles.
</p>
<div class="code-block">
SLICER CONFIGURATION:<br>
Layer Height: 0.025 mm | Exposure Time: 2.8s | Bottom Layers: 6 | Lift Speed: 40 mm/min
</div>
</div>
</section>
<!-- LOG ENTRY 02 -->
<section id="log-02">
<span class="sheet-eyebrow">Sheet 04B</span>
<h2>Software Development Log</h2>
<div class="dim-line"></div>
<div class="panel frame">
<span class="corner-tr"></span><span class="corner-bl"></span>
<div class="log-meta">
<span>LOG #002 · WEBGL RENDERING PIPELINE</span>
<span>DATE: 2026.06.22</span>
</div>
<h3 class="log-title">Integrating Three.js Dark Blueprint Shader and Orbit Controls</h3>
<div class="build-3d-box">
<canvas id="build-3d-canvas"></canvas>
</div>
<p style="font-size:0.9rem; color:var(--text);">
Configured perspective camera dampening, anti-aliasing optimizations, and responsive grid helpers across mobile and desktop viewport containers.
</p>
</div>
</section>
<!-- LOG ENTRY 01 -->
<section id="log-01">
<span class="sheet-eyebrow">Sheet 04C</span>
<h2>Hardware Assembly Log</h2>
<div class="dim-line"></div>
<div class="panel frame">
<span class="corner-tr"></span><span class="corner-bl"></span>
<div class="log-meta">
<span>LOG #001 · UAV AIRFOIL STRUCTURAL SLICING</span>
<span>DATE: 2026.05.10</span>
</div>
<h3 class="log-title">PETG Carbon Fiber Infill Stress Distribution</h3>
<div class="media-placeholder">
<span>Replace with petg_infill_stress.jpg</span>
</div>
<p style="font-size:0.9rem; color:var(--text);">
Evaluated Gyroid vs 3D Honeycomb internal spars for torsional rigidity on UAV wing tips. Gyroid provided 14% better resistance to twist under load.
</p>
</div>
</section>
<footer>SKYDEN — ENGINEERING PORTFOLIO · HOSTED ON GITHUB PAGES</footer>
</div>
</div>
<!-- BUILD LOGS PAGE 3D SCRIPT -->
<script>
const container = document.querySelector('.build-3d-box');
const canvas = document.getElementById('build-3d-canvas');
const scene = new THREE.Scene();
scene.background = new THREE.Color(0x101c33);
const camera = new THREE.PerspectiveCamera(45, container.clientWidth / container.clientHeight, 0.1, 1000);
camera.position.z = 8;
const renderer = new THREE.WebGLRenderer({ canvas: canvas, antialias: true });
renderer.setSize(container.clientWidth, container.clientHeight);
const geo = new THREE.TorusKnotGeometry(2, 0.5, 100, 16);
const mat = new THREE.MeshBasicMaterial({ color: 0xffb020, wireframe: true });
const mesh = new THREE.Mesh(geo, mat);
scene.add(mesh);
function animate() {
requestAnimationFrame(animate);
mesh.rotation.x += 0.01;
mesh.rotation.y += 0.01;
renderer.render(scene, camera);
}
animate();
window.addEventListener('resize', () => {
camera.aspect = container.clientWidth / container.clientHeight;
camera.updateProjectionMatrix();
renderer.setSize(container.clientWidth, container.clientHeight);
});
</script>
</body>
</html>