-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
705 lines (686 loc) · 50.9 KB
/
portfolio.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
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<!-- This is our Portfolio Page! :3 -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="./static/imgs/ant-icon.png">
<link rel="stylesheet" href="static/normalize.css">
<link href="static/dist/portfolio.css" rel="stylesheet" type="text/css">
<script src="./scripts/date.js"></script>
<title>Ant's Portfolio</title>
<!-- SEO -->
<meta name="description" content="Anthony Sean Protho - Welcome to Ant World. Home Page">
<!-- Mail function -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/emailjs-com@3/dist/email.min.js"></script>
<script type="text/javascript">
(function () {
emailjs.init("user_U77PUdXoC2Qk1VExJXjxC");
})();
</script>
<script type="text/javascript">
window.onload = function () {
document.getElementById('contact-form').addEventListener('submit', function (event) {
event.preventDefault();
// generate a five digit number for the contact_number variable
this.contact_number.value = Math.random() * 100000 | 0;
// these IDs from the previous steps
emailjs.sendForm('service_bv3n4bf', 'template_b71okhr', this)
.then(function () {
console.log('SUCCESS!');
}, function (error) {
console.log('FAILED...', error);
});
});
}
</script>
</head>
<body>
<span>
<div class="hamburger absolutelyNot" onclick="navMenu()">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
<div class="circle"></div>
</div>
<nav>
<a href="./index.html"> Home </a>
<hr>
<a href="#me"> About </a>
<hr>
<a href="#projects"> Projects </a>
<hr>
<a href="#contact"> Contact </a>
</nav>
</span>
<section id="me" class="contain">
<article class="rightSpace">
<hgroup class="name-content">
<h1>Anthony <div class="hide">Sean</div> Protho</h1>
<h2 class="hide">I code to create. I code to be challenged. I code for Fun.</h2>
<h3 class="hide">Architect at Marshfield Consulting ● Chigaco, IL (Remote)</h3>
</hgroup>
<p>  A man of many passions, Anthony is known for his ambitious, determined, and self-managed work
ethic towards completing his goals. He is pragmatic, yet compassionate, valuing honesty, loyalty,
time, success, and those around him. Caring for others well being, self-mastery, and enjoying life;
Anthony is a quick learner and has strong people skills. He is honest, noble, and can have some
great ideas. He can be brave even when insecure or unsure of himself. Ant is crazy and can be
cynical at times, but he is also motivational and can be really funny. But most of all, people know
Ant for being Ant (<a href="#educate">More Info</a>).</p>
</article>
<figure class="selfie-figure" alt="pictures of Ant">
<div class="selfie">
<img src="static/imgs/selfie.webp" alt="selfie">
</div>
<div class="ant">
<img src="static/imgs/ant.webp" alt="in ant costume">
</div>
<div class="poof">
<img src="static/imgs/poof.webp" alt="ant with poofie hair">
</div>
</figure>
<div id="seasonal"></div>
</section>
<section id="projects" class="contain">
<h2>Projects</h2>
<projects class="projects">
<section class="project-name">
<h3>Audio Visualizer</h3>
<a href="https://makemesenpai.github.io/audio_visualizer/" target="_blank" rel="noopener noreferrer">
<img class="project-img l" src="static/imgs/audiov.webp" alt="snapshot of audio visualizer">
</a>
<details>
<summary>Description</summary>
<div class="dropped-text">
<h4>(JavaScript, D3 - Fullstack)</h4>
<p>Example of a data visualizer, using D3 to show colorful bars based on real-time data! This
data is given to us as sound waves. Using DOM and data manipulating techniques - this fun
little website shows off a variety of animal sounds.</p>
</div>
</details>
<a href="https://makemesenpai.github.io/audio_visualizer/" target="_blank" rel="noopener noreferrer">
Link </a>
</section>
<section class="project-name">
<h3>Trilliant.ai</h3>
<a href="https://trilliant-5ed97.firebaseapp.com/" target="_blank" rel="noopener noreferrer">
<img class="project-img l" src="static/imgs/trilliant.webp" alt="snapshot of clothing eshop">
</a>
<details>
<summary>Description</summary>
<div class="dropped-text">
<h4>(React.js - Design Lead/Git Master)</h4>
<p>Collaborated with a team of 3 to design a website to match the client's needs. Contributed to
the website's search algorithm using tags and filters to help users search the website’s
catalog. Managing all commits to the repository. After about 4 months of work, our team was
able to meet the client's needs and spend more time on design, and other features. Going
through the trials of having an incomplete google sheet as our database and the struggles of
hosting a website live on firebase. We also had creative freedom over the <a
href="https://www.shoptrilliant.com/">original website</a>.</p>
</div>
</details>
<a href="https://trilliant-5ed97.firebaseapp.com/" target="_blank" rel="noopener noreferrer">
Link </a>
</section>
<section class="project-name">
<h3>Toeta</h3>
<a href="https://toeta.herokuapp.com/main.html" target="_blank" rel="noopener noreferrer">
<img class="project-img l" src="./static/imgs/toeta.webp" alt="snapshot of recipes website">
</a>
<details>
<summary>Description</summary>
<div class="dropped-text">
<h4>(Javascript, API - Fullstack Engineer)</h4>
<p>For all the chefs new and old who are finding it hard to decide what to eat for dinner today,
Toeta is the solution for you. The goal of this project was to solve the ever-lasting
question "What do I want to eat today?". With many plans for the future as to what this
project should be, it currently just gives a random recipe using spoonacular API. It took a
lot of time to get this thing to go server-side, given that static websites aren't meant to
be on clouds, so I made a PHP backend to solve this problem and hope for this to become much
more in the future.</p>
</div>
</details>
<a href="https://toeta.herokuapp.com/main.html" target="_blank" rel="noopener noreferrer"> Link </a>
</section>
<section class="project-name hide">
<h3>Knuckles</h3>
<a href="https://github.com/Rasenku/Knuckles" target="_blank" rel="noopener noreferrer">
<img class="project-img l" src="static/imgs/knuckles.webp" alt="snapshot of pathfinder algorithm">
</a>
<details>
<summary>Description</summary>
<div class="dropped-text">
<h4>(Python/PyGame - Data Scientist)</h4>
<p>This was an experiment a peer and I made. Our goal was to create a pathfinder. Despite it
being a very slow program, users are able to draw on the canvas and create mazes, a start,
and an endpoint, and see all the paths our little knuckles took in order to find the way.
</p>
</div>
</details>
<a href="https://github.com/Rasenku/Knuckles" target="_blank" rel="noopener noreferrer"> Link </a>
</section>
<section class="project-name hide">
<h3>Don’t Mix That!</h3>
<a href="https://dontmixthat.herokuapp.com" target="_blank" rel="noopener noreferrer">
<img class="project-img r" src="./static/imgs/dmt.webp" alt="snapshot of kids game">
</a>
<details>
<summary>Description</summary>
<div class="dropped-text">
<h4>(Flask, MongoDB, Git - Backend and Git Master)</h4>
<p>The virtual trading card game was a project in which I had the opportunity to work in a
woman-empowered team. This was one of my first engineering teams, and learning to overcome
group affairs and meet deadlines was a harsh learning curve. However the idea was great, and
the journey was greater. I was in charge of the git-flow, and web hosting using Heroku
connecting it to our MongoDB NoSQL. I learned a lot about team-oriented programming, git,
and backend programming.</p>
</div>
</details>
<a href="https://dontmixthat.herokuapp.com" target="_blank" rel="noopener noreferrer"> Link </a>
</section>
<section class="project-name hide">
<h3><abbr title="Christmas Hack Decorations">C.H.D.</abbr></h3>
<a href="https://medium.com/@MakeMeSenpai/c-h-d-59be534c9209" target="_blank" rel="noopener noreferrer">
<img class="project-img r" src="static/imgs/chd.webp" alt="circuit board with lights">
</a>
<details>
<summary>Description</summary>
<div class="dropped-text">
<h4>(C++, Arduino - Hardware Engineer)</h4>
<p>CHD (pronounced Chad), short for Christmas hack decorations, was a personal project I did in
my free time. My goal was to learn more about hardware, by hacking holiday lights and making
them flash to music. I still use these lights to this day, and they make great party lights.
After burning 7 fuses, and desperately looking for information from friends and the
internet. I was finally able to put everything together and figure it all out in under 2
weeks. Learning Arduino, electrical currents, and microphone information. I also wrote an
article so that others could learn from my mistakes.</p>
</div>
</details>
<a href="https://medium.com/@MakeMeSenpai/c-h-d-59be534c9209" target="_blank" rel="noopener noreferrer">
Link </a>
</section>
<section class="project-name hide">
<h3>Snow Globe</h3>
<a href="https://codepen.io/makemesenpai/full/eYJNEeM" target="_blank" rel="noopener noreferrer">
<img class="project-img l" src="static/imgs/snow_globe.webp" alt="snapshot of snowglob">
</a>
<details>
<summary>Description</summary>
<div class="dropped-text">
<h4>(HTML5/CSS3 - Web Designer)</h4>
<p>It had been a while since I was able to use CSS3, so I decided to make a fun animation in my
free time. I used some of the things I learned while working in Maya to help establish
keyframes and how I went about the animation process. Drawing anything in CSS was the
hardest part.</p>
</div>
</details>
<a href="https://codepen.io/makemesenpai/full/eYJNEeM" target="_blank" rel="noopener noreferrer">
Link </a>
</section>
<section class="project-name hide">
<h3>Small Survey</h3>
<a href="https://codepen.io/makemesenpai/full/VdEKvj" target="_blank" rel="noopener noreferrer">
<img class="project-img r" src="static/imgs/small-survey.webp" alt="snapshot of survey website">
</a>
<details>
<summary>Description</summary>
<div class="dropped-text">
<h4>(HTML5/CSS3 - Web Designer)</h4>
<p>This is a small survey project and another step towards my Dynamic Web Designer Certificate
back in 2018. I can make custom ones just for you, and you can send them to all of your
friends. This site is very small and simple, but it shows potential uses in more organized
online applications which are used 80% over paper applications.</p>
</div>
</details>
<a href="https://codepen.io/makemesenpai/full/VdEKvj" target="_blank" rel="noopener noreferrer"> Link
</a>
</section>
<section class="project-name hide">
<h3>Trouble Maker</h3>
<a href="https://www.bakersfield.com/entertainment/rollin-the-streets-of-bakersfield-for-annual-robotics-competition/article_4bc1fc94-137c-11e9-9ba8-7b04e8b58ba4.html"
target="_blank" rel="noopener noreferrer">
<img class="project-img l" src="./static/imgs/trouble-maker.webp"
alt="a group of people surrounding a robot aka team z and trouble maker">
</a>
<details>
<summary>Description</summary>
<div class="dropped-text">
<h4>(VEX, C++ - Executive Programmer)</h4>
<p>After many months of endless coding, I was in charge of getting our VEX brain to interpret
remote controls, autonomous driving, and ensuring that the machine could surpass the
obstacles collecting as many points as possible. I pushed the members of our team to do
their parts and stayed on top of mine to ensure that our team made it to state. In my first
year there I got the struggling Team Z to the Google Complex, in San Jose.</p>
</div>
</details>
<a href="https://www.bakersfield.com/entertainment/rollin-the-streets-of-bakersfield-for-annual-robotics-competition/article_4bc1fc94-137c-11e9-9ba8-7b04e8b58ba4.html"
target="_blank" rel="noopener noreferrer"> Link </a>
</section>
</projects>
<footer class="hr rightSpace">;and this very <a href="https://github.com/MakeMeSenpai/Ant_World">Website!</a>
</footer>
</section>
<section id="contact" class="contain">
<h2>Contact</h2>
<form id="contact-form">
<input type="hidden" name="to_name" value="Anthony">
<input type="hidden" name="contact_number">
<input type="text" name="from_name" placeholder="Name" required>
<input type="email" name="from_email" placeholder="Email" required>
<textarea name="message" placeholder="Message" required></textarea>
<button type="submit" value="Send" style="padding-right: 5px;" onclick="submitted()">Submit</button>
</form>
</section>
<section id="more-info" class="contain hide">
<details class="more-detail">
<summary>More Info</summary>
<p>Download resume <a href="./docs/Anthony_Protho_Resume_2022.docx"
download="Anthony_Protho_Resume_2021">here!</a></p>
<div class="more-drop-text">
<div id="skills">
<br>
<section id="educate">
<h2>Education</h2>
<p>Escuela de Negocios Europea de Barcelona, Spain (Remote)<br>
<abbr Title="Masters in Business Administration">M.B.A</abbr> and Masters Degree in Supply Chain Management (Jan 2025)
</p>
<p>Dominican University of California, San Rafael, CA (Hybrid)<br>
<abbr Title="Bachelors STEM Track">B.S.</abbr> Applied Computer Science (Jul.
2021)
</p>
<!-- make more information more interesting with pictures -->
<!-- <img src="https://upload.wikimedia.org/wikipedia/en/0/03/DU_shield.gif" width="75px" height="75px"> -->
</section>
<br>
<section id="tech">
<h2>Technical Skills</h2>
<p>Proficient</p>
<ul class="flex-space">
<li>Python3</li>
<li>JavaScript</li>
<li><abbr title="Hypertext Markup Language -v.5">HTML5</abbr>/<abbr
title="Sassy Cascading Style Sheets -v.3">SCSS3</abbr></li>
<li>DocuSign <abbr title="Contract Lifecycle Management">CLM</abbr></abbr></li>
<li><abbr title="search engine optimization">SEO</abbr></li>
<li><abbr title="Application Programming Interfaces">APIs</abbr></li>
<li>Web Hosting</li>
<li>REACT.<abbr title="JavaScript">js</abbr></li>
<li>Microsoft Office</li>
<li>Markdown Languages</li>
</ul>
<p>Intermediate</p>
<ul class="flex-space">
<li>C/C++ Robotics</li>
<li><abbr title="user Experience">UX</abbr>/<abbr title="User Interface">UI</abbr> Design
</li>
<li>Node.<abbr title="JavaScript">js</abbr></li>
<li>TypeScript</li>
<li>Adobe Software</li>
<li>Autodesk <abbr title="Computer Aided-Design and Drafting (CADD)">CAD</abbr></li>
<li>MongoDB No<abbr title="Structured Query Language">SQL</abbr></li>
<li>Jinja Flask</li>
<li>Salesforce <abbr title="Customer Relationship Management">CRM</abbr></li>
</ul>
<p>Experience</p>
<ul class="flex-space">
<li>Graph<abbr title="Query Language">QL</abbr></li>
<li>Swift Xcode</li>
<li>Go!(GoLang)</li>
<li>C# .Net</li>
<li>Django.py</li>
<li>R Language <abbr title="Structured Query Language">SQL</abbr></li>
<li><abbr title="Hypertext Pre-Processor">PHP</abbr></li>
<li>Java</li>
</ul>
</section>
<br>
<section id="accreditations">
<h2>Accreditations</h2>
<ul>
<!-- add AWS certificate -->
<li>Drive Safe Defensive Driving Certification (2024-2029)</li>
<li><a href="https://redacademy.redroof.com/share/gamification/badges/external/64a9c10d-9e23-4b48-849c-272e9f19fa11"
traget="_blank" rel="noopener noreferrer">Red Roof Inn Certified Front Desk Representative</a> (2023-<abbr
title="No Expiration Date">NED</abbr>)</li>
<li><a href="https://www.ratatype.com/C5620377EN" target="_blank" rel="noopener noreferrer">Ratatype
Typing Certificate</a> (2023-<abbr title="No Expiration Date">NED</abbr>)</li>
<li><a href="http://www.oxfordhomestudy.com/" target="_blank" rel="noopener noreferrer">Oxford
Communication Skills (Short Course)</a> (2022-<abbr title="No Expiration Date">NED</abbr>)</li>
<li><a href="https://www.credly.com/badges/5ff194c1-49b3-462b-9137-3c3c1e1d7f45/public_url"
target="_blank" rel="noopener noreferrer">DocuSign <abbr title="Contract
Lifecycle Management">CLM</abbr> implementation Consultant</a> (2022-<abbr
title="No Expiration Date">NED</abbr>)</li>
<li><a href="https://triplebyte.com/tb/anthony-sean-protho-s0gq0xv/certificate"
target="_blank" rel="noopener noreferrer">TripleByte Engineering Certified</a> (2021-<abbr
title="No Expiration Date">NED</abbr>)</li>
<li><a href="https://california.foodhandlerclasses.com/verify-certificate?c=704916">Food
Handler Classes Food Handler Training Certificate</a> (Nov. 2021 - Sep. 2024)</li>
<li><a href="https://coursera.org/share/ef9218edefae55e7da7becb251725af7" target="_blank"
rel="noopener noreferrer">Google Foundations of User Experience (UX) Design</a> (2021-<abbr
title="No Expiration Date">NED</abbr>)</li>
<li><a href="https://www.freecodecamp.org/certification/makemesenpai/responsive-web-design"
target="_blank" rel="noopener noreferrer"> FreeCodeCamp Responsive Web Design</a>
(2018-<abbr title="No Expiration Date">NED</abbr>)</li>
</ul>
</section>
<section id="work">
<h2>Work Experience</h2>
<div class="xp">
<p>Marshfield Consulting</p>
<p class="hr">Chigaco, IL (Remote)</p>
<p>Solutions Architect</p>
<p class="hr">Jul. 2023 - Currently</p>
<p>● Improved <abbr title="Customer Relationship Management">CRM</abbr> comprehension and
requirements gathering with <abbr title="Artificial Intelligence">AI</abbr> implementations,
while learning how to adapt and extend on software limitations to meet client’s unique business
requirements and exceeded client expectations.</p>
<p>● Achieved sales executive and Architect certification, and built internal components. While
balancing studying for my Masters Degree and taking care of my Grandfather until he got the
support he needed.</p>
</div>
<br>
<div class="xp">
<p>Bitwise Industries</p>
<p class="hr">Bakersfield, CA</p>
<p>Platform Engineer Lead</p>
<p class="hr">Jan. 2023 - Jun. 2023</p>
<p>● Stria was acquired by Bitwise, and I was repositioned with raise as a Mentor/ Lead,
advancing a team of 7 to now 20 employees and growing, while growing my skills in
<abbr title="Contract Lifecycle Management">CLM</abbr> integrations of existing <abbr
title="Human Resources Management">HRM</abbr>, <abbr title="Customer Relationship Management">
CRM</abbr>, <abbr title="Partner Relationship Management">PRM</abbr>, and <abbr title="Configure,
Price, Quote">CPQ</abbr> systems - such as Salesforce.</p>
<p>● Created architectural and presale documents such as <abbr title="Business
Requirements Document">BRD</abbr>s and <abbr title="Statement of Work">SOW</abbr>s.
Including, but not exclusively, creating simplifying and Automating internal business
processes pioneering best practices and standards.</p>
</div>
<br>
<div class="xp">
<p>Stria LLC</p>
<p class="hr">Bakersfield, CA</p>
<p>Cloud Solutions Engineer</p>
<p class="hr">Mar. 2022 - Dec. 2022</p>
<p>● Completed training faster than anyone in the 18 year history of the company earning my DocuSign
accreditation and continued to impress clients with my accelerated completion of tasks.</p>
<p>● Worked directly - most times individually - with twelve client (Universities, Goverment Orgs.,
Companies, etc.) leading meetings in PMs place. Using practical attention to detail and best
practices to develope advance Workflows in UAT to Production. Updating infrastructure with
Post-Go-Live, User Feedback, and Data analysis.</p>
</div>
<br>
<div class="xp">
<p>AvinaCampus</p>
<p class="hr">Philadelphia, PA (Remote)</p>
<p>Front End Lead</p>
<p class="hr">Mar. 2021 - July 2021</p>
<p>● Implemented adjustments to legacy code and designs resulting in 100+ bug fixes and shortening the
expected product release date by 3 months (for user testing), resulting in a promotion to Front
End Lead.</p>
<p>● Working closely with the EdTech Co-owners, organized and developed project plans, creating an easy
way for our engineers to coordinate tasks in international time zones, and was offered the CFO
position.</p>
</div>
<br>
<div class="xp">
<p>Make School</p>
<p class="hr">San Francisco, CA (Hybrid)</p>
<p>Teaching Assistant</p>
<p class="hr">Aug. 2020 - Jan. 2021</p>
<p>● Promoted a class of 240 students’ growth by helping them develop and debug their
engineering projects - which were in an abundance of different technologies such as HTML,
CSS, Bootstrap, SASS/SCSS, Node.js, Python, Django, MongoDB, and Flask.</p>
<p>● Improved comprehension of programming concepts preventing 5 students from failing their
courses by reviewing, and teaching computer science concepts.</p>
</div>
</section>
<br>
<section id="volunteer">
<h2>Volunteer Experience</h2>
<!-- Add other -->
<div class="xp">
<p>Protho LLC</p>
<p class="hr">Bakersfield, CA</p>
<p>Financial Advisor</p>
<p class="hr">Nov. 2017 - Feb. 2018</p>
<p>● Helped over 15 colleagues file taxes with diverse situations, and advised even more on financial
planning, financial literacy, and money allocation.</p>
<p>● Became a DPA, managing a collective unestablished estate of almost a million dollars, insuring
that payments were made to creditors, and finding solutions for multi six figure debts.</p>
</div>
<br>
<div class="xp">
<p>Mission Bit</p>
<p class="hr">San Francisco, CA</p>
<p>Software Engineer Teacher Assistant</p>
<p class="hr">Nov. 2017 - Feb. 2018</p>
<p>● Assisted Teacher and high school students in Web Development 101. Exposing them to the world
of tech and helping them conduct career planning.</p>
<p>● Presented lessons on basic computer science concepts, and assisted students with project
debugging.</p>
</div>
<br>
<div class="xp">
<p>CALM Zoos</p>
<p class="hr">Bakersfield, CA</p>
<p>Animal Care Associate</p>
<p class="hr">Nov. 2017 - Feb. 2018</p>
<p>● Assisted Primary Keepers in basic cleaning, dietary feeding, and meeting protocols for
injured or sick animals.</p>
<p>● Gave the utmost care to animals and their habitats. Giving back to my community so others
could see the animals.</p>
</div>
</section>
<br>
<section id="referrals">
<h2>Referrals</h2>
<div class="xp">
<p>Dr. St Nicholas Burrus</p>
<p class="hr"><abbr title="Business Process Outsourcing" >BPO</abbr> Manager</p>
<p>Worked with Anthony on the Same team</p>
<p class="hr">03/11/2023</p>
<p>"Anthony possesses tremendous grit, tenacity, and DocuSign integrating abilities. Ant is
incredibly persistent and willing to face problems. He constantly produces great results
and has a natural capacity to go above and beyond expectations. Ant also has exceptional
abilities in DocuSign integration. It is extremely astonishing how he is able to understand
and traverse the intricate web of integrations.<br>Ant is a valuable asset to any
organization because of his tenacity and perseverance. He is always prepared to go above and
beyond to accomplish his objectives. He is not scared to take on challenging undertakings. He
is an invaluable member of any team thanks to his excellent work ethic and problem-solving
abilities. Additionally, Ant's proficiency with DocuSign's Workflow integration is evidence of
his capacity to learn complicated technologies and systems fast. He is a very excellent person,
and I would suggest him without reservation for any position requiring tenacity, grit, and
exceptional integration skills."</p>
</div>
<br>
<div class="xp">
<p>Ms. Kimberly Rivas</p>
<p class="hr">Team Manager at Panera Bread</p>
<p>Was Anthony's Manager</p>
<p class="hr">02/16/2022</p>
<p>"To whom it may concern, I am Kimberly Rivas, Team Manager at Panera Bread, I am writing
in reference of Anthony Protho for your open position. In the time Anthony has worked
with us, he has been nothing but an asset to our company. He on a consecutive and daily
basis exemplifies what it is to be a great and well-rounded worker. Anthony demonstrates
strong leadership characteristics when it comes to his current position now. He is
always on time, hardworking and has a positive outlook with his peers and his job. Not
only is he able to work well with others as well as on his own, he is also detail
oriented and very driven to push beyond what is expected of him. Anthony does not shy
away from a challenge and is always eager to learn and grow wether it be in his career
or personal life. With his pleasant demeanor and willingness to continue to grow I
believe he wil be a prime candidate for this position."</p>
</div>
<br>
<div class="xp">
<p>Mr. Aaron Whitfield</p>
<p class="hr">Kern High School Teacher & Freelance Mobil Developer</p>
<p>Was Anthony's Teacher</p>
<p class="hr">04/03/2021</p>
<p>"I recommend my former student, Anthony Protho. I was his teacher for 4 years of high
school engineering courses and his competitive robotics coach. Anthony was the
designated programmer on his engineering and robotics teams. Anthony always strives for
excellence, going above and beyond the minimum requirements. He is naturally curious and
always worked to learn new programming concepts, implement good programming practices,
and attempt more complicated algorithms to give his teams a competitive advantage. He
demonstrates grit and perseverance, not giving up in the face of difficulty. His efforts
contributed greatly to his team, becoming one of the top rated robotics teams across the
whole state of California, qualifying to compete at the California High School Robotics
State Championships. Anthony is more than a competent programmer, but also a great
teacher. Other programmers on other teams from our school, looked up to Anthony as he
would often help them debug errors in their code and offer advice and suggestions.
Anthony is inspiring to all around him for he has large, lofty goals, and can always be
seen working and making real progress in accomplishing those goals. Anthony has become
one of the most successful, competent, and capable software developers I have had the
privilege of teaching and getting to know, and I highly recommend him to you."</p>
</div>
</section>
</div>
<section id="stats">
<h2>Stats</h2>
<p>Mainly been working on private client projects which aren't reflected here.</p>
<img src="https://github-readme-stats.vercel.app/api?username=MakeMeSenpai&count_private=true" width="450px"/>
<br>
<a href="https://wakatime.com"><img src="https://wakatime.com/share/@MakeMeSenpai/bebcd8ab-45e1-4085-bc76-f8a92f8c8e51.svg" height="450px" width="50%" /></a>
<br>
<a href="https://wakatime.com"><img src="https://wakatime.com/share/@MakeMeSenpai/fdf9f48a-143b-4422-8c39-f21b5db308cd.png" height="450px" width="75%"/></a>
</section>
<section id="badges">
<h2>Badges</h2>
<a href="https://codewars.com"><img src="https://www.codewars.com/users/MakeMeSenpai/badges/large"></a>
<br>
<!-- Maybe add a infinite cycle that rotates through each badge -->
<!-- add badge: <a href=""><img class="cr-badges-full-badge__img" src="" alt="" width="100" height="100"></a> -->
<a href="https://www.credly.com/badges/0e90c5c9-a539-467d-86c5-dc98b9d43293/public_url"><img class="cr-badges-full-badge__img" src="https://images.credly.com/images/8c81457f-5f51-4d93-99eb-567f437d7629/image.png" alt="Docusign CLM Technical Architect 2024" width="100" height="100"></a>
<a href="https://www.credly.com/badges/57b2a3a2-73b4-4f40-a6ea-14ccd5085af8/public_url"><img class="cr-badges-full-badge__img" src="https://images.credly.com/images/634eae59-545b-43a5-b60e-5865e0715b6e/image.png" alt="DocuSign Sales Executive Specialist 2023" width="100" height="100"></a>
<a href="https://www.credly.com/badges/72a0bd26-f1d6-48cb-ba6d-b6c6ba4e8972/public_url"><img class="cr-badges-full-badge__img" src="https://images.credly.com/images/86981f81-1fc1-4b7c-95de-a80f0c7d4b7a/image.png" alt="Docusign Services Sales Executive Specialist 2023" width="100" height="100"></a>
<a href="https://www.credly.com/badges/9ae618fc-ec6d-47e6-aa9c-a2bbaf499a1a/public_url"><img class="cr-badges-full-badge__img" src="https://images.credly.com/images/2267cda6-7f79-4b9a-b016-6d9ed4f3c745/image.png" alt="Verified Lucid Admin 2023" width="100" height="100"></a>
<a href="https://www.credly.com/badges/369fa160-cefa-4ede-9595-60f4a3d56022/public_url"><img class="cr-badges-full-badge__img" src="https://images.credly.com/images/3c79dd6e-730e-4e17-9856-af2b3d94ba9d/image.png" alt="Diagramming Foundations 2023" width="100" height="100"></a>
<a href="https://www.credly.com/badges/9892c106-264a-428b-8e12-d4568c6dcdba/public_url"><img class="cr-badges-full-badge__img" src="https://images.credly.com/images/070d6a0a-70bb-4872-a4c9-fc0e385ae45f/image.png" alt="Whiteboarding Foundations 2023" width="100" height="100"></a>
<a href="https://www.credly.com/badges/5ff194c1-49b3-462b-9137-3c3c1e1d7f45/public_url"><img class="cr-badges-full-badge__img" src="https://images.credly.com/images/48d8fd58-bdac-4684-a0da-0c7d350836a4/image.png" alt="Certified Docusign CLM Implementation Consultant 2022" width="100" height="100"></a>
<a href="https://www.credly.com/badges/52f43669-c5f7-4759-8145-e4134d797b6f/public_url"><img class="cr-badges-full-badge__img" src="https://images.credly.com/images/4aa8bf68-e202-4a60-a710-4d1d6fae5e7e/image.png" alt="Docusign CLM Technical Consultant 2022" width="100" height="100"></a>
<a href="https://www.credly.com/badges/9f0fae00-6133-41d1-9438-38c83f5d5fd0/public_url"><img class="cr-badges-full-badge__img" src="https://images.credly.com/images/1d559ac2-2b68-4d21-a0bc-9863d3543015/image.png" alt="Docusign CLM Implementation Consultant 2022" width="100" height="100"></a>
<a href="https://www.credly.com/badges/d0deef99-7a4c-4661-a94b-48d2db606bd7/public_url"><img class="cr-badges-full-badge__img" src="https://images.credly.com/images/b275c8e5-291e-4bdf-9770-a2a2c0a60f2f/image.png" alt="DocuSign Agreement Cloud Specialist 2022" width="100" height="100"></a>
<a href="https://www.credly.com/badges/71f0d5cb-7d32-4145-90fd-052587f9afd3/public_url"><img class="cr-badges-full-badge__img" src="https://images.credly.com/images/5e5c739a-1d4a-445c-a578-2e56ef701656/image.png" alt="Docusign CLM Workflow Specialist 2022" width="100" height="100"></a>
<a href="https://www.credly.com/badges/1d2dfe47-232d-4f3f-99a9-a9d620cce2c2/public_url"><img class="cr-badges-full-badge__img" src="https://images.credly.com/images/73395475-8734-404a-b41d-63a40fcbfdca/image.png" alt="Docusign CLM Administration Specialist 2022" width="100" height="100"></a>
<a href="https://trailblazer.me/id/aprotho"><img src="https://res.cloudinary.com/hy4kyit2a/f_auto,fl_lossy,q_70/learn/modules/sales-cloud-lightning-essentials-features/576a2d04895e9368bdbea3fd8daf182c_badge.png" alt="Salesforce Sales Essentials Features 2022" width="100" height="100"></a>
<a href="https://trailblazer.me/id/aprotho"><img src="https://res.cloudinary.com/hy4kyit2a/f_auto,fl_lossy,q_70/learn/modules/mobile_strategy/a78ceed0ddda439c494948f74e7d686d_badge.png" alt="Salesforce Mobile Strategy Development 2022" width="100" height="100"></a>
<a href="https://trailblazer.me/id/aprotho"><img src="https://res.cloudinary.com/hy4kyit2a/f_auto,fl_lossy,q_70/learn/modules/positive-environmental-impact/34b382dc9da7c78aa131c7fd87c86b0d_badge.png" alt="Saalesforce Strategies for Positive Environmental Impact 2022" width="100" height="100"></a>
<a href="https://www.credly.com/badges/6d6188cb-dc78-4c95-a55b-1172f09c090c/public_url"><img class="cr-badges-full-badge__img" src="https://images.credly.com/images/eab469f6-eaf0-475a-a0e3-ac0a15413735/image.png" alt="Mentors in Tech Student: 2020-2021" width="100" height="100"></a>
</section>
<section id="bonus-xp">
<h2>Additional Experience</h2>
<div class="xp">
<p>Red Roof Inn</p>
<p class="hr">Bakersfield, CA</p>
<p>Front Desk Agent</p>
<p class="hr">Jan. 2023 - Apr. 2023</p>
<p>● Managed 40 rooms and their guests using the RediStay and ALV2 platforms while
organizing reservations and watching security cameras to prevent theft or human
trafficking.</p>
<p>● Safely processed Deposits, and accounting reports on behalf of the Property
Manager, maintaining high levels of Customer Support and Hospitality improving
the Hotel's ratings.</p>
<br>
<p>Panera Bread</p>
<p class="hr">Bakersfield, CA</p>
<p>Team Lead</p>
<p class="hr">Sept. 2021 - Mar. 2022</p>
<p>● Worked front-of-house positions, teaching new hires their role and responsibilities, and
assisting managers during employee shortages.</p>
<p>● Readjusted to life after quarantine, helping create a warm and clean environment for
customers to get their food.</p>
<br>
<p>In-N-Out Burger</p>
<p class="hr">Bakersfield, CA</p>
<p>Lvl 2 Associate</p>
<p class="hr">Nov. 2018 - Aug. 2019</p>
<p>● Gained soft skills in a fast-paced environment highly reliant on communication, teamwork,
and food safety. This required me to be well versed, and I was eventually doing level 4
work.</p>
<p>● My main function was as a bilingual cashier (as new as I am to still learn Spanish) and was
promoted to level 2 in 2 months after receiving letters to corporate from customers who felt
I had proven excellence in customer service.</p>
</div>
</section>
<br>
<section id="deep">
<h2>A Deeper Dive</h2>
<h3>Make School & Dominican University</h3>
<ul>
<li>Graduating: Learning how to become a Software Engineer with hands-on development, as well as
industry skills in an accelerated 2-year program. (Aug. 2019-Jul. 2021).</li>
<li>AvinaCampus: Early Employee at AvinaCampus startup as a front-end Software Engineer. I used
technologies such as SASS, REACT, Flutter, and Django (Mar. 2021- Aug. 2021).</li>
<li>Mentorship: mentored students in the San Francisco School district to help them learn more
about tech, and what to expect outside of high school (Jan. 2021 - May. 2021).</li>
<li>TA: Was hired as a Front-End Web Teacher Assistant, Helping a class of 150 students debug,
and develop their projects. Growing them into better Software Engineers. Using technologies
such as HTML, CSS, SASS, node.js, Python, jinja, and flask (Aug. 2020- Jan. 2021).</li>
<li>Music Club: Founder of Make School’s Music Club (Nov. 2019).</li>
<li>Got accepted: to get into a 10% acceptance rate, I sacrificed a lot of my free time towards
proving myself and growth. Attending the school took lots of discipline and hard work (Apr.
2019).</li>
</ul>
<h3>Highland High School</h3>
<ul>
<li>PLTW Honor Engineer: recognized for having higher than a 3.5 grade for at least 3 years
(2019).</li>
<li>Robotics: An executive programmer from the PLTW Engineering class, teaching others how to
code, and brought my team (Z) to state. We won 5th out of 35 schools (2018-2019).</li>
<li>FreeCodeCamp Web Design Certificate: 300+ hours and 5 projects based on learning html5,
css3, and bootstrap (2018).</li>
<li>LinkCrew: Involved in helping bridge incoming students and their parents around campus,
leading them so that they felt more welcomed and informed in their new environment (2018).
</li>
<li>ROC: Went into 3D animation at ROC which is a career center in Bakersfield meant to get
people jobs under those classes. I worked with Maya, Photoshop, and Adobe Pro. (2018).</li>
<li>HackerEarth top 10%: recognized as top 10% of programmers on their site for C (2017).</li>
<li>PPAACC: I was the 2nd chair in my regular band playing clarinet, as well as joining PPAACC
to become the lead piano player. Responsibilities included: setting up and tearing down
vital electronics and speakers needed for the show, playing piano in sync with a team, and
sound effects for the show. We were to act out scenes and learn our parts before bringing
them together for one beautiful piece. We got 4 out of 13 in our last competition (2017).
</li>
<li>Honor Athletes Award: Awarded to students who were in sports and maintained a GPA of 3.5 or
higher (2016).</li>
<li>Sports: Was in Track and Football -with our team winning 10-0, and being the top 10
sprinters at my school (2015-2016).</li>
<li>Art Club: during lunch and outside of school, we would join to create artworks. And won 3rd
place in the mini-league for Via Arte (2015).</li>
</ul>
<h3>Before High School</h3>
<ul>
<li>PES: Worked in the OilField helping out with whatever was asked of me, including breaking
pipes and running wells (2011-2018).</li>
<li>Valencia Farms: Worked in the fields as a harvester picking grapes (2015).</li>
<li>Pool boy helping neighbors clean their pool was a small-time thing, and the neighbor has
moved since (2013).</li>
<li>Moved a lot! This may not seem like much of a skill but learning to adapt to new
environments consistently was a large trial for me and has also helped me learn how to
communicate better with strangers (having met so many new ones). I also kept good grades in
school despite being bullied, lacking information, and having to deal with family turmoil.
However is also the reason for my lisp, and gaps in some foundational education (2001-2009).
</li>
</ul>
</section>
</div>
</details>
</section>
<footer id="footer" class="contain">
<div class="social-links">
<a href="https://www.linkedin.com/in/ant-protho/"><img class="icons" src="./static/imgs/linkin_icon.webp"
alt="LinkedIn"></a>
<a href="https://github.com/MakeMeSenpai"><img class="icons" src="./static/imgs/github_icon.webp"
alt="GitHub"></a>
<a href="https://codepen.io/makemesenpai"><img class="icons" src="./static/imgs/codepen_icon.webp"
alt="CodePen"></a>
<a href="https://twitter.com/MakeMeSenpai"><img class="icons" src="./static/imgs/twitter_icon.webp"
alt="Twitter"></a>
</div>
<p id="copywrite">©2018-2022 Anthony S. Protho</p>
</footer>
<script src="./scripts/hamborger.js"></script>
<script src="./scripts/portfolio.js"></script>
</body>
</html>