-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
172 lines (171 loc) · 4.87 KB
/
index.html
File metadata and controls
172 lines (171 loc) · 4.87 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
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
<!doctype html>
<html
lang="en"
data-depth="0">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/svg+xml" href="assets/img/favicon.svg" />
<meta
name="description"
content="Portfolio of Matt Gresham — a Python and Go developer building real-world tools and apps." />
<link
rel="stylesheet"
type="text/css"
href="index.css" />
<title>Matt G | Portfolio Website</title>
<script
src="assets/js/site-style.js"
defer></script>
</head>
<body>
<div id="site-nav"></div>
<header class="hero-section">
<h1>Matt G</h1>
<h3>Full Stack Developer</h3>
<p style="color: #8b949e; font-size: 1.1rem; margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto;">
I build real-world tools that solve real problems — from AI game bots to financial trackers and search engines.
</p>
</header>
<main>
<h2 style="text-align: center">Featured Projects</h2>
<br />
<h3 style="text-align: center"
>A selection of my best Python, Go, and React work</h3
>
<section class="card-grid">
<div class="card-container">
<div class="card-header">
<span
class="tag"
style="color: #431da2"
>Python</span
>
<span
class="tag"
style="color: #58a6ff"
>Math</span
>
<span
class="tag"
style="color: #02a6d0"
>Finance</span
>
<span
class="tag"
style="color: #43bda2"
>Full Stack Development</span
>
<span
class="tag"
style="color: #11d978"
>Web Development</span
>
<h3>The Finance Kit</h3>
</div>
<p
>Full-stack finance tracker built with Python and Streamlit. Tracks expenses, income, and budgets — and estimates taxes. Architected with a separate frontend and backend repo, deployed on Streamlit Cloud.</p
>
<p>Created: Jan. 3rd, 2026<br />Last Updated: April 21st, 2026</p>
<span class="boxes">Python</span>
<span class="boxes">Streamlit</span>
<span class="boxes">Full Stack Development</span>
<span class="boxes">Finance</span>
<br />
<a
class="text-link"
href="./pages/project-pages/finance_kit.html"
>View Source Code and Project</a
>
</div>
<div class="card-container">
<div class="card-header">
<span
class="tag"
style="color: #e2490d"
>Go</span
>
<span
class="tag"
style="color: #11d978"
>Web Development</span
>
<h3>Markdown to HTML Converter</h3>
</div>
<p
>CLI tool written in Go that converts Markdown files into styled HTML pages. Handles headings, code blocks, links, and lists — a practical entry into Go's standard library.</p
>
<p>Created: March 3rd, 2026<br />Last Updated: March 20th, 2026</p>
<span class="boxes">Go</span>
<span class="boxes">Web Development</span>
<span class="boxes">Text Processing</span>
<br />
<a
class="text-link"
href="./pages/project-pages/mdToHTMLConverter.html"
>View Source Code and Project</a
>
</div>
<div class="card-container">
<div class="card-header">
<span
class="tag"
style="color: #43bda2"
>Full Stack Development</span
>
<span
class="tag"
style="color: #11d978"
>Web Development</span
>
<span
class="tag"
style="color: #e20d0d"
>React</span
>
<h3>Chess Website</h3>
</div>
<p
>Interactive chess game built with React and Vite. Engineered a full board UI using react-chessboard-ui, with React Router navigation — the project that taught me React's component model and state management.</p
>
<p>Started: April 3rd, 2026<br />Last Updated: May 5th, 2026</p>
<span class="boxes">Full Stack Development</span>
<span class="boxes">Web Development</span>
<span class="boxes">React</span>
<br />
<a
class="text-link"
href="./pages/project-pages/chess-website.html"
>View Source code and Project</a
>
</div>
</section>
<br />
<h2 style="text-align: center">Who am I?</h2>
<article
>I'm a self-taught full stack developer with a focus on Python and Go. My projects span finance tools, AI game bots, search engines, and web apps — all built to solve specific, real-world problems rather than just practice exercises.<br /><br />
Explore my
<a
class="text-link"
href="pages/projects.html"
>full project list</a
>,
read the
<a
class="text-link"
href="pages/the-dev-docs.html"
>Dev Docs</a
>
where I write technical deep-dives, or
<a
class="text-link"
href="pages/about-me.html"
>learn more about me</a
>.</article
>
</main>
<div id="site-footer"></div>
</body>
</html>