-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
877 lines (754 loc) · 40.8 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" sizes="180x180" href="favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon_io/favicon-16x16.png">
<link rel="manifest" href="favicon_io/site.webmanifest">
<title>Welcome!</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Custom CSS -->
<link href="css/resume.css" rel="stylesheet">
<!-- Google Fonts -->
<!-- <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Sofia'> -->
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
</head>
<!-- Body Start -->
<body>
<body id="page-top">
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top" id="sideNav">
<!-- <div class="snow">
<div class="flake"> ❅ </div>
<div class="flake"> ❅ </div>
<div class="flake"> ❆ </div>
<div class="flake"> ❅ </div>
<div class="flake"> ❅ </div>
<div class="flake"> ❆ </div>
<div class="flake"> ❅ </div>
<div class="flake"> ❅ </div>
<div class="flake"> ❆ </div>
<div class="flake"> ❅ </div>
</div> -->
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<span class="d-block d-lg-none">Liana Severo</span>
<span class="d-none d-lg-block">
<img class="img-fluid img-profile rounded-circle mx-auto mb-2" src="img/pfp2.png" alt="">
</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#experience">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#workshops">Workshops</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#letters">Letters of Recommendation</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#education">Education</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#resume">Resume</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#interests">Interests</a>
</li>
</ul>
</div>
</nav>
<div class="container-fluid p-0">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="about">
<div class="w-100">
<h1 class="mb-0">Liana
<span class="text-primary">Severo</span>
</h1>
<div class="subheading mb-5">
<a href="mailto:[email protected]">[email protected]</a>
</div>
<div class="border-animation p-5">
<defs>
<filter id="f1">
<feGaussianBlur in="SourceGraphic" stdDeviation="0,4" />
</filter>
<circle id="sky-circle" fill="none" class="stroke" cx="198.7" cy="314" r="5.5"/>
<p class="lead mb-5">Hello!</br>
</br>
I'm Liana, a Software Engineer and a Mathematics and Computer Science graduate from the University of Central Florida. But you can also
call me Belle.</br>
Apart from my quest to be a badass Software Engineer, I also thoroughly enjoy playing video games,
reading fantasy novels, sweets, crocheting, and drawing. Check some of them out <a href="https://www.instagram.com/heymissbelle/">here</a>!</br>
My current obsession is Splatoon 3.</br>
My favorite music genre is Uplifting Trance, and my favorite band of all time is Above & Beyond. <a href="https://www.youtube.com/user/aboveandbeyondtv">Check them out!</a></br><br>
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/track/5TJpWBJQLCVBybibpJPqG9?utm_source=generator" width="50%" height="90" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe><br><br>
You can also view my <a href="https://www.linkedin.com/in/liana-severo/">LinkedIn</a>, my <a href="https://github.com/lienne">Github page</a>, or download my <a href="/documents/Liana_Severo_Resume.pdf">Resume</a>, if you're into that sorta thing.</p>
<div class="social-icons">
<a href="https://www.linkedin.com/in/liana-severo/">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="https://github.com/lienne">
<i class="fab fa-github-alt"></i>
</a>
<a href="https://www.instagram.com/artbylienne/">
<i class="fab fa-instagram"></i>
</a>
<a href="https://devpost.com/lienne">
<i class="fas fa-laptop-code"></i>
</a>
<a href="mailto:[email protected]">
<i class="far fa-envelope"></i>
</a>
</div>
</defs>
</div>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex justify-content-center" id="experience">
<div class="w-100">
<h2 class="mb-5">Experience</h2>
<!-- Experience Cards -->
<div class="container">
<div class="row">
<!-- Microsoft -->
<div class="col-md-4 card-container">
<div class="card-flip shadow p-3 mb-5 bg-white rounded">
<!-- Microsoft Front -->
<div class="card-front">
<img src="img/microsoft_logo.gif" class="card-img-top img-fluid">
<div class="card-block">
<h4 class="card-title">Microsoft</h4>
<p class ="card-text">Software Engineer</p>
<p class="card-text">2020 - 2024</p>
</div>
</div>
<!-- End Microsoft Front -->
<!-- Microsoft Back -->
<div class="card-back border border-info">
<div class="card-block">
<h4 class="card-title">Dec 2020 - Sept 2024</h4>
<p>During my time at Microsoft, I got to work alongside some of the brightest minds in tech while contributing to large-scale, impactful projects. I focused on building reliable, scalable software solutions while honing my skills in cloud technologies and backend development. It was a dynamic environment that pushed me to grow as a software engineer and collaborate across diverse teams.</p>
<div class="col text-center card-footer">
<a href="https://www.linkedin.com/in/liana-severo/#:~:text=Given-,Ben%20Chamberlain,I%20was%20Liana%27s%20manager%20during%20her%20time%20at%20Microsoft.,-Liana%20contributed%20to" class="btn btn-outline-info m-2">Manager Recommendation</a>
</div>
</div>
</div>
<!-- End Microsoft Back -->
</div>
</div>
<!-- End Microsoft -->
<!-- JPMorgan -->
<div class="col-md-4 card-container">
<div class="card-flip shadow p-3 mb-5 bg-white rounded">
<!-- JPMorgan Front -->
<div class="card-front">
<img src="img/Chase_Logo_Animation.gif" class="card-img-top img-fluid">
<div class="card-block">
<h4 class="card-title">JPMorgan Chase</h4>
<p class ="card-text">Software Engineer Intern</p>
<p class="card-text">Summer 2020</p>
</div>
</div>
<!-- End JPMorgan Front -->
<!-- JPMorgan Back -->
<div class="card-back border border-info">
<div class="card-block">
<h4 class="card-title">June 2020 - Aug 2020</h4>
<p>While at JPMorgan, I participated in their 'Code for Good' project, where my team built a website for a financial nonprofit organization. It was an exciting experience that combined my passion for tech with meaningful social impact. Collaborating with other developers in a high-energy, mission-driven environment taught me a lot about teamwork, rapid prototyping, and delivering real-world solutions under tight deadlines.</p>
</div>
</div>
<!-- End JPMorgan Back -->
</div>
</div>
<!-- End JPMorgan -->
<!-- CDK Global 1 -->
<div class="col-md-4 card-container">
<div class="card-flip shadow p-3 mb-5 bg-white rounded">
<!-- CDK Global 1 Front -->
<div class="card-front">
<img src="img/cdk-global-logo.png" class="card-img-top img-fluid">
<div class="card-block">
<h4 class="card-title">CDK Global</h4>
<p class ="card-text">Software Engineer Intern</p>
<p class="card-text">Summer 2019</p>
</div>
</div>
<!-- End CDK Global 1 Front -->
<!-- CDK Global 1 Back -->
<div class="card-back border border-info">
<div class="card-block">
<h4 class="card-title">June 2019 - Aug 2019</h4>
<p>- Worked on the Digital Advertisement Platform team as a full-stack engineer to build a data
transparency tool.</p>
<p>- Technologies used included Java, Spring Boot, Maven, Angular, Agile w/ weekly sprints, and TDD w/ JUnit 4.</p>
<div class="col text-center card-footer">
<a href="/documents/2019LianaRecommendationCDK.pdf" class="btn btn-outline-info m-2">Rec Letter</a>
</div>
</div>
</div>
<!-- End CDK Global 1 Back -->
</div>
</div>
<!-- End CDK Global 1 -->
<!-- CDK Global 2 -->
<div class="col-md-4 card-container">
<div class="card-flip shadow p-3 mb-5 bg-white rounded">
<!-- CDK Global 2 Front -->
<div class="card-front">
<img src="img/cdk-global-logo.png" class="card-img-top img-fluid">
<div class="card-block">
<h4 class="card-title">CDK Global</h4>
<p class ="card-text">Software Engineer Intern</p>
<p class="card-text">Summer 2018</p>
</div>
</div>
<!-- End CDK Global 2 Front -->
<!-- CDK Global 2 Back -->
<div class="card-back border border-info">
<div class="card-block">
<h4 class="card-title">June 2018 - Aug 2018</h4>
<p>- Worked with the KPI team to build an internal automation tool.</p>
<p>- Built a Leads Re-submission UI using Java, Spring Boot, and React.</p>
<div class="col text-center card-footer">
<a href="/documents/LianaSeveroRecommendationLetter_Summer18.pdf" class="btn btn-outline-info m-2">Rec Letter</a>
</div>
</div>
</div>
<!-- End CDK Global 2 Back -->
</div>
</div>
<!-- End CDK Global 2 -->
<!-- KnightHacks -->
<div class="col-md-4 card-container">
<div class="card-flip shadow p-3 mb-5 bg-white rounded">
<!-- KnightHacks Front -->
<div class="card-front">
<img src="img/knighthacks-logo.png" class="card-img-top img-fluid">
<div class="card-block">
<h4 class="card-title">Knight Hacks @ UCF</h4>
<p class ="card-text">VP / Hackathon Organizer / Secretary</p>
<p class ="card-text"></p>
</div>
</div>
<!-- End KnightHacks Front -->
<!-- KnightHacks Back -->
<div class="card-back border border-info">
<div class="card-block">
<h4 class="card-title">Sept 2017 - Oct 2020</h4>
<p>- Helped organize UCF's yearly hackathon, Knight Hacks, which is one of the largest in Florida</p>
<p>- Held workshops on various technical topics and performed several other club running activities</p>
<div class="col text-center card-footer">
<a href="https://knighthacks.org/" class="btn btn-outline-info m-2">Website</a>
<a href="https://knighthacks.org/discord" class="btn btn-outline-info m-2">Discord</a>
</div>
</div>
</div>
<!-- End KnightHacks Back -->
</div>
</div>
<!-- End KnightHacks -->
<!-- Valencia -->
<div class="col-md-4 card-container">
<div class="card-flip shadow p-3 mb-5 bg-white rounded">
<!-- Valencia Front -->
<div class="card-front">
<img src="img/valencia-college-logo.png" class="card-img-top img-fluid">
<div class="card-block">
<h4 class="card-title">Valencia College</h4>
<p class ="card-text">Curriculum Assistant / Mathematics Tutor / Teaching Assistant</p>
<p class ="card-text">CRLA National Tutor Certification Level 2</p>
</div>
</div>
<!-- End Valencia Front -->
<!-- Valencia Back -->
<div class="card-back border border-info">
<div class="card-block">
<h4 class="card-title">Oct 2012 - Oct 2017</h4>
<p>- Tutored students in mathematics courses, ranging from Pre-Algebra to Differential Equations</p>
<p>- Held tutoring hours for varied classes and held workshops on relevant skills</p>
</div>
</div>
<!-- End Valencia Back -->
</div>
</div>
<!-- End Valencia -->
</div>
</div>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="projects">
<div class="w-100">
<h2 class="mb-5">Projects</h2>
<!-- Project Cards -->
<div class="container">
<div class="row">
<!-- PixelMart -->
<div class="col-md-4 card-container">
<div class="card-flip shadow p-3 mb-5 bg-white rounded">
<!-- PixelMart Front -->
<div class="card-front" style="padding-top: 10px;">
<img src="img/Logo_PixelMart_2.svg" class="card-img-top img-fluid" style="width: 100%; height: auto;">
<div class="card-block" style="padding-top: 70px">
<h4 class="card-title">PixelMart</h4>
<p class ="card-text">A marketplace for digital products.</p>
</div>
</div>
<!-- End PixelMart Front -->
<!-- PixelMart Back -->
<div class="card-back border border-info">
<div class="card-block">
<h4 class="card-title">PixelMart</h4>
<div class="col text-center card-footer">
<a href="https://www.pixelmart.dev/" class="btn btn-outline-info m-2">Website</a>
<a href="https://github.com/lienne/PixelMart" class="btn btn-outline-info m-2">Github</a>
</div>
</div>
</div>
<!-- End PixelMart Back -->
</div>
</div>
<!-- End PixelMart -->
<!-- heart.ai -->
<div class="col-md-4 card-container">
<div class="card-flip shadow p-3 mb-5 bg-white rounded">
<!-- heart.ai Front -->
<div class="card-front">
<img src="img/heartai-logo-transparent.png" class="card-img-top img-fluid">
<div class="card-block">
<h4 class="card-title">heart.ai</h4>
<p class ="card-text">A heart monitoring platform for everyone</p>
</div>
</div>
<!-- End heart.ai Front -->
<!-- heart.ai Back -->
<div class="card-back border border-info">
<div class="card-block">
<h4 class="card-title">Vandyhacks VII</h4>
<p class="card-text">Best Overall - 1st Place</p>
<p class="card-text">Best Use of Google Cloud: COVID-19 Hackathon Fund</p>
<p class="card-text">Best Hardware Hack (Digi-Key)</p>
<p class="card-text">Best Data Hack (HRT)</p>
<div class="col text-center card-footer">
<a href="https://devpost.com/software/heart-ai-rzsb76" class="btn btn-outline-info m-2">Devpost</a>
<a href="https://github.com/heartt-ai" class="btn btn-outline-info m-2">Github</a>
</div>
</div>
</div>
<!-- End heart.ai Back -->
</div>
</div>
<!-- End heart.ai -->
<!-- insights.MD -->
<div class="col-md-4 card-container">
<div class="card-flip shadow p-3 mb-5 bg-white rounded">
<!-- insights.MD Front -->
<div class="card-front">
<img src="img/insights-logo.png" class="card-img-top img-fluid">
<div class="card-block">
<h4 class="card-title">insights.MD</h4>
<p class ="card-text">Optimizing the Medical Monitoring Process</p>
</div>
</div>
<!-- End insights.MD Front -->
<!-- insights.MD Back -->
<div class="card-back border border-info">
<div class="card-block">
<h4 class="card-title">HackTheU: Go Beyond</h4>
<p class="card-text">Best Overall - 1st Place</p>
<p class="card-text">Best Hardware Hack</p>
<div class="col text-center card-footer">
<a href="https://devpost.com/software/insights-md" class="btn btn-outline-info m-2">Devpost</a>
<a href="https://github.com/insights-MD" class="btn btn-outline-info m-2">Github</a>
</div>
</div>
</div>
<!-- End insights.MD Back -->
</div>
</div>
<!-- End insights.MD -->
<!-- learn.ai -->
<div class="col-md-4 card-container">
<div class="card-flip shadow p-3 mb-5 bg-white rounded">
<!-- learn.ai Front -->
<div class="card-front">
<img src="img/learn-ai-logo.png" class="card-img-top img-fluid">
<div class="card-block">
<h4 class="card-title">learn.ai</h4>
<p class ="card-text">ML-Accelerated Learning Solution</p>
</div>
</div>
<!-- End learn.ai Front -->
<!-- learn.ai Back -->
<div class="card-back border border-info">
<div class="card-block">
<h4 class="card-title">ShellHacks 2020</h4>
<p class="card-text">Best Use of Azure for Social Good by Microsoft</p>
<p class="card-text">Best Diversity Hack by FCA - 3rd Place</p>
<p class="card-text">Wolfram Award by Wolfram Language</p>
<div class="col text-center card-footer">
<a href="https://devpost.com/software/learn-ai" class="btn btn-outline-info m-2">Devpost</a>
<a href="https://github.com/learnn-ai" class="btn btn-outline-info m-2">Github</a>
</div>
</div>
</div>
<!-- End learn.ai Back -->
</div>
</div>
<!-- End learn.ai -->
<!-- ModiBot -->
<div class="col-md-4 card-container">
<div class="card-flip shadow p-3 mb-5 bg-white rounded">
<!-- Modibot Front -->
<div class="card-front">
<img src="img/ModiBot.png" class="card-img-top img-fluid">
<div class="card-block">
<h4 class="card-title">ModiBot</h4>
<p class ="card-text">Discord Bot written in Python.</p>
</div>
</div>
<!-- End Modibot Front -->
<!-- Modibot Back -->
<div class="card-back border border-info">
<div class="card-block">
<h4 class="card-title">Also Lancelot</h4>
<p class="card-text">Used for moderation and automation of KnightHacks 2020 Discord server.</p>
<div class="col text-center card-footer">
<a href="https://knighthacks.org/discord" class="btn btn-outline-info m-2">KnightHacks Discord Server</a>
<a href="https://github.com/lienne/ModiBot" class="btn btn-outline-info m-2">Github</a>
</div>
</div>
</div>
<!-- End Modibot Back -->
</div>
</div>
<!-- End Modibot -->
<!-- NoBias -->
<div class="col-md-4 card-container">
<div class="card-flip shadow p-3 mb-5 bg-white rounded">
<!-- NoBias Front -->
<div class="card-front">
<img src="img/no-bias.png" class="card-img-top img-fluid">
<div class="card-block">
<h4 class="card-title">NoBias</h4>
<p class ="card-text">A simple way to remove unconscious bias out of the hiring process.</p>
</div>
</div>
<!-- End NoBias Front -->
<!-- NoBias Back -->
<div class="card-back border border-info">
<div class="card-block">
<h4 class="card-title">ShellHacks 2019</h4>
<p class="card-text">Didn't win anything :( lol</p>
<p class="card-text">But it was a fun project and I learned tons!</p>
<div class="col text-center card-footer">
<a href="https://devpost.com/software/shellhacks" class="btn btn-outline-info m-2">Devpost</a>
<a href="https://github.com/Smyrski/shellhacks" class="btn btn-outline-info m-2">Github</a>
</div>
</div>
</div>
<!-- End NoBias Back -->
</div>
</div>
<!-- End NoBias -->
<!-- Corgo Connect -->
<div class="col-md-4 card-container">
<div class="card-flip shadow p-3 mb-5 bg-white rounded">
<!-- Corgo Connect Front -->
<div class="card-front">
<img src="img/corgo-connect.png" class="card-img-top img-fluid">
<div class="card-block">
<h4 class="card-title">Corgo Connect</h4>
<p class ="card-text">Corgi-based contact management website.</p>
</div>
</div>
<!-- End Corgo Connect Front -->
<!-- Corgo Connect Back -->
<div class="card-back border border-info">
<div class="card-block">
<h4 class="card-title">POOSD</h4>
<p class="card-text">Group project for my Principles of Object Oriented Software Development class.</p>
<div class="col text-center card-footer">
<a href="https://github.com/poosd-gang" class="btn btn-outline-info m-2">Github</a>
</div>
</div>
</div>
<!-- End Corgo Connect Back -->
</div>
</div>
<!-- End Corgo Connect -->
<!-- Snake -->
<div class="col-md-4 card-container">
<div class="card-flip shadow p-3 mb-5 bg-white rounded">
<!-- Snake Front -->
<div class="card-front">
<img src="img/snake-game.png" class="card-img-top img-fluid">
<div class="card-block">
<h4 class="card-title">Snake</h4>
<p class ="card-text">Play a snake game I made from scratch!</p>
</div>
</div>
<!-- End Snake Front -->
<!-- Snake Back -->
<div class="card-back border border-info">
<div class="card-block">
<h4 class="card-title">Snake Game</h4>
<p class="card-text">Does not support mobile.</p>
<div class="col text-center card-footer">
<a href="https://lienne.github.io/snake.html" class="btn btn-outline-info m-2">Play!</a>
</div>
</div>
</div>
<!-- End Snake Back -->
</div>
</div>
<!-- End Snake -->
</div>
</div>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="workshops">
<div class="w-100">
<h2 class="mb-5">Workshops</h2>
<h3>Interview Prep</h3>
<iframe class="responsive-iframe" width="480" height="270" src="https://www.youtube.com/embed/_AhHFXhVTxU" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<br>
<br>
<br>
<br>
<h3>Write a Discord Bot in Python</h3>
<iframe class="responsive-iframe" width="480" height="270" src="https://www.youtube.com/embed/1cuhODT6MGM" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="letters">
<div class="w-100">
<h3 class="mb-5">Recommendation Letters</h3>
<h5>
<p><a href="/documents/2019LianaRecommendationCDK.pdf">Recommendation Letter Summer 2019 - CDK Global Internship</a></p>
<!-- <embed src="/documents/2019LianaRecommendationCDK.pdf" type="application/pdf" width="800px" height="1000px"/> -->
<br />
<br />
<p><a href="/documents/LianaSeveroRecommendationLetter_Summer18.pdf">Recommendation Letter Summer 2018 - CDK Global Internship</a></p>
<!-- <embed src="/documents/LianaSeveroRecommendationLetter_Summer18.pdf" type="application/pdf" width="800px" height="1000px"/> -->
</h5>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="education">
<div class="w-100">
<h2 class="mb-5">Education</h2>
<!-- Education Cards -->
<div class="container">
<div class="row">
<!-- UCF -->
<div class="col-md-4 card-container">
<div class="card shadow p-3 mb-5 bg-white rounded">
<!-- UCF Front -->
<div class="card-front">
<img src="img/ucf-pegasus-logo.png" class="card-img-top img-fluid">
<div class="card-block">
<h4 class="card-title">University of Central Florida</h4>
<p class ="card-text">Bachelors of Science</p>
<p class="card-text">Mathematics and Computer Science</p>
<p class="card-text">August 2014 - May 2020</p>
</div>
</div>
<!-- End UCF Front -->
</div>
</div>
<!-- End UCF -->
<!-- Valencia -->
<div class="col-md-4 card-container">
<div class="card shadow p-3 mb-5 bg-white rounded">
<!-- Valencia Front -->
<div class="card-front">
<img src="img/valencia-college-logo-2.png" class="card-img-top img-fluid">
<div class="card-block">
<h4 class="card-title">Valencia College</h4>
<p class ="card-text">Associate of Arts Honors</p>
<p class="card-text">Phi Theta Kappa Scholar</p>
<p class="card-text">January 2012 - August 2014</p>
</div>
</div>
<!-- End Valencia Front -->
</div>
</div>
<!-- End Valencia -->
</div>
</div>
</div>
</section>
<hr class="m-0">
<!-- <section class="resume-section p-3 p-lg-5 d-flex justify-content-center" id="experience"></section> -->
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="skills">
<div class="w-100">
<h2 class="mb-5">Skills</h2>
<div class="container skills">
<div class="row">
<div class="skill">
<img class="icon-imgs" src="https://cdn2.iconfinder.com/data/icons/designer-skills/128/code-programming-java-software-develop-command-language-512.png" />
<h4>Java</h4>
</div>
<div class="skill">
<img class="icon-imgs" src="https://cdn2.iconfinder.com/data/icons/basic-file-3/64/basic-file-c-512.png" />
<h4>C++</h4>
</div>
<div class="skill">
<img class="icon-imgs" src="https://cdn-icons-png.flaticon.com/128/6132/6132221.png" />
<h4>C#</h4>
</div>
<div class="skill">
<img class="icon-imgs" src="https://cdn4.iconfinder.com/data/icons/logos-and-brands/512/267_Python_logo-512.png" />
<h4>Python</h4>
</div>
<div class="skill">
<img class="icon-imgs" src="https://cdn1.iconfinder.com/data/icons/logotypes/32/badge-html-5-512.png" />
<h4>HTML</h4>
</div>
<div class="skill">
<img class="icon-imgs" src="https://cdn1.iconfinder.com/data/icons/logotypes/32/badge-css-3-512.png" />
<h4>CSS</h4>
</div>
<div class="skill">
<img class="icon-imgs" src="https://cdn2.iconfinder.com/data/icons/designer-skills/128/code-programming-javascript-software-develop-command-language-512.png" />
<h4>Javascript</h4>
</div>
<div class="skill">
<img class="icon-imgs" src="https://cdn2.iconfinder.com/data/icons/programming-languages-8/64/207_programming-program-language-code-typescript-512.png" />
<h4>Typescript</h4>
</div>
<div class="skill">
<img class="icon-imgs" src="https://cdn4.iconfinder.com/data/icons/logos-3/600/React.js_logo-512.png" />
<h4>React Native</h4>
</div>
<div class="skill">
<img class="icon-imgs" src="https://vscjava.gallerycdn.vsassets.io/extensions/vscjava/vscode-spring-boot-dashboard/0.14.2024073000/1722304807801/Microsoft.VisualStudio.Services.Icons.Default" />
<h4>Spring Boot</h4>
</div>
<div class="skill">
<img class="icon-imgs" src="https://cdn-icons-png.flaticon.com/512/4299/4299956.png" />
<h4>SQL</h4>
</div>
<div class="skill">
<img class="icon-imgs" src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Git_icon.svg/1200px-Git_icon.svg.png" />
<h4>Git</h4>
</div>
<div class="skill">
<img class="icon-imgs" src="https://static-00.iconduck.com/assets.00/azure-devops-color-icon-512x511-zvrax40q.png" />
<h4>Azure DevOps</h4>
</div>
</div>
</div>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="resume">
<div class="w-100">
<h2 class="mb-5">View my Resume</h2>
<h4>
<p><a href="/documents/Liana_Severo_Resume.pdf">Check it out!</a></p>
<!-- <embed src="/documents/#" type="application/pdf" width="800px" height="1000px"/> -->
</h4>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="interests">
<div class="w-100">
<h2 class="mb-5">Interests</h2>
<div class="ab">
<img src="/img/abresized.png" style="max-width: 100%;">
<p></p>
<p>Above & Beyond has been my favorite band for about 15 years now and going strong.</p>
<p>They're a genre called Uplifting Trance - and for good reason.</p>
<p>Their songs and lyrics have gotten me through many rough times and hardships in life.</p>
<p>Their messages are full of love, life, and encouragement.</p>
<p>Every week they put out a 1hr radio show called <a href="https://www.aboveandbeyond.nu/abgt">Group Therapy</a>, and it's about 80% of what I listen to daily haha.</p>
<p>During the summer of 2019 I had the amazing opportunity to go to a 3-day camping festival in Washington where I got to meet the members and had a flag signed.</p>
<p>It was one of the happiest moments of my life!</p>
<p>I hope to have more opportunities in the future to meet the band members and continue sharing my love for what they do.</p>
<p>To quote one of my favorite songs by them...</p>
<p><em>Dream on, little dreamer <br />
Follow all of your own signs <br />
<br />
You gotta gather up what you need <br />
You gotta choose a direction <br />
And when the moment is right for you <br />
You gotta go <br />
You gotta keep your ideals high <br />
You gotta know that the sky belongs to no one <br />
And you know you gotta go <br />
<br />
Dream on, little dreamer <br />
This is how it all begins...</em></p>
</div>
<div style="margin-top:50px;" class="pokemon">
<img src="/img/pokemonlogoresized.png" style="max-width: 100%; margin-bottom:10px;">
<p>Pokemon has been one of my favorite franchises since it literally first came out - starting with the first games, Pokemon Red and Blue.</p>
<p>I've owned and played every single generation of games that has come out since.</p>
<p>As I grew up, I heard a lot that I should leave it behind because I was no longer a child, and for a long time I felt shame for still being a big fan.</p>
<p>But after a while I came to the conclusion that life is short and I don't have to leave my hobbies and interests behind as I grow older!</p>
<p>Playing Pokemon takes me back to a carefree time when I didn't have to worry about bills, or had any responsibilities besides some easy homework and a couple chores.</p>
<p>Pokemon is also a franchise with a lot of positive messages and good life lessons, and I am naturally attracted to positivity!</p>
</div>
</div>
</section>
<hr class="m-0">
</div>
</body>
<div class="footer-copyright text-center">
© Liana Severo 2019
</div>
<div class="footer-social-icons text-center">
<a href="https://www.linkedin.com/in/liana-severo/">
<i class="fab fa-linkedin-in fa-2x" title="My LinkedIn"></i>
</a>
<a href="https://github.com/lienne">
<i class="fab fa-github-alt fa-2x" title="My Github"></i>
</a>
<a href="https://www.instagram.com/artbylienne/">
<i class="fab fa-instagram fa-2x"></i>
</a>
<a href="https://devpost.com/lienne">
<i class="fas fa-laptop-code fa-2x"></i>
</a>
<a href="mailto:[email protected]">
<i class="far fa-envelope fa-2x" title=" Shoot me a message!"></i>
</a>
</div>
<!-- Optional JavaScript -->
<!-- JQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<!-- Custom script -->
<script src="js/resume.js"></script>
</body>
</html>