-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·1221 lines (1137 loc) · 49.7 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>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="./img/developer.png" type="image/x-icon" size="32x32">
<link rel="manifest" href="/manifest.json">
<!-- reCAPTCHA -->
<script src="https://www.google.com/recaptcha/api.js"></script>
<!-- Netlify Identity -->
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
<meta name="google-site-verification" content="UhwWcRVM_ifrmLviOr7ocVbMYYk_FB0ldxDtHT8kNqs" />
<title>Jonathan Edwards Tech</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Shadows+Into+Light&display=swap' rel='stylesheet' type='text/css'>
<!-- Custom styles for this template -->
<link href="css/agency.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<style>
body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}
/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
background-color: #555;
color: white;
padding: 16px 20px;
border: none;
cursor: pointer;
opacity: 0.8;
position: fixed;
bottom: 23px;
right: 28px;
width: 280px;
}
/* The popup chat - hidden by default */
.chat-popup {
display: none;
position: fixed;
bottom: 0;
right: 15px;
border: 3px solid #f1f1f1;
z-index: 9;
}
/* Add styles to the form container */
.form-container {
max-width: 300px;
padding: 10px;
background-color: white;
}
/* Full-width textarea */
.form-container textarea {
width: 100%;
padding: 15px;
margin: 5px 0 22px 0;
border: none;
background: #f1f1f1;
resize: none;
min-height: 200px;
}
/* When the textarea gets focus, do something */
.form-container textarea:focus {
background-color: #ddd;
outline: none;
}
/* Set a style for the submit/send button */
.form-container .btn {
background-color: #4CAF50;
color: white;
padding: 16px 20px;
border: none;
cursor: pointer;
width: 100%;
margin-bottom:10px;
opacity: 0.8;
}
/* Add a red background color to the cancel button */
.form-container .cancel {
background-color: red;
}
/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
opacity: 1;
}
</style>
<script>
if (window.netlifyIdentity) {
window.netlifyIdentity.on("init", user => {
if (!user) {
window.netlifyIdentity.on("login", () => {
document.location.href = "/admin/";
});
}
});
}
</script>
</head>
<body id="page-top">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top">Jonathan C. Edwards</a>
<a class="img-responsive" data-toggle="modal" href="#projectsModal7">
<img id="profile-pic" src="img/profile2.jpg" alt="Opps">
<div class="projects-hover">
<div class="projects-hover-content">
</div>
</div>
</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ml-auto">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#clients">Clients</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#hobbies">Hobbies</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#socialmedia">Social Media</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Header -->
<header class="masthead">
<div class="container">
<div class="intro-text">
<div class="intro-lead-in">Game Devloper / Web Developer</div>
<br>
<span class="intro-text text-uppercase">Unreal Engine | Metahuman | ChatGPT | AI</span>
<br>
<br>
<span class="intro-text text-uppercase">HTML/CSS | Bootstrap | React </span>
<br>
<span class="intro-text text-uppercase">React Native | NodeJS </span>
<br>
<br>
<a class="btn btn-primary btn-xl text-uppercase js-scroll-trigger" href="#services">A little of what I do</a>
</div>
</div>
</header>
<script>
function openForm() {
document.getElementById("myForm").style.display = "block";
}
function closeForm() {
document.getElementById("myForm").style.display = "none";
}
</script>
<!-- Services -->
<section class="bg-light page-section" id="services">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Services</h2>
<h3 class="section-subheading text-muted"></h3>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-gamepad fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Game Development</h4>
<p class="text-muted">I fell into the gaming industry purely by accident. I was hired to help with a website and ended up working and learning Unreal Engine.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-user-secret fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Ethical Hacking</h4>
<p class="text-muted">I've always had a curiosity about how things work and have taken things apart ever since I was a kid. I love using that knowledge to make things work in ways they weren't intended.</p>
<!-- <p class="text-muted">"Lets see what this'll do!" - Me</p> -->
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fab fa-raspberry-pi fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Internet of Things</h4>
<p class="text-muted">Oh the satisfaction of telling my tv to turn on and the tv turns on, lights fade and my chosen movie starts. The future is now.</p>
<!-- <p class="text-muted">As with TDD, Agile Development was a huge part of my learning process. While some may like to make a plan and stick to it, I've got a bit more of a creative mind that likes to tinker and experiment.</p> -->
</div>
<div class="col-md-4-mid">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-code fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Web Development</h4>
<p class="text-muted">Web Development is a skill I've learned along the way. I've not only taken a full stack Web Development class but have also interned at a small startup where I learned to code with 3D rendered images.</p>
<!-- <p class="text-muted">While just about anyone can create a web page with a bit of HTML and some CSS, it takes a little more time to make sure that site will be useful on a mobile platform as well.</p> -->
</div>
<div class="col-md-12"><br><br>
<h2 class="service-heading">"Lets see what this'll do!" - Me</h2>
</div>
</div>
</div>
</section>
<!-- Clients Grid -->
<section class="bg page-section" id="clients">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h2 class="section-heading text-uppercase">Clients</h2>
<h3 class="section-subheading text-muted">Clients I've done some work for.</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12 text-center">
<a class="clients-link" href="https://www.saraisschoolhouse.com/">
<div class="projects-hover">
<div class="projects-hover-content">
</div>
</div>
<img class="img-fluid rounded mb-3 mb-md-0" src="img/clients/SaraisSchoolHouse.png" width="800" height="480" alt="">
</a>
<div class="projects-caption">
<br>
<h4>Sarai’s Schoolhouse</h4>
<!-- <h5>[This is currently a 'Work in Progress']</h5> -->
<p class="text-muted">Sarai is a classically trained, dually credentialed teacher. She guides both new and experienced homeschooling families in designing a homeschool program that embodies their personal educational philosophy.</p>
</div>
</div>
</div>
<br><br><br><br>
<div class="row"></div>
<div class="col-lg-12 text-center">
<a class="clients-link" href="">
<div class="projects-hover">
<div class="projects-hover-content">
</div>
</div>
<iframe class="img-fluid rounded mb-3 mb-md-0" width="800" height="480"
src="https://www.youtube.com/watch?v=GnUN6L8_VUg"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</a>
<div class="projects-caption">
<br>
<h4>In Game TV that actually plays live TV!</h4>
<h5>[This is currently a 'Work in Progress']</h5>
<p class="text-muted"></p>
</div>
</div>
</div>
<!-- <div class="row">
<div class="col-lg-12 text-center">
<a class="clients-link" href="https://jon1969edwards.github.io/john-ross-comedy/">
<div class="projects-hover">
<div class="projects-hover-content">
</div>
</div>
<img class="img-fluid rounded mb-3 mb-md-0" src="img/clients/johnMorrisRossIV.png" width="800" height="480" alt="">
</a>
<div class="projects-caption">
<br>
<h4>JOHN MORRIS ROSS IV</h4>
<h5>[This is currently a 'Work in Progress']</h5>
<p class="text-muted">Comedian John Morris Ross IV has been performing stand up comedy since 2005 at clubs and colleges over the United States.</p>
</div>
</div>
</div> -->
</div>
</section>
<!-- Projects Grid -->
<section class="bg-light page-section" id="projects">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Past Projects</h2>
<h3 class="section-subheading text-muted">A few of my past projects from Bootcamp.</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 projects-item">
<a class="projects-link" data-toggle="modal" href="#projectsModal1">
<div class="projects-hover">
<div class="projects-hover-content">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/projects/felix_hello_world.png" alt="">
</a>
<div class="projects-caption">
<h4>Hello World!</h4>
<p class="text-muted">This was my first project/site. Pretty simple stuff but I was proud.</p>
</div>
</div>
<div class="col-md-4 col-sm-6 projects-item">
<a class="projects-link" data-toggle="modal" href="#projectsModal2">
<div class="projects-hover">
<div class="projects-hover-content">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/projects/BMI.jpg" alt="">
</a>
<div class="projects-caption">
<h4>BMI Calculator</h4>
<p class="text-muted">A simple BMI calculator written in JavaScript tested with cucumber</p>
</div>
</div>
<div class="col-md-4 col-sm-6 projects-item">
<a class="projects-link" data-toggle="modal" href="#projectsModal3">
<div class="projects-hover">
<div class="projects-hover-content">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/projects/addressBookBlue.jpg" alt="">
</a>
<div class="projects-caption">
<h4>Address Book</h4>
<p class="text-muted">An address book written in JavaScript using browser local storage for storing contacts and cucumber for testing.</p>
</div>
</div>
<div class="col-md-4 col-sm-6 projects-item">
<a class="projects-link" data-toggle="modal" href="#projectsModal4">
<div class="projects-hover">
<div class="projects-hover-content">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/projects/moesTavern_tn.jpg" alt="">
</a>
<div class="projects-caption">
<h4>Moe's Tavern</h4>
<p class="text-muted">A food ordering application written in Ruby on Rails. Designed after The Simpsons "Moe's Tavern".</p>
</div>
</div>
<div class="col-md-4 col-sm-6 projects-item">
<a class="projects-link" data-toggle="modal" href="#projectsModal5">
<div class="projects-hover">
<div class="projects-hover-content">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/projects/sunrisePress_tn.jpg" alt="">
</a>
<div class="projects-caption">
<h4>The Sunrise Press</h4>
<p class="text-muted">This is a news website built on the Ruby on Rails framework. It allows visitors to view both inhouse and sourced news articles.</p>
</div>
</div>
<div class="col-md-4 col-sm-6 projects-item">
<a class="projects-link" data-toggle="modal" href="#projectsModal6">
<div class="projects-hover">
<div class="projects-hover-content">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/projects/carDnd_tn.jpg" alt="">
</a>
<div class="projects-caption">
<h4>carDND</h4>
<p class="text-muted">A car sharing service prototype created using Ruby on Rails as full stack framework, cucumber/rspec for testing and tailwind for styling.</p>
</div>
</div>
<div class="col-md-4 col-sm-6 projects-item">
<a class="projects-link" data-toggle="modal" href="#projectsModal8">
<div class="projects-hover">
<div class="projects-hover-content">
<i class="fas fa-plus fa-3x"></i>
</div>
</div>
<img class="img-fluid" src="img/projects/JsonForm.png" alt="">
</a>
<div class="projects-caption">
<h4>Chatstream Forms JSON Creator</h4>
<p class="text-muted"></p>
</div>
</div>
</div>
</div>
</section>
<!-- About -->
<section class="page-section" id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">About Me</h2>
<h3 class="section-subheading text-muted">I was born and raised in northern California near the city of Sacramento. I grew up in a very religious home. Although my family wasn’t rich, I had a good childhood with a warm and loving family. It wasn’t until 1988 that my world was changed by the words and music of Joe Strummer, Mick Jones, Paul Simon and Topper Headon. At the tender age of 11, my world view was rocked both literally and figuratively by The Clash. While this may not pertain to any job opportunities, I feel this moment in time shaped who I am as a person today and gives me an understanding in culture, style and music. It opened a whole new world to me that I felt compelled to understand and study. In the same way, technology opened up a world that I felt compelled to understand. I remember my father sitting at his Commodore 64 for hours typing in code. I had no idea what he was doing at the time but it sparked a curiosity that exists in me to this day. Wanting to understand and manipulate technology has been a nagging hobby, passion and obsession since I first played “Oregon Trail”. While I never took coding seriously until later in life, it is still as exciting to me as the first time I heard the lines “London calling, to the faraway towns”.</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<ul class="timeline">
<li>
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="img/about/atari.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>1977-1988</h4>
<h4 class="subheading">My Humble Beginnings</h4>
</div>
<div class="timeline-body">
<p class="text-muted">One of my earliest memories is my father playing Atari 2600 with me. 'Pac-Man', 'Space Invaders'... We even had 'E.T. the Extra-Terrestrial' known for contributing to the video game crash of 1983.</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="img/about/descendents.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>1988-1999</h4>
<h4 class="subheading">A Punker is Born</h4>
</div>
<div class="timeline-body">
<p class="text-muted">1988. The discover of skateboarding and punkrock. I'll never forget flipping through 'Thrasher Magazine' and reading about all these underground bands that would soon change my life. Once I read about 'Milo Aukerman', the singer of 'The Descendents', going to college to study molecular biology. At that point I knew I didn't have to live in a gutter to be punk.</p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="img/about/tour_van.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>1999-2010</h4>
<h4 class="subheading">Get in the Van</h4>
</div>
<div class="timeline-body">
<p class="text-muted">In the early 2000's I got to tour the U.S. in a van and grace stages (basements) while singing for a punk band. Although this didn't pay the bills, it did give me a hunger to see something other than the sunny California weather. In 2010 I moved to Frankfurt, Germany where I started my life as a bartender.</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="img/about/meatballs.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>2015-Now</h4>
<h4 class="subheading">Heja Sverige</h4>
</div>
<div class="timeline-body">
<p class="text-muted">After moving back to the states for a bit, I met my 'Sambo'. We decided to move to Sweden in 2015 and have been here since.</p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="img/about/coding.png" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>2018</h4>
<h4 class="subheading">Hello World!</h4>
</div>
<div class="timeline-body">
<p class="text-muted">In 2018 I found out about 'Craft Academy Coding Bootcamp' through a colleague at work and decided to take the plunge and enroll. Through all the headaches and frustrations of learning, I feel it has been well worth it. The more I learn, the more I love it.</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="rounded-circle img-fluid" src="img/about/unreal-engine.256x256.png" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>2021-Now</h4>
<h4 class="subheading">Game Developing</h4>
</div>
<div class="timeline-body">
<p class="text-muted">Needs an update</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<a class="text-muted js-scroll-trigger" href="#contact">
<h4>Be A Part
<br>Of My
<br>Story
</h4>
</a>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Hobbies -->
<section class="bg-light page-section" id="hobbies">
<div class="container">
<!-- Page Heading -->
<h1 class="hobbies">My Hobbies and Interests
<small></small>
</h1>
<br>
<!-- Hobby One -->
<div class="row">
<div class="col-md-7">
<a href="#">
<img class="img-fluid rounded mb-3 mb-md-0" src="img/hobbies/ethicalHacking.jpg" alt="">
</a>
</div>
<div class="col-md-5">
<h3>Ethical Hacking</h3>
<p>"As with everything, this is a learning process. I've taught myself OSINT to Password Cracking. Using numerous tools (Metasploit, Nmap, Hashcat, BadUSB, etc.) and operating systems (Windows, Linux and MacOS) I've become a bit of a hobbyist and would love to turn it into a career."</p>
<!-- <a class="btn btn-primary" href="https://my.playstation.com/profile/BovverSkin2">My Playstation Profile</a> -->
</div>
</div>
<hr>
<!-- Hobby Two -->
<div class="row">
<div class="col-md-7">
<a href="https://www.raspberrypi.org/">
<img class="img-fluid rounded mb-3 mb-md-0" src="img/hobbies/raspberry_pi.png" alt="">
</a>
</div>
<div class="col-md-5">
<h3>Raspberry Pi</h3>
<p>I love tinkering and experimenting. Raspberry Pi is perfect for that. It's become a hobby of mine just to see what kind of things I can do with it.</p>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Hobby Three -->
<div class="row">
<div class="col-md-7">
<a href="https://www.discogs.com/user/jon1969edwards">
<img class="img-fluid rounded mb-3 mb-md-0" src="img/hobbies/vinyl.jpg" alt="">
</a>
</div>
<div class="col-md-5">
<h3>Record Collecting</h3>
<p>I've been a record collector for a long time. There's no better feeling than finding that rare gem vinyl burried in a second hand store. Check out my discogs profile as well as a spotify playlist I made. You can tell a lot about a person based on their music collection.</p>
<a class="btn btn-primary" href="https://www.discogs.com/user/jon1969edwards">
My Discogs Profile
</a>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Hobby Four -->
<div class="row">
<div class="col-md-7">
<a href="#">
<img class="img-fluid rounded mb-3 mb-md-0" src="img/hobbies/Iot.jpg" alt="">
</a>
</div>
<div class="col-md-5">
<h3>Internet of Things</h3>
<p>"Alexa, Turn on the TV."</p>
<p>Alexa turns on the tv, sound-bar, Nvidia Shield, changes the channel to my favorite, and then dims and colors the Philips Hue lights. This is magic and I want to learn more!</p>
</div>
</div>
<!-- /.row -->
<hr>
<!-- Hobby Five -->
<div class="row">
<div class="col-md-7">
<a href="#">
<img class="img-fluid rounded mb-3 mb-md-0" src="img/hobbies/gamer.png" alt="">
</a>
</div>
<div class="col-md-5">
<h3>Gaming</h3>
<p>What can I say about gaming that I haven't already said? It's been a part of my world for as long as I can remember.</p>
<a class="btn btn-primary" href="https://steamcommunity.com/id/jon1969edwards">My Steam Profile</a>
</div>
</div>
<hr>
</div>
</section>
<!-- /.container -->
<!-- Social Media -->
<section class="page-section" id="socialmedia">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Social Media</h2>
<h3 class="section-subheading text-muted">Check out some of my social media links:</h3>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="team-member">
<img class="mx-auto rounded-circle" style="border:5px solid #67F7C1" src="img/socialMediaLinks.jpg" alt="">
<h4>Jon Edwards</h4>
<p class="text-muted">Junior Full Stack Web Developer</p>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="https://twitter.com/BovverSkin">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/jonathan-edwards-671094110/">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://github.com/Jon1969Edwards">
<i class="fab fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://open.spotify.com/playlist/2dIDXdXK08zWyNutNzfnIe">
<i class="fab fa-spotify"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.discogs.com/user/jon1969edwards">
<i class="fas fa-compact-disc"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://my.playstation.com/profile/BovverSkin2">
<i class="fab fa-playstation"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://steamcommunity.com/id/jon1969edwards">
<i class="fab fa-steam"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<br>
</div>
</div>
</div>
</section>
<section class="bg-white">
<div class="row">
<!-- Spotify Playlist -->
<div class="col-lg-8 mx-auto text-center">
<h1>Playlist</h1>
<br>
<br>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://open.spotify.com/embed/playlist/2dIDXdXK08zWyNutNzfnIe"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture; encrypted-media"
loading="lazy" allowfullscreen style="border:5px solid #67F7C1" allowtransparency="true"></iframe>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section class="page-section cta" id="contact">
<div class="container">
<div class="containerContact">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">
Contact Me
</h2>
</div>
<div class="row">
<div class="col-md-6">
<form id="my-form" action="https://formspree.io/f/xyyowedo" method="POST" style="margin-left: 30px; margin-right: 30px;">
<div class="form-group">
<input class="form-control"
placeholder="First Name"
type="First Name"
name="First Name"/>
</div>
<div class="form-group">
<input class="form-control"
placeholder="Last Name"
type="Last Name"
name="Last Name"/>
</div>
<div class="form-group">
<input class="form-control"
placeholder="Email"
type="email"
name="email"/>
</div>
<div class="form-group">
<textarea type="text"
placeholder="Message"
required=""
class="form-control"
id="massage"
cols="30"
rows="10"
name="message">
</textarea>
</div>
<!-- <center>
<div class="g-recaptcha"
data-sitekey="6LdpNBwqAAAAADBHAgEvXszTsPmu6WWCU2AmKPFT"></div>
</center> -->
<br>
<center>
<button class="btnContact btn-infoContact" type="submit" value="Send" id="my-form-button">Submit</button>
</center>
<p id="my-form-status"></p>
</form>
</div>
<div class="col-md-1"></div>
<div class="col-md-5">
<p class="icn"><i class="fas fa-laptop-code"></i> Jonathan C. Edwards </p>
<p class="icn"><i class="fa fa-map-marker"></i> Stockholm, Sweden </p>
<!-- <p class="icn"><i class="fa fa-phone"></i> </p> -->
<p class="icn"><i class="fa fa-envelope"></i> [email protected] </p>
<hr>
</div>
</div>
</div>
</div>
</section>
<script>
window.addEventListener("DOMContentLoaded", function() {
// get the form elements defined in your form HTML above
var form = document.getElementById("my-form");
var button = document.getElementById("my-form-button");
var status = document.getElementById("my-form-status");
// Success and Error functions for after the form is submitted
function success() {
form.reset();
button.style = "display: none ";
status.innerHTML = "Thanks! I'll get back to you as soon as possible.";
}
function error() {
status.innerHTML = "Oops! There was a problem.";
}
// handle the form submission event
form.addEventListener("submit", function(ev) {
ev.preventDefault();
var data = new FormData(form);
ajax(form.method, form.action, data, success, error);
});
});
// helper function for sending an AJAX request
function ajax(method, url, data, success, error) {
var xhr = new XMLHttpRequest();
xhr.open(method, url);
xhr.setRequestHeader("Accept", "application/json");
xhr.onreadystatechange = function() {
if (xhr.readyState !== XMLHttpRequest.DONE) return;
if (xhr.status === 200) {
success(xhr.response, xhr.responseType);
} else {
error(xhr.status, xhr.response, xhr.responseType);
}
};
xhr.send(data);
}
</script>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="row align-items-center">
<div class="col-md-4">
<span class="copyright">Copyright © Jonathan C. Edwards 2024</span>
</div>
<div class="col-md-4">
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="https://twitter.com/BovverSkin">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://github.com/Jon1969Edwards">
<i class="fab fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/jonathan-edwards-671094110/">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- projects Modals -->
<!-- Modal 1 -->
<div class="projects-modal modal fade" id="projectsModal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2 class="text-uppercase">Hello World!</h2>
<p class="item-intro text-muted">This was my first project/site. Pretty simple stuff but I was proud.</p>
<img class="img-fluid d-block mx-auto" src="img/projects/felix_hello_world.png" alt="">
<p>Not a very complex site, but it's where I learned to code in HTML for the first time. I remember adding that photo took forever to figure out. Once I got the hang of it, I taught myself to add a 'Home' link and had a laugh with the link I chose.</p>
<ul class="list-inline">
<li>Date: October 2018</li>
<li>Category: Basic HTML</li>
</ul>
<a href="https://jon1969edwards.github.io/Jon1969edwards/">
<button class="btn btn-primary" type="button">
Hello World!</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 2 -->
<div class="projects-modal modal fade" id="projectsModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2 class="text-uppercase">BMI Calculator</h2>
<p class="item-intro text-muted">A simple BMI calculator written in JavaScript tested with cucumber</p>
<img class="img-fluid d-block mx-auto" src="img/projects/putThatCookieDown.png" alt="">
<p>This was the first time I got to play with some styling aspect. Although the styling wasn't done with CSS yet, I learned a lot and even adde a little humor to the site.</p>
<ul class="list-inline">
<li>Date: October 2018</li>
<li>Category: JavaScript</li>
</ul>
<a href="https://jon1969edwards.github.io/BMI_Challenge/">
<button class="btn btn-primary" type="button">
BMI Calculator</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 3 -->
<div class="projects-modal modal fade" id="projectsModal3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2 class="text-uppercase">Address Book</h2>
<p class="item-intro text-muted">An address book written in JavaScript using browser local storage for storing contacts and cucumber for testing.</p>
<img class="img-fluid d-block mx-auto" src="img/projects/addressBook.jpg" alt="">
<p>This was the first time I pair programmed with someone. It was an interesting project because we got to understand each others strengths and weeknesses. We worked with that knowledge and taught each other a lot.</p>
<ul class="list-inline">
<li>Date: November 2018</li>
<li>Category: JavaScript/Pair Programming</li>
</ul>
<a href="https://gergkllai1.github.io/Adress_book/">
<button class="btn btn-primary" type="button">
Address Book</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal 4 -->
<div class="projects-modal modal fade" id="projectsModal4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2 class="text-uppercase">Moe's Tavern</h2>
<p class="item-intro text-muted">A food ordering application written in Ruby on Rails. Designed after The Simpsons "Moe's Tavern".</p>
<img class="img-fluid d-block mx-auto" src="img/projects/moesTavern.jpg" alt="">
<p>This was the first time working as a team. We had four on the team and had to come up with a plan together. I'm very proud of the design we came up with for this one as I did most of the front end planning and work.</p>
<ul class="list-inline">
<li>Date: November 2018</li>
<li>Category: Ruby/Ruby on Rails</li>
</ul>
<a href="https://moestavern.herokuapp.com/">