-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (80 loc) · 3.19 KB
/
index.html
File metadata and controls
80 lines (80 loc) · 3.19 KB
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
<!DOCTYPE html>
<html>
<head>
<title>
Projects
</title>
<link href="./style.css" rel="stylesheet">
</link>
</head>
<body>
<div class="main">
<div class="heading">
<h1>
Projects
</h1>
<p>Here's a list of some of my side projects, from music to video games to ecommerce sites. More to be added soon.</p>
</div>
<div class="list-container">
<ul>
<li>
<a href="https://jtmingus.github.io/midi-chord-generator/">
Midi Chord Generator
<img src="./icons/code.svg" width="24px" height="24px">
<img src="./icons/music.svg" width="24px" height="24px">
</a>
<p>Build your own chord progression or randomly generate one and then download the progression as Midi! This is my first project using React.</p>
</li>
<li>
<a href="https://jtmingus.github.io/blockstack-game/">
Blockstack
<img src="./icons/game.svg" width="24px" height="24px">
</a>
<p>Recreation of a classic arcade game.</p>
</li>
<li>
<a href="./speedtap/index.html">
Speedtap
<img src="./icons/game.svg" width="24px" height="24px">
</a>
<p>Tap the listed colors as quick as you can and try and see how many you can get within a minute.</p>
</li>
<li>
<a href="./space/index.html">
Defenders
<img src="./icons/game.svg" width="24px" height="24px">
</a>
<p>First attempt using 'canvas' elements and first attempt at making an HTML game (2017).</p>
</li>
<li>
<a href="./go.fish/index.html">
go.fish
<img src="./icons/code.svg" width="20px" height="20px">
</a>
<p>Experimented with animating fish images around the screen to follow the mouse cursor.</p>
</li>
<li>
<a href="https://jtmingus.github.io/binary-tree-visualizer/">
Binary tree visualizer
<img src="./icons/code.svg" width="20px" height="20px">
</a>
<p>When doing problems on leetcode and other interview platforms, it can be difficult to visualize tree inputs. This visualizer takes an array of values and displays the corresponding binary tree.</p>
</li>
<li>
<a href="http://oathero.com">OatHero: Ecommerce website
<img src="./icons/code.svg" width="20px" height="20px">
</a>
<p>Built an ecommerce website from scratch for a friend. The website uses Firestore, Stripe, Node, and Angular.</p>
</li>
<li>
<a href="https://stoneholder28.itch.io/gnome-raider">Gnome Raider
<img src="./icons/music.svg" width="24px" height="24px">
<img src="./icons/game.svg" width="24px" height="24px">
</a>
<p>Created the soundtrack for "Gnome Raider", a game created for the GMTK 2024 Game Jam. I also contributed some minor code changes.</p>
</li>
</ul>
</div>
</div>
</body>
</html>