-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
173 lines (171 loc) · 5.69 KB
/
index.html
File metadata and controls
173 lines (171 loc) · 5.69 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
173
<!DOCTYPE html>
<html lang="en">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="theme-color"
media="(prefers-color-scheme: light)"
content="cyan"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="#1C2A39"
/>
<head>
<title>tomrfitz</title>
<meta charset="utf-8" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#635bd5" />
<meta name="msapplication-TileColor" content="#0d59ad" />
<meta name="theme-color" content="#ffffff" />
<meta name="description" content="How to get in touch." />
<link rel="stylesheet" href="index.css" />
<link rel="me" href="https://social.vivaldi.net/@tomrfitz" />
</head>
<body>
<div class="scroller">
<section>
<div class="section-items">
<h1>Hello, I'm Thomas FitzGerald.</h1>
<p>This is my website hosted with GitHub Pages.</p>
<p>Take a look at what I'm up to.</p>
</div>
<div class="caret">∨</div>
</section>
<section>
<div class="caret">∧</div>
<div class="section-items">
<h2>My Current Goals:</h2>
<p>
I'm currently self-studying CS and web development while working
part-time and freelancing. If you have any suggestions for things to
study or projects to try, let me know. My academic background is in
linguistics and cogsci.
</p>
<p>
For now, I'm focusing on web development in React with Typescript
and doing some
<a
href="https://www.theodinproject.com/"
target="_blank"
rel="noopener noreferrer"
>Odin Project</a
>
to learn JS fundamentals as well. I also have some experience with
Python, MATLAB, and R, in descending familiarity. I'm currently
working through
<a
href="https://github.com/ossu/computer-science"
target="_blank"
rel="noopener noreferrer"
>OSSU</a
>
and want to learn Rust as well.
</p>
<p>
My current goal is to learn enough to build a web app-which might be
hosted here later-to record
<a
href="https://en.wikipedia.org/wiki/Cluster_headache"
target="_blank"
rel="noopener noreferrer"
>cluster headache</a
>
attacks. As someone with the condition, I've found that it's
difficult to explain the severity of the disruptions it creates. I
want to create a solution that works for me, and that maybe can help
others too.
</p>
</div>
<div class="caret">∨</div>
</section>
<section>
<div class="caret">∧</div>
<div class="section-items">
<h2>My Work:</h2>
<p>
Check out my
<a
href="https://github.com/tomrfitz"
rel="noopener noreferrer"
target="_blank"
>Github</a
>!
</p>
<div class="project-grid">
<div class="project">
<p>
<a
href="https://reddit-clone-nine-zeta.vercel.app"
target="_blank"
rel="noopener noreferrer"
>reddit Clone</a
>
</p>
<iframe
src="https://reddit-clone-nine-zeta.vercel.app"
title="reddit clone"
width="100%"
height="100%"
></iframe>
<p>Built with React, Nextjs, and Firebase.</p>
</div>
<div class="project">
<p>
<a href="/odin-rps" target="_blank" rel="noopener noreferrer"
>Rock Paper Scissors</a
>
</p>
<iframe
src="https://tomrfitz.github.io/odin-rps"
title="odin-rps"
width="100%"
height="100%"
></iframe>
<p>Built with plain HTML, Javascript, and CSS.</p>
</div>
</div>
</div>
<div class="caret">∨</div>
</section>
<section>
<div class="caret">∧</div>
<div class="section-items">
<h3>
<!-- <a href="/contact"> -->
Contact me
<!-- </a> -->
</h3>
<p>
Send me an email at
<a
href="mailto: tomrfitz@gmail.com"
target="_blank"
rel="noopener noreferrer"
>tomrfitz@gmail.com</a
>. I can send you my resume if you're interested in working with me.
</p>
<p>
I'm also on twitter at
<a
href="https://twitter.com/tomr_fitz"
target="_blank"
rel="noopener noreferrer"
>@tomr_fitz</a
>
and on
<a
href="nostr:npub1t0mrftzeuu8jwkcfyftwzj4cdvsdfhkamayqqdl9lzqwudq8ja4qx57pkf"
target="_blank"
rel="noopener noreferrer"
>Nostr</a
>, but I don't tend to post much.
</p>
</div>
</section>
</div>
</body>
</html>