-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
423 lines (351 loc) · 9.37 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
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
---
title: Home
---
<style>
/* About Me */
/* #about-box {
display: grid;
grid-row-gap: 0.5rem;
grid-column-gap: 1.0rem;
align-items: center;
max-width: var(--max-width);
min-width: var(--min-width);
margin: 0 auto;
box-sizing: border-box;
padding: 1em;
}
#about-container {
background-color: #dfedff;
}
@media (min-width: 40rem) {
#about-box {
grid: auto 1fr / auto 1fr;
grid-template-areas:
"img text"
"info text";
}
#about-box #ben-photo {
justify-self: center;
}
}
@media (max-width: 40rem) {
#about-box {
grid: auto 1fr / 1fr 1fr;
grid-template-areas:
"img info"
"text text";
}
#about-info {
align-self: center;
}
#about-box #ben-photo {
justify-self: right;
}
}
#about-info {
grid-area: info;
list-style: none;
margin: 0 0 0 1em;
padding: 0;
}
#about-info li.social a {
font-weight: 100;
font-family: monospace;
color: #444;
}
#about-info li.social img {
display: inline-block;
max-width: 14px;
max-height: 14px;
margin-right: 0.5em;
text-align: center;
vertical-align: middle;
}
#about-box #ben-photo {
grid-area: img;
width: 140px;
height: 140px;
border: 2px solid #5a97e6;
border-radius: 50%;
}
#about-text {
grid-area: text;
}
#about-text p:first-child {
margin-top: 0;
} */
h2 {
font-size: 1.8rem;
margin-top: 2em;
}
/* ---- */
.gridlist {
display: grid;
margin: 0.4em 0;
grid-template-columns: 5.5em 1fr;
grid-template-areas: "badge title";
}
.gridlist-badge {
grid-area: badge;
}
.gridlist-title {
grid-area: title;
}
/* ---- */
.npm-package img {
display: block;
}
.npm-package .gridlist-title {
font-family: var(--code-font);
}
/* ---- */
.github-pr-badge > span {
display: inline-block;
padding: 0 10px;
width: 5em;
border-radius: 2em;
font-family: var(--sans-font);
font-size: 12px;
text-align: center;
line-height: 24px;
color: white;
}
.github-pr-open { background-color: #28a745; }
.github-pr-draft { background-color: #6a737d; }
.github-pr-merged { background-color: #6f42c1; }
.github-pr-open::after { content: "Open"; display: inline; }
.github-pr-draft::after { content: "Draft"; display: inline; }
.github-pr-merged::after { content: "Merged"; display: inline; }
.github-pr-badge img {
width: 1em;
vertical-align: text-bottom;
}
.github-pr-title a {
color: var(--color-text);
font-weight: bold;
}
.github-pr-title a:hover, .github-pr-title a:hover .github-pr-subtitle {
color: var(--color-link);
}
.github-pr-subtitle {
color: gray;
font-weight: normal;
font-family: var(--code-font);
}
/* ---- */
#about {
display: grid;
gap: 2em;
}
#about .about-portrait {
min-width: 16rem;
display: flex;
flex-direction: row;
justify-content: center;
}
#about .about-portrait img {
display: block;
}
#about .about-description {
grid-area: intro;
display: flex;
flex-direction: column;
justify-content: center;
}
#about .about-description p { margin: 0.6rem 0; }
#about .about-title { margin: 0.6rem 0; }
#about .about-title {
font-size: 2em;
font-weight: bold;
}
@media (min-width: 52rem) {
#about {
grid-template-columns: 1fr 2fr;
grid-template-areas: "photo intro";
}
#about .about-portrait {
justify-self: stretch;
min-height: 100%;
}
#about .about-portrait img {
max-width: 100%;
max-height: 100%;
}
}
@media (max-width: 52rem) {
h2 { text-align: center; }
#about .about-title { text-align: center; }
#about {
grid-template-areas:
"photo"
"intro";
}
#about .about-portrait {
position: relative;
max-height: min(50vh, 30em);
justify-self: center;
border-radius: 50%;
overflow: hidden;
}
#about .about-portrait::after {
content: "";
display: block;
padding-bottom: 100%;
}
#about .about-portrait img {
position: absolute;
width: 100%;
object-fit: cover;
top: -2em;
/* top: 1em; */
}
}
</style>
<div id="page">
<div id="about">
<!-- photo -->
<div class="about-portrait">
<img alt="photo of me in France, taken September 2023" src="/images/ben-france.png" />
</div>
<!-- ontro -->
<div class="about-description">
<div class="about-title">Benjamin R. Bray</div>
<p>
I work as a <b>research software engineer</b> for Prof. <a href="https://group-mmm.org/~ichiro/">Ichiro Hasuo</a> at the <a
href="https://www.nii.ac.jp/en/">National Institute of Informatics</a> in Tokyo, Japan, where I use <b>Haskell</b> to create domain-specific programming languages for formal verification of cyberphysical systems.
</p>
<p>
My ambition is to design software which makes <b>formal verification</b> more accessible to developers. I'm particularly interested in improving the user experience of <b>dependently-typed</b> programming.
</p>
<p>
In my free time, I enjoy cycling, <a href="/images/ben-goat.jpg">goats</a>, dodgeball, <a href="/images/tokyo-walking-map.jpg">long walks</a>, and <a
href="/images/sourdough.jpg">bread</a>. Maybe one day I'll make more <a
href="http://www.newgrounds.com/portal/view/512482">games</a>. If you'd like to chat, feel free to
write me at <a href="mailto:[email protected]">[email protected]</a>.
</p>
<!-- <p>In my free time, I work on <a href="https://noteworthy.ink/">Noteworthy</a>, an open-source Markdown
editor with bidirectional links and excellent math support!
</p> -->
<!-- <p>I hold a Masters in Computer Science from <b>Georgia Tech</b>, where my research advisor was <a
href="https://www.cc.gatech.edu/~jabernethy9/">Jacob Abernethy</a>. Previously, I studied math at
the University of Michigan, where I also helped with a machine learning <a
href="https://eecs445-f16.github.io/">class</a> and <a href="http://msail.github.io/">reading
group</a>. -->
</div>
</div>
<!-- Writing ----------------------------------------------------------------->
<h2>Selected Writing</h2>
$partial("templates/post-list.html")$
<!-- Projects ----------------------------------------------------------------->
<h2>Selected Projects</h2>
$partial("templates/project-list.html")$
<!-- Open Source -------------------------------------------------------------->
<h2>Open Source</h2>
<p>I maintain the following open-source packages:</p>
<div class="gridlist npm-package">
<div class="gridlist-badge">
<a ref="https://www.npmjs.com/package/@benrbray/prosemirror-math">
<img src="https://img.shields.io/npm/v/@benrbray/prosemirror-math?style=flat-square">
</a>
</div>
<div class="gridlist-title">
<a href="https://www.npmjs.com/package/@benrbray/prosemirror-math">
<div>@benrbray/prosemirror-math</div>
</a>
</div>
</div>
<div class="gridlist npm-package">
<div class="gridlist-badge">
<a href="https://www.npmjs.com/package/@benrbray/remark-cite">
<img src="https://img.shields.io/npm/v/@benrbray/remark-cite?style=flat-square">
</a>
</div>
<div class="gridlist-title"><a href="https://www.npmjs.com/package/@benrbray/remark-cite">
<div>@benrbray/remark-cite</div>
</a></div>
</div>
<p>I have also made a few small contributions to open-source libraries:</p>
<div class="gridlist github-pr">
<div class="gridlist-badge github-pr-badge">
<span class="github-pr-merged">
<img src="/images/icons/git-merge-16.svg" width="14" height="14">
</span>
</div>
<div class="gridlist-title github-pr-title">
<a href="https://github.com/jgm/citeproc/pull/88">
Support Hyperlinked Titles per Draft of CSL v1.0.2 Spec
<span class="github-pr-subtitle">jgm/citeproc#88</span>
</a>
</div>
</div>
<div class="gridlist github-pr">
<div class="gridlist-badge github-pr-badge">
<span class="github-pr-merged">
<img src="/images/icons/git-merge-16.svg" width="14" height="14">
</span>
</div>
<div class="gridlist-title github-pr-title">
<a href="https://github.com/jgm/citeproc/pull/88">
Address unexpected interaction between CSL `second-field-align` setting and whole-citation links
<span class="github-pr-subtitle">jgm/citeproc#113</span>
</a>
</div>
</div>
<div class="gridlist github-pr">
<div class="github-pr-badge">
<span class="github-pr-open">
<img src="/images/icons/git-pull-request-16.svg" width="14" height="14">
</span>
</div>
<div class="github-pr-title">
<a href="https://github.com/jgm/pandoc/pull/7514">
Adjust <code>fenced_divs</code> Syntax to Resemble Directive Syntax
<span class="github-pr-subtitle">jgm/pandoc#7514</span>
</a>
</div>
</div>
<div class="gridlist github-pr">
<div class="github-pr-badge">
<span class="github-pr-open">
<img src="/images/icons/git-pull-request-16.svg" width="14" height="14">
</span>
</div>
<div class="github-pr-title">
<a href="https://github.com/KaTeX/KaTeX/pull/3085">
Support <code>\textsc</code> via Small Caps Font <code>cmcsc10</code>
<span class="github-pr-subtitle">KaTeX/KaTeX#3085</span>
</a>
</div>
</div>
<div class="gridlist github-pr">
<div class="github-pr-badge">
<span class="github-pr-merged">
<img src="/images/icons/git-merge-16.svg" width="14" height="14">
</span>
</div>
<div class="github-pr-title">
<a href="https://github.com/pjones/byline/pull/20">
Support ANSI <code>Vivid</code> Color Intensity
<span class="github-pr-subtitle">pjones/byline#20</span>
</a>
</div>
</div>
<!-- Draft Posts -->
$if(draftPosts)$
<h2>Draft Posts</h2>
$for(draftPosts)$
<div class="post-box unpublished">
<a class="post-title" href="$url$">$title$</a>
</div>
$endfor$
$endif$
<!-- Draft Projects -->
$if(draftProjects)$
<h2>Draft Projects</h2>
$for(draftProjects)$
<div class="post-box unpublished">
<a class="post-title" href="$url$">$title$</a>
</div>
$endfor$
$endif$
</div>