-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest_output.html
More file actions
521 lines (477 loc) · 18.5 KB
/
test_output.html
File metadata and controls
521 lines (477 loc) · 18.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sidney Jones - Resume</title>
<meta name="description" content="Professional resume generated with hybrid HTML+SVG approach">
<meta name="generator" content="SVG Lab Hybrid Resume Generator">
<meta name="theme" content="creative">
<style>
/* Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: system-ui, -apple-system, sans-serif;
background-color: #ffffff;
color: #1f2937;
line-height: 1.6;
}
.resume-container {
width: 1200px;
margin: 0 auto;
background: white;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
/* Layout Styles */
.header {
position: relative;
height: 220px;
overflow: hidden;
}
.header-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
.header-content {
position: relative;
z-index: 2;
padding: 40px;
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
}
.section {
padding: 25px 40px;
margin-top: 25px;
}
.two-column {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}
.skills-column {
display: flex;
flex-direction: column;
}
.experience-header {
display: flex;
justify-content: space-between;
margin-bottom: 15px;
}
.experience-left {
flex: 1;
}
.experience-right {
text-align: right;
}
/* Typography Styles */
.personal-info h1 {
font-size: 38px;
font-weight: bold;
color: white;
margin-bottom: 10px;
}
.title {
font-size: 20px;
font-weight: 500;
color: #fce7f3;
}
.section-heading {
font-size: 18px;
font-weight: 700;
color: #ec4899;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid #ec4899;
}
.subsection-heading {
font-size: 15px;
font-weight: 600;
color: #1f2937;
margin-bottom: 15px;
}
.summary-text {
font-size: 14px;
color: #1f2937;
text-align: justify;
line-height: 1.8;
}
.bullet-text {
font-size: 14px;
color: #1f2937;
line-height: 1.7;
text-align: justify;
}
.contact-item {
font-size: 12px;
color: #fce7f3;
margin-bottom: 5px;
}
/* Component Styles */
.contact-info {
margin-top: 20px;
}
.skill-category {
margin-bottom: 12px;
}
.skill-label {
font-weight: 600;
color: #1f2937;
font-size: 12px;
margin-bottom: 4px;
}
.skill-value {
font-size: 12px;
color: #6b7280;
line-height: 1.6;
}
.expertise-list {
list-style: none;
display: grid;
grid-template-columns: 1fr;
gap: 8px;
}
.expertise-item {
font-size: 12px;
color: #1f2937;
padding-left: 20px;
position: relative;
}
.expertise-item::before {
content: "▸";
position: absolute;
left: 0;
color: #ec4899;
font-weight: bold;
}
.experience-item {
margin-bottom: 30px;
}
.employer {
font-size: 15px;
font-weight: 600;
color: #1f2937;
}
.role {
font-size: 14px;
color: #6b7280;
font-style: italic;
}
.location,
.dates {
font-size: 12px;
color: #6b7280;
}
.bullet-item {
margin-bottom: 15px;
padding-left: 20px;
position: relative;
}
.bullet-item::before {
content: "•";
position: absolute;
left: 0;
color: #ec4899;
font-weight: bold;
font-size: 18px;
}
.tags {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-top: 8px;
}
.tag {
display: inline-block;
padding: 3px 8px;
background-color: #8b5cf620;
color: #7c3aed;
font-size: 10px;
font-weight: 600;
border-radius: 3px;
border: 1px solid #8b5cf640;
}
.education-item {
margin-bottom: 15px;
}
.degree {
font-size: 15px;
font-weight: 600;
color: #1f2937;
}
.institution {
font-size: 12px;
color: #6b7280;
}
.certifications {
margin-top: 20px;
}
.certification-item {
font-size: 12px;
color: #1f2937;
margin-bottom: 8px;
padding-left: 20px;
position: relative;
}
.certification-item::before {
content: "✓";
position: absolute;
left: 0;
color: #ec4899;
font-weight: bold;
}
/* Print Styles */
@media print {
@page {
margin: 0;
size: letter;
}
body {
margin: 0;
padding: 0;
}
.resume-container {
width: 100%;
box-shadow: none;
margin: 0;
}
.section {
page-break-inside: avoid;
}
.experience-item {
page-break-inside: avoid;
}
}
</style>
</head>
<body>
<div class="resume-container">
<div class="header" data-section="header">
<svg class="header-bg" viewBox="0 0 1200 220" preserveAspectRatio="none">
<defs>
<linearGradient id="headerGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ec4899" />
<stop offset="100%" style="stop-color:#f59e0b" />
</linearGradient>
</defs>
<rect x="0" y="0" width="1200" height="220" fill="url(#headerGrad)" />
</svg>
<div class="header-content">
<div class="personal-info" data-section="personal_info">
<h1 data-field="name">Sidney Jones</h1>
<div class="title" data-field="title">Senior DevOps Software Engineer</div>
</div>
<div class="contact-info" data-section="contact_info">
<div class="contact-item" data-field="location">West Bloomfield, MI</div>
<div class="contact-item" data-field="email">sjones@bpmsoftwaresolutions.com</div>
<div class="contact-item" data-field="phone">(248) 802-1847</div>
</div>
</div>
</div>
<section class="section" data-section="summary">
<h2 class="section-heading">PROFESSIONAL SUMMARY</h2>
<p class="summary-text" data-field="summary_text">Accomplished technology leader with extensive experience in driving software engineering management, enterprise architecture, and large-scale transformation initiatives across diverse sectors. Track record of leading cross-functional teams to deliver AI-driven solutions, scalable SaaS platforms, and enterprise-grade cloud architectures that enhance performance, reduce costs, and accelerate delivery. Skilled in microservices, AI/LLM development, and Agile delivery practices, with a strong focus on aligning engineering excellence with business goals, optimizing delivery pipelines, and guiding enterprise modernization strategies across global organizations. Entrepreneurial strategist with expertise in resolving complex business challenges, integrating enterprise consulting with scalable product innovation, and coaching teams in Agile/SAFe to ensure continuous improvement.</p>
</section>
<section class="section" data-section="skills">
<h2 class="section-heading">CORE COMPETENCIES</h2>
<div class="two-column">
<div class="skills-column" data-section="technical_proficiencies">
<h3 class="subsection-heading">TECHNICAL PROFICIENCIES</h3>
<div class="skill-category" data-category="ai">
<div class="skill-label">AI:</div>
<div class="skill-value">Large Language Models (LLMs), AI-assisted coding, RPA, NLP, Intelligent Orchestration</div>
</div>
<div class="skill-category" data-category="cloud">
<div class="skill-label">CLOUD:</div>
<div class="skill-value">Azure, AWS, SaaS Platforms, Microservices, Serverless Functions</div>
</div>
<div class="skill-category" data-category="databases">
<div class="skill-label">DATABASES:</div>
<div class="skill-value">Microsoft SQL Server, MongoDB (NoSQL), MySQL, Oracle, PostgreSQL</div>
</div>
<div class="skill-category" data-category="devops">
<div class="skill-label">DEVOPS:</div>
<div class="skill-value">Jenkins, GitHub Actions, Azure DevOps, Docker, Kubernetes, Terraform, IaC</div>
</div>
<div class="skill-category" data-category="languages">
<div class="skill-label">LANGUAGES:</div>
<div class="skill-value">C#, .NET (Framework/Core/6+), Python, Java, JavaScript/TypeScript (React, Angular, Node.js), SQL, Golang, C/C++, VB</div>
</div>
<div class="skill-category" data-category="opensource">
<div class="skill-label">OPENSOURCE:</div>
<div class="skill-value">GitHub open-source projects (RenderX, Valence CLI)</div>
</div>
<div class="skill-category" data-category="os">
<div class="skill-label">OS:</div>
<div class="skill-value">Windows, Unix, Linux, macOS, iOS, Android</div>
</div>
<div class="skill-category" data-category="security">
<div class="skill-label">SECURITY:</div>
<div class="skill-value">AES-256 Encryption, Key Vaults, Role-Based Access Control, HIPAA/Data Privacy</div>
</div>
</div>
<div class="skills-column" data-section="areas_of_expertise">
<h3 class="subsection-heading">AREAS OF EXPERTISE</h3>
<ul class="expertise-list">
<li class="expertise-item" data-item="0">Enterprise Architecture & Cloud Transformation</li>
<li class="expertise-item" data-item="1">Revenue Growth & Cost Optimization</li>
<li class="expertise-item" data-item="2">SaaS Solution Development</li>
<li class="expertise-item" data-item="3">Security & Data Protection</li>
<li class="expertise-item" data-item="4">AI Adoption & Scaling</li>
<li class="expertise-item" data-item="5">Data-Driven Analytics</li>
<li class="expertise-item" data-item="6">Process Automation</li>
<li class="expertise-item" data-item="7">Relationship Building</li>
<li class="expertise-item" data-item="8">Innovation & Product Development</li>
<li class="expertise-item" data-item="9">Business Strategy & Value Delivery</li>
<li class="expertise-item" data-item="10">Team Leadership & Agile Coaching</li>
<li class="expertise-item" data-item="11">Cybersecurity & Compliance</li>
</ul>
</div>
</div>
</section>
<section class="section" data-section="experience">
<h2 class="section-heading">PROFESSIONAL EXPERIENCE</h2>
<div class="experience-item" data-position="0" data-company="edward_jones">
<div class="experience-header">
<div class="experience-left">
<div class="employer" data-field="employer">Edward Jones</div>
<div class="role" data-field="role">Senior Application Architect</div>
</div>
<div class="experience-right">
<div class="location" data-field="location">Remote</div>
<div class="dates" data-field="dates">2021 - 2024</div>
</div>
</div>
<div class="bullet-item" data-bullet="0">
<div class="bullet-text">Spearheaded transformation of Online Access platform, implementing microservices and micro-frontend architecture to modernize client-facing systems.</div>
<div class="tags">
<span class="tag" data-tag="transformation">Transformation</span>
<span class="tag" data-tag="microservices">Microservices</span>
<span class="tag" data-tag="micro_frontend">Micro-frontend</span>
<span class="tag" data-tag="architecture">Architecture</span>
<span class="tag" data-tag="modernization">Modernization</span>
</div>
</div>
<div class="bullet-item" data-bullet="1">
<div class="bullet-text">Bolstered team capabilities as well as strengthened built-in quality by introducing cross-training workshops for Web/API and Mobile automation testing.</div>
<div class="tags">
<span class="tag" data-tag="training">Training</span>
<span class="tag" data-tag="quality">Quality</span>
<span class="tag" data-tag="automation_testing">Automation Testing</span>
<span class="tag" data-tag="web">Web</span>
<span class="tag" data-tag="api">API</span>
<span class="tag" data-tag="mobile">Mobile</span>
<span class="tag" data-tag="cross_training">Cross-training</span>
</div>
</div>
<div class="bullet-item" data-bullet="2">
<div class="bullet-text">Provided leadership coaching for engineering managers and trained RTEs, scrum masters, and managers on Jira dashboard development for improved visibility.</div>
<div class="tags">
<span class="tag" data-tag="leadership">Leadership</span>
<span class="tag" data-tag="coaching">Coaching</span>
<span class="tag" data-tag="safe">SAFe</span>
<span class="tag" data-tag="rte">RTE</span>
<span class="tag" data-tag="scrum_master">Scrum Master</span>
<span class="tag" data-tag="jira">Jira</span>
<span class="tag" data-tag="agile">Agile</span>
</div>
</div>
<div class="bullet-item" data-bullet="3">
<div class="bullet-text">Reengineered release train processes, cutting delivery timelines by 50% and enabling 13 teams to deploy independently with higher quality.</div>
<div class="tags">
<span class="tag" data-tag="process_improvement">Process Improvement</span>
<span class="tag" data-tag="safe">SAFe</span>
<span class="tag" data-tag="release_train">Release Train</span>
<span class="tag" data-tag="delivery">Delivery</span>
<span class="tag" data-tag="quality">Quality</span>
<span class="tag" data-tag="team_enablement">Team Enablement</span>
</div>
</div>
<div class="bullet-item" data-bullet="4">
<div class="bullet-text">Restructured platform team into specialized sub-teams, minimizing delivery complexity and accelerating timelines.</div>
<div class="tags">
<span class="tag" data-tag="team_structure">Team Structure</span>
<span class="tag" data-tag="organization">Organization</span>
<span class="tag" data-tag="platform">Platform</span>
<span class="tag" data-tag="delivery">Delivery</span>
<span class="tag" data-tag="optimization">Optimization</span>
</div>
</div>
</div>
<div class="experience-item" data-position="1" data-company="soave_enterprises">
<div class="experience-header">
<div class="experience-left">
<div class="employer" data-field="employer">Soave Enterprises</div>
<div class="role" data-field="role">Technology Manager / Software Architect</div>
</div>
<div class="experience-right">
<div class="location" data-field="location">Detroit, MI</div>
<div class="dates" data-field="dates">2015 – 2016</div>
</div>
</div>
<div class="bullet-item" data-bullet="0">
<div class="bullet-text">Directed multiple development teams in redesigning and deploying scrap yard information management system across 25 US locations, enhancing operational efficiency and standardization. Partnered with executives and stakeholders to evaluate emerging technologies, balancing innovation with risk, cost, and scalability.</div>
<div class="tags">
<span class="tag" data-tag="leadership">Leadership</span>
<span class="tag" data-tag="management_system">Management System</span>
<span class="tag" data-tag="multi_location">Multi-location</span>
<span class="tag" data-tag="stakeholder_management">Stakeholder Management</span>
<span class="tag" data-tag="technology_evaluation">Technology Evaluation</span>
</div>
</div>
<div class="bullet-item" data-bullet="1">
<div class="bullet-text">Upgraded eight ERP subsystems using MVVM design pattern, successfully unifying five locations under single application and streamlining business processes.</div>
<div class="tags">
<span class="tag" data-tag="erp">ERP</span>
<span class="tag" data-tag="mvvm">MVVM</span>
<span class="tag" data-tag="design_pattern">Design Pattern</span>
<span class="tag" data-tag="integration">Integration</span>
<span class="tag" data-tag="business_process">Business Process</span>
</div>
</div>
<div class="bullet-item" data-bullet="2">
<div class="bullet-text">Redeveloped server room and transitioned corporate infrastructure to hybrid cloud on AWS EC2, reducing IT costs by $250K annually by partnering with network team and external IT vendors.</div>
<div class="tags">
<span class="tag" data-tag="cloud_migration">Cloud Migration</span>
<span class="tag" data-tag="aws">AWS</span>
<span class="tag" data-tag="ec2">EC2</span>
<span class="tag" data-tag="infrastructure">Infrastructure</span>
<span class="tag" data-tag="cost_reduction">Cost Reduction</span>
<span class="tag" data-tag="hybrid_cloud">Hybrid Cloud</span>
</div>
</div>
</div>
</section>
<section class="section" data-section="education">
<h2 class="section-heading">EDUCATION & CERTIFICATIONS</h2>
<div class="education-item" data-position="0">
<div class="degree" data-field="degree">Bachelor of Technology</div>
<div class="institution" data-field="institution">University of Phoenix • Troy, MI • </div>
</div>
<div class="education-item" data-position="1">
<div class="degree" data-field="degree">Software Engineering Certification</div>
<div class="institution" data-field="institution">McGraw-Hill • Washington, DC • </div>
</div>
<div class="certifications" data-section="certifications">
<h3 class="subsection-heading">Certifications</h3>
<div class="certification-item" data-position="0">SAFe 5 Certified DevOps Practitioner (SAFe by Scaled Agile, Inc., Jan 2023)</div>
<div class="certification-item" data-position="1">SAFe 5 Certified - Advanced Scrum Master (SASM) (SAFe by Scaled Agile, Inc., Dec 2022)</div>
<div class="certification-item" data-position="2">ICAgile Certified Professional - Agile Team Facilitation (ICAgile, Oct 2022)</div>
<div class="certification-item" data-position="3">ICAgile Certified Professional - Foundations of DevOps (ICAgile, Oct 2022)</div>
<div class="certification-item" data-position="4">Agile Project and Delivery Management (ICAgile, Sep 2022)</div>
<div class="certification-item" data-position="5">ICAgile Certified Professional - Business Agility Foundations (ICAgile, Aug 2022)</div>
<div class="certification-item" data-position="6">Professional Scrum Master™ I (PSM I) (Scrum.org, May 2022)</div>
</div>
</section>
</div>
</body>
</html>