-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
686 lines (627 loc) · 29 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118787381-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-118787381-1');
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Descriptions & Titles -->
<title>Matt Davis</title>
<meta property="og:site_name" content="www.mattdavis.info" />
<meta property="og:title" content="Matt Davis" />
<meta property="og:url" content="https://www.mattdavis.info" />
<meta property="og:type" content="website" />
<meta property="og:description"
content="I'm Matt, a UK-based software engineer. This is my portfolio containing my work history, experience and education." />
<meta itemprop="name" content="Matt Davis" />
<meta itemprop="url" content="https://www.mattdavis.info" />
<meta itemprop="description"
content="I'm Matt, a UK-based software engineer. This is my portfolio containing my work history, experience and education." />
<meta name="description"
content="I'm Matt, a UK-based software engineer. This is my portfolio containing my work history, experience and education.">
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500&display=swap" rel="stylesheet">
<!-- Style -->
<link rel="stylesheet" href="main.css" />
<!-- Fontawesome Icons -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css" rel="stylesheet" />
</head>
<body>
<!-- Navbar / Header -->
<nav class="navbar">
<h1 class="my-name nav-item">MATT DAVIS</h1>
<div class="social-icons nav-item">
<a class="nav-link" href="https://linkedin.com/in/mattdavis00" target="_blank" rel="noreferrer"><i
class="fab fa-linkedin-in fa-lg"></i></a>
<a class="nav-link" href="mailto:[email protected]" target="_blank" rel="noreferrer"><i
class="far fa-envelope fa-lg"></i></a>
<a class="nav-link" href="https://github.com/MattDavis00" target="_blank" rel="noreferrer"><i
class="fab fa-github fa-lg"></i></a>
</div>
</nav>
<!-- Content -->
<div class="content">
<!-- About Me -->
<div class="section blue-section">
<h3 class="section-title">About Me</h3>
<div>
I'm Matt, a UK-based software engineer currently employed by Cloudflare.<br><br>
My education consists of a first-class master's degree in Computer Science from Lancaster
University.<br><br>
Within my own time I provide freelance services to a variety of clients.
</div>
</div>
<!-- Navigation -->
<div class="vertical-nav">
<a class="vertical-nav-button" href="#work">Work<i class="fas fa-building"></i></a>
<a class="vertical-nav-button" href="#education">Education<i class="fas fa-graduation-cap"></i></a>
<a class="vertical-nav-button" href="#projects">Projects<i class="fas fa-file-code"></i></a>
<a class="vertical-nav-button" href="#contact">Contact<i class="fas fa-envelope"></i></a>
</div>
<!-- Work History -->
<div class="section black-section" id="work">
<h3 class="section-title">Work History</h3>
<!-- Cloudflare -->
<div class="experience">
<div class="timeline">
<i class="far fa-circle"></i>
<div class="line"></div>
</div>
<div class="experience-content">
Aug 2023 - Present
<img src="cloudflare-logo.svg" class="company-logo" />
<h4 class="experience-header">
<i class="far fa-building"></i> Cloudflare<br />
<i class="fas fa-user-tag"></i> Systems Engineer
</h4>
Currently I work as a Systems Engineer at <a class="link" target="_blank" rel="noreferrer"
href="https://www.cloudflare.com/">Cloudflare</a>.
I am part of the <a class="link" target="_blank" rel="noreferrer"
href="https://www.cloudflare.com/en-gb/zero-trust/products/dlp/">Data Loss Prevention</a> team;
helping to secure networks from data leaks in a fast and reliable manner.
</div>
</div>
<!-- Arm -->
<div class="experience">
<div class="timeline">
<i class="far fa-circle"></i>
<div class="line"></div>
</div>
<div class="experience-content">
Jul 2021 - Jul 2023
<img src="arm-logo-blue.svg" class="company-logo" />
<h4 class="experience-header">
<i class="far fa-building"></i> Arm<br />
<i class="fas fa-user-tag"></i> Software Engineer
</h4>
I worked as a Software Engineer at <a class="link" target="_blank" rel="noreferrer"
href="https://www.arm.com/">Arm</a>.
One of my main projects I worked on was <a class="link" target="_blank" rel="noreferrer"
href="https://github.com/parallaxsecond/parsec">Parsec</a>, an open-source hardware security
abstraction library written in Rust.
My responsibilities included development, code review, standups, architecture planning & design,
writing tests etc. A lot
of effort goes into ensuring that our API remains stable and is therefore backwards compatible,
because of this a
strong emphasis is put on well-thought-out design. I think the experience I have gained during this
position is
invaluable and is a strong basis for further career and technical development.
</div>
</div>
<!-- Freelance Development -->
<div class="experience">
<div class="timeline">
<i class="far fa-circle"></i>
<div class="line"></div>
</div>
<div class="experience-content">
Jul 2020 - Present
<h4 class="experience-header">
<i class="far fa-building"></i> Freelance<br />
<i class="fas fa-user-tag"></i> Software Engineer & Consultant
</h4>
I continue to work as a freelance software engineer. I have been trusted by clients with many
projects throughout the years.
A contract I delivered back in 2020-2021 was a <a class="link" target="_blank" rel="noreferrer"
href="#medicmind">booking system for Medic Mind</a>.
This system facilitates over 1000 bookings per week.
Additionally, I have also deployed both apps developed by me, and pre-existing apps on several cloud
providers in a DevOps capacity; such as AWS and DigitalOcean.
I like to think that working as a freelance developer has given me a well-rounded understanding of
the development of a project from inception to fruition.
</div>
</div>
<!-- UK Fuels -->
<div class="experience">
<div class="timeline">
<i class="far fa-circle"></i>
<!-- <div class="line"></div> -->
</div>
<div class="experience-content">
Aug 2019 - Sep 2019
<h4 class="experience-header">
<i class="far fa-building"></i> Radius Payment Solutions / UK Fuels<br />
<i class="fas fa-user-tag"></i> Data Cleanse Administrator
</h4>
I was hired to assist with a short-length project.
After many years of trading it had become clear that some customer data had become outdated and
unreliable.
The aim of the project was to update customer records and ensure that their details were both
accurate and dependable.
</div>
</div>
<!-- Homebase -->
<!-- <div class="experience">
<div class="timeline">
<i class="far fa-circle"></i>
</div>
<div class="experience-content">
Jul 2016 - Jul 2017
<h4 class="experience-header">
<i class="far fa-building"></i> Homebase<br />
<i class="fas fa-user-tag"></i> Replenishment Sales Assisstant
</h4>
A year of experience at Homebase has given me valuable insight into the retail industry.
The role involved anything from working stock, being active on the tills, to helping make customer
deliveries.
From this I have gained extensive experience with inventory management systems, point of sale
terminals and merchandising; this allows my work to be efficient and to set standards.
I believe this experience can be highly applicable to many roles.
</div>
</div> -->
</div>
<!-- Education -->
<div class="section blue-section" id="education">
<h3 class="section-title">Education</h3>
<!-- Lancaster University -->
<div class="experience">
<div class="timeline">
<i class="far fa-circle"></i>
<div class="line"></div>
</div>
<div class="experience-content">
Oct 2018 - Jul 2022
<h4 class="experience-header">
<i class="fas fa-graduation-cap"></i> Lancaster University<br />
<i class="fas fa-scroll"></i> Computer Science with Industrial Experience (MSci)
</h4>
<p>
Grade: First-class honours
</p>
</div>
</div>
<!-- Sixth Form -->
<div class="experience">
<div class="timeline">
<i class="far fa-circle"></i>
<div class="line"></div>
</div>
<div class="experience-content">
Sep 2016 – Jun 2018
<h4 class="experience-header">
<i class="fas fa-graduation-cap"></i> Sandbach School Sixth Form<br />
<i class="fas fa-scroll"></i> A-Levels
</h4>
<p>Grades: Computer Science (A*), Maths (A*), Further Maths (A*), AS Physics (A).</p>
</div>
</div>
<!-- Sandbach School -->
<div class="experience">
<div class="timeline">
<i class="far fa-circle"></i>
<!-- <div class="line"></div> -->
</div>
<div class="experience-content">
Sep 2011 – Jun 2016
<h4 class="experience-header">
<i class="fas fa-graduation-cap"></i> Sandbach School<br />
<i class="fas fa-scroll"></i> GCSEs
</h4>
<p>Grades: Maths (A*), Further Maths (A*), Computing (A), Science (A), Additional Science (A),
Geography (A), Graphics Design (A), History (B), Product Design Short Course (B), English
Language (C), English Literature (C).</p>
</div>
</div>
</div>
<!-- Projects -->
<div class="section black-section" id="projects">
<h3 class="section-title">Projects</h3>
<!-- Medic Mind -->
<div id="medicmind" class="project">
<div class="line-horizontal"></div>
<div class="experience-content">
<h4>Medic Mind Booking System</h4>
<img src="medic-mind.png" class="project-image" />
<div class="row pills">
<a class="pill pill-html" href="https://developer.mozilla.org/en-US/docs/Web/HTML"
target="_blank" rel="noreferrer">HTML</a>
<a class="pill pill-css" href="https://developer.mozilla.org/en-US/docs/Web/CSS" target="_blank"
rel="noreferrer">CSS</a>
<a class="pill pill-js" href="https://reactjs.org/" target="_blank" rel="noreferrer">React</a>
<a class="pill pill-js" href="https://nextjs.org/" target="_blank" rel="noreferrer">Next.js</a>
<a class="pill pill-js" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript"
target="_blank" rel="noreferrer">JavaScript</a>
<a class="pill pill-node" href="https://expressjs.com/" target="_blank"
rel="noreferrer">Express.js</a>
<a class="pill pill-node" href="https://nodejs.org/en/" target="_blank"
rel="noreferrer">Node.js</a>
<a class="pill pill-sql" href="https://www.mysql.com/" target="_blank"
rel="noreferrer">MySQL</a>
</div>
<p>
This booking system was contracted by <a class="link" href="https://www.medicmind.co.uk/"
target="_blank" rel="noreferrer">Medic Mind</a> and now facilitates over 1000 bookings per
week.
It allows tutors to book lessons with students, deducting hours from the student's balance.
Through Stripe integration students are able to purchase more hours that are automatically added
to their balance.
My scope includes the entire project ranging from design, frontend, backend to devops.
</p>
<div class="experience-footer row">
<a class="a-button disabled" href="https://booking.medicmind.co.uk/" target="_blank"
rel="noreferrer">Launch</a>
<a class="a-button disabled" href="#" target="_blank" rel="noreferrer"><i
class="fab fa-github fa-lg"></i> Private</a>
</div>
</div>
</div>
<!-- TheSoftwareHut -->
<div class="project">
<div class="line-horizontal"></div>
<div class="experience-content">
<h4>TheSoftwareHut</h4>
<img src="thesoftwarehut-desktop.png" class="project-image" />
<div class="row pills">
<a class="pill pill-html" href="https://developer.mozilla.org/en-US/docs/Web/HTML"
target="_blank" rel="noreferrer">HTML</a>
<a class="pill pill-css" href="https://developer.mozilla.org/en-US/docs/Web/CSS" target="_blank"
rel="noreferrer">CSS</a>
<a class="pill pill-js" href="https://reactjs.org/" target="_blank" rel="noreferrer">React</a>
<a class="pill pill-js" href="https://nextjs.org/" target="_blank" rel="noreferrer">Next.js</a>
<a class="pill pill-js" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript"
target="_blank" rel="noreferrer">JavaScript</a>
<a class="pill pill-node" href="https://expressjs.com/" target="_blank"
rel="noreferrer">Express.js</a>
<a class="pill pill-node" href="https://nodejs.org/en/" target="_blank"
rel="noreferrer">Node.js</a>
<a class="pill pill-sql" href="https://www.mysql.com/" target="_blank"
rel="noreferrer">MySQL</a>
</div>
<p>
A freelance platform for the IT industry.
The platform provides the ability to advertise work contracts that are secured by an escrow
system, ensuring both freelancers and clients peace of mind for payments.
Instant messaging is built into the platform using Socket.io. This project is a
work-in-progress.
</p>
<div class="experience-footer row">
<a class="a-button disabled" href="https://thesoftwarehut.net/" target="_blank"
rel="noreferrer">Launch</a>
<a class="a-button disabled" href="#" target="_blank" rel="noreferrer"><i
class="fab fa-github fa-lg"></i> Private</a>
</div>
</div>
</div>
<!-- Mobile Agent Platform -->
<div class="project">
<div class="line-horizontal"></div>
<div class="experience-content">
<h4>Node.js mobile-agent-platform Package</h4>
<img src="mobile-agent-platform-desktop.png" class="project-image" />
<div class="row pills">
<a class="pill pill-js" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript"
target="_blank" rel="noreferrer">JavaScript</a>
<a class="pill pill-node" href="https://nodejs.org/en/" target="_blank"
rel="noreferrer">Node.js</a>
<a class="pill pill-node" href="https://expressjs.com/" target="_blank"
rel="noreferrer">Express.js</a>
</div>
<p>
A JavaScript Mobile Agent Platform that allows an agent to migrate across a network.
A Supervisor node dispatches the Agent which can then autonomously move between Worker nodes,
carrying/transferring its state and methods to the new node.
</p>
<div class="experience-footer row">
<a class="a-button" href="https://www.npmjs.com/package/mobile-agent-platform" target="_blank"
rel="noreferrer">Launch</a>
<a class="a-button" href="https://github.com/MattDavis00/mobile-agent-platform" target="_blank"
rel="noreferrer"><i class="fab fa-github fa-lg"></i></a>
</div>
</div>
</div>
<!-- Single Sign-On -->
<div class="project">
<div class="line-horizontal"></div>
<div class="experience-content">
<h4>Single Sign-On Service</h4>
<img src="auth-desktop.png" class="project-image" />
<div class="row pills">
<a class="pill pill-html" href="https://developer.mozilla.org/en-US/docs/Web/HTML"
target="_blank" rel="noreferrer">HTML</a>
<a class="pill pill-css" href="https://developer.mozilla.org/en-US/docs/Web/CSS" target="_blank"
rel="noreferrer">CSS</a>
<a class="pill pill-js" href="https://angular.io/docs" target="_blank"
rel="noreferrer">Angular</a>
<a class="pill pill-js" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript"
target="_blank" rel="noreferrer">JavaScript</a>
<a class="pill pill-js" href="https://www.typescriptlang.org/docs/home.html" target="_blank"
rel="noreferrer">TypeScript</a>
<a class="pill pill-node" href="https://expressjs.com/" target="_blank"
rel="noreferrer">Express.js</a>
<a class="pill pill-node" href="https://nodejs.org/en/" target="_blank"
rel="noreferrer">Node.js</a>
<a class="pill pill-sql" href="https://www.mysql.com/" target="_blank"
rel="noreferrer">MySQL</a>
</div>
<p>
A Single Sign-On Service providing login and authentication/authorisation to all
*.mattdavis.info projects.
This allows a user to register a single account and use it to access all sites, only being
required to log in once.
</p>
<div class="experience-footer row">
<a class="a-button disabled" href="https://auth.mattdavis.info/" target="_blank"
rel="noreferrer">Launch</a>
<a class="a-button" href="https://github.com/MattDavis00/auth.mattdavis.info" target="_blank"
rel="noreferrer"><i class="fab fa-github fa-lg"></i></a>
</div>
</div>
</div>
<!-- Pastebin -->
<div class="project">
<div class="line-horizontal"></div>
<div class="experience-content">
<h4>Personal Pastebin</h4>
<img src="pastebin-desktop.png" class="project-image" />
<div class="row pills">
<a class="pill pill-html" href="https://developer.mozilla.org/en-US/docs/Web/HTML"
target="_blank" rel="noreferrer">HTML</a>
<a class="pill pill-css" href="https://developer.mozilla.org/en-US/docs/Web/CSS" target="_blank"
rel="noreferrer">CSS</a>
<a class="pill pill-js" href="https://angularjs.org/" target="_blank"
rel="noreferrer">AngularJS</a>
<a class="pill pill-js" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript"
target="_blank" rel="noreferrer">JavaScript</a>
<a class="pill pill-php" href="https://www.php.net/" target="_blank" rel="noreferrer">PHP</a>
<a class="pill pill-sql" href="https://www.mysql.com/" target="_blank"
rel="noreferrer">MySQL</a>
</div>
<p>
An alternative to <a class="link" href="https://pastebin.com/" target="_blank"
rel="noreferrer">pastebin.com</a>. Paste your code and click to save.
A unique URL is generated for each paste and can be shared with others. When viewing your code
it features syntax highlighting.
You can also view your paste history to find an older paste.
</p>
<div class="experience-footer row">
<a class="a-button disabled" href="https://pastebin.mattdavis.info/" target="_blank"
rel="noreferrer">Launch</a>
<a class="a-button" href="https://github.com/MattDavis00/pastebin.mattdavis.info"
target="_blank" rel="noreferrer"><i class="fab fa-github fa-lg"></i></a>
</div>
</div>
</div>
<!-- GPS Tracker -->
<div class="project">
<div class="line-horizontal"></div>
<div class="experience-content">
<h4>Arduino GPS Tracker</h4>
<img src="track-desktop.jpg" class="project-image" />
<div class="row pills">
<a class="pill pill-html" href="https://developer.mozilla.org/en-US/docs/Web/HTML"
target="_blank" rel="noreferrer">HTML</a>
<a class="pill pill-css" href="https://developer.mozilla.org/en-US/docs/Web/CSS" target="_blank"
rel="noreferrer">CSS</a>
<a class="pill pill-js" href="https://reactjs.org/" target="_blank" rel="noreferrer">React</a>
<a class="pill pill-js" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript"
target="_blank" rel="noreferrer">JavaScript</a>
<a class="pill pill-node" href="https://expressjs.com/" target="_blank"
rel="noreferrer">Express.js</a>
<a class="pill pill-node" href="https://nodejs.org/en/" target="_blank"
rel="noreferrer">Node.js</a>
<a class="pill pill-sql" href="https://www.mysql.com/" target="_blank"
rel="noreferrer">MySQL</a>
</div>
<p>
An Arduino GPS tracking solution that uses a GSM SIM module to transmit location data to a web
dashboard.
The web dashboard uses the Google Maps JavaScript API to provide an overview of the device's
travelled route.
</p>
<div class="experience-footer row">
<a class="a-button disabled" href="https://track.mattdavis.info/" target="_blank"
rel="noreferrer">Launch</a>
<a class="a-button" href="https://github.com/MattDavis00/track.mattdavis.info" target="_blank"
rel="noreferrer"><i class="fab fa-github fa-lg"></i></a>
</div>
</div>
</div>
<!-- Countdown -->
<div class="project">
<div class="line-horizontal"></div>
<div class="experience-content">
<h4>Event Countdown Timer</h4>
<img src="countdown-desktop.png" class="project-image" />
<div class="row pills">
<a class="pill pill-html" href="https://developer.mozilla.org/en-US/docs/Web/HTML"
target="_blank" rel="noreferrer">HTML</a>
<a class="pill pill-css" href="https://developer.mozilla.org/en-US/docs/Web/CSS" target="_blank"
rel="noreferrer">CSS</a>
<a class="pill pill-js" href="https://angular.io/docs" target="_blank"
rel="noreferrer">Angular</a>
<a class="pill pill-js" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript"
target="_blank" rel="noreferrer">JavaScript</a>
<a class="pill pill-js" href="https://www.typescriptlang.org/docs/home.html" target="_blank"
rel="noreferrer">TypeScript</a>
<a class="pill pill-node" href="https://expressjs.com/" target="_blank"
rel="noreferrer">Express.js</a>
<a class="pill pill-node" href="https://nodejs.org/en/" target="_blank"
rel="noreferrer">Node.js</a>
<a class="pill pill-sql" href="https://www.mysql.com/" target="_blank"
rel="noreferrer">MySQL</a>
</div>
<p>
An event countdown timer which is timezone agnostic.
Enter a time and date in your local time, then share the link to others around the world.
They will see see how long it is until the event, regardless of their timezone.
Featuring both a dark and light theme.
</p>
<div class="experience-footer row">
<a class="a-button disabled" href="https://countdown.mattdavis.info/" target="_blank"
rel="noreferrer">Launch</a>
<a class="a-button" href="https://github.com/MattDavis00/countdown.mattdavis.info"
target="_blank" rel="noreferrer"><i class="fab fa-github fa-lg"></i></a>
</div>
</div>
</div>
<!-- EXT2 Filesystem -->
<div class="project">
<div class="line-horizontal"></div>
<div class="experience-content">
<h4>EXT2 Filesystem Reader</h4>
<img src="ext2-desktop.png" class="project-image" />
<div class="row pills">
<a class="pill pill-js" href="https://docs.oracle.com/en/java/javase/11/" target="_blank"
rel="noreferrer">Java</a>
<a class="pill pill-sql" href="" target="_blank" rel="noreferrer">File System Architecture</a>
</div>
<p>
An EXT2 filesystem reader written in Java. The program takes an EXT2 volume binary and allows
read-only access to the volume.
It provides functionality including full traversal through directories and semantic links,
reading entire files or specific bytes from files,
and dumping bytes in both hexadecimal and ASCII formats.
</p>
<div class="experience-footer row">
<a class="a-button disabled" href="#" target="_blank" rel="noreferrer">Launch</a>
<a class="a-button disabled" href="#" target="_blank" rel="noreferrer"><i
class="fab fa-github fa-lg"></i> Private</a>
</div>
</div>
</div>
<!-- Clock -->
<!-- <div class="project">
<div class="line-horizontal"></div>
<div class="experience-content">
<h4>A Simple JavaScript Clock</h4>
<img src="clock-desktop.png" class="project-image"/>
<div class="row pills">
<a class="pill pill-html" href="https://developer.mozilla.org/en-US/docs/Web/HTML" target="_blank">HTML</a>
<a class="pill pill-css" href="https://developer.mozilla.org/en-US/docs/Web/CSS" target="_blank">CSS</a>
<a class="pill pill-js" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank">JavaScript</a>
</div>
<p>
A very simple and responsive JavaScript clock, featuring both a dark theme and light theme.
</p>
<div class="experience-footer row">
<a class="a-button" href="https://clock.mattdavis.info/" target="_blank">Launch</a>
<a class="a-button" href="https://github.com/MattDavis00/clock.mattdavis.info" target="_blank"><i class="fab fa-github fa-lg"></i></a>
</div>
</div>
</div> -->
<!-- Pubgolf -->
<!-- <div class="project">
<div class="line-horizontal"></div>
<div class="experience-content">
<h4>Pubgolf</h4>
<img src="pubgolf-desktop.png" class="project-image"/>
<div class="row pills">
<a class="pill pill-html" href="https://developer.mozilla.org/en-US/docs/Web/HTML" target="_blank">HTML</a>
<a class="pill pill-css" href="https://developer.mozilla.org/en-US/docs/Web/CSS" target="_blank">CSS</a>
<a class="pill pill-js" href="https://reactjs.org/" target="_blank">React</a>
<a class="pill pill-js" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank">JavaScript</a>
<a class="pill pill-node" href="https://expressjs.com/" target="_blank">Express.js</a>
<a class="pill pill-node" href="https://nodejs.org/en/" target="_blank">Node.js</a>
<a class="pill pill-sql" href="https://www.mysql.com/" target="_blank">MySQL</a>
</div>
<p>
A simple web app used to both organise and play Pub Golf. An organiser creates the crawl including which pubs, par and rules.
A unique shareable link is then created along with a QR code pointing to this link. Players can then join setting their own nickname and entering the scores they get.
</p>
<div class="experience-footer row">
<a class="a-button" href="https://pubgolf.mattdavis.info/" target="_blank">Launch</a>
<a class="a-button" href="https://github.com/HarryPeach/pubgolf" target="_blank"><i class="fab fa-github fa-lg"></i></a>
</div>
</div>
</div> -->
<!-- This Website -->
<div class="project">
<div class="line-horizontal"></div>
<div class="experience-content">
<h4>This Website</h4>
<img src="mattdavis-desktop.png" class="project-image" />
<div class="row pills">
<a class="pill pill-html" href="https://developer.mozilla.org/en-US/docs/Web/HTML"
target="_blank" rel="noreferrer">HTML</a>
<a class="pill pill-css" href="https://developer.mozilla.org/en-US/docs/Web/CSS" target="_blank"
rel="noreferrer">CSS</a>
</div>
<p>
The code behind this responsive portfolio/cv is also open source.
It was written from scratch using HTML and CSS, no libraries or frameworks.
The only third party resources used are icons from <a class="link"
href="https://fontawesome.com/" target="_blank" rel="noreferrer">Font Awesome</a>.
</p>
<div class="experience-footer row">
<a class="a-button" href="https://mattdavis.info" target="_blank" rel="noreferrer">Launch</a>
<a class="a-button" href="https://github.com/MattDavis00/mattdavis.info" target="_blank"
rel="noreferrer"><i class="fab fa-github fa-lg"></i></a>
</div>
</div>
</div>
</div>
<!-- Contact Details -->
<div class="section blue-section">
<h3 class="section-title">Contact Details</h3>
<!-- Email -->
<div class="project">
<div class="line-horizontal"></div>
<div class="experience-content">
<!-- <h4>Contact Details</h4> -->
<div class="experience-footer">
<i class="far fa-envelope fa-lg"></i> Email:<br><br>
<div class="emails">
<a class="link email" href="mailto:[email protected]"
target="_blank">[email protected]</a>
<span>-OR-</span>
<a class="link email" href="mailto:[email protected]"
target="_blank">[email protected]</a>
</div>
</div>
</div>
</div>
<!-- Links -->
<div class="project" id="contact">
<div class="line-horizontal"></div>
<div class="experience-content">
<h4>Links</h4>
<div class="experience-footer row">
<a class="a-button" href="https://linkedin.com/in/mattdavis00" target="_blank"
rel="noreferrer">LinkedIn: <i class="fab fa-linkedin-in fa-sm"></i></a>
<a class="a-button" href="mailto:[email protected]" target="_blank" rel="noreferrer">Email:
<i class="far fa-envelope fa-sm"></i></a>
<a class="a-button" href="https://github.com/MattDavis00/" target="_blank"
rel="noreferrer">GitHub <i class="fab fa-github fa-sm"></i></a>
</div>
</div>
<div class="copyright">
Disclaimer: all written statements are those of my own and not representative of the views or claims
of my past or present employers and
institutions.<br /><br />
Copyright © Matt Davis
<!-- Get current year -->
<script>document.write(new Date().getFullYear());</script>
</div>
</div>
</div>
</div>
</body>
</html>