-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtechnologies.html
More file actions
1706 lines (953 loc) · 58.1 KB
/
technologies.html
File metadata and controls
1706 lines (953 loc) · 58.1 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="dark light">
<!-- Theme detection: MUST run before CSS to prevent flash -->
<script>
(function() {
var STORAGE_KEY = 'theme';
var THEME_ATTR = 'data-theme';
var prefersDarkQuery = '(prefers-color-scheme: dark)';
var mql = window.matchMedia(prefersDarkQuery);
var supportsColorScheme = mql.media === prefersDarkQuery;
var savedTheme = null;
try { savedTheme = localStorage.getItem(STORAGE_KEY); } catch (e) {}
if (savedTheme === 'dark') {
document.documentElement.setAttribute(THEME_ATTR, 'dark');
} else if (savedTheme === null && supportsColorScheme && mql.matches) {
document.documentElement.setAttribute(THEME_ATTR, 'dark');
}
})();
</script>
<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=Bebas+Neue&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/css/main.css">
<meta name="description" content="Full-stack software engineer proficient in 47+ technologies. JavaScript, Python, Vue.js, React, Node.js, SQL, AI tools (Claude Code, Copilot), diagnostic tooling (Fiddler, Chrome DevTools), and eLearning domain expertise. Database-backed skill verification with project history and client evidence.">
<meta property="og:title" content="Technologies | Pattern 158 - Dan Novak">
<meta property="og:description" content="Full-stack software engineer proficient in 47+ technologies. JavaScript, Python, Vue.js, React, Node.js, SQL, AI tools (Claude Code, Copilot), diagnostic tooling (Fiddler, Chrome DevTools), and eLearning domain expertise. Database-backed skill verification with project history and client evidence.">
<meta property="og:url" content="https://pattern158.solutions/technologies.html">
<meta property="og:type" content="website">
<meta property="og:image" content="https://pattern158.solutions/assets/images/logos/pattern158_logo_3pipes_detailed.png">
<meta property="og:site_name" content="Pattern 158 Solutions">
<meta name="twitter:card" content="summary_large_image">
<link rel="canonical" href="https://pattern158.solutions/technologies.html">
<link rel="icon" href="/assets/images/icons/pattern158_favicon_flat.png" type="image/png" sizes="32x32">
<link rel="icon" href="/assets/images/icons/pattern158_favicon_flat.png" type="image/png" sizes="192x192">
<link rel="apple-touch-icon" href="/assets/images/icons/pattern158_favicon_flat.png" sizes="180x180">
<title>Technologies | Pattern 158 - Dan Novak — Pattern 158 Solutions</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Pattern 158 Solutions",
"description": "Senior Software Engineer and Systems Architect with 28+ years building and rescuing enterprise systems. Available for new opportunities.",
"url": "https://pattern158.solutions"
}
</script>
</head>
<body class="page-technologies">
<a href="#main-content" class="skip-link">Skip to main content</a>
<header>
<nav aria-label="Main navigation">
<div class="container">
<a href="/index.html" class="logo-link">
<img src="/assets/images/logos/pattern158_logo_3pipes_detailed.png"
alt="Pattern 158 - Provider of Clarity"
class="logo-img"
width="88"
height="48">
</a>
<!-- Hamburger button (mobile only) -->
<button class="hamburger"
type="button"
aria-expanded="false"
aria-controls="nav-menu"
aria-label="Toggle navigation menu">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
<!-- Navigation menu -->
<ul id="nav-menu" class="nav-menu">
<li><a href="/index.html">Home</a></li>
<li><a href="/philosophy.html">Philosophy</a></li>
<li><a href="/faq.html">FAQ</a></li>
<li><a href="/technologies.html" aria-current="page">Technologies</a></li>
<li><a href="/portfolio.html">Portfolio</a></li>
<li><a href="/contact.html">Contact</a></li>
<li><a href="/testimonials.html">Field Reports</a></li>
<li>
<button id="theme-toggle" class="theme-toggle" type="button"
aria-label="Toggle dark mode" aria-pressed="false">
<svg class="icon-sun" aria-hidden="true" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="5"/><line x1="12" y1="1" x2="12" y2="3"/><line x1="12" y1="21" x2="12" y2="23"/><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"/><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"/><line x1="1" y1="12" x2="3" y2="12"/><line x1="21" y1="12" x2="23" y2="12"/><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"/><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"/>
</svg>
<svg class="icon-moon" aria-hidden="true" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/>
</svg>
<span class="sr-only">Toggle dark mode</span>
</button>
</li>
</ul>
</div>
</nav>
</header>
<main id="main-content" aria-label="Main content">
<!-- TECHNOLOGIES_PAGE_START -->
<!-- Hero Section -->
<section class="hero-minimal">
<div class="container">
<h1>Technologies</h1>
<p class="subtitle">Production-proven expertise across modern engineering and eLearning systems</p>
<p class="hero-intro">Curated expertise spanning modern software development and deep domain knowledge in eLearning platforms. Each technology below reflects real production work—not aspirational skills. Proficiency levels (Deep/Working/Aware) are honest self-assessments based on actual engagement depth, not marketing speak. Project counts and client tags come from verified email archive data.</p>
</div>
</section>
<section class="tech-category" aria-labelledby="languages-frameworks-heading">
<div class="container">
<h2 id="languages-frameworks-heading">Languages & Frameworks</h2>
<div class="tech-cards">
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">JavaScript</h3>
<span class="expertise-badge badge-deep">Deep</span>
</div>
<p class="tech-summary">Primary language across full career. SCORM runtime APIs, cross-browser debugging, modern ES6+ features, Vue.js component architecture, Node.js tooling. Daily driver for 20+ years. jQuery era to modern frameworks.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="Exelon Corporation">Exelon</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">HTML/CSS</h3>
<span class="expertise-badge badge-deep">Deep</span>
</div>
<p class="tech-summary">Semantic HTML5, WCAG AA-compliant accessibility implementation, responsive design, CSS Grid/Flexbox, custom properties, dark mode theming. Production sites pass WAVE/axe validation.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="Entergy Corporation">Entergy</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Node.js</h3>
<span class="expertise-badge badge-deep">Deep</span>
</div>
<p class="tech-summary">Build pipelines, SCORM package assembly, CLI tooling, server-side generation. npm ecosystem expertise. Used across website generation, data processing, and development tooling.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Vue.js</h3>
<span class="expertise-badge badge-deep">Deep</span>
</div>
<p class="tech-summary">Preferred framework. Component architecture, state management, reactive data binding. Production experience with complex review apps and data visualization interfaces.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">React</h3>
<span class="expertise-badge badge-working">Working</span>
</div>
<p class="tech-summary">Production work on BP, AICPA, and ContentAIQ projects. Component development, hooks, state management. No greenfield project experience, but solid contributor on existing codebases.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">TypeScript</h3>
<span class="expertise-badge badge-working">Working</span>
</div>
<p class="tech-summary">Type-safe JavaScript for larger projects. Interface definitions, generics, strict type checking. Growing usage in modern tooling and applications.</p>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Python</h3>
<span class="expertise-badge badge-working">Working</span>
</div>
<p class="tech-summary">Data pipelines, DB operations, website generators, CLI tools. sqlite3, Click framework, structured data processing. Current project's primary scripting language.</p>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Bash/Shell</h3>
<span class="expertise-badge badge-working">Working</span>
</div>
<p class="tech-summary">WSL2/Linux daily use. Build automation, git workflows, system administration. Comfortable with piping, regex, and common Unix utilities.</p>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">C#/.NET</h3>
<span class="expertise-badge badge-aware">Aware</span>
</div>
<p class="tech-summary">Exposure through platform work and legacy system integration. Familiar with .NET ecosystem and ASP.NET patterns.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
</div>
</div>
</section>
<section class="tech-category" aria-labelledby="data-apis-heading">
<div class="container">
<h2 id="data-apis-heading">Data & APIs</h2>
<div class="tech-cards">
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">SQLite</h3>
<span class="expertise-badge badge-deep">Deep</span>
</div>
<p class="tech-summary">Extensive deep work on relational schema design, complex joins, migration patterns, data integrity constraints. Current project uses SQLite as the primary data store with 6,600+ records.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">SQL</h3>
<span class="expertise-badge badge-deep">Deep</span>
</div>
<p class="tech-summary">SQL Server, Oracle, and other relational databases. Complex queries, performance optimization, stored procedures, indexing strategies. Production experience across multiple DB platforms.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">JSON</h3>
<span class="expertise-badge badge-deep">Deep</span>
</div>
<p class="tech-summary">Core data format for configs, APIs, and data exchange. Deep understanding of schema design, validation, and transformation patterns.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">XML</h3>
<span class="expertise-badge badge-deep">Deep</span>
</div>
<p class="tech-summary">SCORM manifests (imsmanifest.xml), AICC HACP packets, legacy data formats. Schema validation, transformation, and debugging.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Regular Expressions</h3>
<span class="expertise-badge badge-deep">Deep</span>
</div>
<p class="tech-summary">Diagnostic power tool for SCORM debugging, data extraction, and text processing. Complex pattern matching, capture groups, lookaheads.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">REST APIs</h3>
<span class="expertise-badge badge-working">Working</span>
</div>
<p class="tech-summary">API design, integration, and debugging. HTTP methods, status codes, authentication patterns. Production work with LMS and platform APIs.</p>
</div>
</div>
</div>
</section>
<section class="tech-category" aria-labelledby="ai-automation-heading">
<div class="container">
<h2 id="ai-automation-heading">AI & Automation</h2>
<div class="tech-cards">
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Claude Code</h3>
<span class="expertise-badge badge-deep">Deep</span>
</div>
<p class="tech-summary">Primary AI development tool. Full project execution with Claude: architecture, implementation, testing, documentation. Current project built 95% with AI assistance.</p>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">GitHub Copilot</h3>
<span class="expertise-badge badge-working">Working</span>
</div>
<p class="tech-summary">Supplementary AI tool for inline code completions and boilerplate generation. Used alongside Claude Code for complementary strengths.</p>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Power Platform</h3>
<span class="expertise-badge badge-deep">Deep</span>
</div>
<p class="tech-summary">Full suite expertise: Power Automate flows, Power Apps (canvas and model-driven), governance and administration. Enterprise-scale deployments.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Copilot Studio</h3>
<span class="expertise-badge badge-deep">Deep</span>
</div>
<p class="tech-summary">From one deep project with Teams integration. Bot design, conversation flows, knowledge base integration. Enterprise chatbot deployment.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Dataverse</h3>
<span class="expertise-badge badge-working">Working</span>
</div>
<p class="tech-summary">Part of Power Platform ecosystem. Data modeling, relationships, security roles. Used for app backend storage and integration.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
</div>
</div>
</section>
<section class="tech-category" aria-labelledby="diagnostic-analysis-heading">
<div class="container">
<h2 id="diagnostic-analysis-heading">Diagnostic & Analysis</h2>
<p class="category-intro">Forensic debugging mindset—not just tools, but methodology for solving complex technical issues.</p>
<div class="tech-cards">
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Fiddler</h3>
<span class="expertise-badge badge-deep">Deep</span>
</div>
<p class="tech-summary">HTTP traffic analysis, API debugging, performance profiling. Essential tool for SCORM/AICC communication diagnostics. Deep expertise in request/response inspection and manipulation.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="Exelon Corporation">Exelon</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">SCORM Cloud</h3>
<span class="expertise-badge badge-deep">Deep</span>
</div>
<p class="tech-summary">Primary diagnostic platform for eLearning content validation. Reference implementation testing, conformance verification, cross-LMS comparison.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="Exelon Corporation">Exelon</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Chrome DevTools</h3>
<span class="expertise-badge badge-deep">Deep</span>
</div>
<p class="tech-summary">Core diagnostic tool. Network panel, console debugging, Elements inspector, Performance profiling, Application storage. Daily debugging workflow.</p>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Postman</h3>
<span class="expertise-badge badge-working">Working</span>
</div>
<p class="tech-summary">API testing and exploration. Request building, environment variables, test scripting. Used for LMS API integration work.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
</div>
</div>
</section>
<section class="tech-category" aria-labelledby="platforms-devops-heading">
<div class="container">
<h2 id="platforms-devops-heading">Platforms & DevOps</h2>
<div class="tech-cards">
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Git/GitHub</h3>
<span class="expertise-badge badge-working">Working</span>
</div>
<p class="tech-summary">Active daily use. Branching strategies, PR workflows, conflict resolution, commit history management. GitHub Actions for CI/CD.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Azure DevOps</h3>
<span class="expertise-badge badge-working">Working</span>
</div>
<p class="tech-summary">Work item tracking, source control, build pipeline coordination. Team collaboration on enterprise projects.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Docker</h3>
<span class="expertise-badge badge-working">Working</span>
</div>
<p class="tech-summary">Running containers, docker-compose orchestration, Dockerfile creation. Development environment standardization.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">SharePoint</h3>
<span class="expertise-badge badge-working">Working</span>
</div>
<p class="tech-summary">Collaboration platform administration, document library management, workflow automation. Enterprise content management.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Linux</h3>
<span class="expertise-badge badge-working">Working</span>
</div>
<p class="tech-summary">WSL2 daily use, command-line fluency, system administration basics, shell scripting, package management.</p>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">npm</h3>
<span class="expertise-badge badge-working">Working</span>
</div>
<p class="tech-summary">Package management ecosystem. Dependency management, script automation, version resolution, package.json configuration.</p>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">AWS</h3>
<span class="expertise-badge badge-aware">Aware</span>
</div>
<p class="tech-summary">Cloud platform exposure through project work. Familiar with S3, EC2, and basic deployment patterns.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="Microsoft (HUP Program)">Microsoft HUP</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Apache</h3>
<span class="expertise-badge badge-aware">Aware</span>
</div>
<p class="tech-summary">Web server configuration and troubleshooting. .htaccess rules, virtual hosts, SSL setup.</p>
<p class="tech-data-line">2009–2022</p>
<div class="tech-tags">
<span class="impact-tag" title="Sikorsky Aircraft (Lockheed Martin)">Sikorsky</span>
<span class="impact-tag" title="Bristol-Myers Squibb">BMS</span>
<span class="impact-tag" title="Nalco (Ecolab)">Nalco</span>
<span class="impact-tag" title="American Electric Power">AEP</span>
<span class="impact-tag" title="NASA">NASA</span>
</div>
</div>
<div class="tech-card">
<div class="tech-card-header">
<h3 class="tech-name">Oracle</h3>
<span class="expertise-badge badge-aware">Aware</span>
</div>
<p class="tech-summary">Underlying platform for several LMS systems. Familiar with Oracle SQL and PL/SQL patterns, but not deep database administration.</p>