-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
528 lines (527 loc) · 40.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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-147640575-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-147640575-1');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css">
<title>Ben Thomas Portfolio</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/stylesheet.css">
<link rel="stylesheet" href="http://weloveiconfonts.com/api/?family=zocial" />
<link rel="shortcut icon" href="favicon.ico">
<style> a {color:rgba(167,1,1,1);}</style>
<style> a:hover {color:rgba(255,132,132,1);}</style>
<script>
$(function() {
var selectedClass = "";
$(".filter").click(function(){
selectedClass = $(this).attr("data-rel");
$("#gallery").fadeTo(100, 0.1);
$("#gallery div").not("." + selectedClass + "," + ".pic-modal").fadeOut().removeClass('animation');
setTimeout(function() {
$("."+selectedClass).fadeIn().addClass('animation');
$("#gallery").fadeTo(300, 1);
}, 300);
});
});
</script>
<script>
$(document).ready(function () {
$("div").on('click','#notgPic',function () {
$('#notg').modal('show');
});
$("div").on('click','#blPic',function () {
$('#bread-log').modal('show');
});
$("div").on('click','#gtfsPic',function () {
$('#gtfs').modal('show');
});
$("div").on('click','#space-canoePic',function () {
$('#space-canoe').modal('show');
});
$("div").on('click','#twitch-chatbotPic',function () {
$('#twitch-chatbot').modal('show');
});
$("div").on('click','#ccdPic',function () {
$('#bee-game').modal('show');
});
$("div").on('click','#the-queuePic',function () {
$('#the-queue').modal('show');
});
$("div").on('click','#game-dev-blogPic',function () {
$('#blog').modal('show');
});
$("div").on('click','#photographyPic',function () {
$('#photography').modal('show');
});
$("div").on('click','#pstwPic',function () {
$('#pstw').modal('show');
});
$("div").on('click','#gbPic',function () {
$('#gb').modal('show');
});
$("div").on('click','#nanodegreePic',function () {
$('#nanodegree').modal('show');
});
$("div").on('click','#presskitPic',function () {
$('#bt-presskit').modal('show');
});
$("div").on('click','#unityStarterKitPic',function () {
$('#unity-starter').modal('show');
});
$("div").on('click','#breadLog',function () {
$('#bread-log').modal('show');
});
$("div").on('click','#discordPic',function () {
$('#discord-bot').modal('show');
});
});
</script>
</head>
<body>
<div class="row">
<div class="col-md-12" id="social">
<a href="https://github.com/bthomas2622" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" width="30" height="30"><!-- Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z"/></svg></a>
<a href="https://www.linkedin.com/in/benjaminwthomas" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" width="30" height="30"><!-- Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"/></svg></a>
<a href="https://twitter.com/freebrunch" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" width="30" height="30"><!-- Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z"/></svg></a>
</div>
</div>
<div class="sorting-buttons" >
<div class="row">
<div class="col-md-12 hero">
<h1 class="title">Ben Thomas</h1>
<div class="img-padding">
<img class="my-picture" src="images/yellowstonecanyon.jpg" srcset="dist/img/yellowstonecanyon-300.jpg 300w, images/yellowstonecanyon.jpg 640w" alt="This is a picture of me">
</div>
<h2 class="subtitle">Featured Projects</h2>
</div>
</div>
<div class="row">
<div class="col-md-12 d-flex justify-content-center my-2">
<button type="button" class="btn btn-light waves-effect filter" data-rel="all">All</button>
<button type="button" class="btn btn-light waves-effect filter" data-rel="1">Games</button>
<button type="button" class="btn btn-light waves-effect filter" data-rel="2">Blog</button>
<button type="button" class="btn btn-light waves-effect filter" data-rel="3">Creative</button>
<button type="button" class="btn btn-light waves-effect filter" data-rel="4">Coding</button>
</div>
</div>
</div>
<hr/>
<div class="container">
<div class="gallery mt-3" id="gallery">
<div class="mb-3 pics animation all 4">
<div class="pic-modal" id="discordBot">
<btn class="btn btn-dark" data-toggle="modal" data-target="#discord-bot">Discord Bot</btn>
</div>
<img class="img-fluid image" src="images/discordimage.png" alt="Discord Bot" id="discordPic">
</div>
<div class="mb-3 pics animation all 1">
<div class="pic-modal" id="notgButton">
<btn class="btn btn-dark" data-toggle="modal" data-target="#notg">Nectar of the Gods</btn>
</div>
<img class="img-fluid image" src="images/projects/healthHive16x9.png" alt="Nectar of the Gods" id="notgPic">
</div>
<div class="mb-3 pics animation all 2">
<div class="pic-modal" id="breadLog">
<btn class="btn btn-dark" data-toggle="modal" data-target="#bread-log">Bread Log</btn>
</div>
<img class="img-fluid image" src="images/projects/seededsourdough.jpg" alt="Bread Log" id="blPic">
</div>
<div class="mb-3 pics animation all 4">
<div class="pic-modal" id="gtfsButton">
<btn class="btn btn-dark" data-toggle="modal" data-target="#gtfs">GTFS Lab</btn>
</div>
<img class="img-fluid image" src="images/projects/gtfs-lab.PNG" alt="GTFS Lab" id="gtfsPic">
</div>
<div class="mb-3 pics animation all 1">
<div class="pic-modal" id="space-canoeButton">
<btn class="btn btn-dark" data-toggle="modal" data-target="#space-canoe">Space Canoe</btn>
</div>
<img class="img-fluid image" src="images/projects/space-canoe.png" alt="Space Canoe" id="space-canoePic">
</div>
<div class="mb-3 pics animation all 4">
<div class="pic-modal" id="twitch-chatbotButton">
<btn class="btn btn-dark" data-toggle="modal" data-target="#twitch-chatbot">Twitch Chatbot</btn>
</div>
<img class="img-fluid image" src="images/projects/twitchdisposition.JPG" alt="Twitch Disposition" id="twitch-chatbotPic">
</div>
<div class="mb-3 pics animation all 1">
<div class="pic-modal" id="ccdButton">
<btn class="btn btn-dark" data-toggle="modal" data-target="#bee-game">Colony Collapse Disorder</btn>
</div>
<img class="img-fluid image" src="images/projects/phorid400.png" alt="Bee Game" id="ccdPic">
</div>
<div class="mb-3 pics animation all 1">
<div class="pic-modal" id="presskitButton">
<btn class="btn btn-dark" data-toggle="modal" data-target="#bt-presskit">Presskit</btn>
</div>
<img class="img-fluid image" src="images/projects/bt-presskit.PNG" alt="BT Presskit" id="presskitPic">
</div>
<div class="mb-3 pics animation all 1">
<div class="pic-modal" id="unityStarterKitButton">
<btn class="btn btn-dark" data-toggle="modal" data-target="#unity-starter">Unity 2D Starter Kit</btn>
</div>
<img class="img-fluid image" src="images/projects/unity-kit.PNG" alt="Unity 2D Starter Kit" id="unityStarterKitPic">
</div>
<div class="mb-3 pics animation all 3">
<div class="pic-modal" id="the-queueButton">
<btn class="btn btn-dark" data-toggle="modal" data-target="#the-queue">The Queue Podcast</btn>
</div>
<img class="img-fluid image" src="images/projects/the-queue.jpg" alt="The Queue" id="the-queuePic">
</div>
<div class="mb-3 pics animation all 2">
<div class="pic-modal" id="game-dev-blogButton">
<btn class="btn btn-dark" data-toggle="modal" data-target="#blog">Game Dev Blog</btn>
</div>
<img class="img-fluid image" src="images/projects/gamedevblog.PNG" alt="Game Dev Blog" id="game-dev-blogPic">
</div>
<div class="mb-3 pics animation all 3">
<div class="pic-modal" id="photographyButton">
<btn class="btn btn-dark" data-toggle="modal" data-target="#photography">Photography Portfolio</btn>
</div>
<img class="img-fluid image" src="images/projects/photography.jpg" alt="Photography Portfolio" id="photographyPic">
</div>
<div class="mb-3 pics animation all 1">
<div class="pic-modal" id="pstwButton">
<btn class="btn btn-dark" data-toggle="modal" data-target="#pstw">Press Space to Wave</btn>
</div>
<img class="img-fluid image" src="images/projects/pstw.png" alt="Press Space to Wave" id="pstwPic">
</div>
<div class="mb-3 pics animation all 4">
<div class="pic-modal" id="gbButton">
<btn class="btn btn-dark" data-toggle="modal" data-target="#gb">GiantBomb Chrome Extension</btn>
</div>
<img class="img-fluid image" src="images/projects/ExampleUsage.JPG" alt="Giant Bomb Chrome Extension" id="gbPic">
</div>
<div class="mb-3 pics animation all 4">
<div class="pic-modal" id="nanodegreeButton">
<btn class="btn btn-dark" data-toggle="modal" data-target="#nanodegree">Udacity Front End Nanodegree</btn>
</div>
<img class="img-fluid image" src="images/projects/neighmap.JPG" alt="Front End Nanodegree" id="nanodegreePic">
</div>
</div>
<!-- Modals -->
<!-- Discord Bot -->
<div class="modal fade" id="discord-bot" tabindex="-1" role="dialog" aria-labelledby="discord-bot" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h3><a target="_blank" href="https://github.com/bthomas2622/freeBrunch-discord-bot">Discord Bot</a></h3>
<p class="description">Discord Bot I created for Discord Server with friends that tracks game rankings, posts free games, pulls game information, and other fun commands. See <a target="_blank" href="https://github.com/bthomas2622/freeBrunch-discord-bot/blob/main/README.md">README</a> for full list of bot features! Built with <a target="_blank" href="https://discord.js.org/#/">discordjs</a>, hosted on Raspberry Pi 4, utilizes a variety of game APIs.</p>
<p class="description"><a target="_blank" href="https://github.com/bthomas2622/freeBrunch-discord-bot">GitHub</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- NotG -->
<div class="modal fade" id="notg" tabindex="-1" role="dialog" aria-labelledby="notg" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h3><a target="_blank" href="https://store.steampowered.com/app/1421410/Nectar_of_the_Gods/">Nectar of the Gods</a></h3>
<p class="description">Nectar of the Gods is a an unquenchable multiplayer real-time strategy game where bugs clash over the sweet nectar of sugary beverages. From Beetle Brigade to Spidey Party, you will artfully master strengths and shortcomings to topple boba shops and coffee bars. The game was built with the <a target="_blank" href="https://unity.com/">Unity</a> game engine. I programmed the online functionality using the open source <a target="_blank" href="https://github.com/Facepunch/Facepunch.Steamworks">Facepunch C# Steamworks Wrapper</a>. I created the art/animations in <a target="_blank" href="https://krita.org/en/">Krita</a> open source painting program.</p>
<p class="description"><a target="_blank" href="https://store.steampowered.com/app/1421410/Nectar_of_the_Gods/">Steam Store Page</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Bread Log -->
<div class="modal fade" id="bread-log" tabindex="-1" role="dialog" aria-labelledby="bread-log" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h3><a target="_blank" href="https://bthomas2622.github.io/bread-log/">Bread Log</a></h3>
<p class="description">Bread Log is my Sourdough Blog. A wheaty harvest of recipe reactions, learnings, reviews and crumb comparisons. Built with <a target="_blank" href="https://jekyllrb.com/">Jekyll</a>. Theme <a target="_blank" href="https://github.com/jekyll/minima">Minima</a>. Hosted on <a target="_blank" href="https://pages.github.com/">GitHub Pages</a>.</p>
<p class="description"><a target="_blank" href="https://bthomas2622.github.io/bread-log/">Blog</a> | <a target="_blank" href="https://github.com/bthomas2622/bread-log">Github</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Blog -->
<div class="modal fade" id="blog" tabindex="-1" role="dialog" aria-labelledby="blog" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h3><a target="_blank" href="gamedevblog/index.html">Game Dev Blog</a></h3>
<p class="description">Blog where I share progress and learnings on game development journey.</p>
<p class="description"><a target="_blank" href="gamedevblog/index.html">Blog</a> | <a target="_blank" href="https://github.com/bthomas2622/game-dev-blog">Github</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- GTFS Lab -->
<div class="modal fade" id="gtfs" tabindex="-1" role="dialog" aria-labelledby="gtfs" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h3><a target="_blank" href="gtfslab-frontend/index.html">GTFS Lab</a></h3>
<p class="description">GTFS LAB is a data exploration project centered around GTFS (General Transit Feed Specification) data. Public transit is a huge passion of mine and I created GTFS Lab to explore the space. The backend is built with Node.js, Expressjs and MongoDB and hosted on Heroku. The frontend is single-page website built with Reactjs, Bootstrap, and Webpack.</p>
<p class="description"><a target="_blank" href="gtfslab-frontend/index.html">Website</a> | <a target="_blank" href="https://github.com/bthomas2622/gtfs-lab-frontend">Frontend Github</a> | <a target="_blank" href="https://github.com/bthomas2622/gtfs-lab-backend">Backend Github</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Space Canoe -->
<div class="modal fade" id="space-canoe" tabindex="-1" role="dialog" aria-labelledby="space-canoe" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h3><a target="_blank" href="https://github.com/bthomas2622/space-canoe">Space Canoe</a></h3>
<p class="description">Space Canoe is a 2D arcade style game written in Java using the LibGDX framework. The player uses the left and right arrows (left and right screen touch on mobile) to paddle the canoe away from the perilous space debris. The goal is to survive as long as possible in order to obtain a high "debris dodged" score. Built with LibGDX tools: Box2D, TexturePacker, and FreeType. Art created with Adobe Photoshop.</p>
<p class="description"><a target="_blank" href="https://github.com/bthomas2622/space-canoe">Github</a> | <a target="_blank" href="https://freebrunch.itch.io/space-canoe">itch.io Download</a> | <a target="_blank" href="https://play.google.com/store/apps/details?id=io.github.bthomas2622">Google Play</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Twitch Chatbot -->
<div class="modal fade" id="twitch-chatbot" tabindex="-1" role="dialog" aria-labelledby="twitch-chatbot" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h3><a target="_blank" href="https://github.com/bthomas2622/twitchDisposition">Twitch Chatbot</a></h3>
<p class="description">Twitch Disposition is a Twitch IRC Chatbot that performs sentimental analysis in a given Twitch channel. The bot connects to twitch chat through Twitch's Chat API and applies VADER (Valence Aware Dictionary and sEntiment Reasoner), part of the Python "Natural Language Toolkit". The application is presented through "PyQtGraph", a pure-Python graphics library. PyQtGraph leverages the GUI toolkit PyQt5 and the scientific computing package NumPy.</p>
<p><a target="_blank" href="https://github.com/bthomas2622/twitchDisposition">Github</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Photography -->
<div class="modal fade" id="photography" tabindex="-1" role="dialog" aria-labelledby="photography" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h3><a target="_blank" href="https://www.flickr.com/gp/150766453@N07/87476x">Photography Portfolio</a></h3>
<p class="description">A collection of my favorite photos. I mainly do nature photography. Photography is a hobby that takes you to extraordinary places. It has helped me connect with nature and better appreciate the beauty in a moment.</p>
<p><a target="_blank" href="https://www.flickr.com/gp/150766453@N07/87476x">Flickr</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- The Queue -->
<div class="modal fade" id="the-queue" tabindex="-1" role="dialog" aria-labelledby="the-queue" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h3><a target="_blank" href="https://www.youtube.com/playlist?list=PLPLT9S3jrAETKewMJCwdFIOaawPGXWdnN">The Queue Podcast</a></h3>
<p class="description">Created weekly gaming podcast with two friends. Managed recording schedule, episode planning documents, audio editing, website, art assets, livestream, and RSS/VOD upload.</p>
<p><a target="_blank" href="https://www.youtube.com/playlist?list=PLPLT9S3jrAETKewMJCwdFIOaawPGXWdnN">Youtube</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Bee Game -->
<div class="modal fade" id="bee-game" tabindex="-1" role="dialog" aria-labelledby="bee-game" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h3><a target="_blank" href="bee-game/welcomeScreen.html">CCD</a></h3>
<p class="description">Colony Collapse Disorder (CCD) is a procedurally generated adventure game where you play as an Oakland bee scouring a flower field. You must maintain honey reserves, navigate randomized encounters, and most importantly produce Queen Bees. Programmed with HTML, JS, CSS. Tools used include Knockout, JQuery, Bootstrap, OpenWeatherMap API, GIMP, and Gulp.</p>
<p class="description"><a target="_blank" href="https://github.com/bthomas2622/bee-game">Github</a> | <a target="_blank" href="bee-game/welcomeScreen.html">Game</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Ben Thomas Games Presskit -->
<div class="modal fade" id="bt-presskit" tabindex="-1" role="dialog" aria-labelledby="bt-presskit" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h3><a target="_blank" href="bt-presskit/index.html">Presskit</a></h3>
<p class="description">A Presskit I created for my games. If you are unfamiliar with a presskit it is a pre-packaged set of promotional materials distributed to the media for promotional use. I built my presskit using <a target="_blank" href="https://github.com/pixelnest/presskit.html">presskit.html</a> which is built off of <a target="_blank" href="https://dopresskit.com/">presskit().</a></p>
<p class="description"><a target="_blank" href="https://github.com/bthomas2622/bt-presskit">Github</a> | <a target="_blank" href="bt-presskit/index.html">Presskit</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Unity 2020 2D Starter Kit -->
<div class="modal fade" id="unity-starter" tabindex="-1" role="dialog" aria-labelledby="unity-starter" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h3><a target="_blank" href="https://github.com/bthomas2622/unity-2d-starter-kit">Unity 2020 2D Starter Kit</a></h3>
<p class="description">I built this "Unity 2020 2D Starter Kit" for Unity developers / jammers to clone and leverage in order to hit the ground running on a 2D game. It contains a simple main menu with several quality of life features:</p>
<ul>
<li><b>New Unity Input System</b> configured for mouse + keyboard + gamepad input and remappable controls</li>
<li><b>Player Settings</b> capable of saving preferences for fullscreen/windowed, music volume, effects volume, keyboard mappings, gamepad mappings, and language</li>
<li><b>Audio Manager</b> for playing music and sounds</li>
<li><b>Localization Manager</b> for seamless switching between languages</li>
</ul>
<p class="description"><a target="_blank" href="https://github.com/bthomas2622/unity-2d-starter-kit">Github</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Giant Bomb Chrome Extension -->
<div class="modal fade" id="gb" tabindex="-1" role="dialog" aria-labelledby="gb" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h3><a target="_blank" href="https://chrome.google.com/webstore/detail/giant-bomb-game-wiki-righ/obmggdebgoaccpphdefilkalbgkdipna?hl=en-US">Giant Bomb Chrome Extension</a></h3>
<p class="description">This Google Chrome Extension for Giant Bomb and video game fans allows you to right click a highlighted game title in the Google Chrome browser and search that selection in the Giant Bomb Game Wiki. If the highlighted selection matches a game in the wiki database a new window will open on the wiki page for that game. Programmed with JavaScript/JSON. Tools used include JQuery (AJAX), Giant Bomb API, and Chrome Developer API.</p>
<p class="description"><a target="_blank" href="https://github.com/bthomas2622/Giant-Bomb-Chrome-Extension">Github</a> | <a target="_blank" href="https://chrome.google.com/webstore/detail/giant-bomb-game-wiki-righ/obmggdebgoaccpphdefilkalbgkdipna?hl=en-US">Chrome Store</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Nanodegree -->
<div class="modal fade" id="nanodegree" tabindex="-1" role="dialog" aria-labelledby="nanodegree" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h3><a target="_blank" href="https://www.udacity.com/course/front-end-web-developer-nanodegree--nd001">Udacity Front End Web Dev Nanodegree</a></h3>
<p class="description"><a target="_blank" href="neighborhood-map-project/index.html">Neighborhood Map</a>: Google Map API Project - <a target="_blank" href="https://github.com/bthomas2622/neighborhood-map-project">Github</a></p>
<p class="description"><a target="_blank" href="resume/index.html">Javascript Created Online Resume</a>: JavaScript Project - <a target="_blank" href="https://github.com/bthomas2622/frontend-nanodegree-resume">Github</a></p>
<p class="description"><a target="_blank" href="arcade-game/index.html">Classic Arcade Game</a>: Intelligent Object Design Project - <a target="_blank" href="https://github.com/bthomas2622/arcade-game">Github</a></p>
<p class="description"><a target="_blank" href="web-optimize/index.html">Website Optimization</a>: Optimization Project - <a target="_blank" href="https://github.com/bthomas2622/frontend-nanodegree-mobile-portfolio">Github</a></p>
<p class="description"><a target="_blank" href="frontend-nanodegree-feedreader/index.html">JavaScript Tester: RSS Feed Reader</a>: Code Testing Project - <a target="_blank" href="https://github.com/bthomas2622/frontend-nanodegree-feedreader">Github</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Press Space to Wave -->
<div class="modal fade" id="pstw" tabindex="-1" role="dialog" aria-labelledby="pstw" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h3><a target="_blank" href="http://globalgamejam.org/2017/games/press-space-wave">Press Space to Wave</a></h3>
<p class="description">"Press SPACE to Wave" was created during the 2017 Global Game Jam at Google Launchpad in San Francisco. The theme for the game jam was "waves". The team was excited about the prospect of waves as a form of communication between humans and thought that a game about propagating human waves would be a fun project. The game that resulted is a 2D top down local multiplayer game written in Java using the LibGDX framework.</p>
<p class="description"><a target="_blank" href="https://github.com/bthomas2622/team-wave-ggj">Github</a> | <a target="_blank" href="https://freebrunch.itch.io/press-space-to-wave">itch.io Download</a> | <a target="_blank" href="https://play.google.com/store/apps/details?id=com.mygdx.ggjteamwave">Google Play</a></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>