aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/landing/sections/Resume.tsx
blob: 40ceeb03bb65bf8c9fffa2d344399e7145922cf3 (plain) (blame)
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
/*
 * SPDX-FileCopyrightText: 2023 Kristóf Marussy
 *
 * SPDX-License-Identifier: MIT AND CC-BY-4.0
 */

import clsx from 'clsx';

import Section from '@site/src/components/landing/Section';
import Subtitle from '@site/src/components/landing/Subtitle';

import styles from './Resume.module.css';

export default function Resume() {
  return (
    <Section title="Resume">
      <div className="container">
        <div className="row">
          <div className="col col-6">
            <Subtitle icon="🎓">Education</Subtitle>
            <ul className={styles.cv}>
              <li className={styles.cv__item}>
                <h4 className={styles.cv__title}>Doctor of Philosophy (PhD)</h4>
                <p className={styles.cv__times}>
                  <span className={styles.cv__time}>2018&ndash;2023</span>
                </p>
                <p>
                  <i>Budapest Unversity of Technology and Economics</i>
                </p>
                <p>
                  Thesis:{' '}
                  <a href="/thesis.pdf">
                    <b>
                      Abstraction Techniques for the Analysis and Synthesis of
                      Critical Cyber-Physical System Architectures
                    </b>
                  </a>
                </p>
                <div className={styles['thesis-links']}>
                  <a
                    href="/thesis.pdf"
                    className={clsx(
                      'button',
                      'button--primary',
                      styles['thesis-links__link'],
                    )}
                  >
                    Read now
                  </a>
                  <a
                    href="/thesis-booklet-en.pdf"
                    className={clsx(
                      'button',
                      'button--secondary',
                      styles['thesis-links__link'],
                    )}
                  >
                    Extended abstract
                  </a>
                  <a
                    href="http://hdl.handle.net/10890/41832"
                    className={styles['thesis-links__link']}
                  >
                    Also available via HDL.NET
                  </a>
                </div>
              </li>
              <li className={styles.cv__item}>
                <h4 className={styles.cv__title}>Master of Science (MSc)</h4>
                <p className={styles.cv__times}>
                  <span className={styles.cv__time}>2016&ndash;2018</span>
                </p>
                <p>
                  <i>Budapest Unversity of Technology and Economics</i>
                </p>
              </li>
              <li className={styles.cv__item}>
                <h4 className={styles.cv__title}>Bachleor of Science (BSc)</h4>
                <p className={styles.cv__times}>
                  <span className={styles.cv__time}>2012&ndash;2016</span>
                </p>
                <p>
                  <i>Budapest Unversity of Technology and Economics</i>
                </p>
              </li>
            </ul>
            <Subtitle icon="🏅">Scholarships and awards</Subtitle>
            <ul className={styles.cv}>
              <li className={styles.cv__item}>
                <h4 className={styles.cv__title}>
                  <a href="https://www.unkp.gov.hu/">
                    New National Excellence Programme (
                    <span lang="hu">ÚNKP</span>)
                  </a>
                </h4>
                <p className={styles.cv__times}>
                  <span className={styles.cv__time}>2016 (MSc)</span>{' '}
                  <span className={styles.cv__time}>2018 (PhD student)</span>{' '}
                  <span className={styles.cv__time}>2021 (PhD candidate)</span>{' '}
                  <span className={styles.cv__time}>2023 (postdoc)</span>{' '}
                </p>
                <p className={styles.cv__awarddesc}>
                  Awarded by the{' '}
                  <a href="https://web.archive.org/web/20230531162207/https://nkfih.gov.hu/english/nrdi-fund/new-national-excellence-programme-unkp-23-3/call-for-applications">
                    National Research, Development and Innovation Office (NRDI)
                  </a>{' '}
                  of Hungary to around 700 recipents per year
                </p>
              </li>
              <li className={styles.cv__item}>
                <h4 className={styles.cv__title}>
                  <a href="https://2021.splashcon.org/track/splash-2021-Artifacts#Chairs-Report">
                    OOPSLA 2021 Distinguished Artifact Reviewer
                  </a>
                </h4>
              </li>
              <li className={styles.cv__item}>
                <h4 className={styles.cv__title}>
                  <a href="https://www.mit.bme.hu/node/10575">
                    2020 László Schnell Award
                  </a>
                </h4>
                <p className={styles.cv__awarddesc}>
                  Awarded by the{' '}
                  <a href="https://www.mit.bme.hu/general/alapitvany">
                    László Schell Foundation
                  </a>{' '}
                  to 1 member of the{' '}
                  <i>Department of Measurement and Information Systems</i> per
                  year for exceptional research work
                </p>
              </li>
            </ul>
            <Subtitle icon="👨‍🏫">Teaching and mentoring</Subtitle>
            <ul className={styles.cv}>
              <li className={styles.cv__item}>
                <h4 className={styles.cv__title}>Teaching assistant</h4>
                <p className={styles.cv__times}>
                  <span className={styles.cv__time}>2014&ndash;</span>
                </p>
                <ul className={styles.cv__activities}>
                  <li className={styles.cv__activity}>
                    Courses at the{' '}
                    <a href="https://mit.bme.hu">
                      Deparment of Measurement and Information Systems
                    </a>{' '}
                    and the{' '}
                    <a href="https://cs.bme.hu">
                      Deparment of Computer Science and Information Theory
                    </a>
                  </li>
                  <li className={styles.cv__activity}>
                    Including practice and lab sessions in the{' '}
                    <a href="https://imsc.vik.bme.hu/">IMsc programme</a> of BME
                    for talented BSc students
                  </li>
                </ul>
              </li>
              <li className={styles.cv__item}>
                <h4 className={styles.cv__title}>
                  Supervised BSc and MSc{' '}
                  <a href="https://diplomaterv.vik.bme.hu/hu/Supervisors/Marussy-Kristof">
                    thesis works
                  </a>
                </h4>
                <p className={styles.cv__times}>
                  <span className={styles.cv__time}>7 &times; BSc</span>{' '}
                  <span className={styles.cv__time}>4 &times; MSc</span>{' '}
                  <span className={styles.cv__time}>
                    1 &times; MSc{' '}
                    <a href="https://www.unkp.gov.hu/" lang="hu">
                      ÚNKP research
                    </a>
                  </span>
                </p>
              </li>
              <li className={styles.cv__item}>
                <h4 className={styles.cv__title}>
                  Supervised{' '}
                  <a href="https://tdk.bme.hu/Browse/Users/Marussy-Kristof">
                    Scientific Students' Association
                  </a>{' '}
                  research
                </h4>
                <p className={styles.cv__times}>
                  <span className={styles.cv__time}>5 &times; 🥇</span>{' '}
                  <span className={styles.cv__time}>4 &times; 🥈</span>{' '}
                  <span className={styles.cv__time}>1 &times; 🥉</span>{' '}
                  <span className={styles.cv__time}>1 &times; merit</span>
                  at university level
                </p>
                <p className={styles.cv__times}>
                  <span className={styles.cv__time}>1 &times; 🥈</span>{' '}
                  <span className={styles.cv__time}>1 &times; merit</span>
                  at national level
                </p>
              </li>
            </ul>
          </div>
          <div className="col col-6">
            <Subtitle icon="👨‍💼">Professional experience</Subtitle>
            <ul className={styles.cv}>
              <li className={styles.cv__item}>
                <h4 className={styles.cv__title}>Assistant research fellow</h4>
                <p className={styles.cv__times}>
                  <span className={styles.cv__time}>2020&ndash;2023</span>
                </p>
                <p>
                  <i>
                    Department of Measurement and Information Systems, Budapest
                    Unversity of Technology and Economics, Hungary
                  </i>
                </p>
                <ul className={styles.cv__activities}>
                  <li className={styles.cv__activity}>
                    Performing research and developing tools to address
                    challanges in the development of critical systems motivated
                    by case studies and collaborations with industry partners
                  </li>
                  <li className={styles.cv__activity}>
                    Created reliability models for{' '}
                    <i>distributed railway interlocking systems</i> in a{' '}
                    <a href="https://projektek.bme.hu/index.php?site=3_0_0&i=28">
                      Hungarian national project
                    </a>{' '}
                    with <a href="https://www.prolan.hu/">Prolan Zrt.</a>
                  </li>
                  <li className={styles.cv__activity}>
                    Participated in the formal verification of a{' '}
                    <i>critical automotive subsystem</i> in a{' '}
                    <a href="https://projektek.bme.hu/index.php?site=3_1_0&i=18">
                      Hungarian national project
                    </a>{' '}
                    with{' '}
                    <a href="https://www.thyssenkrupp.hu/en">
                      thyssenkrupp Ltd.
                    </a>
                  </li>
                </ul>
              </li>
              <li className={styles.cv__item}>
                <h4 className={styles.cv__title}>Assistant research fellow</h4>
                <p className={styles.cv__times}>
                  <span className={styles.cv__time}>2018&ndash;2019</span>
                </p>
                <p>
                  <i>
                    <a href="https://web.archive.org/web/20200919160859/https://lendulet.inf.mit.bme.hu/">
                      MTA-BME <span lang="hu">Lendület</span> Cyber-Physical
                      Systems Research Group
                    </a>
                  </i>
                </p>
              </li>
              <li className={styles.cv__item}>
                <h4 className={styles.cv__title}>Research trainee</h4>
                <p className={styles.cv__times}>
                  <span className={styles.cv__time}>2014-2015</span>
                </p>
                <p>
                  <i>
                    <a href="https://web.archive.org/web/20150925191035/http://biointelligence.hu/">
                      BioIntelligence Research Group,
                    </a>{' '}
                    <a href="https://semmelweis.hu/genomikai-medicina/en/">
                      Institute of Genomic Medicine and Rare Disorders,
                    </a>{' '}
                    <a href="https://semmelweis.hu/en/">
                      Semmelweis University,
                    </a>{' '}
                    Budapest, Hungary
                  </i>
                </p>
              </li>
            </ul>
            <Subtitle icon="🏕️">Research visits</Subtitle>
            <ul className={styles.cv}>
              <li className={styles.cv__item}>
                <h4 className={styles.cv__title}>Graduate research trainee</h4>
                <p className={styles.cv__times}>
                  <span className={styles.cv__time}>May&ndash;June 2019</span>{' '}
                  <span className={styles.cv__time}>October 2020</span>
                </p>
                <p>
                  <i>
                    <a href="https://web.archive.org/web/20201124184148/https://www.mcgill.ca/ece/daniel-varro">
                      Department of Electrical and Computer Engineering,
                    </a>{' '}
                    <a href="https://www.mcgill.ca/">McGill Univeristy,</a>{' '}
                  </i>
                  Montreal, Canada
                </p>
              </li>
              <li className={styles.cv__item}>
                <h4 className={styles.cv__title}>Visting researcher</h4>
                <p className={styles.cv__times}>
                  <span className={styles.cv__time}>March 2019</span>{' '}
                </p>
                <p>
                  <i>
                    <a href="https://web.archive.org/web/20190430204608/https://people.disim.univaq.it/cortelle/">
                      Department of Computer Science and Engineering, and
                      Mathematics,
                    </a>{' '}
                    <a href="https://www.univaq.it/en/index.php?&lang_s=en">
                      University of L'Aquila,
                    </a>{' '}
                  </i>
                  Italy
                </p>
              </li>
            </ul>
            <Subtitle icon="📔">Academic service</Subtitle>
            <ul className={styles.cv}>
              <li className={styles.cv__item}>
                <h4 className={styles.cv__title}>
                  Extended Review Committe member
                </h4>
                <p className={styles.cv__times}>
                  <span className={styles.cv__time}>
                    <a href="https://2023.splashcon.org/committee/splash-2023-oopsla-external-review---artifact-evaluation-committee">
                      OOPSLA &rsquo;23
                    </a>
                  </span>{' '}
                  <span className={styles.cv__time}>
                    <a href="https://2023.ecoop.org/committee/ecoop-2023-research-papers-extended-review-committee">
                      ECOOP &rsquo;23
                    </a>{' '}
                    and{' '}
                    <a href="https://2022.ecoop.org/committee/ecoop-2022-papers-extended-review-committee-">
                      &rsquo;22
                    </a>
                  </span>
                </p>
              </li>
              <li className={styles.cv__item}>
                <h4 className={styles.cv__title}>
                  Artifact Evaluation Committe member
                </h4>
                <p className={styles.cv__times}>
                  <span className={styles.cv__time}>
                    <a href="https://2023.splashcon.org/committee/splash-2023-oopsla-external-review---artifact-evaluation-committee">
                      OOPSLA &rsquo;23
                    </a>{' '}
                    and{' '}
                    <a href="https://2021.splashcon.org/track/splash-2021-Artifacts">
                      &rsquo;21
                    </a>
                  </span>{' '}
                  <span className={styles.cv__time}>
                    <a href="https://2023.ecoop.org/committee/ecoop-2023-artifact-evaluation-artifact-evaluation-committee">
                      ECOOP &rsquo;23
                    </a>{' '}
                    and{' '}
                    <a href="https://2022.ecoop.org/committee/ecoop-2022-artifacts-artifact-evaluation-committee">
                      &rsquo;22
                    </a>
                  </span>{' '}
                  <span className={styles.cv__time}>
                    <a href="https://web.archive.org/web/20230209015023/https://fase-conf.github.io/">
                      FASE &rsquo;23
                    </a>
                  </span>{' '}
                  <span className={styles.cv__time}>
                    <a href="https://www.etaps.org/user-profile/archive/53-etaps-2022/491-esop-2022-artifact-evaluation.html">
                      ESOP &rsquo;22
                    </a>
                  </span>{' '}
                </p>
              </li>
              <li className={styles.cv__item}>
                <h4 className={styles.cv__title}>Reviewing for journals</h4>
                <ul className={styles.cv__activities}>
                  <li
                    className={clsx(
                      styles.cv__activity,
                      styles['cv__activity--tight'],
                    )}
                  >
                    Science of Computer Programming
                  </li>
                  <li
                    className={clsx(
                      styles.cv__activity,
                      styles['cv__activity--tight'],
                    )}
                  >
                    Journal of Logical and Algebraic Methods in Programming
                  </li>
                </ul>
              </li>
            </ul>
          </div>
        </div>
      </div>
    </Section>
  );
}