-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
558 lines (491 loc) · 21.8 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
<!DOCTYPE HTML>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JPN5J4SN3W"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JPN5J4SN3W');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Ben Carpenter</title>
<link rel="icon" href="images/browser.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" type='text/css' href="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/devicon.min.css" />
<!-- Facebook and Twitter integration -->
<meta property="og:title" content=""/>
<meta property="og:image" content=""/>
<meta property="og:url" content=""/>
<meta property="og:site_name" content=""/>
<meta property="og:description" content=""/>
<meta name="twitter:title" content="" />
<meta name="twitter:image" content="" />
<meta name="twitter:url" content="" />
<meta name="twitter:card" content="" />
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="shortcut icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700" rel="stylesheet">
<!-- Animate.css -->
<link rel="stylesheet" href="css/animate.css">
<!-- Icomoon Icon Fonts-->
<link rel="stylesheet" href="css/icomoon.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- Flexslider -->
<link rel="stylesheet" href="css/flexslider.css">
<!-- Flaticons -->
<link rel="stylesheet" href="fonts/flaticon/font/flaticon.css">
<!-- Owl Carousel -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="css/style.css">
<!-- Modernizr JS -->
<script src="js/modernizr-2.6.2.min.js"></script>
<!-- FOR IE9 below -->
<!--[if lt IE 9]>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="colorlib-page">
<div class="container-wrap">
<a href="#" class="js-colorlib-nav-toggle colorlib-nav-toggle" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"><i></i></a>
<aside id="colorlib-aside" role="complementary" class="border js-fullheight">
<div class="text-center">
<div class="author-img" style="background-image: url(images/profilepic.jpg);"></div>
<h1 id="colorlib-logo"><a href="index.html">Ben Carpenter</a></h1>
<span class="position"><a href="#">BSc Computer Science Student</a></span>
</div>
<nav id="colorlib-main-menu" role="navigation" class="navbar">
<div id="navbar" class="collapse">
<ul>
<li class="active"><a href="#" data-nav-section="home">Home</a></li>
<li><a href="#" data-nav-section="about">About</a></li>
<li><a href="#" data-nav-section="skills">Skills</a></li>
<li><a href="#" data-nav-section="experience">Experience</a></li>
<li><a href="#" data-nav-section="education">Education</a></li>
<li><a href="#" data-nav-section="projects">Projects</a></li>
</ul>
</div>
</nav>
<div class="colorlib-footer">
<ul>
<li><a href="https://github.com/bencarpenterdev"target="_blank"><i class="icon-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/bencarpenter03/"target="_blank"><i class="icon-linkedin2"></i></a></li>
</ul>
<br>
<br>
<br>
</div>
</aside>
<div id="colorlib-main">
<section id="colorlib-hero" class="js-fullheight" data-section="home" style="height: 1278px;">
<div class="flexslider js-fullheight" style="height: 1278px;">
<ul class="slides">
<li style="background-image: url(""); width: 100%; float: left; margin-right: -100%; position: relative; opacity: 1; display: block; z-index: 2;" class="flex-active-slide">
<div class="overlay"></div>
<div class="container-fluid">
<div class="col-md-11 col-md-offset-5 col-md-pull-3 col-sm-12 col-xs-12 js-fullheight slider-text animated fadeInUp" style="height: 1278px;">
<div class="slider-text-inner js-fullheight" style="height: 1278px;">
<div class="desc">
<h1>Ben Carpenter</h1>
<h2>I'm a BSc Computer Science Student.
</h2>
<a>
</a><p><a></a><a class="btn btn-primary btn-learn" href="docs/Ben Carpenter's CV.pdf"target="_blank">Download CV<i class="icon-download4"></i></a></p>
</div>
</div>
</div>
</div>
</li>
</ul>
<ol class="flex-control-nav flex-control-paging"></ol><ul class="flex-direction-nav"><li class="flex-nav-prev"><a class="flex-prev flex-disabled" href="#" tabindex="-1">Previous</a></li><li class="flex-nav-next"><a class="flex-next flex-disabled" href="#" tabindex="-1">Next</a></li></ul></div>
</section>
<section class="colorlib-education" data-section="about">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<h2 class="colorlib-heading animate-box">About</h2>
</div>
</div>
<div class="col-md-11 col-md-offset-5 col-md-pull-3 col-sm-12 col-xs-12 js-fullheight slider-text animated fadeInUp" style="height: 1278px;">
<div class="slider-text-inner js-fullheight" style="height: 1278px;">
<div class="desc">
<h2>I'm currently studying Computer Science and am aspiring to be a Software Engineer after University.
I am passionate about programming as I enjoy the creativity of solving problems with code.
<br><br>I have recently finished my second year of my university course and am currently on my placement year.
</h2>
</div>
</div>
</div>
</section>
<section class="colorlib-education" data-section="skills">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<h2 class="colorlib-heading animate-box">My Skills</h2>
</div>
</div>
<div class="col-md-11 col-md-offset-5 col-md-pull-3 col-sm-12 col-xs-12 js-fullheight slider-text animated fadeInUp" style="height: 1278px;">
<div class="slider-text-inner js-fullheight" style="height: 1278px;">
<div class="desc">
<h2>Languages</h2>
<i class="devicon-cplusplus-plain colored" style="font-size: 125px;"> </i>
<i class="devicon-python-plain-wordmark colored" style="font-size: 125px;"> </i>
<i class="devicon-javascript-plain colored"style="font-size: 125px;"> </i>
<i class="devicon-java-plain-wordmark colored"style="font-size: 125px;"> </i>
<h2><br><br>Tools & Frameworks</h2>
<i class="devicon-docker-plain-wordmark"style="font-size: 125px;"> </i>
<i class="devicon-jenkins-plain colored"style="font-size: 125px;"> </i>
<i class="devicon-qt-original colored"style="font-size: 125px;"> </i>
<i class="devicon-git-plain colored"style="font-size: 125px;"> </i>
</div>
</div>
</div>
</section>
<section class="colorlib-education" data-section="experience">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<h2 class="colorlib-heading animate-box">My Work Experience</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="timeline-centered">
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-image">
<a href="https://uk.leonardo.com/en/"target="_blank">
<img class="img-circle img-responsive" src="images/Leonardo.jpg" alt="">
</a>
</div>
<div class="timeline-label">
<h2>Industrial Placement Software Engineer<span>| Jul 2024 - Jul 2025</span></h2>
<span>
<h2><b>Leonardo</b></h2>
</span>
<p>Leonardo focuses on the technologies in aerospace, defence and security. <br><i>Description coming soon</i></p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-image">
<a href="https://www.cognidox.com/"target="_blank">
<img class="img-circle img-responsive" src="images/Cognidox.jpg" alt="">
</a>
</div>
<div class="timeline-label">
<h2>Junior Software and Support Engineer <span>| Jun 2023 - Aug 2023</span></h2>
<span>
<h2><b>Cognidox</b></h2>
</span>
<p>Based in Cambridge, Cognidox provides document management solutions for medical devices and high-tech product development.
I was involved in testing the solution’s capabilities with automated scripts, developing a customer support dashboard and researching AI tools to aid in customer onboarding.</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-image">
<img class="img-circle img-responsive" src="images/spoons.jpg" alt="">
</div>
<div class="timeline-label">
<h2>Bar Associate <span>| Jun 2022 - Jan 2023</span></h2>
<span>
<h2><b>J D Wetherspoon</b></h2>
</span>
<p>This was my first part-time job after Sixth Form. My role involved working behind the bar, bringing food to customers, cleaning and closing at the end of the shift.</p>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-icon color-none">
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-experience" data-section="education">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<h2 class="colorlib-heading animate-box">My Education</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="timeline-centered">
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-image">
<a href="https://www.ntu.ac.uk/course/science-and-technology/ug/bsc-hons-computer-science"target="_blank">
<img class="img-circle img-responsive" src="images/ntu.jpg" alt="">
</a>
</div>
<div class="timeline-label">
<h2>
Nottingham Trent University <span>| 2022 - 2026</span><br>
<span>
BSc Computer Science<br>
</span>
</h2>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-image">
<img class="img-circle img-responsive" src="images/ips.jpg" alt="">
</div>
<div class="timeline-label">
<h2>
Ipswich School <span>| 2015 - 2022</span><br>
<span>
A Levels in Design Technology, Computer Science and Mathematics<br>
</span>
</h2>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-icon color-none">
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-experience" data-section="projects">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box fadeInLeft animated" data-animate-effect="fadeInLeft">
<h2 class="colorlib-heading animate-box fadeInUp animated">Projects I've worked on</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="timeline-centered">
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-image">
<img class="img-circle img-responsive" style="width: 60px; height: 60px;" src="images/languages/cplusplus-original.svg" alt="">
</div>
<div class="timeline-label">
<h2>Radar GUI Vector Maps Prototype <span>| 2024 - 2025</span></h2>
<span>
<div class="container">
<div class="row">
<div class="col-md-7">
For Leonardo. I investigated the feasibility of vector maps and developed a prototype of Leonardo's radar GUI, displaying this map type. This was developed using the QT development framework. <br>
</div>
</div>
</div>
</span>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-image">
<img class="img-circle img-responsive" style="width: 60px; height: 60px;" src="images/languages/python.svg" alt="">
</div>
<div class="timeline-label">
<h2>Multimodal LLM Testing and Deployment <span>| 2024</span></h2>
<span>
<div class="container">
<div class="row">
<div class="col-md-7">
For Leonardo's AI & Machine Learning Hackathon. A python script which use's Meta's <a href="https://www.llama.com/" target="_blank">Llama 3.2</a> large language model to describe
and interpret images and text prompts. The AI model was investigated to see how well it would describe and recognise images such as military vehicles, SAR imaging and optical satellite images of countries. <br>
</div>
</div>
</div>
</span>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-image">
<img class="img-circle img-responsive" style="width: 60px; height: 60px;" src="images/languages/cplusplus-original.svg" alt="">
</div>
<div class="timeline-label">
<h2>Weather Data Application <span>| 2024</span></h2>
<span>
<div class="container">
<div class="row">
<div class="col-md-3">
For Software Design & Implementation module in Year 2. A basic command line which use's Open-Meteo's <a href="https://open-meteo.com/" target="_blank">API</a> to retrieve and display weather data.<br>
[<a href="https://github.com/BenCarpenterDev/WeatherDataApp" target="_blank">Code</a>]
[<a href="https://drive.google.com/file/d/1WwBubKSkwzHmrpNpaaMK89GO-fVePgR9/view?usp=sharing">Download</a>]
</div>
<div class="col-md-4">
<div class="gifImages">
<img width="100%" src="images/wda.jpg" alt="Weather Data Application">
</div>
</div>
</div>
</div>
</span>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-image">
<img class="img-circle img-responsive" style="width: 60px; height: 60px;" src="images/languages/cplusplus-original.svg" alt="">
</div>
<div class="timeline-label">
<h2>Parsing GPS Data & Unit Testing <span>| 2024</span></h2>
<span>
<div class="container">
<div class="row">
<div class="col-md-7">
For Software Engineering module in Year 2. I implemented functionality to parse and interpret GPS coordinates from specified
data formats. Jenkins was also utilised to test the functionality as I was developing it. I also designed unit tests using the Boost Unit Test Framework.<br>
<br>
</div>
</div>
</div>
</span>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-image">
<img class="img-circle img-responsive" style="width: 60px; height: 60px;" src="images/languages/java.png" alt="">
</div>
<div class="timeline-label">
<h2>Cloud Storage System <span>| 2024</span></h2>
<span>
<div class="container">
<div class="row">
<div class="col-md-7">
For Systems Software module in Year 2. A GUI app which uses Docker containerised environments, functioning as cloud-based file servers.<br>
[<a href="https://github.com/BenCarpenterDev/CloudStorageSystem" target="_blank">Code</a>]
</div>
</div>
</div>
</span>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-image">
<img style="width: 60px; height: 60px;" src="images/languages/javascript.svg" alt="">
</div>
<div class="timeline-label">
<h2>Customer Support Dashboard <span>| 2023</span></h2>
<span>
<div class="container">
<div class="row">
<div class="col-md-7">
For Cognidox. A dashboard that handles Hubspot support ticket data, visualising the correlations between ticket issues and the
type of industries submitting them, shown through bar and area charts.<br>
</div>
</div>
</div>
</span>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-image">
<img class="img-circle img-responsive" style="width: 60px; height: 60px;" src="images/languages/cplusplus-original.svg" alt="">
</div>
<div class="timeline-label">
<h2>Randomly Generated Maze <span>| 2022</span></h2>
<span>
<div class="container">
<div class="row">
<div class="col-md-7">
For Programming module in Year 1. My randomly generated maze program which utilises the depth-first search algorithm. This program uses the SFML library.<br>
[<a href="https://github.com/BenCarpenterDev/RandomMazeGeneration" target="_blank">Code</a>]
</div>
</div>
</div>
</span>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-image">
<img class="img-circle img-responsive" style="width: 60px; height: 60px;" src="images/languages/csharp-original.svg" alt="">
</div>
<div class="timeline-label">
<h2>Spaced Out <span>| 2021</span></h2>
<span>
<div class="container">
<div class="row">
<div class="col-md-3">
This was my NEA project during Sixth Form. It's a 2.5d platformer game made with Unity.<br>
[<a href="https://github.com/BenCarpenterDev/SpacedOut" target="_blank">Code</a>]
[<a href="https://drive.google.com/file/d/1M351dplJsiSuXPFDLyb0MuQJwypFzzj4/view?usp=sharing">Download</a>]
</div>
<div class="col-md-4">
<div class="gifImages">
<img width="100%" src="gifs/Space.gif" alt="Spaced Out game">
</div>
</div>
</div>
</div>
</span>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
<style>
.content {
max-width: 50px;
margin: auto;
}
</style>
</section>
</div><!-- end:colorlib-main -->
</div><!-- end:container-wrap -->
</div><!-- end:colorlib-page -->
<!-- jQuery -->
<script src="js/jquery.min.js"></script>
<!-- jQuery Easing -->
<script src="js/jquery.easing.1.3.js"></script>
<!-- Bootstrap -->
<script src="js/bootstrap.min.js"></script>
<!-- Waypoints -->
<script src="js/jquery.waypoints.min.js"></script>
<!-- Flexslider -->
<script src="js/jquery.flexslider-min.js"></script>
<!-- Owl carousel -->
<script src="js/owl.carousel.min.js"></script>
<!-- Counters -->
<script src="js/jquery.countTo.js"></script>
<!-- MAIN JS -->
<script src="js/main.js"></script>
</body>
</html>