-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (92 loc) · 4.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Daan de Graaf. PhD Candidate in Graph Databases at TU/e</title>
<link rel="stylesheet" href="assets/simple.min.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a class="current" href="/">Daan de Graaf</a></li>
<li><a href="https://scholar.google.com/citations?user=11bAGfEAAAAJ">Publications</a></li>
<li><a href="assets/cv.pdf">CV</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h1>Daan de Graaf</h1>
<div class="flex-container">
<div class="flex-element" id="profile-container">
<img id="profile" src="assets/profile.jpg" />
</div>
<div class="flex-element" id="about-me-text-container">
<p>I am a PhD Candidate at <a href="https://research.tue.nl/en/persons/daan-de-graaf">Eindhoven University of Technology</a>.
I work on support for user-defined graph algorithms in the <a href="https://avantgraph.io">AvantGraph</a> database.</p>
<p>I am interested in databases and compilers.
I like building systems where performance is critical and that are close to the metal.</p>
</div>
</div>
</section>
<section>
<h1>News</h1>
<table id="news-table">
<tbody>
<tr>
<td>Dec'23</td>
<td><p>I presented Graphalg at the annual <a href="https://dbdbd2023.ugent.be/">Dutch-Belgian Database Day</a>, in Ghent.
The poster accompanying my presentation may be found <a href="assets/dbdbd2023_poster.pdf">here</a>.</p>
</td>
</tr>
<tr>
<td>Oct'23</td>
<td><p>Our paper <a href="https://dl.acm.org/doi/10.1145/3586053">Randomized Testing of Byzantine Fault Tolerant Algorithms</a>
was recognized with an <strong>ACM SIGPLAN Distinguished Paper award</strong> at <a href="https://2023.splashcon.org/track/splash-2023-oopsla">OOPSLA 2023</a>.</p>
</td>
</tr>
<tr>
<td>Oct'23</td>
<td><p>We shipped the first publicly available preview of AvantGraph.
It is published as a docker container on our GitHub Container Registry.
<a href="https://github.com/avantlab/avantgraph">Get started here</a>.</p>
</td>
</tr>
<tr>
<td>Sep'23</td>
<td><p>I have started my work as a doctoral candidate at the TU/e Database group.
I will continue my work on the graphalg language for high-performance algorithm support.</p>
</td>
</tr>
<tr>
<td>Aug'23</td>
<td><p>I defended my MSc thesis
<a href="http://resolver.tudelft.nl/uuid:1b5f0236-87f2-41f0-8af8-0911cb3b4d54">Efficient Execution of User-Provided Graph Algorithms in a Graph Database</a>,
and was awarded the <strong>Cum Laude</strong> distinction.</p>
</td>
</tr>
<tr>
<td>Feb'23</td>
<td><p>Our paper
<a href="https://dl.acm.org/doi/10.1145/3586053">Randomized Testing of Byzantine Fault Tolerant Algorithms</a>
with <a href="https://dblp.org/pid/346/8791.html">Levin N. Winter</a>,
<a href="https://dblp.org/pid/346/7638.html">Florena Buse</a>,
<a href="https://dblp.org/pid/86/10265.html">Klaus von Gleissenthall</a> and
<a href="https://burcuku.github.io/home/">Burcu Kulahcioglu Ozkan</a>
has been accepted for <a href="ttps://2023.splashcon.org/track/splash-2023-oopsla">OOPSLA 2023</a>!</p>
</td>
</tr>
<tr>
<td>Apr'22</td>
<td><p>Our blog post <a href="https://github.com/wildarch/jepsen.rqlite/blob/main/doc/blog.md">Testing consistency of rqlite</a>
with Nienke Eijsvogel and Ruben van Baarle was featured on the frontpage of <a href="https://news.ycombinator.com/item?id=31089363">Hacker News</a>.</p>
</td>
</tr>
</tbody>
</table>
</section>
</main>
</body>