-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
320 lines (314 loc) · 9.21 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Software Developer located in San Diego, CA">
<meta name="author" content="Nikolaj Baer">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.1.1/css/all.css" >
<title>Nikolaj Baer</title>
<link rel="shortcut icon" type="image/png" sizes="96x96" href="favicon-96x96.png">
<style>
body {
background-color: white;
margin: 0px;
padding: 0px;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
color: #333;
font-family: monospace;
}
::selection {
background: #ddd;
}
#canvas {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
width: 100%;
height: 100%;
z-index: -1
}
#logo {
text-align: center;
position: relative;
}
.wrapper {
margin: 10px;
max-width: 500px;
opacity: 1;
transition: opacity 1s ease, display 1s ease allow-discrete;
}
a:visited {
color: #333;
}
a {
color:black;
}
h1 {
text-align: center;
}
h3 {
border-top: solid 1px #ccc;
padding-top: 10px;
}
ul {
list-style: none;
padding: 0px;
}
li {
margin-bottom: 4px;
}
ul li div {
padding-top: 2px;
color: #333;
}
.main section {
line-height: 1.25em;
}
.pill {
width: 40px;
font-size: 6pt;
border: 1px solid gray;
color: #333;
border-radius: 5px;
height: 10px;
padding: 2px;
background-color: #eee;
}
.fadeout {
opacity: 0;
display: none;
}
img {
cursor: pointer;
}
.message {
min-width: 300px;
border: 1px solid black;
background-color: white;
padding: 20px;
text-align: center;
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%, -50%);
opacity: 1;
}
.speedometer {
position: fixed;
bottom: 10px;
left: 10px;
text-align: left;
font-size: 16px;
font-family: sans-serif;
color: #aaa;
opacity: 0;
}
.srclink {
position: fixed;
bottom: 10px;
right: 10px;
background-color: #eee;
border: 1px solid #ddd;
color: #aaa;
padding: 4px;
border-radius: 8px;
font-size: 16px;
font-style: sans-serif;
opacity: 0;
}
.srclink a {
text-decoration: none;
}
.fadein {
opacity: 1;
transition: opacity 1s ease, display 1s ease allow-discrete;
}
#notice {
padding: 2px;
border: 1px black;
position: absolute;
}
#play_cta {
opacity: 0;
position: fixed;
left: 50%;
top: 10px;
padding-left: 30px;
animation: play_cta_in 0.5s forwards 10s, bounce_anim 1s ease-in-out infinite 10.5s;
}
#play_cta div {
position: absolute;
top: 0px;
font-size: 12px;
}
#play_cta div p {
position: absolute;
top: 0px;
left: 20px;
}
@keyframes play_cta_in {
0% {
opacity: 0;
scale: 0% 1;
}
100% {
opacity: 1;
scale: 100% 1;
}
}
@keyframes bounce_anim {
0%,100% {
opacity: 1;
padding-left: 30px
}
50% {
opacity: 1;
padding-left: 35px;
}
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<div id="boring_stuff" class="wrapper">
<div id="logo">
<img id="🍞" alt="Must toast bread!" src="toasterbot.svg" width="50px" title="ski with me"/>
</div>
<div id="play_cta">
<div>
<svg width="130" height="40">
<path fill="none" stroke="black" width="2" d="M0 20 L20 0 L20 5 L130 5 L130 35 L20 35 L20 40 L0 20" />
</svg>
<p>Press to Play!</p>
</div>
</div>
<h1>Nikolaj Baer</h1>
<section class="about">
<p>
I am a San Diego based software engineer who is
passionate about web tech, web 3d, and interactive experiences.
I am currently a software engineer at <a href="https://www.carbon3d.com/">Carbon</a>,
working with <a href="https://docs.pmnd.rs/react-three-fiber/">React-Three-Fiber</a>/<a href="https://www.typescriptlang.org">Typescript</a>.
Previously I spent a lot of time
using <a href="https://python.org">Python</a>/<a href="https://djangoproject.com">Django</a>. In
my spare time I also enjoy hobby gamedev.
</p>
</section>
<section>
<h3>Work / Volunteer</h3>
<ul>
<li>
<a target="_blank" href="https://www.carbon3d.com/">Carbon 3D</a>
<div>Staff Engineer</div>
</li>
<li>
<a target="_blank" href="https://www.mealscount.com/">MealsCount</a>
<span class="pill">volunteer</span>
<div>Policy optimization tool used by school districts nationwide</div>
</li>
<li>
<a target="_blank" href="https://www.cukeragency.com/work/">Formerly @ Cuker Agency</a> / <a target="_blank" href="https://www.getwebcube.com/">Web Cube</a>
<div>Director of Technology - 2006-2022</div>
</li>
</ul>
</section>
<section>
<h3>Recent Hobby Projects</h3>
<ul class="projects">
<li>
<a target="_blank" href="https://weather.nikolaj.dev/">api.weather.gov dashboard</a>
<span class="pill">prototype</span>
<div>Streamlined react dashboard for api.weather.gov service</div>
</li>
<li>
<a target="_blank" href="https://ldj54.nikolaj.dev/">Ludum Dare 55 Garbage Truck Sim</a>
<span class="pill">hobby</span>
<div>Game jam game using Godot</div>
</li>
<li>
<a target="_blank" href="https://nikolaj.itch.io/ldjam52">Ludum Dare 52 Harvestor Game</a>
<span class="pill">hobby</span>
<div>Game jam collab with <a href="https://github.com/kmooney/">kevin</a></div>
</li>
<li>
<a target="_blank" href="https://bullethell.nikolaj.dev/">ProcGen Bullet Hell Game</a>
<span class="pill">hobby</span>
<div>hobby game exploring ECS, Three.js, and procedural game dynamics</div>
</li>
<li>
<a target="_blank" href="https://ld51.nikolaj.dev/">Ludum Dare 51 Gnome RTS-like game</a>
<span class="pill">hobby</span>
<div>Game jam collab with <a href="https://github.com/kmooney/">kevin</a></div>
</li>
<li>
<a target="_blank" href="https://ld48.nikolaj.dev/">Ludum Dare 48 Orbital Mechanics game</a>
<span class="pill">hobby</span>
<div>Game jam collab with <a href="https://github.com/kmooney/">kevin</a></div>
</li>
<li>
<a target="_blank" href="https://ldj47.nikolaj.dev/">Ludum Dare 47 arcade game</a> <a target="_blank" href="https://mobiusld47.nikolaj.dev">(mobius strip version)</a>
<span class="pill">hobby</span>
<div>Game jam collab with <a href="https://github.com/kmooney/">kevin</a></div>
</li>
<li>
<a target="_blank" href="https://doubloonlagoon.nikolajbaer.us/">Ludum Dare 40 casual game</a>
<span class="pill">hobby</span>
<div>Game jam collab with <a href="https://github.com/kmooney/">kevin</a></div>
</li>
<li>
<a target="_blank" href="https://quest.nikolajbaer.us/">Quest Tree procgen quest prototype</a>
<span class="pill">hobby</span>
<div>Prototype for generating quests procedurally, concepted for ProcJam</div>
</li>
</ul>
</section>
<section>
<h3>Elsewhere</h3>
<ul>
<li><i class="fab fa-github" title="github"></i> <a href="https://github.com/nikolajbaer/">Github</a></li>
<li><i class="fab fa-linkedin" title="linkedin"></i> <a href="https://linkedin.com/in/nikolajbaer/">Linkedin</a></li>
</ul>
</section>
</div>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
_uacct = "UA-797423-1";
urchinTracker();
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Person",
"name": "Nikolaj Baer",
"alumniOf": {
"@type":"Educational Organization",
"name": "Rochester Institute of Technology",
"url": "https://www.rit.edu/"
},
"disambiguatingDescription": "Software Developer in San Diego, CA",
"memberOf": {
"@type": "Organization",
"name": "Open San Diego",
"url": "https://opensandiego.org"
}
}
</script>
<script type="importmap">
{
"imports": {
"three": "https://cdn.jsdelivr.net/npm/three@0.171.0/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@0.171.0/examples/jsm/",
"tween": "https://unpkg.com/@tweenjs/tween.js@23.1.3/dist/tween.esm.js"
}
}
</script>
<script src="toast.js" type="module"></script>
<script src="surf.js" type="module"></script>
</body>
</html>