-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogramming.html
More file actions
398 lines (353 loc) · 16.7 KB
/
programming.html
File metadata and controls
398 lines (353 loc) · 16.7 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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Team 7130 | Programming Team</title>
<!-- Load CSS in this order -->
<link rel="stylesheet" href="reset.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="programming.css"> <!-- Load last -->
<style>
.programming-content {
background-color: #1e1e1e;
color: #d4d4d4;
padding: 40px 0;
min-height: 100vh;
}
.code-header {
font-family: 'Consolas', monospace;
color: #569cd6;
border-bottom: 1px solid #404040;
padding-bottom: 20px;
margin-bottom: 30px;
}
.section-title {
color: #c586c0;
font-family: 'Consolas', monospace;
margin: 30px 0 20px;
}
.code-block {
background-color: #2d2d2d;
border-radius: 8px;
padding: 20px;
margin: 20px 0;
font-family: 'Consolas', monospace;
}
.resource-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin: 20px 0;
}
.resource-card {
background-color: #2d2d2d;
border-left: 4px solid #569cd6;
padding: 20px;
border-radius: 4px;
transition: all 0.3s ease;
}
.resource-card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(86,156,214,0.3);
}
.resource-title {
color: #dcdcaa;
margin-bottom: 15px;
}
.resource-description {
color: #9cdcfe;
font-size: 0.9em;
}
.tag {
display: inline-block;
background-color: #4d4d4d;
color: #9cdcfe;
padding: 2px 8px;
border-radius: 4px;
font-size: 0.8em;
margin: 5px;
}
.team-member {
color: #4ec9b0;
margin: 10px 0;
}
</style>
<link rel="icon" href="pic/frc7130logo.png" type="image/x-icon">
</head>
<body>
<div class="loading-banner">
<div class="terminal-text">
<div style="position: relative; width: fit-content;">
<span class="typing" style="visibility: hidden">> BIOS POST Check...
> Initializing System Components...
> Loading ProgrammingTeam_7130 Modules...
> Checking Team Configuration...
> Starting Development Environment...
> System Ready. Welcome to FRC 7130.
Press ENTER to continue...</span>
<span class="typing-overlay"></span>
<span class="cursor">_</span>
</div>
</div>
<div class="progress-bar">
<div class="progress"></div>
</div>
</div>
<header>
<input type="checkbox" name="" id="menu_control">
<div class="logo">
<img src="pic/frc7130logo.png">
</div>
<label for="menu_control" class="menu_btn">
<img src="./pic/menu.png" alt="">
</label>
<nav class="navbar navbar-expand-lg navbar-light">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html#home">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#about_us">ABOUT US</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#awards">AWARDS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#sponsers">SPONSORS</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="teamsDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
SUBTEAMS
</a>
<ul class="dropdown-menu" aria-labelledby="teamsDropdown">
<li><a class="dropdown-item" href="./programming.html">Programming Team</a></li>
<li><a class="dropdown-item" href="./mechanical.html">Mechanical Team</a></li>
<!-- <li><a class="dropdown-item" href="./design.html">Design Team</a></li> -->
<li><a class="dropdown-item" href="./administrative.html">Administrative Team</a></li>
<li><a class="dropdown-item" href="./workshop.html">Strategy Team</a></li>
<li><a class="dropdown-item" href="./drive.html">Drive Team</a></li>
</ul>
</li>
</ul>
</div>
</nav>
</header>
<div class="programming-content">
<div class="wrap">
<h1 class="code-header">public class ProgrammingTeam7130() {
</h1>
<div class="code-block">
<span style="color: #608b4e">// Team Overview</span><br>
<span style="color: #9cdcfe">The programming team is responsible for writing and maintaining the robot's code,
implementing autonomous routines, and developing control systems.</span>
</div>
<div class="tutorial-section">
<div class="code-header">public int ProgrammingResources() {</div>
<div class="tutorial-grid">
<!-- Row 1 -->
<a href="https://drive.google.com/file/d/1b6k2yzDvLeMBXJ5JN4jrlWOllVc5rVqL/view?usp=drive_link" class="tutorial-card" target="_blank">
<h3>Basic Introduction To Odometry</h3>
<!-- <div class="download-icon">📥</div> -->
<div class="file-credits">
Credits: Henry Chen
</div>
</a>
<a href="https://drive.google.com/file/d/1cdQo77qy4F9OypRT2y8P36Euctb_txRi/view?usp=drive_link" class="tutorial-card" target="_blank">
<h3>Explanation To The Math of Odometry</h3>
<!-- <div class="download-icon">📥</div> -->
<div class="file-credits">
Credits: Henry Chen
</div>
</a>
<a href="https://www.youtube.com/watch?v=fNk_zzaMoSs&list=PLZHQObOWTQDPD3MizzM2xVFitgF8hE_ab" class="tutorial-card" target="_blank">
<h3>Essence Of Linear Algebra</h3>
<div class="download-icon">Link To Youtube Playlist</div>
<div class="file-credits">
Credits: 3Blue1Brown
</div>
</a>
<!-- Row 2 -->
<a href="https://drive.google.com/file/d/1zlFd-3geoZD1M826W-AzNHbS9HclnNeO/view?usp=drive_link" class="tutorial-card" target="_blank">
<h3>Basic Introduction To Motion Profilling And Feedforward</h3>
<!-- <div class="download-icon">📥</div> -->
<div class="file-credits">
Credits: Henry Chen
</div>
</a>
<a href="https://drive.google.com/file/d/1iBHYElvIE8ndfc23aPdnCBrzhiK4WaZD/view?usp=drive_link" class="tutorial-card" target="_blank">
<h3>Explanation To The Math of Motion Profilling With Sudo Code</h3>
<!-- <div class="download-icon">📥</div> -->
<div class="file-credits">
Credits: Henry Chen
</div>
</a>
<a href="https://www.youtube.com/watch?v=WUvTyaaNkzM&list=PLZHQObOWTQDMsr9K-rj53DwVRMYO3t5Yr" class="tutorial-card" target="_blank">
<h3>Essence Of Calculus</h3>
<div class="download-icon">Link To Youtube Playlist</div>
<div class="file-credits">
Credits: 3Blue1Brown
</div>
</a>
<a href="https://medium.com/@91y272/supervised-model-vs-unsupervised-model-08d273df471f" class="tutorial-card" target="_blank">
<h3>Supervised Model vs Unsupervised Model</h3>
<!-- <div class="download-icon">Link To Youtube Playlist</div> -->
<div class="file-credits">
Credits: SilvA
</div>
</a>
<a href="https://medium.com/@91y272/object-detection-introduction-a13ec87e2bab" class="tutorial-card" target="_blank">
<h3>Object Detection Introduction</h3>
<!-- <div class="download-icon">Link To Youtube Playlist</div> -->
<div class="file-credits">
Credits: SilvA
</div>
</a>
</div>
<div class="code-footer">} <span class="comment">// End of ProgrammingResources</span></div>
</div>
<!-- <h2 class="section-title">Learning Resources</h2>
<div class="resource-grid"> -->
<!-- </div> -->
<div class="TeamMembers">
<div class="code-header">public String[] TeamMembers() {</div>
<div class="code-block">
<!-- <div class="team-member">
// Team Leadership
private static final String[] TEAM_LEADS = {"shrubman8787", "SilvA"};
</div> -->
<div class="team-members-grid">
<div class="member-card">
<!-- <img src="./pic/member-avatar.png" alt="Member Avatar"> -->
<h3>Shrubman8787</h3>
<p class="year">FRC7130 7th Programming Lead</p>
<div class="member-links">
<a href="https://github.com/shrubman8787" target="_blank">GitHub</a>
<a href="https://www.instagram.com/shuhsunyi/" target="_blank">Instagram</a>
</div>
</div>
<div class="member-card">
<!-- <img src="./pic/member-avatar.png" alt="Member Avatar"> -->
<h3>SilvA</h3>
<p class="year">FRC7130 7th Programming Member</p>
<div class="member-links">
<a href="https://github.com/Eagle962" target="_blank">GitHub</a>
<a href="https://www.instagram.com/powerpoint._.0719/" target="_blank">Instagram</a>
</div>
</div>
<div class="member-card">
<!-- <img src="./pic/member-avatar.png" alt="Member Avatar"> -->
<h3>Ray526</h3>
<p class="year">FRC7130 7th Programming Member</p>
<div class="member-links">
<a href="https://github.com/Ray526" target="_blank">GitHub</a>
<a href="https://www.instagram.com/y._.ray/" target="_blank">Instagram</a>
</div>
</div>
<div class="member-card">
<!-- <img src="./pic/member-avatar.png" alt="Member Avatar"> -->
<h3>BBPong</h3>
<p class="year">FRC7130 6th Programming Lead</p>
<div class="member-links">
<a href="https://github.com/Unbrainhaker" target="_blank">GitHub</a>
<a href="https://www.instagram.com/b.b._.05.20/" target="_blank">Instagram</a>
</div>
</div>
<div class="member-card">
<!-- <img src="./pic/member-avatar.png" alt="Member Avatar"> -->
<h3>Hong4507</h3>
<p class="year">FRC7130 6th Programming Member</p>
<div class="member-links">
<a href="https://github.com/Hong4507" target="_blank">GitHub</a>
<a href="https://www.instagram.com/hsiao_hong/" target="_blank">Instagram</a>
</div>
</div>
<!-- <div class="member-card">
<img src="./pic/member-avatar.png" alt="Member Avatar">
<h3>Member5</h3>
<p class="year">Class of 2026</p>
<div class="member-links">
<a href="https://github.com/member5" target="_blank">GitHub</a>
<a href="https://instagram.com/member5" target="_blank">Instagram</a>
</div>
</div> -->
</div>
</div>
<div class="code-footer">} <span class="comment">// End of TeamMembers</span></div>
</div>
<div class="code-footer">} <span class="comment">// End of ProgrammingTeam7130</span></div>
</div>
</div>
<!-- Include your scripts -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"></script>
<script src="fade.js"></script>
<script>
document.querySelector('header').style.visibility = 'hidden';
const lines = [
"> BIOS POST Check...",
"> Initializing System Components...",
"> Loading ProgrammingTeam_7130 Modules...",
"> Checking Team Configuration...",
"> Starting Development Environment...",
"> System Ready. Welcome to FRC 7130.",
"", // Empty line
"Press ENTER to continue..."
];
const typingElement = document.querySelector('.typing-overlay');
const loadingBanner = document.querySelector('.loading-banner');
let currentLine = 0;
let currentChar = 0;
let animationComplete = false;
// Set the hidden text first to maintain space
document.querySelector('.typing').textContent = lines.join('\n');
function typeWriter() {
if (currentLine < lines.length) {
if (currentChar < lines[currentLine].length) {
typingElement.textContent += lines[currentLine][currentChar];
currentChar++;
// Faster typing speed between 20ms and 30ms
setTimeout(typeWriter, Math.random() * 5 + 5);
} else {
typingElement.textContent += '\n';
currentLine++;
currentChar = 0;
// Shorter delays between lines
const delays = [80, 100, 200, 200, 300, 500, 100, 200];
setTimeout(typeWriter, delays[currentLine - 1] || 50);
}
} else {
animationComplete = true;
}
}
function endAnimation() {
if (animationComplete) {
loadingBanner.style.animation = 'fadeOut 0.5s ease-out forwards';
setTimeout(() => {
document.querySelector('header').style.visibility = 'visible';
document.querySelector('header').style.animation = 'fadeIn 0.5s ease-in';
}, 500);
}
}
// Listen for any keypress
document.addEventListener('keydown', function(event) {
endAnimation();
});
// Listen for touch/click events
document.addEventListener('click', function(event) {
endAnimation();
});
// Listen for touch events (mobile)
document.addEventListener('touchstart', function(event) {
endAnimation();
});
window.addEventListener('load', typeWriter);
</script>
</body>
</html>