-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1403 lines (1291 loc) · 112 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>
<!-- Metadata -->
<title>Tyler Hawkins - Web Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="UTF-8">
<meta name="description" content="I'm an experienced software engineer, writer, speaker, leader, and accessibility advocate. Check out some of my projects here!">
<meta name="keywords" content="web portfolio, hire me, web developer, UI developer, software engineer, senior software engineer, frontend, React, AngularJS, MEAN, MERN, JavaScript, HTML, HTML5, CSS, CSS3, a11y, accessibility, speaker, writer, leader">
<meta name="author" content="Tyler Hawkins">
<!-- Google+ -->
<meta itemprop="name" content="Tyler Hawkins - Web Portfolio">
<meta itemprop="description" content="I'm an experienced software engineer, writer, speaker, leader, and accessibility advocate. Check out some of my projects here!">
<meta itemprop="image" content="http://tylerhawkins.info/201R/Images/Profile.jpeg">
<!-- Twitter -->
<meta name="twitter:title" content="Tyler Hawkins - Web Portfolio">
<meta name="twitter:description" content="I'm an experienced software engineer, writer, speaker, leader, and accessibility advocate. Check out some of my projects here!">
<meta name="twitter:image:src" content="http://tylerhawkins.info/201R/Images/Profile.jpeg">
<!-- Open Graph data -->
<meta property="og:title" content="Tyler Hawkins - Web Portfolio" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://tylerhawkins.info/201R/" />
<meta property="og:image" content="http://tylerhawkins.info/201R/Images/Profile.jpeg" />
<meta property="og:description" content="I'm an experienced software engineer, writer, speaker, leader, and accessibility advocate. Check out some of my projects here!" />
<meta property="og:site_name" content="Tyler Hawkins - Web Portfolio" />
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Montserrat:400,700,900">
<link rel="stylesheet" type="text/css" href="styles/style.css" >
<!-- JavaScript -->
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="scripts/script.js"></script>
</head>
<body>
<header class="header" id="home">
<img src="Images/Profile.jpeg" alt="" class="profile-pic" />
<h1 id="myName" class="text-uppercase">Tyler Hawkins</h1>
<p>thawkin3@byu.net</p>
<div class="social-media">
<a class="social-media-link" href="https://github.com/thawkin3" target="_blank" rel="noopener noreferrer"><img class="social-media-icon" src="Images/SocialIcons/github-logo.svg" alt="GitHub profile" /></a>
<a class="social-media-link" href="https://medium.com/@thawkin3" target="_blank" rel="noopener noreferrer"><img class="social-media-icon" src="Images/SocialIcons/medium-logo.svg" alt="Medium profile" /></a>
<a class="social-media-link" href="https://dev.to/thawkin3" target="_blank" rel="noopener noreferrer"><img class="social-media-icon" src="Images/SocialIcons/dev-logo.svg" alt="Dev profile" /></a>
<a class="social-media-link" href="https://www.freecodecamp.org/news/author/tyler-hawkins/" target="_blank" rel="noopener noreferrer"><img class="social-media-icon" src="Images/SocialIcons/freecodecamp-logo.svg" alt="freeCodeCamp profile" /></a>
<a class="social-media-link" href="https://www.linkedin.com/in/tyler-hawkins-2b147513b/" target="_blank" rel="noopener noreferrer"><img class="social-media-icon" src="Images/SocialIcons/linkedin-logo.svg" alt="LinkedIn profile" /></a>
</div>
</header>
<nav class="navbar">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar" aria-label="Toggle Navigation Menu">
<span class="icon-bar top-bar"></span>
<span class="icon-bar middle-bar"></span>
<span class="icon-bar bottom-bar"></span>
</button>
<p class="navbar-brand pull-right">Menu</p>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<div class="nav navbar-nav">
<ul class="first-list">
<li><a href="#applications" class="text-uppercase">Web Applications</a></li>
<li><a href="#webDesign" class="text-uppercase">Website Designs</a></li>
<li><a href="#microservices" class="text-uppercase">Microservices</a></li>
<li><a href="#dataVisualizations" class="text-uppercase">Data Visualizations</a></li>
<li><a href="#games" class="text-uppercase">Games</a></li>
</ul>
<ul class="second-list">
<li><a href="#about" class="text-uppercase">About</a></li>
<li><a href="#skills" class="text-uppercase">Skills</a></li>
<li><a href="#work" class="text-uppercase">Work Experience</a></li>
</ul>
</div>
</div>
</nav>
<main>
<section class="container" id="applications">
<h2 class="text-uppercase">Web Applications</h2>
<div class="row">
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">JS Data Structures</h3>
<a href="../js-data-structures-and-algorithms/storybook-dist" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/JSDataStructuresAndAlgorithms.png" alt="JS Data Structures and Algorithms" /></a>
<div class="projectNotes">
<p class="projectDescription">npm package and learning tool complete with a playground of interactive examples.</p>
<p class="projectBuiltWith"><b>Built with:</b> Vanilla JavaScript, React.js, Storybook</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/js-data-structures-and-algorithms" target="_blank" rel="noopener noreferrer" aria-label="View 'JS Data Structures' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Webpack Demos</h3>
<a href="https://github.com/thawkin3/webpack-demos" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/WebpackDemos.png" alt="Webpack Demos" /></a>
<div class="projectNotes">
<p class="projectDescription">Example demos for key features in Webpack, including various loaders and plugins.</p>
<p class="projectBuiltWith"><b>Built with:</b> Webpack 4, Vanilla JavaScript, React.js</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/webpack-demos" target="_blank" rel="noopener noreferrer" aria-label="View 'Webpack Demos' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">React Concepts Demo</h3>
<a href="../react-concepts-demo/build" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/ReactConceptsDemo.png" alt="React Concepts Demo" /></a>
<div class="projectNotes">
<p class="projectDescription">Example demos to illustrate different key pieces of React's functionality, including some of its newest features.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js, React Router</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/react-concepts-demo" target="_blank" rel="noopener noreferrer" aria-label="View 'React Concepts Demo' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Node.js Event Loop</h3>
<a href="https://nodejs-event-loop-demo.herokuapp.com" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/NodejsEventLoop.png" alt="Node.js Event Loop" /></a>
<div class="projectNotes">
<p class="projectDescription">Demo app for better understanding the Node.js event loop.</p>
<p class="projectBuiltWith"><b>Built with:</b> Node.js, Express, Vanilla JavaScript, Heroku</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/nodejs-event-loop-demo" target="_blank" rel="noopener noreferrer" aria-label="View 'Node.js Event Loop' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Tables and Grids</h3>
<a href="../tables-and-grids/storybook-dist/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/TablesAndGrids.png" alt="Tables and Grids" /></a>
<div class="projectNotes">
<p class="projectDescription">Examples and guidance for building accessible tables and grids in React.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js, Storybook</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/tables-and-grids" target="_blank" rel="noopener noreferrer" aria-label="View 'Tables and Grids' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Article Recommendation Engine</h3>
<a href="https://github.com/thawkin3/article-recommendation-service" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/ArticleRecommendationEngine.png" alt="Article Recommendation Engine" /></a>
<div class="projectNotes">
<p class="projectDescription">Similarity search using the Pinecone SDK to find articles that are similar to ones you've read in the past.</p>
<p class="projectBuiltWith"><b>Built with:</b> Python, Flask, Pinecone SDK</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/article-recommendation-service" target="_blank" rel="noopener noreferrer" aria-label="View 'Article Recommendation Engine' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">A11y Workshop</h3>
<a href="../a11y-workshop/build/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/A11yWorkshop.png" alt="A11y Workshop" /></a>
<div class="projectNotes">
<p class="projectDescription">Workshop on common accessibility issues, how to identify them, and how to correct them.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js, React Router</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/a11y-workshop" target="_blank" rel="noopener noreferrer" aria-label="View 'A11y Workshop' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Accessible Tooltips</h3>
<a href="../accessible-tooltips/build/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/AccessibleTooltips.png" alt="Accessible Tooltips" /></a>
<div class="projectNotes">
<p class="projectDescription">Examples and guidance for building accessible tooltips in React.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/accessible-tooltips" target="_blank" rel="noopener noreferrer" aria-label="View 'Accessible Tooltips' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Nested Interactive Content</h3>
<a href="../a11y-nested-interactive-content/build/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/NestedInteractiveContent.png" alt="Nested Interactive Content" /></a>
<div class="projectNotes">
<p class="projectDescription">Examples and guidance for building accessible nested interactive content in React.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/a11y-nested-interactive-content" target="_blank" rel="noopener noreferrer" aria-label="View 'Nested Interactive Content' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Card Components</h3>
<a href="../a11y-card-components/build/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/CardComponents.png" alt="Card Components" /></a>
<div class="projectNotes">
<p class="projectDescription">Examples and guidance for building accessible card components in React.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/a11y-card-components" target="_blank" rel="noopener noreferrer" aria-label="View 'Card Components' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Accessible Listboxes</h3>
<a href="../a11y-listbox/build/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/AccessibleListboxes.png" alt="Accessible Listboxes" /></a>
<div class="projectNotes">
<p class="projectDescription">Examples and guidance for building accessible listboxes in React.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/a11y-listbox" target="_blank" rel="noopener noreferrer" aria-label="View 'Accessible Listboxes' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Fun Facts SMS</h3>
<a href="https://github.com/thawkin3/fun-facts-sms" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/FunFactsSMS.png" alt="Fun Facts SMS" /></a>
<div class="projectNotes">
<p class="projectDescription">App that allows users to enter their phone number to receive an SMS text with a fun fact.</p>
<p class="projectBuiltWith"><b>Built with:</b> Node.js, Express, Infobip API</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/fun-facts-sms" target="_blank" rel="noopener noreferrer" aria-label="View 'Fun Facts SMS' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">NES Games API</h3>
<a href="https://github.com/thawkin3/nes-games-api" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/NESGamesAPI.png" alt="NES Games API" /></a>
<div class="projectNotes">
<p class="projectDescription">Simple REST API. Tests written with Insomnia and Inso. Run in a CI pipeline using GitHub Actions.</p>
<p class="projectBuiltWith"><b>Built with:</b> Node.js, Express, Insomnia, Inso CLI, GitHub Actions</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/nes-games-api" target="_blank" rel="noopener noreferrer" aria-label="View 'NES Games API' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">API Wrapper Demo</h3>
<a href="../boundaries-demo/build/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/APIWrapperDemo.png" alt="API Wrapper Demo" /></a>
<div class="projectNotes">
<p class="projectDescription">Demo of some concepts from Clean Code, Chapter 8. Thin layers of abstraction and API wrappers.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js, Moment.js, Day.js, date-fns</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/boundaries-demo" target="_blank" rel="noopener noreferrer" aria-label="View 'API Wrapper Demo' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Plagiarism Checker</h3>
<a href="https://github.com/thawkin3/plagiarism-checker" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/PlagiarismChecker.png" alt="Plagiarism Checker" /></a>
<div class="projectNotes">
<p class="projectDescription">Similarity search using the Pinecone SDK to find articles that contain the same or similar content as what's entered by the user.</p>
<p class="projectBuiltWith"><b>Built with:</b> Python, Flask, Pinecone SDK</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/plagiarism-checker" target="_blank" rel="noopener noreferrer" aria-label="View 'Plagiarism Checker' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Customer Service Chatbot</h3>
<a href="https://github.com/thawkin3/pinecone-demo" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/CustomerServiceChatbot.png" alt="Customer Service Chatbot" /></a>
<div class="projectNotes">
<p class="projectDescription">Similarity search using the Pinecone SDK to find similar questions from a dataset.</p>
<p class="projectBuiltWith"><b>Built with:</b> Python, Flask, Pinecone SDK</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/pinecone-demo" target="_blank" rel="noopener noreferrer" aria-label="View 'Customer Service Chatbot' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Readit</h3>
<a href="../reddit-clone/build/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/Readit.png" alt="Readit" /></a>
<div class="projectNotes">
<p class="projectDescription">Reddit clone app. View subreadits, posts, comments, and users.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js, React Router, Apollo Client, Slash GraphQL</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/reddit-clone" target="_blank" rel="noopener noreferrer" aria-label="View 'Readit' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Pokédex Slash GraphQL</h3>
<a href="../pokedex-slash-graphql/build/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/PokedexSlashGraphQL.png" alt="Pokédex Slash GraphQL" /></a>
<div class="projectNotes">
<p class="projectDescription">Gotta catch 'em all. Mark which ones you've captured. Filter your Pokémon by type or captured status.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js, Material UI, Slash GraphQL</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/pokedex-slash-graphql" target="_blank" rel="noopener noreferrer" aria-label="View 'Pokédex Slash GraphQL' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Puppy Playdate</h3>
<a href="../puppy-playdate/build/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/PuppyPlaydate.png" alt="Puppy Playdate" /></a>
<div class="projectNotes">
<p class="projectDescription">Tinder clone app, but for puppies. Find the perfect friend for your new puppy.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js, Apollo Client, Slash GraphQL</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/puppy-playdate" target="_blank" rel="noopener noreferrer" aria-label="View 'Puppy Playdate' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Dad Joke "Dadabase"</h3>
<a href="https://dad-joke-dadabase.herokuapp.com" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/DadJokeDadabase.png" alt="Dad Joke Dadabase" /></a>
<div class="projectNotes">
<p class="projectDescription">Where do you keep your dad jokes? In a "dadabase" of course. Rate my jokes.</p>
<p class="projectBuiltWith"><b>Built with:</b> Vanilla JavaScript, Heroku, GraphQL, JSON Server</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/dad-joke-dadabase" target="_blank" rel="noopener noreferrer" aria-label="View 'Dad Joke Dadabase' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">HTML to PDF Demo</h3>
<a href="../html-to-pdf-demo/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/HtmlToPdfDemo.png" alt="HTML to PDF Demo" /></a>
<div class="projectNotes">
<p class="projectDescription">Demo app exploring various PDF export solutions.</p>
<p class="projectBuiltWith"><b>Built with:</b> Vanilla JavaScript, DocRaptor, pdfmake, jsPDF</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/html-to-pdf-demo" target="_blank" rel="noopener noreferrer" aria-label="View 'HTML to PDF Demo' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Single-SPA Demo</h3>
<a href="https://thawkin3-single-spa-demo.herokuapp.com/page1" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/SingleSpaDemo.png" alt="Single-SPA Demo" /></a>
<div class="projectNotes">
<p class="projectDescription">Simple demo app resulting from my single-spa tutorial.</p>
<p class="projectBuiltWith"><b>Built with:</b> single-spa, React.js, React Router, Heroku, AWS S3</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/single-spa-demo-root-config" target="_blank" rel="noopener noreferrer" aria-label="View 'Single-SPA Demo' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Unit Price Calculator</h3>
<a href="http://unit-price-calculator.herokuapp.com" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/UnitPriceCalculator.png" alt="Unit Price Calculator" /></a>
<div class="projectNotes">
<p class="projectDescription">Uses seven new JavaScript features from ES2020.</p>
<p class="projectBuiltWith"><b>Built with:</b> Vanilla JavaScript, Heroku</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/unit-price-calculator" target="_blank" rel="noopener noreferrer" aria-label="View 'Unit Price Calculator' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Pun Generator</h3>
<a href="../dom-testing-demo/src/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/PunGenerator.png" alt="Pun Generator" /></a>
<div class="projectNotes">
<p class="projectDescription">View some terrible puns with this app. Experimental test strategy using DOM Testing Library.</p>
<p class="projectBuiltWith"><b>Built with:</b> Vanilla JavaScript, DOM Testing Library</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/dom-testing-demo" target="_blank" rel="noopener noreferrer" aria-label="View 'Pun Generator' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Totes Votes</h3>
<a href="http://tylerhawkins.info:3012/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/TotesVotes.png" alt="Totes Votes" /></a>
<div class="projectNotes">
<p class="projectDescription">Full stack voting app complete with authentication and CRUD API.</p>
<p class="projectBuiltWith"><b>Built with:</b> MongoDB, Express, AngularJS, Node.js, C3.js</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/totes-votes" target="_blank" rel="noopener noreferrer" aria-label="View 'Totes Votes' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">JavaScript 30 Challenge</h3>
<a href="../javascript30/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/JavaScript30.png" alt="JavaScript 30" /></a>
<div class="projectNotes">
<p class="projectDescription">30 JavaScript apps in 30 days.</p>
<p class="projectBuiltWith"><b>Built with:</b> Vanilla JavaScript</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/javascript30" target="_blank" rel="noopener noreferrer" aria-label="View 'JavaScript 30 Challenge' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Office Competition Ranking</h3>
<a href="http://tylerhawkins.info:3021/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/OfficeCompetitionRanking.png" alt="Office Competition Ranking" /></a>
<div class="projectNotes">
<p class="projectDescription">Full stack app for leaderboard rankings for games like ping pong.</p>
<p class="projectBuiltWith"><b>Built with:</b> MongoDB, Express, Node.js, Passport, jQuery</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/office-competition-ranking" target="_blank" rel="noopener noreferrer" aria-label="View 'Office Competition Ranking' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Crossy Block</h3>
<a href="http://tylerhawkins.info:3011/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/CrossyBlock.png" alt="Crossy Block" /></a>
<div class="projectNotes">
<p class="projectDescription">HTML5 Frogger-like game.</p>
<p class="projectBuiltWith"><b>Built with:</b> MongoDB, Express, AngularJS, Node.js, Canvas element, requestAnimationFrame</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/crossyBlock" target="_blank" rel="noopener noreferrer" aria-label="View 'Crossy Block' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Venue Finder</h3>
<a href="http://tylerhawkins.info:3016/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/VenueFinder.png" alt="Venue Finder" /></a>
<div class="projectNotes">
<p class="projectDescription">App similar to Yelp to help you find great places for entertainment in any geographic location.</p>
<p class="projectBuiltWith"><b>Built with:</b> MongoDB, Express, AngularJS, Node.js, Yelp API</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/venue-finder" target="_blank" rel="noopener noreferrer" aria-label="View 'Venue Finder' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">MongoDBreakout</h3>
<a href="http://tylerhawkins.info:3002/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/MongoDBreakout.png" alt="MongoDBreakout" /></a>
<div class="projectNotes">
<p class="projectDescription">Knock-off Breakout game.</p>
<p class="projectBuiltWith"><b>Built with:</b> MongoDB, Express, AngularJS, Node.js, Canvas element, requestAnimationFrame</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/MongoDBreakout" target="_blank" rel="noopener noreferrer" aria-label="View 'MongoDBreakout' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Chat Sockets</h3>
<a href="http://tylerhawkins.info:3017/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/ChatSockets.png" alt="Chat Sockets" /></a>
<div class="projectNotes">
<p class="projectDescription">WebRTC app that creates a simple chatroom. Complete with a Giphy integration.</p>
<p class="projectBuiltWith"><b>Built with:</b> MongoDB, Express, AngularJS, Node.js, Socket.io, Giphy API</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/chat-sockets" target="_blank" rel="noopener noreferrer" aria-label="View 'Chat Sockets' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Qrappy Bird</h3>
<a href="QrappyBird/#/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/QrappyBird.png" alt="Qrappy Bird" /></a>
<div class="projectNotes">
<p class="projectDescription">Everyone's favorite Flappy Bird knock-off, complete with a theme song.</p>
<p class="projectBuiltWith"><b>Built with:</b> MongoDB, Express, AngularJS, Node.js, requestAnimationFrame</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/QrappyBird" target="_blank" rel="noopener noreferrer" aria-label="View 'Qrappy Bird' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Pixel Mania</h3>
<a href="http://tylerhawkins.info:3004/login" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/PixelMania.png" alt="Pixel Mania" /></a>
<div class="projectNotes">
<p class="projectDescription">Multiplayer game (WebRTC) similar to agar.io</p>
<p class="projectBuiltWith"><b>Built with:</b> MongoDB, Express, AngularJS, Node.js, Socket.io, Canvas element, requestAnimationFrame</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/PixelMania" target="_blank" rel="noopener noreferrer" aria-label="View 'Pixel Mania' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Corporate BS Generator</h3>
<a href="http://tylerhawkins.info:3009/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/CorporateBSGenerator.png" alt="Corporate BS Generator" /></a>
<div class="projectNotes">
<p class="projectDescription">Parody app for helping you communicate with your boss.</p>
<p class="projectBuiltWith"><b>Built with:</b> Express, Node.js, jQuery</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/CorporateBSGenerator" target="_blank" rel="noopener noreferrer" aria-label="View 'Corporate BS Generator' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Bubble Ball</h3>
<a href="../BubbleBall/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/BubbleBall.png" alt="Bubble Ball" /></a>
<div class="projectNotes">
<p class="projectDescription">HTML5 game in which you must dodge all the incoming obstacles to stay alive.</p>
<p class="projectBuiltWith"><b>Built with:</b> Canvas element, requestAnimationFrame, Vanilla JavaScript</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/BubbleBall" target="_blank" rel="noopener noreferrer" aria-label="View 'Bubble Ball' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Stacks on Stacks on Stacks</h3>
<a href="../stacks-on-stacks-on-stacks/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/StacksOnStacksOnStacks.png" alt="Stacks on Stacks on Stacks" /></a>
<div class="projectNotes">
<p class="projectDescription">HTML5 game in which you must jump on top of incoming platforms to make the tallest stack.</p>
<p class="projectBuiltWith"><b>Built with:</b> jQuery, CSS3 animations</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/stacks-on-stacks-on-stacks" target="_blank" rel="noopener noreferrer" aria-label="View 'Stacks on Stacks on Stacks' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">React+Redux Walking Skeleton</h3>
<a href="../redux-example/build/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/ReduxExample.png" alt="Redux Example" /></a>
<div class="projectNotes">
<p class="projectDescription">Walking skeleton of a React+Redux app built using create-react-app.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js, Redux</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/redux-example" target="_blank" rel="noopener noreferrer" aria-label="View 'React+Redux Walking Skeleton' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Comment Board</h3>
<a href="http://tylerhawkins.info:3010/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/CommentBoard.png" alt="Comment Board" /></a>
<div class="projectNotes">
<p class="projectDescription">Post a comment and your name to contribute to the discussion.</p>
<p class="projectBuiltWith"><b>Built with:</b> MongoDB, Express, Node.js, jQuery</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/comments" target="_blank" rel="noopener noreferrer" aria-label="View 'Comment Board' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Markdown Previewer</h3>
<a href="../markdownPreviewer/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/MarkdownPreviewer.png" alt="Markdown Previewer" /></a>
<div class="projectNotes">
<p class="projectDescription">App that allows you to write marked up content and see the output side by side.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js, Marked library</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/markdownPreviewer" target="_blank" rel="noopener noreferrer" aria-label="View 'Markdown Previewer' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Free Code Camp Leaderboard</h3>
<a href="../freeCodeCampLeaderboard/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/FreeCodeCampLeaderboard.png" alt="Free Code Camp Leaderboard" /></a>
<div class="projectNotes">
<p class="projectDescription">Sortable/filterable table pulling in data from a webservice.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js, FreeCodeCamp API</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/freeCodeCampLeaderboard" target="_blank" rel="noopener noreferrer" aria-label="View 'Free Code Camp Leaderboard' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Recipe Box</h3>
<a href="../recipeBox/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/RecipeBox.png" alt="Recipe Box" /></a>
<div class="projectNotes">
<p class="projectDescription">App for storing your favorite recipes. CRUD API.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js, React Router, Local Storage</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/recipeBox" target="_blank" rel="noopener noreferrer" aria-label="View 'Recipe Box' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Conway's Game of Life</h3>
<a href="../gameOfLife/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/GameOfLife.png" alt="Conway's Game of Life" /></a>
<div class="projectNotes">
<p class="projectDescription">Interactive Conway's Game of Life simulation.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/gameOfLife" target="_blank" rel="noopener noreferrer" aria-label="View 'Conway's Game of Life' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Dungeon Crawler</h3>
<a href="../dungeonCrawler/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/DungeonCrawler.png" alt="Dungeon Crawler" /></a>
<div class="projectNotes">
<p class="projectDescription">Battle enemies, find weapons, eat food, defeat the boss.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/dungeon-crawler" target="_blank" rel="noopener noreferrer" aria-label="View 'Dungeon Crawler' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Drum Machine</h3>
<a href="../drum-machine/build/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/DrumMachine.png" alt="Drum Machine" /></a>
<div class="projectNotes">
<p class="projectDescription">Click on the drum pads to hear each sound.</p>
<p class="projectBuiltWith"><b>Built with:</b> React.js</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/drum-machine" target="_blank" rel="noopener noreferrer" aria-label="View 'Drum Machine' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Camera</h3>
<a href="../Camera/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/Camera.png" alt="Camera" /></a>
<div class="projectNotes">
<p class="projectDescription">Desktop camera app that lets you take a picture and download it using the HTML5 getUserMedia API. (Note: HTTPS is required.)</p>
<p class="projectBuiltWith"><b>Built with:</b> jQuery, getUserMedia API</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/Camera" target="_blank" rel="noopener noreferrer" aria-label="View 'Camera' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Quote Generator</h3>
<a href="QuoteGenerator/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/QuoteGenerator.png" alt="Quote Generator" /></a>
<div class="projectNotes">
<p class="projectDescription">Simple demo for reading JSON from a file via an AJAX request.</p>
<p class="projectBuiltWith"><b>Built with:</b> XMLHttpRequest, JSON</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/QuoteGenerator" target="_blank" rel="noopener noreferrer" aria-label="View 'Quote Generator' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Utah Weather</h3>
<a href="http://tylerhawkins.info:3015/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/UtahWeather.png" alt="Utah Weather" /></a>
<div class="projectNotes">
<p class="projectDescription">Simple demo for text suggestions, reading JSON from a file, and using a weather API service.</p>
<p class="projectBuiltWith"><b>Built with:</b> Express, Node.js, Weather API</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/UtahWeatherNode" target="_blank" rel="noopener noreferrer" aria-label="View 'Utah Weather' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">The Movie Database</h3>
<a href="Movies/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/Movies.png" alt="The Movie Database" /></a>
<div class="projectNotes">
<p class="projectDescription">Find a good movie to watch with this simple API demo with a sortable/filterable table.</p>
<p class="projectBuiltWith"><b>Built with:</b> jQuery, Movie Database API</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/Movies" target="_blank" rel="noopener noreferrer" aria-label="View 'The Movie Database' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Wikipedia Search Engine</h3>
<a href="Wikipedia/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/Wikipedia.png" alt="Wikipedia Search Engine" /></a>
<div class="projectNotes">
<p class="projectDescription">Search for top Wikipedia articles or find a random article.</p>
<p class="projectBuiltWith"><b>Built with:</b> jQuery, Wikipedia API, CSS3 Keyframe Animation</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/Wikipedia" target="_blank" rel="noopener noreferrer" aria-label="View 'Wikipedia Search Engine' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Best Music</h3>
<a href="http://tylerhawkins.info:3006/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/BestMusic.png" alt="Best Music" /></a>
<div class="projectNotes">
<p class="projectDescription">Upload your favorite songs and then vote on them.</p>
<p class="projectBuiltWith"><b>Built with:</b> MongoDB, Express, AngularJS, Node.js</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/BestMusic" target="_blank" rel="noopener noreferrer" aria-label="View 'Best Music' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Current Local Weather</h3>
<a href="Weather/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/Weather.png" alt="Current Local Weather" /></a>
<div class="projectNotes">
<p class="projectDescription">Uses your location and a weather API to find the current weather for your location.</p>
<p class="projectBuiltWith"><b>Built with:</b> Geolocation, Weather API</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/Weather" target="_blank" rel="noopener noreferrer" aria-label="View 'Current Local Weather' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Twitch TV Streamers</h3>
<a href="TwitchTV/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/TwitchTV.png" alt="Twitch TV" /></a>
<div class="projectNotes">
<p class="projectDescription">Simple app that uses the TwitchTV API to show which of your favorite streamers are online and which are offline.</p>
<p class="projectBuiltWith"><b>Built with:</b> jQuery, TwitchTV API</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/TwitchTV" target="_blank" rel="noopener noreferrer" aria-label="View 'Twitch TV Streamers' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">JavaScript Calculator</h3>
<a href="JSCalculator/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/JSCalculator.png" alt="JavaScript Calculator" /></a>
<div class="projectNotes">
<p class="projectDescription">Calculator UI capable of doing some simple math.</p>
<p class="projectBuiltWith"><b>Built with:</b> Vanilla JavaScript</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/JSCalculator" target="_blank" rel="noopener noreferrer" aria-label="View 'JavaScript Calculator' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Pomodoro Timer</h3>
<a href="PomodoroTimer/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/PomodoroTimer.png" alt="Pomodoro Timer" /></a>
<div class="projectNotes">
<p class="projectDescription">Timer UI to help keep you more productive.</p>
<p class="projectBuiltWith"><b>Built with:</b> Vanilla JavaScript</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/PomodoroTimer" target="_blank" rel="noopener noreferrer" aria-label="View 'Pomodoro Timer' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Pokedex</h3>
<a href="http://tylerhawkins.info:3003/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/Pokedex.png" alt="Pokedex" /></a>
<div class="projectNotes">
<p class="projectDescription">Gotta catch 'em all. Keep track of your Pokemon here by adding an image and a name.</p>
<p class="projectBuiltWith"><b>Built with:</b> MongoDB, Express, AngularJS, Node.js, C3.js</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/angularNodeMongoPoki" target="_blank" rel="noopener noreferrer" aria-label="View 'Pokedex' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Camper News</h3>
<a href="CamperNews/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/CamperNews.png" alt="Camper News" /></a>
<div class="projectNotes">
<p class="projectDescription">News feed delivered to you via the FreeCodeCamp API.</p>
<p class="projectBuiltWith"><b>Built with:</b> jQuery, FreeCodeCamp API</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/CamperNews" target="_blank" rel="noopener noreferrer" aria-label="View 'Camper News' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Firebase Chatroom</h3>
<a href="http://tylerhawkins.info:3007/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/FirebaseChat.png" alt="Firebase Chatroom" /></a>
<div class="projectNotes">
<p class="projectDescription">WebRTC chatroom built with a Firebase database from Google.</p>
<p class="projectBuiltWith"><b>Built with:</b> AngularJS, Firebase</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/firebaseTest" target="_blank" rel="noopener noreferrer" aria-label="View 'Firebase Chatroom' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
</div>
</section>
<div class="separator">
<a class="scroll-link" href="#applications"><img src="Images/up.png" alt="Scroll up to previous section (Web Applications)" /></a>
<a class="scroll-link" href="#home"><img src="Images/home.png" alt="Scroll to top of page" /></a>
<a class="scroll-link" href="#microservices"><img src="Images/down.png" alt="Scroll down to next section (Microservices)" /></a>
</div>
<section class="container" id="webDesign">
<h2 class="text-uppercase">Website Designs</h2>
<div class="row">
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Adoptly</h3>
<a href="Adoptly/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/Adoptly.png" alt="Adoptly" /></a>
<div class="projectNotes">
<p class="projectDescription">Website design concept.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/Adoptly" target="_blank" rel="noopener noreferrer" aria-label="View 'Adoptly' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Armando Perez</h3>
<a href="Armando/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/Armando.png" alt="Armando" /></a>
<div class="projectNotes">
<p class="projectDescription">Website design concept.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/Armando" target="_blank" rel="noopener noreferrer" aria-label="View 'Armando Perez' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Bass</h3>
<a href="Bass/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/Bass.png" alt="Bass" /></a>
<div class="projectNotes">
<p class="projectDescription">Website design concept.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/Bass" target="_blank" rel="noopener noreferrer" aria-label="View 'Bass' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">BestBite</h3>
<a href="BestBite/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/BestBite.png" alt="BestBite" /></a>
<div class="projectNotes">
<p class="projectDescription">Website design concept.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/BestBite" target="_blank" rel="noopener noreferrer" aria-label="View 'BestBite' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Bolt Network</h3>
<a href="BoltNetwork/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/BoltNetwork.png" alt="Bolt Network" /></a>
<div class="projectNotes">
<p class="projectDescription">Website design concept.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/BoltNetwork" target="_blank" rel="noopener noreferrer" aria-label="View 'Bolt Network' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Broadway</h3>
<a href="Broadway/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/Broadway.png" alt="Broadway" /></a>
<div class="projectNotes">
<p class="projectDescription">Website design concept.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/Broadway" target="_blank" rel="noopener noreferrer" aria-label="View 'Broadway' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Excursion</h3>
<a href="Excursion/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/Excursion.png" alt="Excursion" /></a>
<div class="projectNotes">
<p class="projectDescription">Website design concept.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/Excursion" target="_blank" rel="noopener noreferrer" aria-label="View 'Excursion' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Headlines</h3>
<a href="Headlines/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/Headlines.png" alt="Headlines" /></a>
<div class="projectNotes">
<p class="projectDescription">Website design concept.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/Headlines" target="_blank" rel="noopener noreferrer" aria-label="View 'Headlines' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Innovation Cloud</h3>
<a href="InnovationCloud/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/InnovationCloud.png" alt="Innovation Cloud" /></a>
<div class="projectNotes">
<p class="projectDescription">Website design concept.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/InnovationCloud" target="_blank" rel="noopener noreferrer" aria-label="View 'Innovation Cloud' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Junction</h3>
<a href="Junction/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/Junction.png" alt="Junction" /></a>
<div class="projectNotes">
<p class="projectDescription">Website design concept.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/Junction" target="_blank" rel="noopener noreferrer" aria-label="View 'Junction' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">MOVE</h3>
<a href="MOVE/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/MOVE.png" alt="MOVE" /></a>
<div class="projectNotes">
<p class="projectDescription">Website design concept.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/MOVE" target="_blank" rel="noopener noreferrer" aria-label="View 'MOVE' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">NewsRoom</h3>
<a href="Newsroom/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/Newsroom.png" alt="Newsroom" /></a>
<div class="projectNotes">
<p class="projectDescription">Website design concept.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/Newsroom" target="_blank" rel="noopener noreferrer" aria-label="View 'NewsRoom' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Pocketbook</h3>
<a href="Pocketbook/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/Pocketbook.png" alt="Pocketbook" /></a>
<div class="projectNotes">
<p class="projectDescription">Website design concept.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/Pocketbook" target="_blank" rel="noopener noreferrer" aria-label="View 'Pocketbook' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Red Eye Photography</h3>
<a href="RedEyePhotography/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/RedEyePhotography.png" alt="Red Eye Photography" /></a>
<div class="projectNotes">
<p class="projectDescription">Website design concept.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/RedEyePhotography" target="_blank" rel="noopener noreferrer" aria-label="View 'Red Eye Photography' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Shutterbugg</h3>
<a href="Shutterbugg/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/Shutterbugg.png" alt="Shutterbugg" /></a>
<div class="projectNotes">
<p class="projectDescription">Website design concept.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/201R/tree/master/Shutterbugg" target="_blank" rel="noopener noreferrer" aria-label="View 'Shutterbugg' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Technical Documentation Page</h3>
<a href="../TechnicalDocumentationPage/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/TechnicalDocumentationPage.png" alt="Technical Documentation Page" /></a>
<div class="projectNotes">
<p class="projectDescription">Example technical documentation for React Native.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/TechnicalDocumentationPage" target="_blank" rel="noopener noreferrer" aria-label="View 'Technical Documentation Page' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Product Landing Page</h3>
<a href="../ProductLandingPage/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/ProductLandingPage.png" alt="Product Landing Page" /></a>
<div class="projectNotes">
<p class="projectDescription">Example product landing page.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/ProductLandingPage" target="_blank" rel="noopener noreferrer" aria-label="View 'Product Landing Page' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
<div class="col-xs-6 col-sm-4">
<article class="tile">
<h3 class="projectName">Survey Form</h3>
<a href="../SurveyForm/" target="_blank" rel="noopener noreferrer"><img class="img-responsive" src="Images/Thumbnails/SurveyForm.png" alt="Survey Form" /></a>
<div class="projectNotes">
<p class="projectDescription">Example survey form to demonstrate styling with Bootstrap.</p>
<p class="projectBuiltWith"><b>Built with:</b> HTML, CSS, Bootstrap</p>
<p class="projectRepo"><a href="https://github.com/thawkin3/SurveyForm" target="_blank" rel="noopener noreferrer" aria-label="View 'Survey Form' project in GitHub">View in GitHub</a></p>
</div>
</article>
</div>
</div>
</section>
<div class="separator">
<a class="scroll-link" href="#webDesign"><img src="Images/up.png" alt="Scroll up to previous section (Website Designs)" /></a>
<a class="scroll-link" href="#home"><img src="Images/home.png" alt="Scroll to top of page" /></a>
<a class="scroll-link" href="#dataVisualizations"><img src="Images/down.png" alt="Scroll down to next section (Data Visualizations)" /></a>
</div>