-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.html
458 lines (437 loc) · 17 KB
/
cv.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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
<!doctype html> <html><head>
<meta charset=utf-8>
<meta name=viewport content="width=device-width, initial-scale=1">
<title>David Richter – Curriculum Vitae</title>
<link rel="shortcut icon" href="https://drcicero.github.io/avatar.png">
<!-- <link rel="alternate" type="application/atom+xml" href="https://drcicero.github.io/feed.atom" title="Atom Feed"> -->
<style>
body {max-width:40em; min-height:100vh; margin:auto; padding: 0 1em;
font:16px/1.5 "Roboto","Helvetica Neue",Helvetica,sans-serif}
#menu {margin:auto; padding:0; margin-top:.5em}
#menu > li > a {border:0}
#menu > li {display:inline}
#menu a {display:inline-block; padding:.5em}
h1 {padding:0; margin:0; font-weight:bold; font-size:1.5em}
#header {margin:auto; padding:1em}
#header > a {padding:1em; display:inline-block}
.block-list {list-style:none; padding:0}
.block-list a {display:block; border:1px solid silver; margin:.5em 0; padding:0.5em 1em}
</style>
<style>html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
background-color: #1a1a1a;
border: none;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
</style>
<link rel=stylesheet async href="https://drcicero.github.io/style.css">
</head><body>
<header id=header>
<a href=https://drcicero.github.io/><h1>David Richter</h1><span>phd student, TU Darmstadt</span></a>
<ul id=menu><li><a href="https://drcicero.github.io/cv.html">cv</a></li><li><a href="https://drcicero.github.io/favs.html">favs</a></li><li><a href="https://drcicero.github.io/">index</a></li><li><a href="https://drcicero.github.io/games/">games</a></li><li><a href="https://drcicero.github.io/music/">music</a></li><li><a href="https://drcicero.github.io/posts/">posts</a></li></ul>
<!-- -->
</header>
<main>
<h1>Curriculum Vitae</h1>
<h2 id="education">Education</h2>
<ul>
<li><p>now,
<a href="https://www.stg.tu-darmstadt.de/staff/david/index.en.jsp">PhD
Student, Software Technology, TU Darmstadt, Germany</a></p></li>
<li><p>2019, MSc Computer Science, TU Darmstadt<br> Thesis:
<i>Asynchronous and Incremental Abstractions in Synchronous
Systems</i></p></li>
<li><p>2017, BSc Computer Science, TU Darmstadt<br> Thesis:
<i>Reactive Programming and Garbage Collection on the
Web</i></p></li>
</ul>
<h2 id="research">Research</h2>
<p>Research Assistant</p>
<ul>
<li><p><strong>Compiling with Arrays</strong>. <em>David
Richter</em>, Timon Böhler, Pascal Weisenburger, Mira Mezini.<br>
<a href="https://2024.ecoop.org/details/ecoop-2024-papers/16/Compiling-with-Arrays">ECOOP
2024</a>.
<a href="https://drops.dagstuhl.de/entities/document/10.4230/LIPIcs.ECOOP.2024.33">(paper)</a>
<a href="https://drops.dagstuhl.de/entities/document/10.4230/DARTS.10.2.18">(artifact)</a>
<a href="https://github.com/stg-tud/ainf-compiling-with-arrays">(code)</a>
<a href="https://arxiv.org/abs/2405.18242">(arxiv)</a></p></li>
<li><p>Incrementalizing Polynomial Functors. Timon Böhler, <em>David
Richter</em>, Mira Mezini.<br>
<a href="https://conf.researchr.org/details/issta-ecoop-2024/FTfJP-2024-papers/5/Incrementalizing-Polynomial-Functors">FTFJP
2024</a>.
<a href="https://figshare.com/articles/software/Incrementalizing_Polynomial_Functors_-_Mechanization/26067682?file=48071434">(artifact)</a>.</p></li>
<li><p><strong>A Direct-Style Effect Notation for Sequential and
Parallel Programs</strong>. <em>David Richter</em>, Timon Böhler,
Pascal Weisenburger, Mira Mezini.<br>
<a href="https://2023.ecoop.org/details/ecoop-2023-papers/40/A-Direct-Style-Effect-Notation-for-Sequential-and-Parallel-Programs">ECOOP
2023</a>.
<a href="https://drops.dagstuhl.de/entities/document/10.4230/LIPIcs.ECOOP.2023.25">(paper)</a>
<a href="https://drops.dagstuhl.de/entities/document/10.4230/DARTS.9.2.17">(artfact)</a>
<a href="https://github.com/stg-tud/parseq-notation">(code)</a>
<a href="https://arxiv.org/abs/2305.08496">(arxiv)</a><br>
<a href="https://2023.ecoop.org/track/ecoop-2023-awards">🏅
Distinguished Paper & 🏅 Distinguished Artifact</a>.</p></li>
<li><p>Using Rewrite Strategies for Efficient Functional Automatic
Differentiation. Timon Böhler, <em>David Richter</em>, Mira
Mezini.<br>
<a href="https://2023.ecoop.org/details/FTfJP-2023/3/Using-Rewrite-Strategies-for-Efficient-Functional-Automatic-Differentiation">FTfJP
2023</a>.
<a href="https://dl.acm.org/doi/10.1145/3605156.3606456">(acm)</a>
<a href="https://arxiv.org/abs/2307.02447">(arxiv)</a></p></li>
<li><p><strong>Prisma: A tierless language for enforcing
contract-client protocols in decentralized apps</strong>. <em>David
Richter</em>, David Kretzler, Pascal Weisenburger, Guido
Salvaneschi, Sebastian Faust, Mira Mezini.<br></p>
<ul>
<li>TOPLAS 2023.
<a href="https://dl.acm.org/doi/10.1145/3604629">(paper)</a>
<a href="https://github.com/stg-tud/prisma">(code)</a>
<a href="https://arxiv.org/pdf/2205.07780.pdf">(arxiv)</a></li>
<li><a href="https://2022.ecoop.org/details/ecoop-2022-papers/28/Prisma-A-tierless-language-for-enforcing-contract-client-protocols-in-decentralized-">ECOOP
2022</a>.
<a href="https://drops.dagstuhl.de/entities/document/10.4230/LIPIcs.ECOOP.2022.35">(extended
abstract)</a>
<a href="https://drops.dagstuhl.de/entities/document/10.4230/DARTS.8.2.16">(artifact)</a></li>
</ul></li>
<li><p><strong>Multiparty Languages: the Choreographic and Multitier
Cases (Pearl)</strong>. Saverio Giallorenzo, Fabrizio Montesi, Marco
Peressotti, <em>David Richter</em>, Guido Salvaneschi, Pascal
Weisenburger.<br>
<a href="https://2021.ecoop.org/details/ecoop-2021-ecoop-research-papers/9/Multiparty-Languages-the-Choreographic-and-Multitier-Cases">ECOOP
2021</a>.
<a href="https://drops.dagstuhl.de/entities/document/10.4230/LIPIcs.ECOOP.2021.22">(paper)</a>
<a href="https://youtube.com/watch?v=zx07I-f7ZME">(video)</a><br>
<a href="https://2021.ecoop.org/attending/ecoop-awards">🏅
Distinguished Paper</a>.</p></li>
<li><p>Turning Unobservable into Unreachable: Dynamic Reactive
Programming without Leaks</a>. <em>David Richter</em>, Ragnar
Mogk.<br> REBLS 2019.
<a href="https://2019.splashcon.org/details/rebls-2019-papers/3/Turning-Unobservable-into-Unreachable-Dynamic-Reactive-Programming-without-Leaks">(pdf)</a>.</p></li>
</ul>
<p>Student Research Assistant</p>
<ul>
<li>From Debugging Towards Live Tuning of Reactive Applications.
Ragnar Mogk, Pascal Weisenburger, Julian Haas, <em>David
Richter</em>, Guido Salvaneschi, Mira Mezini.<br>
<a href="https://2018.splashcon.org/details/live-2018-papers/10/From-Debugging-Towards-Live-Tuning-of-Reactive-Applications">LIVE
2018</a>.
<a href="http://www.st.informatik.tu-darmstadt.de/preprints/From-Debugging-Towards-Live-Tuning-of-Reactive-Applications.pdf">(pdf)</a></li>
</ul>
<p>Links</p>
<p>See also</p>
<ul>
<li><a href="https://dblp.uni-trier.de/pid/66/3726-1.html">DBLP</a></li>
<li><a href="https://scholar.google.com/citations?user=WzTpx-sAAAAJ&hl=de&oi=sra">Google
Scholar</a></li>
<li><a href="https://conf.researchr.org/profile/conf/davidrichter">researchr.org</a></li>
</ul>
<h2 id="academic-service">Academic Service</h2>
<ul>
<li><p>ECOOP 2024,
<a href="https://2024.ecoop.org/committee/ecoop-2024-papers-extended-review-committee-and-external-reviewers">ERC</a>
&
<a href="https://2024.ecoop.org/committee/ecoop-2024-artifact-evaluation-artifact-evaluation-committee">AEC</a></p></li>
<li><p>ECOOP 2023,
<a href="https://2023.ecoop.org/committee/ecoop-2023-research-papers-extended-review-committee">ERC</a></p></li>
<li><p>Scala 2019,
<a href="https://2020.ecoop.org/committee/scala-2020-papers-organizing-committee">publicity
chair</a></p></li>
</ul>
<h2 id="projects">Projects</h2>
<ul>
<li>iBlockchain (11/2018 - 09/2022), Federal Ministry of Education
and Research (BMBF).
<a href="https://www.forschung-it-sicherheit-kommunikationssysteme.de/projekte/iblockchain">(BMBF
page)</a>
<!-- <a href="https://www.informatik.tu-darmstadt.de/cac/projects_partners/ongoing_projects_cac/iblockchain_cac/index.en.jsp">(TU Darmstadt page)</a>,-->
<!-- <a href="https://iblockchain-projekt.de/">(project page)</a>.--></li>
</ul>
<h2 id="teaching">Teaching</h2>
<style>
table { border-spacing: 0 }
td { border-top: 1px solid black; padding: 5px }
</style>
<p>Theses Supervision</p>
<ul>
<li><p>Master thesis: <em>WIP: Probabilistic Programming with
Holonomic Functions.</em> Student: Manuel Adam. Supervisor: David
Richter Examiner: Mira Mezini. Summer 2024.</p></li>
<li><p>Master thesis: <em>Higher Order Functional Choreographies in
Lean4.</em> Student: Simon Daniel. Supervisor: David Richter.
Examiner: Mira Mezini. Winter 2023/24.</p></li>
<li><p>Bachelor thesis: <em>Connecting Automata- and Semantics-based
Program Synthesis.</em> Student: Matthias Conrad. Supervisor: David
Richter. Examiner: Mira Mezini. Winter 2023/24.</p></li>
<li><p>Master thesis: <em>An Optimizing Compiler for a
Differentiable Array Programming Language.</em> Student: Timon
Böhler. Supervisor: David Richter. Examiner: Mira Mezini. Summer
2023.</p></li>
<li><p>Master thesis: <em>Type Inference for Tractable Probabilistic
Programming.</em> Student: Frank Pfirmann. Supervisor: David
Richter, Viktor Pfanschilling. Examiner: Mira Mezini. Winter
2022/23.</p></li>
<li><p>Master thesis: <em>Towards an End-to-End Neuro-symbolic DSL
of Transformers.</em> Student: Daniel Manninger. Supervisor: David
Richter. Examiner: Mira Mezini. Winter 2021/22.</p></li>
<li><p>Bachelor thesis: <em>Differential Programming in an Array
Language.</em> Student: Timon Böhler. Supervisor: David Richter.
Examiner: Mira Mezini. Winter 2021/22.</p></li>
<li><p>Bachelor thesis: <em>Comparing implementation strategies for
differentiable programming.</em> Student: Daniel Stricker.
Supervisor: David Richter. Examiner: Mira Mezini. Summer
2021.</p></li>
<li><p>Bachelor thesis: <em>Functional and Reactive Programming for
Smart Contracts.</em> Student: Stefan Sauer. Supervisor: David
Richter. Examiner: Mira Mezini. Summer 2020.</p></li>
<li><p>Bachelor thesis: <em>Reactive Programming for Smart
Contracts.</em> Student: Fabio d’Aquino Hilt. Supervisor: David
Richter. Examiner: Mira Mezini. Winter 2019/20.</p></li>
</ul>
<p>Teaching Assistant</p>
<ul>
<li><p>Project IMPL (Implementation of Modern Programming
Languages). Topic Instructor for Winter 2023/24, Summer 2023, Winter
2022/23, Summer 2021, Summer 2020, Winter 2019/20.</p>
<!--
- 2023/24 Winter - Probabilistic Programming
- 2023/24 Winter - Modular Programs with Effects
- 2023 Summer - Program Synthesis
- 2023 Summer - Array Programming Compilation
- 2022/23 Winter - Differential Privacy
- 2021 Summer - Differential programming
- 2020 Summer - Smart contract programming languages
- 2019/20 Winter - Smart contract programming languages
--></li>
<li><p>Seminar DaIMPL (Design and Implementation of Modern
Programming Languages). Topic Instructor for Winter 2023/24, Summer
2023, Summer 2022, Winter 2022/23, Summer 2021, Winter 2020/21,
Winter 2019/20.</p>
<!--
- 2023/24 Winter - Probabilistic Programming
- 2023 Summer - Verifying Probabilistic Programs
- 2023 Summer - Cyclic Proofs
- 2023 Summer - Tensor Compilation
- 2022 Summer - Automatic Differentation
- 2022/23 Winter - Differential Privacy
- 2022/23 Winter - Probabilistic Programming
- 2022/23 Winter - Backpropagation
- 2022 Summer -
- 2021/22 Winter -
- 2021 Summer - The Julia language
- 2021 Summer - Differential programming
- 2020/21 Winter - A DSL for smart contracts
- 2020/21 Winter - Smart Contract languages
- 2020/21 Winter - A Survey on Macros and Metaprogramming
- 2020 Summer - canceled
- 2019/20 Winter - Smart contract programming languages
--></li>
<li><p>Seminar SE4AI (Seminar Software Engineering for Artificial
Intelligence). Topic Instructor for Winter 2021/22.</p></li>
<li><p>Project SEP (Software Engineering Project):</p>
<ul>
<li>2023/24 Winter - topic ‘Project Specification Document’</li>
<li>2023/24 Winter - feedback for team
<a href="http://stg-tud.github.io/sep/projects/">Canvas 2.0</a></li>
<li>2022/23 Winter - feedback for team
<a href="http://stg-tud.github.io/sep/projects/">Tradevisori</a></li>
<li>2021/22 Winter - feedback for team
<a href="http://stg-tud.github.io/sep/projects/">CAQuAppsel</a></li>
<li>2020/21 Winter - feedback for team
<a href="http://stg-tud.github.io/sep/projects/">Devoilapers</a></li>
<li>2019/20 Winter - feedback for team
<a href="http://stg-tud.github.io/sep/projects/">Die
ConTrolle</a></li>
</ul></li>
</ul>
<p>Student Teaching Assistant</p>
<ul>
<li>2017 Summer, Concepts of Programming Languages, TU
Darmstadt</li>
<li>2016/17 Winter, Formal Methods for Software Development, TU
Darmstadt</li>
<li>2015 Summer, Functional and Object-Oriented Programming, TU
Darmstadt</li>
</ul>
<h2 id="projects-1">Projects</h2>
<p><a href="https://github.com/drcicero/drx">drx</a>. Dynamic
reactive programming without memory-leaks.</p>
<p><a href="https://github.com/drcicero/bibcleany">bibcleany</a>.
Clean bibtex files by looking for matches on dblp.</p>
<p><a href="https://github.com/drcicero/beautiful-tucan">beautiful-tucan</a>.
Inofficial week schedule for computer science students at TU
Darmstadt.</p>
<p>Also, involved with
<a href="https://www.rescala-lang.com/impressum">REScala</a>.
Reactive programming in Scala.</p>
<ul class=block-list>
</ul>
</main>
<script async>
(function () {"use strict";
var mus = new Audio();
function toggle(e) {
if (mus.getAttribute("src") !== this.href) {
var musics = document.getElementsByClassName("playing");
for (var i=0; i<musics.length; i++) musics[i].classList.remove("playing");
mus.src = this.href;
mus.play(); this.classList.add("playing");
} else if (mus.paused || mus.ended) {mus.play(); this.classList.add("playing");}
else {mus.pause(); this.classList.remove("playing");}
return false;
}
var musics = document.getElementsByClassName("music-link");
for (var i=0; i<musics.length; i++)
musics[i].onclick = toggle;
})();
</script>
</body></html>