-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1391 lines (1295 loc) · 46.7 KB
/
index.html
File metadata and controls
1391 lines (1295 loc) · 46.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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./css/style.css" />
<script src="https://kit.fontawesome.com/f0434077eb.js" crossorigin="anonymous"></script>
<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>dev Circle</title>
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="/">
<img src="./images/logo.png" alt="DevOps Mission Control" />
</a>
<span class="company-name">Mission Control</span>
</div>
<div class="nav-right">
<div class="nav-links">
<a href="#dashboard" class="fix">Dashboard</a>
<a href="#projects">Projects</a>
<a href="#teams">Teams</a>
<a href="#electrical">Electrical</a>
<a href="vpp.html" target="_blank">VPP Control</a>
<a href="#dev-tools">Dev Tools</a>
<a href="#hardware">Hardware Lab</a>
<a href="#infrastructure">Infrastructure</a>
</div>
<div class="search">
<img src="./images/search.png" alt="" />
<input type="text" placeholder="Search projects, docs, teams..." />
</div>
<div class="user-profile">
<div class="notification-bell">🔔</div>
<div class="user-avatar">👨🚀</div>
</div>
</div>
</nav>
<section class="hero-section">
<div class="tabs">
<div>
</div>
<h5>Dash</h5>
<div>
</div>
<div>
</div>
<div>
</div>
<div>
</div>
</div>
<div class="main-content container">
<div class="left-section">
<h1>
Mission Control - Your Company's Development Command Center
</h1>
<p>Centralized platform for systems engineers and developers. Monitor deployments, manage infrastructure, collaborate on projects, and launch innovations into production orbit.</p>
<div class="action-buttons">
<button class="btn primary" onclick="showDashboard()">Launch Dashboard</button>
<button class="btn secondary" onclick="showProjects()">View Projects</button>
</div>
</div>
<div class="right-section">
<img src="./images/astronaut.png" alt="Developer in space" />
</div>
<div class="system-status-card">
<h1><u>System Status</u></h1>
<div class="status-grid">
<div class="status-item">
<div class="status-indicator green"></div>
<label>Production</label>
<span>All Systems Operational</span>
</div>
<div class="status-item">
<div class="status-indicator yellow"></div>
<label>Staging</label>
<span>Minor Issues Detected</span>
</div>
<div class="status-item">
<div class="status-indicator green"></div>
<label>CI/CD Pipeline</label>
<span>Running Smoothly</span>
</div>
<div class="status-item">
<div class="status-indicator green"></div>
<label>Database</label>
<span>Optimal Performance</span>
</div>
<div class="status-item">
<div class="status-indicator red"></div>
<label>API Gateway</label>
<span>Maintenance Mode</span>
</div>
</div>
<button class="btn" onclick="showDetailedStatus()">View Detailed Status</button>
</div>
</div>
</section>
</header>
<section class="strip">
<h3>Connect • Learn • Build</h3>
<button class="btn">Start Networking</button>
</section>
<section class="features container">
<div class="left-block">
<div class="block">
<h1 class="underline">PROJECT MANAGEMENT</h1>
<p>
Streamlined project lifecycle management with automated deployment pipelines,
version control integration, and real-time collaboration tools for distributed teams.
</p>
</div>
<div class="block dragon">
<h2 class="underline">INFRASTRUCTURE MONITORING</h2>
<p>
Real-time monitoring of servers, databases, microservices, and cloud resources
with intelligent alerting and automated scaling capabilities.
</p>
<button class="btn btnsec" onclick="showInfrastructure()">VIEW INFRASTRUCTURE</button>
</div>
<div class="block composite">
<h2 class="underline">HARDWARE INTEGRATION</h2>
<p>
Embedded system development, PCB design collaboration, FPGA programming,
and hardware-software integration testing environments.
</p>
<button class="btn btnsec" onclick="showHardwareLab()">HARDWARE LAB</button>
</div>
<div class="block first-stage">
<h2 class="underline">TEAM COLLABORATION</h2>
<p>
Integrated communication tools, code reviews, knowledge sharing,
and cross-team project coordination for maximum productivity.
</p>
<button class="btn btnsec" onclick="showTeams()">VIEW TEAMS</button>
</div>
<div class="block capacity">
<div>
<h4 class="underline">ACTIVE PROJECTS</h4>
<h6>47</h6>
</div>
<div>
<h4 class="underline">PCB DESIGNS</h4>
<h6>12</h6>
</div>
</div>
<div class="block capacity">
<div>
<h4 class="underline">UPTIME</h4>
<h6>99.9%</h6>
</div>
</div>
</div>
<div class="community-visual">
<span class="first"><img src="./images/rocket1.png" alt="Community Growth" /></span>
<span class="second"><img src="./images/rocket2.png" alt="Collaboration" /></span>
<span class="third"><img src="./images/rocket3.png" alt="Innovation" /></span>
</div>
<div class="right-block">
<div class="floting-graphic">
<img src="./images/bus.png" alt="Development Hub" />
</div>
<div class="block payload">
<h2>DEVELOPMENT TOOLS</h2>
<p>
Integrated development environment with code editors, debugging tools,
testing frameworks, and performance profiling capabilities.
</p>
</div>
<div class="block second-stage">
<h2 class="underline">SECURITY & COMPLIANCE</h2>
<p>
Automated security scanning, vulnerability assessments,
compliance reporting, and access control management.
</p>
<button class="btn btnsec" onclick="showSecurity()">SECURITY CENTER</button>
</div>
<div class="block capacity single">
<div>
<h4 class="underline">VULNERABILITIES</h4>
<h6>0</h6>
</div>
<div>
<h4 class="underline">CODE COVERAGE</h4>
<h6>94%</h6>
</div>
</div>
<div class="block capacity">
<div>
<h4 class="underline">BUILD SUCCESS</h4>
<h6>98%</h6>
</div>
</div>
<div class="block engine">
<img src="./images/engines.png" alt="Tech Infrastructure" />
</div>
<div class="block second-stage last-para">
<h2>MICROSERVICES ARCHITECTURE</h2>
<p>
Scalable microservices infrastructure with containerization,
service mesh, API gateways, and distributed tracing capabilities.
</p>
</div>
</div>
</section>
<div class="left-block">
<div class="block">
<h1 class="underline">FALCON9</h1>
<p>
Falcon 9 is a two-stage rocket designed and manufactured by SpaceX
for the reliable and safe transport of satellites and the Dragon
spacecraft into orbit
</p>
</div>
<div class="block dragon">
<h2 class="underline">DRAGON SPACECRAFT</h2>
<p>
Dragon carries cargo in the spacecraft’s pressurized capsule and
unpressurized trunk, which can also accommodate secondary payloads.
In the future, Dragon will carry astronauts in the pressurized
capsule as well.
</p>
<button class="btn btnsec">LEARN MORE</button>
</div>
<div class="block composite">
<h2 class="underline">COMPOSITE FAIRING</h2>
<p>
The payload fairing is for the delivery of satellites to
destinations in low Earth orbit (LEO), geosynchronous transfer orbit
(GTO) and beyond.
</p>
<button class="btn btnsec">LEARN MORE</button>
</div>
<div class="block first-stage">
<h2 class="underline">FIRST STAGE</h2>
<p>
Falcon 9’s first stage incorporates nine Merlin engines and
aluminum-lithium alloy tanks containing liquid oxygen and
rocket-grade kerosene (RP-1) propellant.
</p>
<button class="btn btnsec">LEARN MORE</button>
</div>
<div class="block capacity">
<div>
<h4 class="underline">ENGINE</h4>
<h6>9</h6>
</div>
<div>
<h4 class="underline">BURNTIME</h4>
<h6>162<small>SEC</small></h6>
</div>
</div>
<div class="block capacity">
<div>
<h4 class="underline">Thrust At Sea Level</h4>
<h6>7,607kN1</h6>
</div>
</div>
</div>
<div class="rocket-body">
<span class="first"><img src="./images/rocket1.png" alt="" /></span>
<span class="second"><img src="./images/rocket2.png" alt="" /></span>
<span class="third"><img src="./images/rocket3.png" alt="" /></span>
</div>
<!-- Dashboard Sections -->
<section id="dashboard" class="dashboard-section container">
<h2 class="section-title">Development Dashboard</h2>
<div class="dashboard-grid">
<div class="dashboard-card">
<h3>Active Sprints</h3>
<div class="sprint-list">
<div class="sprint-item">
<span class="sprint-name">Authentication Service v2.0</span>
<div class="progress-bar">
<div class="progress" style="width: 75%"></div>
</div>
<span class="sprint-status">75% Complete</span>
</div>
<div class="sprint-item">
<span class="sprint-name">Mobile App Redesign</span>
<div class="progress-bar">
<div class="progress" style="width: 45%"></div>
</div>
<span class="sprint-status">45% Complete</span>
</div>
</div>
</div>
<div class="dashboard-card">
<h3>Recent Deployments</h3>
<div class="deployment-list">
<div class="deployment-item success">
<span class="deployment-name">user-service</span>
<span class="deployment-env">Production</span>
<span class="deployment-time">2 min ago</span>
</div>
<div class="deployment-item success">
<span class="deployment-name">api-gateway</span>
<span class="deployment-env">Staging</span>
<span class="deployment-time">15 min ago</span>
</div>
<div class="deployment-item failed">
<span class="deployment-name">notification-service</span>
<span class="deployment-env">Staging</span>
<span class="deployment-time">1 hour ago</span>
</div>
</div>
</div>
<div class="dashboard-card">
<h3>System Metrics</h3>
<!-- Electrical Engineering Section -->
<section id="electrical" class="electrical-section container">
<h2 class="section-title">Electrical & Systems Engineering Hub</h2>
<div class="electrical-overview">
<div class="engineering-stats">
<div class="stat-card">
<h3>⚡ Power Systems</h3>
<span class="stat-number">12</span>
<p>Active grid monitoring</p>
</div>
<div class="stat-card">
<h3>🔋 Battery Systems</h3>
<span class="stat-number">8</span>
<p>BMS diagnostics active</p>
</div>
<div class="stat-card">
<h3>🔌 Protection Relays</h3>
<span class="stat-number">24</span>
<p>Under test</p>
</div>
<div class="stat-card">
<h3>📊 Fault Events</h3>
<span class="stat-number">3</span>
<p>This week</p>
</div>
</div>
</div>
<div class="electrical-tools-grid">
<div class="tool-category">
<h3>⚡ Power System Monitoring</h3>
<div class="tool-list">
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">Real-Time Grid Monitor</span>
<span class="tool-status online">Live</span>
</div>
<p>Live voltages, currents, power flow with phasor diagrams</p>
<div class="tool-actions">
<button class="btn-small" onclick="openElectricalTool('grid-monitor')">View Grid</button>
<button class="btn-small secondary" onclick="viewPowerFlows()">Power Flows</button>
</div>
</div>
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">SCADA Integration</span>
<span class="tool-status online">Connected</span>
</div>
<p>Modbus/TCP and DNP3 protocol monitoring</p>
<div class="tool-actions">
<button class="btn-small" onclick="openElectricalTool('scada')">Open SCADA</button>
<button class="btn-small secondary" onclick="viewAlarms()">Alarms</button>
</div>
</div>
</div>
</div>
<div class="tool-category">
<h3>🔋 Battery & Energy Storage</h3>
<div class="tool-list">
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">BMS Diagnostic Suite</span>
<span class="tool-status online">Monitoring</span>
</div>
<p>Live SoC, SoH, thermal maps, cell balancing analysis</p>
<div class="tool-actions">
<button class="btn-small" onclick="openElectricalTool('bms')">Cell Monitor</button>
<button class="btn-small secondary" onclick="exportBMSData()">Export Data</button>
</div>
</div>
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">EV Charging Analytics</span>
<span class="tool-status online">Active</span>
</div>
<p>EVSE monitoring, load balancing, and grid integration</p>
<div class="tool-actions">
<button class="btn-small" onclick="openElectricalTool('evse')">EVSE Control</button>
<button class="btn-small secondary" onclick="loadBalance()">Load Balance</button>
</div>
</div>
</div>
</div>
<div class="tool-category">
<h3>🛡️ Protection & Testing</h3>
<div class="tool-list">
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">Relay Testing Studio</span>
<span class="tool-status online">Ready</span>
</div>
<p>ANSI 50/51/27/59/67 relay testing and coordination</p>
<div class="tool-actions">
<button class="btn-small" onclick="openElectricalTool('relay-test')">Test Relays</button>
<button class="btn-small secondary" onclick="coordinationCurves()">Curves</button>
</div>
</div>
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">Fault Logger & SAIDI/SAIFI</span>
<span class="tool-status online">Logging</span>
</div>
<p>Real-time fault tracking with reliability metrics</p>
<div class="tool-actions">
<button class="btn-small" onclick="openElectricalTool('fault-logger')">Fault Map</button>
<button class="btn-small secondary" onclick="reliabilityReport()">Reliability</button>
</div>
</div>
</div>
</div>
<div class="tool-category">
<h3>🔬 Simulation & Design</h3>
<div class="tool-list">
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">Circuit Simulation Suite</span>
<span class="tool-status online">Available</span>
</div>
<p>Embedded Simulink, LTSpice, PLECS simulations</p>
<div class="tool-actions">
<button class="btn-small" onclick="openElectricalTool('circuit-sim')">Simulate</button>
<button class="btn-small secondary" onclick="compareResults()">Compare</button>
</div>
</div>
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">Power Converter Designer</span>
<span class="tool-status online">Ready</span>
</div>
<p>Auto-design buck/boost/inverter topologies</p>
<div class="tool-actions">
<button class="btn-small" onclick="openElectricalTool('converter-design')">Design</button>
<button class="btn-small secondary" onclick="optimizeEfficiency()">Optimize</button>
</div>
</div>
</div>
</div>
</div>
<div class="active-electrical-projects">
<h3>Active Electrical Projects</h3>
<div class="electrical-projects-grid">
<div class="electrical-project-card">
<div class="project-header">
<h4>Microgrid Control System</h4>
<span class="project-phase commissioning">Commissioning</span>
</div>
<p>PV + Battery + Diesel hybrid microgrid with advanced control</p>
<div class="project-specs">
<span class="spec-tag">2.5MW PV</span>
<span class="spec-tag">1MWh BESS</span>
<span class="spec-tag">500kW DG</span>
</div>
<div class="project-team-electrical">
<span class="electrical-engineer">⚡ Dr. James Mitchell - Power Systems</span>
<span class="control-engineer">🎛️ Lisa Wang - Control Systems</span>
</div>
</div>
<div class="electrical-project-card">
<div class="project-header">
<h4>EV Fast Charging Network</h4>
<span class="project-phase installation">Installation</span>
</div>
<p>150kW DC fast charging with dynamic load management</p>
<div class="project-specs">
<span class="spec-tag">CCS/CHAdeMO</span>
<span class="spec-tag">OCPP 2.0</span>
<span class="spec-tag">Grid Tie</span>
</div>
<div class="project-team-electrical">
<span class="electrical-engineer">🔌 Maria Santos - EVSE Engineer</span>
<span class="grid-engineer">🏗️ Tom Anderson - Grid Integration</span>
</div>
</div>
<div class="electrical-project-card">
<div class="project-header">
<h4>Distribution Automation</h4>
<span class="project-phase testing">Testing</span>
</div>
<p>Smart switches and reclosers for self-healing grid</p>
<div class="project-specs">
<span class="spec-tag">DNP3</span>
<span class="spec-tag">IEC 61850</span>
<span class="spec-tag">FLISR</span>
</div>
<div class="project-team-electrical">
<span class="electrical-engineer">🛡️ Robert Kim - Protection Engineer</span>
<span class="automation-engineer">🤖 Elena Rodriguez - Automation</span>
</div>
</div>
</div>
</div>
</section>
<!-- Advanced Developer Tools Section -->
<section id="dev-tools" class="dev-tools-section container">
<h2 class="section-title">Advanced Developer Toolkit</h2>
<div class="dev-tools-overview">
<div class="dev-stats">
<div class="stat-card">
<h3>🤖 AI Assists</h3>
<span class="stat-number">247</span>
<p>This week</p>
</div>
<div class="stat-card">
<h3>📈 Build Success</h3>
<span class="stat-number">98.2%</span>
<p>Last 30 days</p>
</div>
<div class="stat-card">
<h3>🐛 Bugs Squashed</h3>
<span class="stat-number">156</span>
<p>This sprint</p>
</div>
<div class="stat-card">
<h3>🏆 XP Earned</h3>
<span class="stat-number">12.4K</span>
<p>Team total</p>
</div>
</div>
</div>
<div class="dev-tools-grid">
<div class="tool-category">
<h3>🧠 AI-Powered Development</h3>
<div class="tool-list">
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">AI Code Copilot</span>
<span class="tool-status online">Active</span>
</div>
<p>ChatGPT-style assistant trained on your codebase</p>
<div class="tool-actions">
<button class="btn-small" onclick="openDevTool('ai-copilot')">Chat</button>
<button class="btn-small secondary" onclick="codeRefactor()">Refactor</button>
</div>
</div>
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">Auto Test Generator</span>
<span class="tool-status online">Ready</span>
</div>
<p>AI-generated test cases and API stubs</p>
<div class="tool-actions">
<button class="btn-small" onclick="openDevTool('test-gen')">Generate</button>
<button class="btn-small secondary" onclick="runTests()">Run Tests</button>
</div>
</div>
</div>
</div>
<div class="tool-category">
<h3>📊 Smart Analytics</h3>
<div class="tool-list">
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">Predictive Maintenance</span>
<span class="tool-status online">Monitoring</span>
</div>
<p>ML-powered failure prediction from logs and metrics</p>
<div class="tool-actions">
<button class="btn-small" onclick="openDevTool('predictive')">Predictions</button>
<button class="btn-small secondary" onclick="anomalyDetection()">Anomalies</button>
</div>
</div>
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">Commit Heatmaps</span>
<span class="tool-status online">Live</span>
</div>
<p>Visual commit activity by day/user/module</p>
<div class="tool-actions">
<button class="btn-small" onclick="openDevTool('heatmaps')">View Heatmap</button>
<button class="btn-small secondary" onclick="buildTimeline()">Timeline</button>
</div>
</div>
</div>
</div>
<div class="tool-category">
<h3>🎮 Gamification Hub</h3>
<div class="tool-list">
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">Dev Leaderboards</span>
<span class="tool-status online">Updated</span>
</div>
<p>XP points for bug fixes, refactoring, and code reviews</p>
<div class="tool-actions">
<button class="btn-small" onclick="openDevTool('leaderboard')">Rankings</button>
<button class="btn-small secondary" onclick="viewBadges()">Badges</button>
</div>
</div>
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">Dev Quests</span>
<span class="tool-status online">5 Active</span>
</div>
<p>Reward-based challenges for team building</p>
<div class="tool-actions">
<button class="btn-small" onclick="openDevTool('quests')">View Quests</button>
<button class="btn-small secondary" onclick="createQuest()">Create Quest</button>
</div>
</div>
</div>
</div>
<div class="tool-category">
<h3>🔬 Testing & Chaos</h3>
<div class="tool-list">
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">Chaos Engineering</span>
<span class="tool-status online">Safe Mode</span>
</div>
<p>Fault injection and resilience testing</p>
<div class="tool-actions">
<button class="btn-small" onclick="openDevTool('chaos')">Chaos Lab</button>
<button class="btn-small secondary" onclick="runChaosTest()">Run Test</button>
</div>
</div>
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">Time Travel Debugger</span>
<span class="tool-status online">Available</span>
</div>
<p>Step backward/forward through state changes</p>
<div class="tool-actions">
<button class="btn-small" onclick="openDevTool('time-travel')">Debug</button>
<button class="btn-small secondary" onclick="replaySession()">Replay</button>
</div>
</div>
</div>
</div>
</div>
<div class="live-dashboard-widgets">
<h3>Live Development Dashboard</h3>
<div class="dashboard-widgets-grid">
<div class="widget-card">
<h4>🚨 Who Broke the Build?</h4>
<div class="blame-timeline">
<div class="blame-entry success">
<span class="blame-user">✅ Sarah Chen</span>
<span class="blame-action">Fixed auth service</span>
<span class="blame-time">2 min ago</span>
</div>
<div class="blame-entry failed">
<span class="blame-user">💥 Mike R.</span>
<span class="blame-action">Broke payment API</span>
<span class="blame-time">15 min ago</span>
</div>
</div>
<button class="btn-small" onclick="blameMemeGenerator()">Generate Meme</button>
</div>
<div class="widget-card">
<h4>📈 Build Performance</h4>
<div class="performance-metrics">
<div class="perf-metric">
<span class="metric-label">Avg Build Time</span>
<span class="metric-value">3.2min</span>
<span class="metric-trend up">↗️ +12%</span>
</div>
<div class="perf-metric">
<span class="metric-label">Test Coverage</span>
<span class="metric-value">94.2%</span>
<span class="metric-trend up">↗️ +2.1%</span>
</div>
</div>
</div>
<div class="widget-card">
<h4>🎵 Build Soundboard</h4>
<div class="soundboard-controls">
<button class="sound-btn success" onclick="playSound('success')">🎺 Success</button>
<button class="sound-btn fail" onclick="playSound('fail')">📯 Failure</button>
<button class="sound-btn deploy" onclick="playSound('deploy')">🚀 Deploy</button>
</div>
<div class="sound-history">
<span class="sound-event">🎺 Deploy to prod - 5min ago</span>
</div>
</div>
</div>
</div>
</section>
<!-- Hardware Lab Section -->
<section id="hardware" class="hardware-section container">
<h2 class="section-title">Hardware Engineering Lab</h2>
<div class="hardware-overview">
<div class="lab-stats">
<div class="stat-card">
<h3>🔧 Active Prototypes</h3>
<span class="stat-number">8</span>
<p>Currently in development</p>
</div>
<div class="stat-card">
<h3>⚡ Power Systems</h3>
<span class="stat-number">15</span>
<p>Designs under test</p>
</div>
<div class="stat-card">
<h3>🖥️ FPGA Projects</h3>
<span class="stat-number">6</span>
<p>Active implementations</p>
</div>
<div class="stat-card">
<h3>📡 IoT Devices</h3>
<span class="stat-number">23</span>
<p>Connected to testbed</p>
</div>
</div>
</div>
<div class="hardware-tools-grid">
<div class="tool-category">
<h3>🔌 Circuit Design & Simulation</h3>
<div class="tool-list">
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">SPICE Simulator</span>
<span class="tool-status online">Online</span>
</div>
<p>Advanced circuit analysis and simulation environment</p>
<div class="tool-actions">
<button class="btn-small" onclick="openTool('spice')">Launch</button>
<button class="btn-small secondary" onclick="viewProjects('spice')">Projects</button>
</div>
</div>
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">PCB Layout Editor</span>
<span class="tool-status online">Online</span>
</div>
<p>Collaborative PCB design with real-time version control</p>
<div class="tool-actions">
<button class="btn-small" onclick="openTool('pcb')">Launch</button>
<button class="btn-small secondary" onclick="viewProjects('pcb')">Designs</button>
</div>
</div>
</div>
</div>
<div class="tool-category">
<h3>⚡ Power & Signal Analysis</h3>
<div class="tool-list">
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">Digital Oscilloscope</span>
<span class="tool-status online">Online</span>
</div>
<p>Remote access to lab oscilloscopes and signal generators</p>
<div class="tool-actions">
<button class="btn-small" onclick="openTool('scope')">Connect</button>
<button class="btn-small secondary" onclick="viewWaveforms()">Waveforms</button>
</div>
</div>
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">Power Analysis Suite</span>
<span class="tool-status online">Online</span>
</div>
<p>Battery life estimation and power consumption modeling</p>
<div class="tool-actions">
<button class="btn-small" onclick="openTool('power')">Analyze</button>
<button class="btn-small secondary" onclick="viewReports('power')">Reports</button>
</div>
</div>
</div>
</div>
<div class="tool-category">
<h3>🖥️ Embedded Development</h3>
<div class="tool-list">
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">FPGA Development</span>
<span class="tool-status online">Online</span>
</div>
<p>Verilog/VHDL development with synthesis and simulation</p>
<div class="tool-actions">
<button class="btn-small" onclick="openTool('fpga')">Code</button>
<button class="btn-small secondary" onclick="synthesizeDesign()">Synthesize</button>
</div>
</div>
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">Microcontroller IDE</span>
<span class="tool-status online">Online</span>
</div>
<p>Cross-platform embedded C/C++ development environment</p>
<div class="tool-actions">
<button class="btn-small" onclick="openTool('mcu')">Code</button>
<button class="btn-small secondary" onclick="flashFirmware()">Flash</button>
</div>
</div>
</div>
</div>
<div class="tool-category">
<h3>📡 Testing & Validation</h3>
<div class="tool-list">
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">Hardware-in-Loop Testing</span>
<span class="tool-status online">Online</span>
</div>
<p>Automated testing framework for embedded systems</p>
<div class="tool-actions">
<button class="btn-small" onclick="openTool('hil')">Configure</button>
<button class="btn-small secondary" onclick="runTests('hil')">Run Tests</button>
</div>
</div>
<div class="tool-item">
<div class="tool-header">
<span class="tool-name">RF Signal Analyzer</span>
<span class="tool-status maintenance">Maintenance</span>
</div>
<p>Spectrum analysis and RF characterization tools</p>
<div class="tool-actions">
<button class="btn-small disabled">Offline</button>
<button class="btn-small secondary" onclick="scheduleAccess('rf')">Schedule</button>
</div>
</div>
</div>
</div>
</div>
<div class="active-hardware-projects">
<h3>Current Hardware Projects</h3>
<div class="hardware-projects-grid">
<div class="hardware-project-card">
<div class="project-header">
<h4>IoT Sensor Network</h4>
<span class="project-phase prototyping">Prototyping</span>
</div>
<p>Low-power environmental monitoring system with LoRaWAN connectivity</p>
<div class="project-specs">
<span class="spec-tag">STM32L4</span>
<span class="spec-tag">LoRa</span>
<span class="spec-tag">3.3V</span>
</div>
<div class="project-team-hw">
<span class="hw-engineer">👨🔧 Alex Chen - Hardware Lead</span>
<span class="sw-engineer">👩💻 Sarah Kim - Firmware</span>
</div>
</div>
<div class="hardware-project-card">
<div class="project-header">
<h4>FPGA Signal Processor</h4>
<span class="project-phase testing">Testing</span>
</div>
<p>Real-time DSP implementation for audio processing applications</p>
<div class="project-specs">
<span class="spec-tag">Xilinx Zynq</span>
<span class="spec-tag">VHDL</span>
<span class="spec-tag">DDR4</span>
</div>
<div class="project-team-hw">
<span class="hw-engineer">👩🔬 Dr. Lisa Park - FPGA Architect</span>
<span class="sw-engineer">👨💻 Mike Rodriguez - Driver Dev</span>
</div>
</div>
<div class="hardware-project-card">
<div class="project-header">
<h4>Power Management Unit</h4>
<span class="project-phase design">Design</span>
</div>
<p>Multi-rail power supply with dynamic voltage scaling</p>
<div class="project-specs">
<span class="spec-tag">Buck/Boost</span>
<span class="spec-tag">I2C Control</span>
<span class="spec-tag">85% Eff</span>
</div>
<div class="project-team-hw">
<span class="hw-engineer">👨⚡ David Wilson - Power Electronics</span>
<span class="sw-engineer">👩💻 Emma Garcia - Control SW</span>
</div>
</div>
</div>
</div>
<div class="lab-equipment-status">
<h3>Lab Equipment Status</h3>
<div class="equipment-grid">
<div class="equipment-item">
<div class="equipment-info">
<span class="equipment-name">Keysight Oscilloscope</span>
<span class="equipment-model">DSOX3024T</span>
</div>
<span class="equipment-status available">Available</span>
<button class="btn-small" onclick="reserveEquipment('scope1')">Reserve</button>
</div>
<div class="equipment-item">
<div class="equipment-info">
<span class="equipment-name">Signal Generator</span>
<span class="equipment-model">Agilent 33220A</span>
</div>
<span class="equipment-status in-use">In Use</span>
<button class="btn-small secondary" onclick="viewSchedule('siggen1')">Schedule</button>
</div>
<div class="equipment-item">
<div class="equipment-info">
<span class="equipment-name">Logic Analyzer</span>
<span class="equipment-model">Saleae Logic Pro 16</span>
</div>
<span class="equipment-status available">Available</span>
<button class="btn-small" onclick="reserveEquipment('logic1')">Reserve</button>
</div>
<div class="equipment-item">
<div class="equipment-info">
<span class="equipment-name">Power Supply</span>
<span class="equipment-model">Keithley 2230-30-1</span>
</div>
<span class="equipment-status maintenance">Maintenance</span>
<button class="btn-small disabled">Offline</button>
</div>
</div>
</div>
</section>
<div class="metrics-grid">
<div class="metric">
<span class="metric-value">156ms</span>
<span class="metric-label">Avg Response Time</span>
</div>
<div class="metric">
<span class="metric-value">99.95%</span>
<span class="metric-label">Uptime</span>
</div>
<div class="metric">
<span class="metric-value">2.3M</span>
<span class="metric-label">Requests/day</span>
</div>
<div class="metric">
<span class="metric-value">127</span>
<span class="metric-label">Active Users</span>
</div>
</div>