-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
409 lines (400 loc) · 17.4 KB
/
Copy pathindex.html
File metadata and controls
409 lines (400 loc) · 17.4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<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=Michroma&display=swap"
rel="stylesheet"
/>
<script src="https://unpkg.com/ionicons@4.5.10-0/dist/ionicons.js"></script>
<script src="script.js"></script>
<title>Rea's portfolio</title>
</head>
<body>
<div id="overlay"></div>
<p id="consoleText"></p>
<div id="everything">
<div id="mainContainer">
<h1>Rea Koehler</h1>
<h4>aka.</h4>
<h1>Reaxt</h1>
<h3>
Game developer, Programmer, Technical artist, Software Developer
</h3>
<ul id="itemList">
<li><a href="aboutMe" class="openWindowButton" data-window="#AboutMeWindow" data-consoleText="cat ./aboutme.txt">About me</a></li>
<li><a href="projects" class="openWindowButton" data-window="#ProjectsWindow" data-consoleText="browse ./projects.html">Projects and past work</a></li>
<li><a href="resume" class="openWindowButton" data-window="#ResumeWindow" data-consoleText="cat ./resume.txt">Resume</a></li>
<li><a href="contact" class="openWindowButton" data-window="#ContactWindow" data-consoleText="cat ./contact.txt">Contact</a></li>
</ul>
<ul id="socials">
<li>
<a href="https://github.com/Reaxt">
<ion-icon name="logo-github"></ion-icon>
</a>
</li>
<li>
<a href="https://twitter.com/Reaxt1">
<ion-icon name="logo-twitter"></ion-icon>
</a>
</li>
</ul>
</div>
<div class="window" id="WindowTemplate" style="visibility: hidden;">
<div class="windowHeader">
<div class="headerText">About me</div>
<button>X</button>
</div>
<div class="windowContent">
meow
</div>
</div>
<div class="window consoleWindow" id="AboutMeWindow">
<div class="windowHeader">
<div class="headerText">About me</div>
<button data-consoletext="pkill aboutme">X</button>
</div>
<div class="windowContent" id="AboutMeContent">
<div class="asciiHeader">
<pre>
__ __
____ _/ /_ ____ __ __/ /_ ____ ___ ___
/ __ `/ __ \/ __ \/ / / / __/ / __ `__ \/ _ \
/ /_/ / /_/ / /_/ / /_/ / /_ / / / / / / __/
\__,_/_.___/\____/\__,_/\__/ /_/ /_/ /_/\___/
</pre
>
</div>
<h4>Hello! Im Rea, nice to meet you!</h4>
<p>
I'm a versatile programmer, I work in software, game development,
audio design, animation, tooling, and much more!
</p>
<p>
I started programming by making minecraft mods when I was around 11,
and have not stopped since! My first notable project being the
discord bot "DadBot", you can see more of my work
<a href="test" class="openWindowButton projectLink" data-window="#ProjectsWindow">Here</a>
</p>
<p>
With games, I specialize in making things look and feel cool in
unique ways, excel at working under limitations, and adding
audiovisual polish.
</p>
<p>
I am fluent in c#, python, javascript and typescript. I also have experience with c++, java, openGL, GLSL, rust, and more! I also have extensive experience in the Unity game engine, and experience in engine development.
</p>
</div>
</div>
<div class="window consoleWindow" id="ProjectsWindow">
<div class="windowHeader">
<div class="headerText">Projects</div>
<button data-consoletext="pkill projects">X</button>
</div>
<div class="windowContent" id="ProjectsContent">
<div class="asciiHeader">
<pre>
_ __
___ _______ (_)__ ____/ /____
/ _ \/ __/ _ \ / / -_) __/ __(_-<
/ .__/_/ \___/_/ /\__/\__/\__/___/
/_/ |___/
</pre
>
</div>
<ul class="projectsList">
<li>
<div class="projectElement">
<video width="370" height="240" autoplay muted loop>
<source src="./content/vid/Splatter480p.webm" type="video/webm" />
Your browser does not support the video tag.
</video>
<div class="projectElementDetails">
<h3>Splatter</h3>
<p>
Splatter is a first-person shooter fever dream. <br> I worked on various unique visual effects, involving shaders, scripted animation, sound work, visual design, syncing the environment to music, and more.
</p>
<p><b>ROLE:</b> Technical artist, Programming, Design.</p>
<p>
<b>LINKS:</b>
<a
class="projectLink"
target="_blank"
href="https://store.steampowered.com/app/1768920/Splatter/"
rel="noopener noreferrer"
>Steam</a
>
</p>
</div>
</div>
</li>
<li>
<div class="projectElement">
<video width="370" height="240" autoplay muted loop>
<source src="./content/vid/RhythmThing480p.webm" type="video/webm" />
Your browser does not support the video tag.
</video>
<div class="projectElementDetails">
<h3>RhythmThing</h3>
<p>
RhythmThing is a personal project. It is a fully featured
rhythm game with mod chart, capabilities running in CMD with
a custom engine. It does many things not seen in normal
games, and <i>lots</i> not seen in command line games.
I have a build on this page, note this is a non-profit project, and I do not own the audio assets.
</p>
<p>
<b>ROLE:</b>Everything except for sound and music assets.
</p>
<p>
<b>LINKS:</b>
<a
class="projectLink"
target="_blank"
href="https://github.com/Reaxt/RhythmThing/"
rel="noopener noreferrer"
>Github</a
>
<a
class="projectLink"
target="_blank"
href="https://youtu.be/kt9mfI8UoJs/"
rel="noopener noreferrer"
>Video demo</a>
<a
class="projectLink"
target="_blank"
href="./content/files/RHYTHM_THINGdemobuild.zip"
rel="noopener noreferrer"
>Build</a
</p>
</div>
</div>
</li>
<li>
<div class="projectElement">
<video width="370" height="240" autoplay muted loop>
<source src="./content/vid/Tombstar480p.webm" type="video/webm" />
Your browser does not support the video tag.
</video>
<div class="projectElementDetails">
<h3>Tombstar</h3>
<p>
I worked on Tombstar leading up to release. Tombstar is a
topdown, twinstick, roguelike shooter game.
</p>
<p>
<b>ROLE:</b>Programming, Design, Sound design and audio
implementation.
</p>
<p>
<b>LINKS:</b>
<a
class="projectLink"
target="_blank"
href="https://store.steampowered.com/app/1165470/TombStar/"
rel="noopener noreferrer"
>Steam</a
>
<a
class="projectLink"
target="_blank"
href="https://tombstar.com/"
rel="noopener noreferrer"
>Website</a
>
</p>
</div>
</div>
</li>
<li>
<div class="projectElement">
<video width="370" height="240" autoplay muted loop>
<source src="./content/vid/BeatSaber480p.webm" type="video/webm" />
Your browser does not support the video tag.
</video>
<div class="projectElementDetails">
<h3>Beat Saber Modding+ModCharts</h3>
<p>
I helped kickstart the modding scene for Beat Saber, and ran the modding discord as owner. I also made a few mods, helped with some, and made some iconic levels using said mods that changed the landscape of the game.
</p>
<p>
Modcharts take a combination of visual design, programming, and overall understanding of sound. They where made with a combination of Blender, javascript, python, and c#.
</p>
<p>
<b>ROLE:</b>Visuals and charting, alongside a private scripting suite to make the process easier.
</p>
<p>
<b>LINKS:</b>
<a
class="projectLink"
target="_blank"
href="https://discord.gg/beatsabermods/"
rel="noopener noreferrer"
>Discord</a
>
<a
class="projectLink"
target="_blank"
href="https://youtu.be/xGICwOKNa9Y/"
rel="noopener noreferrer"
>NULCTRL Video (modchart)</a
>
<a
class="projectLink"
target="_blank"
href="https://youtu.be/pE_s9bvntA0/"
rel="noopener noreferrer"
>Midnight lady Video (modchart)</a
>
</p>
</div>
</div></li>
<li>
<div class="projectElement">
<video width="370" height="240" autoplay muted loop>
<source src="./content/vid/LookAtSky480p.webm" type="video/webm" />
Your browser does not support the video tag.
</video>
<div class="projectElementDetails">
<h3>Look at the sky</h3>
<p>
I was commissioned by Slush Management to create a Beat Saber modchart for the song "Look at the sky" by Porter Robinson, to go alongside the release of the song, and his new album "Nurture"
</p>
<p>
<b>ROLE:</b>All visuals.
</p>
<p>
<b>LINKS:</b>
<a
class="projectLink"
target="_blank"
href="https://youtu.be/VWSubdP0WcQ"
rel="noopener noreferrer"
>Video Showcase</a
>
<a
class="projectLink"
target="_blank"
href="https://beatsaver.com/maps/1421c/"
rel="noopener noreferrer"
>Map Download</a
>
</p>
</div>
</div></li>
<li>
<div class="projectElement">
<video width="370" height="240" autoplay muted loop>
<source src="./content/vid/godless480p.webm" type="video/webm" />
Your browser does not support the video tag.
</video>
<div class="projectElementDetails">
<h3>GODLESS LIGHT</h3>
<p>
Godless light is a short wave shooter game I made in about a week or two, mostly spent to learn and practice shader graph inside unity, and getting better at creating effects from imagination. The visual goal was <b>GEOMETRIC IRIDESCENT HELLSCAPE</b>. I think I hit it.
</p>
<p>
<b>ROLE:</b>Everything except for music assets.
</p>
<p>
<b>LINKS:</b>
<a
class="projectLink"
target="_blank"
href="https://reaxt.itch.io/godless-light/"
rel="noopener noreferrer"
>Itch.io</a
>
<a
class="projectLink"
target="_blank"
href="https://youtu.be/AmjiUbt_zws"
rel="noopener noreferrer"
>Video demo</a>
</p>
</div>
</div>
</li>
<li>
<div class="projectElement">
<video width="370" height="240" autoplay muted loop>
<source src="./content/vid/Shaders480p.webm" type="video/webm" />
Your browser does not support the video tag.
</video>
<div class="projectElementDetails">
<h3>Shader work</h3>
<p>
I enjoy messing around with shader code in unity and glsl, lots of them are being used on unreleased projects, but heres a preview video of some!
</p>
</div>
</div>
</li>
<li><div class="projectElement"> <h1>And more to come!</h1></div> <div><p>Many unannounced, and NDA projects to come to this section in the future!</p><p>Have a cool project you think I would be great for? <a href =""class="projectLink openWindowButton" data-window="#ContactWindow">Hire me!</a></p></div></li>
<li></li>
</ul>
</div>
</div>
<div class="window consoleWindow" id="ContactWindow">
<div class="windowHeader">
<div class="headerText">Contact</div>
<button data-consoletext="pkill contact">X</button>
</div>
<div class="windowContent" >
<div class="asciiHeader">
<pre>
_________ _ ___________ ___________
/ ___/ __ \/ |/ /_ __/ _ |/ ___/_ __/
/ /__/ /_/ / / / / / __ / /__ / /
\___/\____/_/|_/ /_/ /_/ |_\___/ /_/
</pre>
</div>
<div>
<h3>Want to work together?</h3>
<h3>Another inquiry?</h3>
<h3>Just wanna chat about cool stuff?</h3>
<div>
<p>If you need to reach me for any reason, here are the best ways to do so!</p>
<ul>
<li>Email: reaxt0@gmail.com</li>
<li>Discord: Reaxt#0001</li>
<li>Twitter DM: <a class="projectLink" href="https://twitter.com/Reaxt1" target="_blank" rel="noopener noreferrer">@Reaxt1</a></li>
<li><a class="projectLink" href="https://www.linkedin.com/in/rea-koehler-2b223426b/" target="_blank" rel="noopener noreferrer">LinkedIn</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="window consoleWindow" id="ResumeWindow">
<div class="windowHeader">
<div class="headerText">Resume</div>
<button data-consoletext="pkill resume">X</button>
</div>
<div class="windowContent" >
<div class="asciiHeader">
<pre>
___ __________ ____ _______
/ _ \/ __/ __/ / / / |/ / __/
/ , _/ _/_\ \/ /_/ / /|_/ / _/
/_/|_/___/___/\____/_/ /_/___/
</pre>
</div>
<div>
<h3>Resume PDF Files</h3>
<div>
<ul>
<li><a class="projectLink" href="./content/files/Rea_Resume_English.pdf" target="_blank" rel="noopener noreferrer">English.pdf</a></li>
<li><a class="projectLink" href="./content/files/Rea_Resume_French.pdf" target="_blank" rel="noopener noreferrer">French.pdf</a></li>
<li><a class="projectLink" href="./content/files/Rea_Resume_Combined.pdf" target="_blank" rel="noopener noreferrer">Combined.pdf</a></li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>