-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
915 lines (899 loc) · 42.3 KB
/
index.php
File metadata and controls
915 lines (899 loc) · 42.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/><link rel="stylesheet" type="text/css" href="main.css" />
<script type="text/javascript" src="_scripts/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="main.js"></script>
<title>Matt Haslem - Web Developer</title>
<link rel="icon" href="https://matthaslem.tech/favicon.ico"/>
</head>
<body data-theme="light">
<div id="hero" data-section-name="Home" class="section top-section larger-than-tablet-hide">
<div class="background-wrap">
<div class="background-colors dark"> </div>
<div class="background-colors light"></div>
<!--canvas#bg-canvas-->
<div class="circles-wrap">
<div class="inner"><svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 225.74 225.55">
<defs>
<style>
.center1-cls-1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 2px;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1"><path class="center1-cls-1" d="M218.68,145.61A110.54,110.54,0,0,0,89.82,4.5"/><path class="center1-cls-1" d="M7.07,79.93A110.53,110.53,0,0,0,112.44,223.55a111.51,111.51,0,0,0,23.49-2.5"/></g>
</g>
</svg>
<svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 157.11 222.05">
<defs>
<style>
.center2-cls1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 2px;
isolation: isolate;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1">
<g id="Layer_2-2" data-name="Layer 2">
<g id="Layer_1-2-2" data-name="Layer 1-2"><path class="center2-cls1" d="M156.41,32.79A110.63,110.63,0,0,0,45,6.28"/><path class="center2-cls1" d="M.7,189.26a110.59,110.59,0,0,0,111.36,26.5"/></g>
</g>
</g>
</g>
</svg>
</div>
<div class="second"><svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 225.74 225.55">
<defs>
<style>
.second1-cls-1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 4px;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1"><path class="second1-cls-1" d="M218.68,145.61A110.54,110.54,0,0,0,89.82,4.5"/><path class="second1-cls-1" d="M7.07,79.93A110.53,110.53,0,0,0,112.44,223.55a111.51,111.51,0,0,0,23.49-2.5"/></g>
</g>
</svg>
<svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 199.08 224.74">
<defs>
<style>
.second2-cls-1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 4px;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1"><path class="second2-cls-1" d="M99.27,2A110.64,110.64,0,0,0,1.78,62"/><path class="second2-cls-1" d="M99.81,222.74a110.58,110.58,0,0,0,97.49-60"/></g>
</g>
</svg>
</div>
<div class="outer"><svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 225.74 225.55">
<defs>
<style>
.outer1-cls-1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 3px;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1"><path class="outer1-cls-1" d="M218.68,145.61A110.54,110.54,0,0,0,89.82,4.5"/><path class="outer1-cls-1" d="M7.07,79.93A110.53,110.53,0,0,0,112.44,223.55a111.51,111.51,0,0,0,23.49-2.5"/></g>
</g>
</svg>
<svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 199.08 224.74">
<defs>
<style>
.outer2-cls-1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 4px;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1"><path class="outer2-cls-1" d="M99.27,2A110.64,110.64,0,0,0,1.78,62"/><path class="outer2-cls-1" d="M99.81,222.74a110.58,110.58,0,0,0,97.49-60"/></g>
</g>
</svg>
</div>
</div>
</div>
<div class="content-wrap ignore-width">
<h1>Matt Haslem</h1>
<div class="caption-wrap">
<div class="hr"></div>
<div class="text">Web Developer</div>
<div class="hr"></div>
</div>
</div>
</div>
<div id="all-content-wrap">
<div id="hero" data-section-name="Home" class="section tablet-hide top-section">
<div class="background-wrap">
<div class="background-colors dark"> </div>
<div class="background-colors light"></div>
<!--canvas#bg-canvas-->
<div class="circles-wrap">
<div class="inner"><svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 225.74 225.55">
<defs>
<style>
.center1-cls-1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 2px;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1"><path class="center1-cls-1" d="M218.68,145.61A110.54,110.54,0,0,0,89.82,4.5"/><path class="center1-cls-1" d="M7.07,79.93A110.53,110.53,0,0,0,112.44,223.55a111.51,111.51,0,0,0,23.49-2.5"/></g>
</g>
</svg>
<svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 157.11 222.05">
<defs>
<style>
.center2-cls1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 2px;
isolation: isolate;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1">
<g id="Layer_2-2" data-name="Layer 2">
<g id="Layer_1-2-2" data-name="Layer 1-2"><path class="center2-cls1" d="M156.41,32.79A110.63,110.63,0,0,0,45,6.28"/><path class="center2-cls1" d="M.7,189.26a110.59,110.59,0,0,0,111.36,26.5"/></g>
</g>
</g>
</g>
</svg>
</div>
<div class="second"><svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 225.74 225.55">
<defs>
<style>
.second1-cls-1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 4px;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1"><path class="second1-cls-1" d="M218.68,145.61A110.54,110.54,0,0,0,89.82,4.5"/><path class="second1-cls-1" d="M7.07,79.93A110.53,110.53,0,0,0,112.44,223.55a111.51,111.51,0,0,0,23.49-2.5"/></g>
</g>
</svg>
<svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 199.08 224.74">
<defs>
<style>
.second2-cls-1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 4px;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1"><path class="second2-cls-1" d="M99.27,2A110.64,110.64,0,0,0,1.78,62"/><path class="second2-cls-1" d="M99.81,222.74a110.58,110.58,0,0,0,97.49-60"/></g>
</g>
</svg>
</div>
<div class="outer"><svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 225.74 225.55">
<defs>
<style>
.outer1-cls-1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 3px;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1"><path class="outer1-cls-1" d="M218.68,145.61A110.54,110.54,0,0,0,89.82,4.5"/><path class="outer1-cls-1" d="M7.07,79.93A110.53,110.53,0,0,0,112.44,223.55a111.51,111.51,0,0,0,23.49-2.5"/></g>
</g>
</svg>
<svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 199.08 224.74">
<defs>
<style>
.outer2-cls-1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 4px;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1"><path class="outer2-cls-1" d="M99.27,2A110.64,110.64,0,0,0,1.78,62"/><path class="outer2-cls-1" d="M99.81,222.74a110.58,110.58,0,0,0,97.49-60"/></g>
</g>
</svg>
</div>
</div>
</div>
<div class="content-wrap ignore-width">
<h1>Matt Haslem</h1>
<div class="caption-wrap">
<div class="hr"></div>
<div class="text">Web Developer</div>
<div class="hr"></div>
</div>
</div>
</div>
<div id="nav-links-desktop" class="section tablet-hide">
<div class="links-wrap"> <a href="#about">About Me</a>
<div class="vertical-divider"></div><a href="#experience">Experience & Education</a>
<div class="vertical-divider"></div><a href="#skills">Skills</a>
<div class="vertical-divider"></div><a href="#my-work">My Work</a>
<div class="vertical-divider"></div><a href="#talk">Contact</a>
</div>
</div>
<div id="about-me" data-section="about" data-section-name="About Me" class="section top-section">
<div class="content-wrap">
<div class="img-wrap"><img src="_pics/Matt_Haslem_Web_Developer.png" alt="Matt Haslem - Web Developer"/>
<div class="circles-wrap">
<div class="inner"><svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 225.74 225.55">
<defs>
<style>
.center1-cls-1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 2px;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1"><path class="center1-cls-1" d="M218.68,145.61A110.54,110.54,0,0,0,89.82,4.5"/><path class="center1-cls-1" d="M7.07,79.93A110.53,110.53,0,0,0,112.44,223.55a111.51,111.51,0,0,0,23.49-2.5"/></g>
</g>
</svg>
<svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 157.11 222.05">
<defs>
<style>
.center2-cls1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 2px;
isolation: isolate;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1">
<g id="Layer_2-2" data-name="Layer 2">
<g id="Layer_1-2-2" data-name="Layer 1-2"><path class="center2-cls1" d="M156.41,32.79A110.63,110.63,0,0,0,45,6.28"/><path class="center2-cls1" d="M.7,189.26a110.59,110.59,0,0,0,111.36,26.5"/></g>
</g>
</g>
</g>
</svg>
</div>
<div class="second"><svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 225.74 225.55">
<defs>
<style>
.second1-cls-1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 4px;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1"><path class="second1-cls-1" d="M218.68,145.61A110.54,110.54,0,0,0,89.82,4.5"/><path class="second1-cls-1" d="M7.07,79.93A110.53,110.53,0,0,0,112.44,223.55a111.51,111.51,0,0,0,23.49-2.5"/></g>
</g>
</svg>
<svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 199.08 224.74">
<defs>
<style>
.second2-cls-1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 4px;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1"><path class="second2-cls-1" d="M99.27,2A110.64,110.64,0,0,0,1.78,62"/><path class="second2-cls-1" d="M99.81,222.74a110.58,110.58,0,0,0,97.49-60"/></g>
</g>
</svg>
</div>
<div class="outer"><svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 225.74 225.55">
<defs>
<style>
.outer1-cls-1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 3px;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1"><path class="outer1-cls-1" d="M218.68,145.61A110.54,110.54,0,0,0,89.82,4.5"/><path class="outer1-cls-1" d="M7.07,79.93A110.53,110.53,0,0,0,112.44,223.55a111.51,111.51,0,0,0,23.49-2.5"/></g>
</g>
</svg>
<svg class="circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 199.08 224.74">
<defs>
<style>
.outer2-cls-1 {
fill: none;
stroke-miterlimit: 10;
stroke-width: 4px;
opacity: 0.53;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1"><path class="outer2-cls-1" d="M99.27,2A110.64,110.64,0,0,0,1.78,62"/><path class="outer2-cls-1" d="M99.81,222.74a110.58,110.58,0,0,0,97.49-60"/></g>
</g>
</svg>
</div>
</div>
</div>
<div class="text-wrap">
<h1>About Me</h1>
<p>Hello, My name is Matt Haslem! I am a resident of Norfolk, VA with extensive experience in programming and web development. I’m currently a Technology Apprentice and two time graduate from Old Dominion university, with degrees in Computer Science and Media Communications -- utilizing my education from both to design, develop, and maintain quality applications for clients.</p>
</div>
</div>
</div>
<div id="experience" data-section="experience" data-section-name="Experience" class="section top-section">
<div class="content-wrap">
<div class="section experience">
<h2>Experience</h2>
<div data-company="MAXX" class="card">
<div class="title-wrap">
<div class="image-wrap"><img src="_pics/experience/MaxxPotential.svg"/></div>
<div class="text-wrap">
<h4>MAXX Potential</h4>
<div class="caption">Technology Apprentice <br class="desktop-hide"/><em>( July 2021 - Present )</em></div>
</div>
</div>
<div class="desc"> MAXX Potential is a company that provides a diverse range of technology services to a wide variety of companies. Their main focus is to give their apprentices an opportunity to get the hands-on experience they need to kickstart their career. <a href="https://maxxpotential.com/" target="_blank">Learn more at their site</a>.</div>
<div class="button-wrap"><a data-scroll-to="maxx-projects" class="button">Projects <img src="_pics/icons/double-arrow.svg"/></a></div>
</div>
</div>
<div class="section education">
<h2>Education</h2>
<div class="cards-wrap">
<div data-company="ODU" class="card small">
<div class="title-wrap">
<div class="image-wrap"><img src="_pics/experience/OldDominionUniversity.svg"/></div>
<div class="text-wrap">
<h4>Old Dominion University</h4>
<div class="caption">Computer Science - Bachelor of Science<br/><em>( January 2019 - May 2022 )</em></div>
</div>
</div>
</div>
<div data-company="ODU" class="card small">
<div class="title-wrap">
<div class="image-wrap"><img src="_pics/experience/OldDominionUniversity.svg"/></div>
<div class="text-wrap">
<h4>Old Dominion University</h4>
<div class="caption">Communications - Bachelor of Science <br/><em>( August 2011 - December 2016 )</em></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="skills" data-section-name="Skills" class="section top-section">
<div class="background-wrap">
<div class="background-colors dark"> </div>
<div class="background-colors light"></div>
</div>
<div class="bg-border-wrap">
<div class="border top"> <img src="_pics/skills/skills-border-top-light.svg" data-animate="true" data-max-scroll="0.2" class="border light"/><img src="_pics/skills/skills-border-top-dark.svg" data-animate="true" data-max-scroll="0.2" class="border dark"/></div>
<div class="border bottom"><img src="_pics/skills/skills-border-bottom-light.svg" data-animate="true" data-max-scroll="0.2" class="border light"/><img src="_pics/skills/skills-border-bottom-dark.svg" data-animate="true" data-max-scroll="0.2" class="border dark"/></div>
</div>
<div class="content-wrap">
<div class="left-side">
<h2>Skills</h2>
<div class="filters-wrap">
<ul>
<li>
<label>
<input type="checkbox" value="professional" class="skill-filter radio"/>
<div class="checkbox radio"></div>Professional Experience
</label>
</li>
<li>
<label>
<input type="checkbox" value="personal" class="skill-filter radio"/>
<div class="checkbox radio"></div>Personal Project / School Experience
</label>
</li>
</ul>
<ul>
<li>
<label>
<input type="checkbox" value="front-end" class="skill-filter"/>
<div class="checkbox"></div>Front-End Development
</label>
</li>
<li>
<label>
<input type="checkbox" value="back-end" class="skill-filter"/>
<div class="checkbox"></div>Back-End Development
</label>
</li>
<li>
<label>
<input type="checkbox" value="programming" class="skill-filter"/>
<div class="checkbox"></div>Programming
</label>
</li>
<!--li
label
input.skill-filter(type="checkbox" value="design")
.checkbox
| Design
-->
</ul>
</div>
<div class="button clear-skill-filters">Clear </div>
</div>
<div class="right-side">
<div class="skills-item-wrap">
<div data-priority="1" data-professional="professional personal" data-type="front-end" class="item">CSS</div>
<div data-priority="1" data-professional="professional personal" data-type="front-end" class="item">HTML</div>
<div data-priority="1" data-professional="professional personal" data-type="front-end programming" class="item">jQuery</div>
<div data-priority="2" data-professional="professional personal" data-type="front-end programming" class="item">JavaScript</div>
<div data-priority="1" data-professional="professional personal" data-type="back-end programming" class="item">PHP</div>
<div data-priority="2" data-professional="professional personal" data-type="back-end" class="item">MySQL</div>
<div data-priority="2" data-professional="professional personal" data-type="front-end programming" class="item">Ajax</div>
<div data-priority="1" data-professional="personal" data-type="front-end" class="item">SASS</div>
<div data-priority="2" data-professional="personal" data-type="front-end" class="item">SCSS</div>
<div data-priority="2" data-professional="personal" data-type="programming" class="item">C++</div>
<div data-priority="2" data-professional="professional personal" data-type="back-end programming" class="item">C#</div>
<div data-priority="3" data-professional="personal" data-type="programming" class="item">Python</div>
<div data-priority="1" data-professional="professional personal" data-type="front-end back-end" class="item">React</div>
<div data-priority="2" data-professional="personal" data-type="programming" class="item">Java</div>
<div data-priority="3" data-professional="professional" data-type="front-end back-end" class="item">MVC</div>
<div data-priority="2" data-professional="professional" data-type="front-end back-end" class="item">Sitefinity</div>
<div data-priority="2" data-professional="professional personal" data-type="front-end back-end" class="item">Wordpress</div>
<div data-priority="2" data-professional="professional" data-type="back-end" class="item">Firebase</div>
</div>
<div filter="false" class="word-cloud-wrap"></div>
</div>
</div>
</div>
<div style="--filler-height: 100px;" class="section filler"></div>
<div id="my-work" data-section-name="My Work" class="section top-section">
<div class="bg-border-wrap">
<div class="border top"> <img src="_pics/my-work/my-work-border-top-dark.svg" data-animate="true" data-max-scroll="0.2" class="border dark"/><img src="_pics/my-work/my-work-border-top-light.svg" data-animate="true" data-max-scroll="0.2" class="border light"/>
<!--include _pics/my-work/my-work-border-top-dark.svg-->
<!--include _pics/my-work/my-work-border-top-light.svg-->
</div>
<div class="border bottom"><img src="_pics/my-work/my-work-border-bottom-dark.svg" data-animate="true" data-max-scroll="0.2" class="border dark"/><img src="_pics/my-work/my-work-border-bottom-light.svg" data-animate="true" data-max-scroll="0.2" class="border light"/>
<!--include _pics/my-work/my-work-border-bottom-dark.svg-->
<!--include _pics/my-work/my-work-border-bottom-light.svg -->
</div>
</div>
<div class="content-wrap">
<h1>My Work</h1>
<div id="maxx-projects" data-scroll-name="maxx-projects" class="slideshow">
<div data-opened="true" class="slide">
<div class="item category">
<h3>MAXX Potential Projects <img src="_pics/arrow-down-dark.svg" class="icon open-arrow desktop-hide"/></h3>
</div>
<div data-open-popup="give" class="item"> <img src="_pics/my-work/give.png"/></div>
<div data-open-popup="chalk" class="item"> <img src="_pics/my-work/chalk.png"/></div>
<div data-open-popup="broadtime" class="item"> <img src="_pics/my-work/broadtime.png"/></div>
<div data-open-popup="nsrec" class="item"> <img src="_pics/my-work/nsrec.png"/></div>
<div data-open-popup="macys" class="item"> <img src="_pics/my-work/macys.png"/></div>
<div data-open-popup="connectva" class="item"> <img src="_pics/my-work/connectva.png"/></div>
</div>
</div>
</div>
</div>
<div style="--filler-height: 200px;" class="section filler"></div>
<div id="talk" data-section-name="Talk" class="section top-section">
<div class="content-wrap">
<h2>Want to Talk?</h2>
<div data-open-popup="contact" class="button">Send a Message</div>
</div>
<div class="contact-info">
<h3 class="name">Matthew Haslem </h3><a href="mailto:matt@matthaslem.tech" class="email">matt@matthaslem.tech</a><a href="tel:757-660-2112" class="phone">757-660-2112</a><span class="location">Norfolk, VA </span>
</div>
<div class="social-links-wrap"> <a href="https://github.com/MattHaslemTech" target="_blank" class="item"><img src="_pics/icons/github_small.svg" class="icon"/>
<div class="text">GitHub</div></a><a href="https://www.linkedin.com/in/thematthaslem/" target="_blank" class="item"><img src="_pics/icons/linkedin_small.svg" class="icon"/>
<div class="text">LinkedIn</div></a><a href="mailto:matt@matthaslem.tech" class="item"><img src="_pics/icons/email_small.svg" class="icon"/>
<div class="text">Email </div></a></div>
</div><div class="theme-switch-wrap">
<div class="inner-content">
<div class="color-wrap">
<div class="theme-light"></div>
<div class="theme-dark"></div>
</div>
<div class="toggle-switch"></div>
</div>
</div>
<div id="section-navigator">
<div data-direction="next" class="arrow button down"></div>
<div data-direction="prev" class="arrow button up"></div>
<div class="text">Home</div>
</div>
<div id="mobile-nav">
<div class="nav-button button"></div>
<div class="nav-links-wrap"><a href="#about">About Me</a><a href="#experience">Experience & Education</a><a href="#skills">Skills</a><a href="#mywork">My Work</a><a href="#contact">Contact</a></div>
</div>
<div data-popup-name="contact" class="full-popup-wrap">
<div class="close-popup"><img src="_pics/icons/x_white.svg"/>
<div class="text">Close</div>
</div>
<div class="content-wrap">
<h2 class="main-title">Send a Message </h2>
<form id="contact-form" method="POST" class="form-wrap">
<div class="row">
<div class="item">
<div class="row label-text">
<div class="line"></div>
<label for="name" class="input-label">Name </label>
<div class="line"> </div>
</div>
<input type="text" name="name" required="required"/>
</div>
<div class="item">
<div class="row label-text">
<div class="line"></div>
<label for="email" class="input-label">Email </label>
<div class="line"></div>
</div>
<input type="email" name="email" required="required"/>
</div>
</div>
<div class="row">
<div class="item">
<div class="row label-text">
<div class="line"></div>
<label for="phone" class="input-label">Phone </label>
<div class="line"></div>
</div>
<input type="tel" name="phone" pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}" required="required"/>
</div>
<div class="item">
<div class="row label-text">
<div class="line"></div>
<label for="contact-method" class="input-label">Preferred Contact </label>
<div class="line"></div>
</div>
<div class="row preferred-contact">
<input type="radio" id="contact-email" name="contact-method" value="email"/>
<label for="contact-email">E-Mail </label>
<input type="radio" id="contact-phone" name="contact-method" value="phone"/>
<label for="contact-phone">Phone </label>
</div>
</div>
</div>
<div class="row text-box-wrap">
<div class="item">
<div class="row label-text">
<div class="line"></div>
<label for="phone" class="input-label">Message</label>
<div class="line"></div>
</div>
<textarea name="message" required="required"></textarea>
</div>
</div>
<div class="row bottom-buttons">
<div class="loader"></div>
<input type="submit" value="Send" class="button"/>
<div class="button close-popup cancel">Cancel</div>
</div>
</form>
</div>
<div class="overlay"></div>
</div>
<div data-popup-name="give" class="full-popup-wrap work">
<div class="overlay"></div>
<div class="close-popup"><img src="_pics/icons/x_white.svg"/>
<div class="text">Close</div>
</div>
<div class="content-wrap">
<div style="background: rgb(0,140,86);" class="header-color"></div>
<div class="left-side">
<div class="img-wrap"><img src="_pics/my-work/give.png"/></div>
<div class="title-wrap desktop-hide">
<h2>Give.org | BBB Wise Giving Alliance</h2><a href="https://give.org" target="_blank">https://give.org</a>
</div>
<div class="technology-used">
<h3>Technology Used</h3>
<div class="line"></div>
<div class="items-wrap">
<ul>
<li>HTML / CSS</li>
<li>JavaScript / jQuery / AJAX</li>
<li>C# </li>
<li>ASP.NET MVC Architecture</li>
<li>Sitefinity CMS</li>
<li>Amazon Web Services (AWS)</li>
</ul>
</div>
</div>
</div>
<div class="right-side">
<div class="title-wrap mobile-hide">
<h2 style="color: #fff;">Give.org | BBB Wise Giving Alliance</h2><a href="https://give.org" target="_blank">https://give.org</a>
</div>
<div class="responsibilities-wrap">
<h3>Responsibilities / Accomplishments</h3>
<div class="line"></div>
<ul>
<li>Provided requested front-end and back-end maintenance for the website utilizing ASP.NET MVC framework and Sitefinity content management system.</li>
<li>Developed front-end features and design changes with HTML, CSS, JavaScript, jQuery, and AJAX within the Sitefinity CMS.</li>
<li>Created various .cs and .cshtml files within the MVC architecture using C# and Razor syntax to develop new widgets and update existing ones, allowing client access to new CMS features</li>
<li>Implemented complete site redesign on over 200 pages of the website. The various designs were provided in the form of PSD files and I was in charge of building the front-end interface that would perfectly mirror the designs. I also provided back-end C# code that would handle complete functionality of the included components</li>
<li>Assisted with site migration to Amazon Web Services (AWS); deployed site and corresponding databases to run on AWS EC2 and RDS with open communication between them.</li>
<li>Redeveloped site pages to provide a better and more attractive user interface design.</li>
<li>Implemented Google Analytics events to provide client with more in-depth traffic statistics.</li>
<li>Implemented multiple API's to retrieve and display various information on the site</li>
</ul>
</div><a href="https://give.org/" target="_blank" style="background: rgb(0,140,86); color: #fff" class="button">Visit Site</a>
</div>
</div>
</div>
<div data-popup-name="broadtime" class="full-popup-wrap work">
<div class="overlay"></div>
<div class="close-popup"><img src="_pics/icons/x_white.svg"/>
<div class="text">Close</div>
</div>
<div class="content-wrap">
<div style="background: rgb(80,80,80);" class="header-color"></div>
<div class="left-side">
<div class="img-wrap"><img src="_pics/my-work/broadtime.png"/></div>
<div class="title-wrap desktop-hide">
<h2>Various Apps | Broadtime</h2>
</div>
<div class="technology-used">
<h3>Technology Used</h3>
<div class="line"></div>
<div class="items-wrap">
<ul>
<li>Swift</li>
<li>C#</li>
<li>CocoaPods </li>
<li>Kotlin</li>
<li>xCode</li>
<li>Android Studio</li>
</ul>
</div>
</div>
</div>
<div class="right-side">
<div class="title-wrap mobile-hide">
<h2 style="color: #fff;">Broadtime</h2>
</div>
<div class="overview-wrap">
<h3>Overview</h3>
<div class="line"></div>
<p>BroadTime is a company that provides iOS and Android apps to locally known records stores.</p>
</div>
<div class="responsibilities-wrap">
<h3>Responsibilities / Accomplishments</h3>
<div class="line"></div>
<ul>
<li>Manage various iOS and Android apps used by record stores. </li>
<li>Successfully implemented Swift code migration in order to allow the iOS apps to support newer devices. </li>
<li>Integrated tools to make the Apple Apps Store submission process simpler.</li>
</ul>
</div>
</div>
</div>
</div>
<div data-popup-name="nsrec" class="full-popup-wrap work">
<div class="overlay"></div>
<div class="close-popup"><img src="_pics/icons/x_white.svg"/>
<div class="text">Close</div>
</div>
<div class="content-wrap">
<div style="background: rgb(50,69,135);" class="header-color"></div>
<div class="left-side">
<div class="img-wrap"><img src="_pics/my-work/nsrec.png"/></div>
<div class="title-wrap desktop-hide">
<h2>NSREC | 233 Analytics</h2><a href="https://www.nsrec.com/" target="_blank">https://www.nsrec.com/</a>
</div>
<div class="technology-used">
<h3>Technology Used</h3>
<div class="line"></div>
<div class="items-wrap">
<ul>
<li>HTML / CSS</li>
<li>JavaScript / jQuery / AJAX</li>
<li>PHP</li>
<li>MySQL</li>
<li>React</li>
<li>Express</li>
<li>Wordpress</li>
</ul>
</div>
</div>
</div>
<div class="right-side">
<div class="title-wrap mobile-hide">
<h2 style="color: #fff;">NSREC | 233 Analytics</h2><a href="https://www.nsrec.com/" target="_blank">https://www.nsrec.com/</a>
</div>
<div class="responsibilities-wrap">
<h3>Responsibilities / Accomplishments</h3>
<div class="line"></div>
<ul>
<li>Convert front-end features that were built with React/JS to a PHP built Wordpress feature that's easily customizable by the client</li>
<li>Implement a feature that allows the client to choose which content should be displayed on the website based on the year they select. This allows the client to create yearly content at their own pace and release it whenever they see fit. </li>
<li>Develop various shortcode functions to be displayed on the site. </li>
<li>Build Wordpress theme to replicate original front-end built with React.</li>
<li>Migrate site to allow front-end and back-end to be hosted on same server.</li>
</ul>
</div>
<div class="row flex-start"><a href="https://www.nsrec.com/" target="_blank" style="background: rgb(50,69,135); color: #fff" class="button">Visit Site</a></div>
</div>
</div>
</div>
<div data-popup-name="macys" class="full-popup-wrap work">
<div class="overlay"></div>
<div class="close-popup"><img src="_pics/icons/x_white.svg"/>
<div class="text">Close</div>
</div>
<div class="content-wrap">
<div style="background: rgb(231,0,0);" class="header-color"></div>
<div class="left-side">
<div class="img-wrap"><img src="_pics/my-work/macys.png"/></div>
<div class="title-wrap desktop-hide">
<h2>Macy's Testing Site | 233 Analytics</h2>
</div>
<div class="technology-used">
<h3>Technology Used</h3>
<div class="line"></div>
<div class="items-wrap">
<ul>
<li>HTML / CSS</li>
<li>JavaScript / jQuery / AJAX</li>
<li>C#</li>
<li>ASP.NET MVC Architecture</li>
</ul>
</div>
</div>
</div>
<div class="right-side">
<div class="title-wrap mobile-hide">
<h2 style="color: #fff;">Macy's Testing Site | 233 Analytics</h2>
</div>
<div class="overview-wrap">
<h3>Overview</h3>
<div class="line"></div>
<p>233 Analytics maintained a web-based app for the Macy's stores. This app was used to help compile results from a variety of physical testing devices used by a many Macy's stores across the eastern shore. The users/managers of this app are able to select from a wide range of regions and districts to build a results table from.</p>
</div>
<div class="responsibilities-wrap">
<h3>Responsibilities / Accomplishments</h3>
<div class="line"></div>
<ul>
<li>Reduced total page loading times from about 5 minutes down to less than 5 seconds by reducing database deadlocks, converting to more optimal datatypes, and implementing an AJAX based workflow to reduce the amount of unneccessary loaded data.</li>
<li>Set up a feature that allows the client export a readable csv spreadsheet that includes all test results from a given region.</li>
</ul>
</div>
</div>
</div>
</div>
<div data-popup-name="connectva" class="full-popup-wrap work">
<div class="overlay"></div>
<div class="close-popup"><img src="_pics/icons/x_white.svg"/>
<div class="text">Close</div>
</div>
<div class="content-wrap">
<div style="background: #002E5D;" class="header-color"></div>
<div class="left-side">
<div class="img-wrap"><img src="_pics/my-work/connectva.png"/></div>
<div class="title-wrap desktop-hide">
<h2>ConnectVa | The Community Foundation</h2><a href="https://www.connectva.org/" target="_blank">https://www.connectva.org/</a>
</div>
<div class="technology-used">
<h3>Technology Used</h3>
<div class="line"></div>
<div class="items-wrap">
<ul>
<li>HTML / CSS</li>
<li>PHP</li>
<li>Wordpress</li>
<li>Docker</li>
<li>Django</li>
<li>AWS</li>
<li>Python</li>
</ul>
</div>
</div>
</div>
<div class="right-side">
<div class="title-wrap mobile-hide">
<h2 style="color: #fff;">ConnectVa | The Community Foundation</h2><a href="https://www.connectva.org/" target="_blank">https://www.connectva.org/</a>
</div>
<div class="responsibilities-wrap">
<h3>Responsibilities / Accomplishments</h3>
<div class="line"></div>
<ul>
<li>Provided front-end and back-end maintenance for the Wordpress built website using PHP </li>
<li>Created and updated custom and premade WordPress functions using PHP.</li>
<li>Developed front-end features and design changes with HTML, CSS, JavaScript, jQuery, and AJAX within the Sitefinity CMS.</li>
<li>Developed various forms using PHP to save custom metadata to account for new user roles within the database.</li>
<li>Maintained a custom API built with Django that was used for a major feature of the site.</li>
</ul>
</div>
<div class="row flex-start"><a href="https://www.connectva.org/" target="_blank" style="background: #002E5D; color: #fff" class="button">Visit Site</a></div>
</div>
</div>
</div>
<div data-popup-name="chalk" class="full-popup-wrap work">
<div class="overlay"></div>
<div class="close-popup"><img src="_pics/icons/x_white.svg"/>
<div class="text">Close</div>
</div>
<div class="content-wrap">
<div style="background: #459aeb;" class="header-color"></div>
<div class="left-side">
<div class="img-wrap"><img src="_pics/my-work/chalk.png"/></div>
<div class="title-wrap desktop-hide">
<h2>NSREC | 233 Analytics</h2><a href="https://chalkcoaching.com/" target="_blank">https://chalkcoaching.com/</a>
</div>
<div class="technology-used">
<h3>Technology Used</h3>
<div class="line"></div>
<div class="items-wrap">
<ul>
<li>HTML / CSS</li>
<li>JavaScript / jQuery / AJAX</li>
<li>Firebase</li>
<li>BigQuery</li>
<li>Google Cloud Functions</li>
<li>React</li>
<li>Typescript</li>
<li>Redux</li>
</ul>
</div>
</div>
</div>
<div class="right-side">
<div class="title-wrap mobile-hide">
<h2 style="color: #fff;">CHALK Coaching App</h2><a href="https://chalkcoaching.com/" target="_blank">https://chalkcoaching.com/</a>
</div>
<div class="responsibilities-wrap">
<h3>Responsibilities / Accomplishments</h3>
<div class="line"></div>
<ul>
<li>Developed features to give users with elevated permissions the ability to view data and statistics in a simple and graphical way.</li>
<li>Built database tables and developed complex queries used to store data in a specific way that proved to be more useful for the administrators. </li>
<li>Co Developed features to give the owners the ability to create and manage users with several new administrative roles that had their own respective permissions throughout the site. </li>
<li>Lead prototype demos to demonstrate value and solicit feedback from key stakeholders, promoting continuous improvement and iterative development as per SAFE Agile principles</li>
</ul>
</div>
<div class="row flex-start"><a href="https://chalkcoaching.com/" target="_blank" style="background: #459aeb; color: #fff" class="button">Visit Site</a></div>
</div>
</div>
</div>
<div class="message-alert-wrap message-sent">
<div class="content"><img src="_pics/icons/check.svg"/>
<h3 class="message">Message Sent</h3>
</div>
</div>
</div>
</body>
</html>