-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2458 lines (2343 loc) · 86 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
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({ "gtm.start": new Date().getTime(), event: "gtm.js" });
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != "dataLayer" ? "&l=" + l : "";
j.async = true;
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, "script", "dataLayer", "GTM-WZCW4NQ");
</script>
<!-- End Google Tag Manager -->
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Mark Pampuch</title>
<meta
content="I am a scientist and a software developer. Click here to learn more about me and my work."
name="description"
/>
<meta
content="Mark, Pampuch, Scientist, Software Developer, Biologist, Biochemist, Geneticist, Data Analyst, Bioinformatician"
name="keywords"
/>
<meta name="author" content="Mark Pampuch" />
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon" />
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet"
/>
<!-- Vendor CSS Files -->
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="assets/vendor/bootstrap-icons/bootstrap-icons.css"
rel="stylesheet"
/>
<link href="assets/vendor/boxicons/css/boxicons.css" rel="stylesheet" />
<!-- <link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet"> -->
<link
href="assets/vendor/glightbox/css/glightbox.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet" />
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet" />
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
<!-- Vendor JS Files -->
<script
defer
src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"
></script>
<script defer src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script
defer
src="assets/vendor/isotope-layout/isotope.pkgd.min.js"
></script>
<script defer src="assets/vendor/php-email-form/validate.js"></script>
<!-- Updated purecounter script. Needs the new Purecounter declaration at the bottom of the page -->
<!-- <script defer src="assets/vendor/purecounter/purecounter.js"></script> -->
<script src="assets/vendor/purecounter/purecounter_vanilla.js"></script>
<script defer src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script defer src="assets/vendor/typed.js/typed.min.js"></script>
<script
defer
src="assets/vendor/waypoints/noframework.waypoints.js"
></script>
<!-- Template Main JS File -->
<script defer src="assets/js/main.js"></script>
<!-- Node_modules -->
<!-- Syntax highlighting -->
<link href="assets/css/prism.css" rel="stylesheet" />
<script defer src="assets/js/prism.js"></script>
<!-- =======================================================
* Template Name: Personal - v4.3.0
* Template URL: https://bootstrapmade.com/personal-free-resume-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript
><iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-WZCW4NQ"
height="0"
width="0"
style="display: none; visibility: hidden"
></iframe
></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Background video -->
<div id="background-video-container">
<video
id="background-video"
autoplay
loop
muted
playsinline
poster
onloadstart="this.playbackRate = 1;"
>
<source src="assets/img/dna_bg.mp4" type="video/mp4" />
<!-- <source
src="assets/img/dna-particles-pack-338892-preview-1_JFUpI8WG-vignette.mp4"
type="video/mp4"
/> -->
</video>
</div>
<!-- ======= Header ======= -->
<header id="header">
<div class="container">
<h1><a href="#header">Mark Pampuch</a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="mr-auto"><img src="assets/img/logo.png" alt="" class="img-fluid"></a> -->
<h2 class="from-to">
I am a
<span
class="typed"
data-typed-items="Biologist, Biochemist, Geneticist, Bioinformatician, Data Analyst, Software Developer, Scientist"
></span>
</h2>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link active" href="#header">Home</a></li>
<li><a class="nav-link" href="#about">About</a></li>
<li><a class="nav-link" href="#resume">Resume</a></li>
<li><a class="nav-link" href="#work-showcase">Work Showcase</a></li>
<li><a class="nav-link" href="#publications">Publications</a></li>
<!-- <li><a class="nav-link" href="#blog">Blog</a></li> -->
<!-- <li><a class="nav-link" href="#microscopy">Microscopy</a></li> -->
<li><a class="nav-link" href="#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- .navbar -->
<div class="social-links">
<a href="https://twitter.com/MarkPampuch" class="twitter"
><i class="bi bi-twitter"></i
></a>
<a
href="https://www.facebook.com/profile.php?id=100013504470708"
class="facebook"
><i class="bi bi-facebook"></i
></a>
<!-- <a href="#" class="instagram"><i class="bi bi-instagram"></i></a> -->
<a href="https://www.linkedin.com/in/mark-pampuch/" class="linkedin"
><i class="bi bi-linkedin"></i
></a>
<a href="https://github.com/mpampuch" class="github"
><i class="bi bi-github"></i
></a>
</div>
</div>
</header>
<!-- End Header -->
<!-- ======= About Section ======= -->
<section id="about" class="about">
<!-- ======= About Me ======= -->
<div class="about-me container">
<div class="section-title">
<h2>About</h2>
<p>Learn more about me</p>
</div>
<div class="row main-row">
<div class="col-lg-4 me-container-parent" data-aos="fade-right">
<picture class="me-container">
<source srcset="assets/img/me.webp" type="image/webp" />
<source srcset="assets/img/me.jpg" type="image/jpg" />
<img
src="assets/img/me.jpg"
class="img-fluid"
alt="Mark Pampuch"
/>
</picture>
</div>
<div class="col-lg-8 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3>Biotechnology Researcher and Technology Specialist</h3>
<div class="row">
<div class="col-lg-6 about__section--left">
<ul>
<li>
<i class="bi bi-chevron-right"></i>
<strong>Birthday:</strong> <span>17 August 1998</span>
</li>
<li>
<i class="bi bi-chevron-right"></i> <strong>City:</strong>
<span>Toronto, ON, Canada</span>
</li>
<li>
<i class="bi bi-chevron-right"></i> <strong>Age:</strong>
<span class="age">23</span>
</li>
<!-- <li><i class="bi bi-chevron-right"></i> <strong>Phone:</strong> <span>+123 456 7890</span></li> -->
</ul>
</div>
<div class="col-lg-6 about__section--right">
<ul>
<li>
<i class="bi bi-chevron-right"></i>
<strong>Degrees:</strong>
<span>
<span
role="img"
aria-label="First Degree"
class="symbol bullet"
>•︎</span
>
HBSc in Biology <!-- TODO Change this to Genetics -->
<br /> <!-- TODO Delete from here -->
 
<span
role="img"
aria-label="Additional information"
class="symbol arrow"
>⤴︎</span
>
Spec. in Genetics <!-- TODO Delete to here -->
<br />
<span
role="img"
aria-label="Second Degree"
class="symbol bullet"
>•︎</span
>
MSc in Biochemistry
<!-- <br />
<span
role="img"
aria-label="Third Degree"
class="symbol bullet"
>•︎</span
>
PhD in Bioengineering -->
<!-- <br />
 
<span
role="img"
aria-label="Additional information"
class="symbol arrow"
>⤴︎</span
>
(In progress) -->
<!-- <br />
<span
role="img"
aria-label="Fourth Degree"
class="symbol bullet"
>•︎</span
>
MBA
<span
role="img"
aria-label="Additional information"
class="symbol"
>→︎</span
>
(In progress) -->
</span
>
</span
>
</li>
<li>
<i class="bi bi-chevron-right"></i> <strong>Email:</strong>
<span>[email protected]</span>
</li>
<!-- <li><i class="bi bi-chevron-right"></i> <strong>Freelance:</strong> <span>Available</span></li> -->
</ul>
</div>
</div>
<div class="section-title mobile-only biography">
<h2>Biography</h2>
</div>
<p class="description">
I am a biotech researcher specializing in the fields of
biochemistry and genetics. My fascination with biology has led to
pursue research in the field of synthetic biology, a field which
offers a unique opportunity to engineer living systems in a way
that can solve some of the world's most pressing problems, such as
disease, climate change, and food insecurity. I have gained a deep
appreciation for the complexity and beauty of biological systems,
as well as the power of genetic engineering to manipulate these
systems for our benefit. It is a challenging field that requires a
strong foundation in biology, chemistry, and mathematics, as well
as the ability to think creatively and critically about complex
problems. Throughout my research, I have worked towards increasing
nutrient uptake in crops, developing novel antibiotic
technologies, and improving DNA delivery methods. A big component
of my research has also been in the field of bioinformatics, which
lies at the intersection of biology, statistics, and computer
science. I have developed numerous applications to answer specific
research questions and analyze large amounts of genetic data. In
my free time I like to exercise and volunteer in my local
community. I am always interested in learning new skills and
meeting new people, so feel free to reach out!
</p>
</div>
<!-- End About Me -->
<!-- ======= Work History Section ======= -->
<!-- Keep descriptions ~ 100 - 200 words -->
<div class="about-me work-history container">
<div
class="section-title section-title__centered section-title__work-history"
>
<h2>Work History</h2>
</div>
<!-- Row 1 -->
<div class="work-history-item">
<div class="row">
<div
class="work-history-position-container work-history-position-1"
></div>
<div
class="col-lg-8 pt-4 pt-lg-0 content work-history-description-and-header-container-parent"
data-aos="fade-left"
>
<div class="work-history-description-and-header-container">
<div class="section-title mobile-only biography">
<h2>2023 - Present</h2>
</div>
<div class="work-history-description-parent">
<p class="description">
In my most recent role, I had the privilege of working
at the King Abdullah University of Science and
Technology (KAUST) in Saudi Arabia. I was invited to
work there as a visiting researcher by Dr. Kyle J.
Lauersen who I met at a science conference. When I
arrived I was immediately captivated by the
institution's profound commitment to scientific research
and possession of state-of-the-art equipment. I worked
in the Sustainable & Synthetic Biotechnology Group,
where my work consisted primarily of optimizing
high-molecular weight DNA isolation protocols and next
generation sequencing analyses of bioprospected
organisms with high industrial potential. The funding
for the biosciences and the level of computational and
automation infrustracture found at KAUST allowed me to
perform research at much higher levels than I had
previously experienced. This environment did not just
facilitate my research; it also equipped me with
invaluable skills and dramatically accelerated my growth
as a scientist.
</p>
</div>
</div>
</div>
<div
class="work-history-position-container work-history-position-2"
></div>
<div
class="col-lg-4 work-history-image-container-parent"
data-aos="fade-right"
>
<picture class="work-history-image-container">
<!-- TODO MAKE THIS IMG A WEBP IMAGE -->
<source
srcset="assets/img/KAUST-modified.png"
type="image/webp"
/>
<source
srcset="assets/img/KAUST-modified.png"
type="image/jpg"
/>
<img
src="assets/img/KAUST-modified.png"
class="img-fluid"
alt="Mark Pampuch"
/>
</picture>
</div>
</div>
</div>
<!-- Row 2 -->
<div class="work-history-item">
<div class="row">
<div
class="work-history-position-container work-history-position-1"
></div>
<div
class="col-lg-4 work-history-image-container-parent"
data-aos="fade-right"
>
<picture class="work-history-image-container">
<!-- TODO MAKE THIS IMG A WEBP IMAGE -->
<source
srcset="assets/img/MBL-modified.png"
type="image/webp"
/>
<source
srcset="assets/img/MBL-modified.png"
type="image/jpg"
/>
<img
src="assets/img/MBL-modified.png"
class="img-fluid"
alt="Mark Pampuch"
/>
</picture>
</div>
<div
class="work-history-position-container work-history-position-2"
></div>
<div
class="col-lg-8 pt-4 pt-lg-0 content work-history-description-and-header-container-parent"
data-aos="fade-left"
>
<div class="work-history-description-and-header-container">
<div class="section-title mobile-only biography">
<h2>2021 - 2023</h2>
</div>
<div class="work-history-description-parent">
<p class="description">
In a significant chapter of my career, I had the
opportunity to pursue synthetic biology research at
Western University, within a lab spearheaded by Dr.
Bogumil Karas. Initially joining as a research
assistant, my love for the pioneering and cutting-edge
research ultimately led me to pursue a Master of Science
in Biochemistry in the same lab. Working in Dr. Karas's
lab allowed me to learn a lot about synthetic biology. I
even took upon the challenge of performing are very
large-scale data analysis project in addition to my
laboratory projects, which was not the domain of
expertise within this lab however Dr. Karas was kind
enough to let me pursue it and despite not having much
experience doing that kind of work beforehand. My
expereince in this lab has been extemely beneficial. It
honed my critical thinking and problem solving skills
and I feel fortified having conquered many challenging
problems. It led me to grow tremendously as a
researcher, having the ability to blend both wet-lab and
dry-lab work together in a way that is very beneficial
to the research process and a unique skill.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Row 3 -->
<div class="work-history-item">
<div class="row">
<div
class="work-history-position-container work-history-position-1"
></div>
<div
class="col-lg-8 pt-4 pt-lg-0 content work-history-description-and-header-container-parent"
data-aos="fade-left"
>
<div class="work-history-description-and-header-container">
<div class="section-title mobile-only biography">
<h2>2019 - 2020</h2>
</div>
<div class="work-history-description-parent">
<p class="description">
My first exposure to laboratory research came in the
form of working at the Agriculture and Agri-Food Canada
London Research and Development Centre under the
supervision of Dr. Krzysztof Szczyglowski. My research
pertained to improving natural interactions with soil
microbes and legume crops in an effort to reduce the
amount of artificial fertizilers used in modern
agriculture and reduce environmental impacts caused by
nitrogen found in agricultural runoffs. This work was
instrumental in my career because I found a passion for
research and would stay into the late hours of the day
trying to collect more data to answer the scientific
questions I had burning inside of me. I also learned a
lot about the importance of collaboration and
communication in the scientific community. I was
fortunate to have worked in such a great lab with such a
great team of scientists. This experience was a turning
point in my career as it set me down the path of
research and I am grateful for the opportunity to have
taken part in it.
</p>
</div>
</div>
</div>
<div
class="work-history-position-container work-history-position-2"
></div>
<div
class="col-lg-4 work-history-image-container-parent"
data-aos="fade-right"
>
<picture class="work-history-image-container">
<!-- TODO MAKE THIS IMG A WEBP IMAGE -->
<source
srcset="assets/img/AAFC_LRnD_1-modified.png"
type="image/webp"
/>
<source
srcset="assets/img/AAFC_LRnD_1-modified.png"
type="image/jpg"
/>
<img
src="assets/img/AAFC_LRnD_1-modified.png"
class="img-fluid"
alt="Mark Pampuch"
/>
</picture>
</div>
</div>
</div>
<!-- Row 4 -->
<div class="work-history-item">
<div class="row">
<div
class="work-history-position-container work-history-position-1"
></div>
<div
class="col-lg-4 work-history-image-container-parent"
data-aos="fade-right"
>
<picture class="work-history-image-container">
<!-- TODO MAKE THIS IMG A WEBP IMAGE -->
<source
srcset="assets/img/mars_2-modified.png"
type="image/webp"
/>
<source
srcset="assets/img/mars_2-modified.png"
type="image/jpg"
/>
<img
src="assets/img/mars_2-modified.png"
class="img-fluid"
alt="Mark Pampuch"
/>
</picture>
</div>
<div
class="work-history-position-container work-history-position-2"
></div>
<div
class="col-lg-8 pt-4 pt-lg-0 content work-history-description-and-header-container-parent"
data-aos="fade-left"
>
<div class="work-history-description-and-header-container">
<div class="section-title mobile-only biography">
<h2>2018</h2>
</div>
<div class="work-history-description-parent">
<p class="description">
My first professional experience came in the form of
working at the medical technology company MolecuLight Inc., which was based out of
the MaRS Discovery District innovation hub in Toronto. I worked as an intern
and was fortunate to have worked with a great team
aiming to deliver a product that could make a great
impact in the medical field. When I joined the team, the
company was in the middle of obtaining FDA approval for
their wound-care device. My primary roles were to help
process the data from the clinical trial studies and
help conduct research on potential customers and
competitors. I learned a lot of what it takes it bring
new technology out to the market and the trials and
tribulations startups face. I left this experience with
a lot of insight and perspective of what science looks
like in the industrial space.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ======= End Work History Section ======= -->
</div>
</div>
<!-- ======= Counts ======= -->
<div class="counts container">
<div
class="section-title section-title__centered section-title__achievements"
>
<h2>Achievements</h2>
</div>
<div class="row">
<!-- Awards -->
<div class="col-lg-3 col-md-6 mt-md-0">
<!--(1)-->
<div class="count-box">
<i class="bi bi-award"></i>
<span
data-purecounter-start="0"
data-purecounter-end="6"
data-purecounter-duration="2"
data-purecounter-delay="250"
class="purecounter"
></span>
<p>Academic Awards</p>
</div>
</div>
<!-- Publications -->
<div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<!--(2)-->
<div class="count-box">
<i class="bi bi-journal-richtext"></i>
<span
data-purecounter-start="0"
data-purecounter-end="2"
data-purecounter-duration="2"
data-purecounter-delay="250"
class="purecounter"
></span>
<p>Publications</p>
</div>
</div>
<!-- Money, previously Labs (had to use inline styling for this one cause used boxicon icon (bx) icon and not bootstrap icon (which came pre-formatted)-->
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<!--(3)-->
<div class="count-box">
<i class="bx bx-money" style="line-height: 1"></i>
<span
data-purecounter-start="0"
data-purecounter-end="64000"
data-purecounter-separator=","
data-purecounter-duration="2"
data-purecounter-delay="10"
class="purecounter"
></span>
<p>In Scholarships</p>
</div>
</div>
<!-- Languages (had to use inline styling for this one cause used boxicon icon (bx) icon and not bootstrap icon (which came pre-formatted)-->
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<!--(4)-->
<div class="count-box">
<i class="bx bxs-graduation" style="line-height: 1"> </i>
<span
data-purecounter-start="0"
data-purecounter-end="3.9"
data-purecounter-decimals="1"
data-purecounter-separator="."
data-purecounter-delay="10"
class="purecounter"
></span>
<p>GPA</p>
</div>
</div>
</div>
</div>
<!-- End Counts -->
<!-- ======= Skills (renamed languages by me) ======= -->
<!-- TODO find better way to represent this (ie. histogram. Get inspiration from here https://ux.stackexchange.com/questions/42798/honest-way-to-show-your-skills-in-portfolio?newreg=9cb908cd69324d4e82b5c2d0cba93ac5, http://sergiopedercini.com/,
and http://www.ryan-hwang.com/about.php) -->
<div class="skills container">
<div class="section-title section-title__centered">
<h2>IT and Programming Knowledge</h2>
</div>
<div class="section-subtitle section-subtitle__first">
<h2>General</h2>
</div>
<div class="row skills-content">
<div class="col-lg-6">
<div class="progress">
<span class="skill"
>Python <i class="val">(Most familiar)</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="65"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
>R
<i class="val">(Great at data analysis and data viz)</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="55"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
>Unix/bash
<i class="val">(Very familiar. I do a lot of CLI work)</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="60"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
>Git/Github
<i class="val">(Performed solo and collaborative work)</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="50"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
>AWK
<i class="val"
>(Very useful for processing large datasets)</i
></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="45"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
>Groovy
<i class="val">(For writing data analysis pipelines)</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="30"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
>Java
<i class="val">(Learned to understand other languages)</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="25"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill"
>Javascript<i class="val"
>(Comfortable interacting with the web)</i
></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="50"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
>CSS/Sass <i class="val">(Made a few web projects)</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="45"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
>HTML <i class="val">(Know how to webscrape too)</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="60"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
>SQL
<i class="val">(Familiar with relational databases)</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="30"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
>Julia <i class="val">(Working on this right now)</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="10"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill">C<i class="val">(Know the basics)</i></span>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="10"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
>Verilog<i class="val">(Familiar with hardware logic)</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="3"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
</div>
<div class="section-subtitle">
<h2>Data anaylsis</h2>
</div>
<div class="row skills-content">
<div class="col-lg-6">
<div class="progress">
<span class="skill"
>Tidyverse<i class="val">(For general data analysis)</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="55"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
>Bioconductor<i class="val"
>(For genomics data analysis)</i
></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="50"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill"
>ggplot2/matplotlib
<i class="val">(For visualizing data)</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="50"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
<div class="progress">
<span class="skill"
>numpy/pandas
<i class="val">(For certain data analyses)</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="20"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
</div>
<!--Worflow Managment -->
<div class="section-subtitle">
<h2>Dataflow Programming</h2>
</div>
<div class="row skills-content">
<div class="col-lg-6">
<div class="progress">
<span class="skill"
>Nextflow<i class="val">(Current System I use)</i></span
>
<div class="progress-bar-wrap">
<div
class="progress-bar"
role="progressbar"
aria-valuenow="60"