-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
549 lines (491 loc) · 20.9 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Larra Lapid</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic'
rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<style>
* {
box-sizing: border-box;
}
main {
display: block;
}
body {
font-size: 15px;
color: #333;
line-height: 1.42857143;
background-color: #F0F0F0;
margin: 0;
padding: 0;
font-family: 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Segoe UI', 'Calibri', 'sans-serif';
}
/* Typical page borders are awkward when rendered to PDF. */
body.pdf {
background-color: #FFFFFF;
}
/* Adobe or wkhtmltopdf has issues with the <main> tag, so we use <div> for
the PDF case, <main> for the HTML case, and style both via an ID. */
#main {
background-color: #FFF;
margin: 10px;
padding: 10px;
border: 1px solid #E6E6E6;
}
body.pdf > #main {
border: none;
}
#container > header {
padding-top: 6em;
padding-bottom: 1em;
}
body.pdf #container > header {
padding: 0;
}
#main > #container > section {
margin-left: 150px;
position: relative;
display: block;
}
section > div {
margin-bottom: 60px;
}
span.fa
{
font-size: 56px;
position: absolute;
top: 37px;
transform: translateY(-50%);
left: -100px;
color: #1a4367;
}
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #EEE;
}
.tenure, .keywords {
font-size: 75%;
}
h1 {
margin: 0;
font-size: 46px;
display: inline-block;
}
h2 {
font-size: 30px;
color: #4376a2;
text-transform: uppercase;
font-weight: normal;
padding-top: 20px;
margin-bottom: 60px;
}
h3 {
margin-bottom: 0;
font-size: 18px;
}
a, a:visited {
color: #428BCA;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
.defunct {
color: #989898;
font-weight: bold;
}
#summary {
font-size: 150%;
margin-left: 0;
padding: 20px 0;
}
#summary > p > strong {
font-size: 1.25em;
}
#contact {
float: right;
}
#summary > header > .fa-info {
font-size: 70px;
letter-spacing: 5px;
text-transform: uppercase;
font-weight: normal;
top: 50%;
left: -85px;
transform: translateY(-50%);
}
#summary h2 {
display: none;
}
.label-keyword {
display: inline-block;
background: #e8f4ff;
color: black;
font-size: 0.9em;
padding: 5px;
border: 1px solid #357ebd;
border-radius: 5px;
margin-top: 2px;
font-weight: bold;
text-align: center;
}
.notes {
font-size: 10px;
display: block;
font-weight: normal;
text-transform: uppercase;
}
.card-skills {
position: relative;
}
.card-nested {
min-height: 0;
margin-bottom: 10px;
border-width: 1px 0 0 0;
}
.card {
background: #FFF;
border-radius: 3px;
padding: 10px;
}
.skill-level {
border-radius: 3px;
position: absolute;
top: 10px;
bottom: 10px;
left: 0;
width: 10px;
box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5);
}
.skill-level .skill-progress {
position: absolute;
border-radius: 3px;
bottom: 0;
width: 100%;
-webkit-transition: height 1s ease;
}
.skill-level .skill-progress.beginner {
height: 50%;
background: #e74c3c;
}
.skill-level .skill-progress.intermediate {
height: 70%;
background: #f1c40f;
}
.skill-level .skill-progress.advanced {
height: 80%;
background: #428bca;
}
.skill-level .skill-progress.master {
height: 95%;
background: #5cb85c;
}
.skill-info {
margin-left: 10px;
}
@media (max-width: 480px) {
.skill-info {
margin-left: 20px;
}
}
.skill-info > strong {
font-weight: 400;
font-size: 24px;
color: #1d1d1d;
line-height: 24px;
}
.list-unstyled {
padding-left: 0;
list-style: none;
}
.card-skills {
position: relative;
}
.space-top {
margin-top: 5px;
}
#container {
max-width: 800px;
margin: 0 auto;
}
#elevator-pitch {
text-align: center;
font-size: 24px;
color: #BFC1C3;
text-transform: uppercase;
font-weight: normal;
}
.res-label {
font-style: italic;
}
</style>
</head>
<body>
<main id="main">
<div id="container">
<header>
<h1>Larra Lapid</h1>
<div id="contact">
<div class="email"><a href="mailto:larralapid@gmail.com">larralapid@gmail.com</a>
</div>
<div class="phone">513-514-9041</div>
<div class="website"><a href="cv.larralapid.dev">cv.larralapid.dev</a>
</div>
</div>
</header>
<hr>
<section id="summary">
<header> <span class="fa fa-lg fa-info"></span>
<h2>info</h2>
</header>Cincinnati based ServiceNow developer</section>
<hr>
<section id="skills">
<header>
<h2>Skills</h2>
</header> <span class="fa fa-lg fa-code"></span>
<ul class="list-unstyled">
<li class="card card-nested card-skills">
<div class="skill-level" rel="tooltip" title="advanced" data-placement="left">
<div class="skill-progress advanced"></div>
</div>
<div class="skill-info"> <strong>Programming Languages</strong>
<div class="space-top labels">
<div class="label label-keyword"> <span class="kw">JavaScript</span>
</div>
<div class="label label-keyword"> <span class="kw">Python</span>
</div>
<div class="label label-keyword"> <span class="kw">Lua</span>
</div>
<div class="label label-keyword"> <span class="kw">SQL</span>
</div>
</div>
</div>
</li>
<li class="card card-nested card-skills">
<div class="skill-level" rel="tooltip" title="advanced" data-placement="left">
<div class="skill-progress advanced"></div>
</div>
<div class="skill-info"> <strong>ServiceNow & IT Service Management</strong>
<div class="space-top labels">
<div class="label label-keyword"> <span class="kw">ServiceNow (ITSM, ITBM, CSM, Performance Analytics)</span>
</div>
<div class="label label-keyword"> <span class="kw">Office 365 Admin</span>
</div>
<div class="label label-keyword"> <span class="kw">Google Workspace Admin</span>
</div>
<div class="label label-keyword"> <span class="kw">Azure</span>
</div>
<div class="label label-keyword"> <span class="kw">Active Directory</span>
</div>
</div>
</div>
</li>
<li class="card card-nested card-skills">
<div class="skill-level" rel="tooltip" title="advanced" data-placement="left">
<div class="skill-progress advanced"></div>
</div>
<div class="skill-info"> <strong>Development Frameworks & Tools</strong>
<div class="space-top labels">
<div class="label label-keyword"> <span class="kw">Node.js</span>
</div>
<div class="label label-keyword"> <span class="kw">React</span>
</div>
<div class="label label-keyword"> <span class="kw">Git</span>
</div>
<div class="label label-keyword"> <span class="kw">GitHub</span>
</div>
<div class="label label-keyword"> <span class="kw">Supabase</span>
</div>
<div class="label label-keyword"> <span class="kw">Vercel</span>
</div>
</div>
</div>
</li>
<li class="card card-nested card-skills">
<div class="skill-level" rel="tooltip" title="intermediate" data-placement="left">
<div class="skill-progress intermediate"></div>
</div>
<div class="skill-info"> <strong>Project Management & Collaboration</strong>
<div class="space-top labels">
<div class="label label-keyword"> <span class="kw">JIRA</span>
</div>
<div class="label label-keyword"> <span class="kw">Confluence</span>
</div>
<div class="label label-keyword"> <span class="kw">Atlassian Admin</span>
</div>
<div class="label label-keyword"> <span class="kw">Agile Methodologies</span>
</div>
</div>
</div>
</li>
<li class="card card-nested card-skills">
<div class="skill-level" rel="tooltip" title="advanced" data-placement="left">
<div class="skill-progress advanced"></div>
</div>
<div class="skill-info"> <strong>Operating Systems & Infrastructure</strong>
<div class="space-top labels">
<div class="label label-keyword"> <span class="kw">Ubuntu</span>
</div>
<div class="label label-keyword"> <span class="kw">System Administration</span>
</div>
<div class="label label-keyword"> <span class="kw">Cloud Services</span>
</div>
</div>
</div>
</li>
</ul>
</section>
<hr>
<section id="employment">
<header> <span class="fa fa-lg fa-building"></span>
<h2>employment</h2>
</header>
<div>
<h3><em>Technical Solutions Consultant, Founder</em>,
<a href="http://somastack.com">Somastack</a>
</h3> <span class="tenure">2024-01 — Present</span>
<p>
<p>Provides strategic technical consulting and develops innovative solutions
for scalable systems.</p>
</p>
<ul>
<li>Founded Somastack to deliver high-impact technical solutions across industries.</li>
<li>Architected AI-driven automation frameworks for workflow optimization.</li>
<li>Developed open-source tooling and internal libraries to streamline DevOps
processes.</li>
</ul>
</div>
<div>
<h3><em>ServiceNow Engineer</em>,
Appriss Insights, An Equifax Company
</h3> <span class="tenure">2020-01 — 2023-01</span>
<p>
<p>Designed and enhanced ServiceNow implementations, focusing on automation,
security, and compliance.</p>
</p>
<ul>
<li>Redesigned enterprise-level ServiceNow workflows to improve process efficiency.</li>
<li>Integrated real-time data pipelines for compliance reporting across multiple
platforms.</li>
<li>Developed custom applications in ServiceNow to support identity verification
and fraud detection.</li>
</ul>
</div>
<div>
<h3><em>Senior ServiceNow Developer</em>,
Cloudpires
</h3> <span class="tenure">2017-01 — 2020-01</span>
<p>
<p>Led development and customization of ServiceNow solutions to enhance ITSM
and business operations.</p>
</p>
<ul>
<li>Built a high-availability ServiceNow instance supporting large-scale enterprise
operations.</li>
<li>Led the migration of legacy ITSM systems into ServiceNow, reducing ticket
resolution complexities.</li>
<li>Designed a scalable knowledge management portal within ServiceNow to improve
internal documentation processes.</li>
</ul>
</div>
</section>
<hr>
<section id="service">
<header> <span class="fa fa-lg fa-child"></span>
<h2>service</h2>
</header>
<div>
<h3><em>STARS Reading Program Mentor</em>,
Princeton City School District
</h3>
<span class="tenure">2014-08 — 2015-05</span>
<p></p>
</div>
<div>
<h3><em>Race Volunteer</em>,
Susan G. Komen
</h3>
<span class="tenure">2014-09 — Present</span>
<p></p>
</div>
<div>
<h3><em>Food Drive Coordinator</em>,
Shared Harvest Foodbank
</h3>
<span class="tenure">2014-11 — Present</span>
<p>
<p>Organized 'Harvest for The Hungry' food drive for Macy’s Inc corporate
office.</p>
</p>
</div>
<div>
<h3><em>Bag Hunger Campaign Participant</em>,
Macy’s
</h3>
<span class="tenure">2015-03 — 2016-03</span>
<p></p>
</div>
<div>
<h3><em>Food Drive Coordinator</em>,
Heritage Hill Elementary School
</h3>
<span class="tenure">2015-12 — Present</span>
<p></p>
</div>
<div>
<h3><em>Macy’s Social Media Representative</em>,
ArtsWave
</h3>
<span class="tenure">2016-02 — Present</span>
<p></p>
</div>
<div>
<h3><em>The Shift Team Member</em>,
<a href="https://www.theshiftcincy.com">United Way of Greater Cincinnati</a>
</h3>
<span class="tenure">2016-09 — 2016-12</span>
<p></p>
</div>
</section>
<hr>
<section id="recognition">
<header> <span class="fa fa-lg fa-trophy"></span>
<h2>recognition</h2>
</header>
<div>
<h3><em>ServiceNow Knowledge 2019 Hackathon Winner - 2nd place, mobile virtual agent</em>, <a href="https://www.servicenow.com/blogs/2019/servicenow-hackathon-winners-2019">ServiceNow</a></h3>
<span class="tenure">2019</span>
<p>ServiceNow described the project as 'Taking advantage of the fact
that Virtual Agent can be set up to be public facing, the runner-up team
created an app that automates customer identification for the process of
renting or checking out cars.</p>
</div>
<div>
<h3><em>ServiceNow Knowledge 2020 Hackathon Winner - 2nd place, Zoom/ServiceNow integration</em>, <a href="https://www.servicenow.com/blogs/2020/knowledge-2020-hackathon-winners">ServiceNow</a></h3>
<span class="tenure">2020</span>
<p>An ML powered custom ServiceNow integration with Zoom meetings platform.</p>
</div>
</section>
<hr>
<section id="interests">
<header> <span class="fa fa-lg fa-bicycle"></span>
<h2>interests</h2>
</header>
<div>
<h3><em>GitHub</em></h3>
<span class="tenure">Current</span>
<p>Regular GitHub user and tinkerer.</p>
</div>
</section>
</div>
</main>
</body>
</html>