forked from codewithsadee/vcard-personal-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
514 lines (380 loc) · 16.8 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
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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ruomu's Academic Personal Page</title>
<!--
- favicon
-->
<link rel="shortcut icon" href="./assets/images/logo.svg" type="image/x-icon">
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">
<!--
- google font link
-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="publications.css">
<link rel="stylesheet" href="files.css">
</head>
<body>
<!--
- #MAIN
-->
<main>
<!--
- #SIDEBAR
-->
<aside class="sidebar" data-sidebar>
<div class="sidebar-info">
<figure class="avatar-box">
<img src="./assets/images/profile_pic.jpg" alt="profile_pic" width="80">
</figure>
<div class="info-content">
<h1 class="name" title="Hou, Ruomu">Hou, Ruomu</h1>
<p class="title">PhD. Candidate</p>
</div>
<button class="info_more-btn" data-sidebar-btn>
<span>Show Contacts</span>
<ion-icon name="chevron-down"></ion-icon>
</button>
</div>
<div class="sidebar-info_more">
<div class="separator"></div>
<ul class="contacts-list">
<li class="contact-item">
<div class="icon-box">
<ion-icon name="mail-outline"></ion-icon>
</div>
<div class="contact-info">
<p class="contact-title">Email</p>
<a href="mailto:houruomu@comp.nus.edu.sg" class="contact-link">houruomu@comp.nus.edu.sg</a>
</div>
</li>
</li>
<li class="contact-item">
<div class="icon-box">
<ion-icon name="location-outline"></ion-icon>
</div>
<div class="contact-info">
<p class="contact-title">Location</p>
<address>COM3, 11 Research Link, Singapore 119391</address>
</div>
</li>
</ul>
<div class="separator"></div>
<ul class="social-list">
<li class="social-item">
<a href="https://www.linkedin.com/in/ruomu-hou" class="social-link">
<ion-icon name="logo-linkedin"></ion-icon>
</a>
</li>
</ul>
</div>
</aside>
<!--
- #main-content
-->
<div class="main-content">
<!--
- #NAVBAR
-->
<nav class="navbar">
<ul class="navbar-list">
<li class="navbar-item">
<button class="navbar-link active" data-nav-link>About</button>
</li>
<li class="navbar-item">
<button class="navbar-link" data-nav-link>Publication</button>
</li>
<li class="navbar-item">
<button class="navbar-link" data-nav-link>Teaching</button>
</li>
<li class="navbar-item">
<button class="navbar-link" data-nav-link>Files</button>
</li>
</ul>
</nav>
<!--
- #ABOUT
-->
<article class="about active" data-page="about">
<header>
<h2 class="h2 article-title">About me</h2>
</header>
<section class="about-text">
<p>
I am a PhD candidate in the Department of Computer Science at the National University of Singapore (NUS), supervised by Prof. Haifeng Yu. I am on the job market and will graduate in early 2025.
</p>
<p>
My research focuses on designing robust distributed systems for adversarial settings. I have actively published in top-tier conferences and journals, including IEEE S&P (Oakland), SPAA, ToN, INFOCOM, and Computer Networks. Notably, I proposed the first practical blockchain system capable of tolerating majority Byzantine faults, culminating in two IEEE S&P (Oakland) publications in 2022 and 2023.
</p>
<p>
Originally from Beijing, China, I moved to Singapore in 2009 for my high-school education under the SM1 scholarship. I continued my studies in Singapore and married my wife in 2019. I am now the proud father of a lovely son. Beyond academia, I am passionate about carpentry and have even built an entire kitchen for my family.
</p>
</section>
<section class="timeline">
<div class="title-wrapper">
<div class="icon-box">
<ion-icon name="book-outline"></ion-icon>
</div>
<h3 class="h3">Education</h3>
</div>
<ol class="timeline-list">
<li class="timeline-item">
<h4 class="h4 timeline-item-title">National University of Singapore</h4>
<span>2019 — 2024</span>
<p class="timeline-text">
Ph.D in computer Science (expected to graduate early 2025)<br>
Advisor: Prof. Haifeng Yu
</p>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">National University of Singapore</h4>
<span>2014 — 2018</span>
<p class="timeline-text">
Double Degree in Computer Science and Mathematics<br>
GPA: 4.9/5.0<br>
Valedictorian
</p>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">Hwa Chong Institution</h4>
<span>2010 — 2013</span>
<p class="timeline-text">
Pre-U, Hwa Chong Diploma
</p>
</li>
</ol>
</section>
</article>
<article class="publication" data-page="publication">
<header>
<h2 class="h2 article-title">Selected Publication</h2>
</header>
<section class="about-text">
<ul class="publications">
<li>
<span class="authors">
<span class="your-name">Ruomu Hou</span>, Haifeng Yu, and Yucheng Sun
</span>,
"<span class="title">Selfied: Sybil Defense in Permissionless Blockchains via In-protocol Bandwidth Consumption.</span>"
<span class="conference">Computer Networks, Volume 256</span>,
Version of Record published Oct 2024.
</li>
<li>
<span class="authors">
Yucheng Sun, <span class="your-name">Ruomu Hou</span>, and Haifeng Yu
</span>,
<span class="title">"Robust and Low-degree Overlay for Secure Flooding Against Resource-bounded Adversaries."</span>
In Proceedings of the <span class="conference">IEEE Pacific Rim International Symposium on Dependable Computing (PRDC'24)</span>,
Oct 2024.
<span class="award"><strong>Winner of Best Paper Award.</strong></span>
<!-- Technical report version available as
[<a href="https://dl.comp.nus.edu.sg/handle/1900.100/17330">Technical Report</a>].
[<a href="https://www.comp.nus.edu.sg/~sunyuch/prdc24.pptx">Conference talk slides</a>]. -->
</li>
<li>
<span class="authors">
Yucheng Sun, <span class="your-name">Ruomu Hou</span>, and Haifeng Yu
</span>,
<span class="title">"Using Multi-dimensional Quorums for Optimal Resilience in Multi-resource Blockchains."</span>
In Proceedings of the <span class="conference">IEEE Pacific Rim International Symposium on Dependable Computing (PRDC'23)</span>,
Oct 2023.
<span class="award"><strong>Winner of 2023 IEEE Distinguished Paper Award on Dependable Computing.</strong></span>
</li>
<li>
<span class="authors">
<span class="your-name">Ruomu Hou</span> and Haifeng Yu
</span>,
<span class="title">"Optimistic Fast Confirmation While Tolerating Malicious Majority in Blockchains."</span>
In Proceedings of the <span class="conference">IEEE Symposium on Security and Privacy (Oakland'23)</span>,
May 2023.
</li>
<li>
<span class="authors">
<span class="your-name">Ruomu Hou</span>, Irvan Jahja, Yucheng Sun, Jiyan Wu, and Haifeng Yu
</span>,
<span class="title">"Achieving Sublinear Complexity under Constant T in T-interval Dynamic Networks."</span>
In Proceedings of the <span class="conference">ACM Symposium on Parallelism in Algorithms and Architectures (SPAA'22)</span>,
July 2022.
</li>
<li>
<span class="authors">
<span class="your-name">Ruomu Hou</span>, Haifeng Yu, and Prateek Saxena
</span>,
<span class="title">"Using Throughput-Centric Byzantine Broadcast to Tolerate Malicious Majority in Blockchains."</span>
In Proceedings of the <span class="conference">IEEE Symposium on Security and Privacy (Oakland'22)</span>,
May 2022.
</li>
<li>
<span class="authors">
Irvan Jahja, Haifeng Yu, and <span class="your-name">Ruomu Hou</span>
</span>,
<span class="title">"On the power of randomization in distributed algorithms in dynamic networks with adaptive adversaries."</span>
<span class="conference">Journal of Parallel and Distributed Computing, Volume 159, pp. 35-50</span>,
Jan 2022.
</li>
<li>
<span class="authors">
<span class="your-name">Ruomu Hou</span>, Irvan Jahja, Loi Luu, Prateek Saxena, and Haifeng Yu
</span>,
<span class="title">"Randomized View Reconciliation in Permissionless Distributed Systems."</span>
<span class="conference">IEEE/ACM Transactions on Networking (ToN), Volume 28, Issue 5</span>,
Oct 2022.
</li>
<li>
<span class="authors">
Irvan Jahja, Haifeng Yu, and <span class="your-name">Ruomu Hou</span>
</span>,
<span class="title">"On the power of randomization in distributed algorithms in dynamic networks with adaptive adversaries."</span>
In Proceedings of the <span class="conference">International European Conference on Parallel and Distributed Computing (Euro-Par'20)</span>,
Aug 2020.
</li>
<li>
<span class="authors">
Haifeng Yu, Ivica Nikolic, <span class="your-name">Ruomu Hou</span>, and Prateek Saxena
</span>,
<span class="title">"OHIE: Blockchain Scaling Made Simple."</span>
In Proceedings of the <span class="conference">IEEE Symposium on Security and Privacy (Oakland'20)</span>,
May 2020.
</li>
<!-- Add more publications here -->
</ul>
</section>
</article>
<article class="teaching" data-page="teaching">
<header>
<h2 class="h2 article-title">Teaching</h2>
</header>
<section class="timeline">
<div class="title-wrapper">
<div class="icon-box">
<ion-icon name="bulb-outline"></ion-icon>
</div>
<h3 class="h3">Teaching Experience</h3>
</div>
<ol class="timeline-list">
<li class="timeline-item">
<h4 class="h4 timeline-item-title">CS4231 Parallel and Distributed Algorithms</h4>
<span>Jan - May 2022</span>
<p class="timeline-text">
Teaching Assistant<br>
Conducted weekly consultation sessions, and helped in preparing other course materials.
</p>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">CS1101S Programming Methodology</h4>
<span>Aug - Dec 2021</span>
<p class="timeline-text">
Teaching Assistant<br>
Developed a graphical programming environment and a web UI for the course.
</p>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">CS3230 Design and Analysis of Algorithms</h4>
<span>Aug - Dec 2018</span>
<p class="timeline-text">
Teaching Assistant<br>
Conducted weekly tutorials, prepared and marked assignments.
</p>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">CS3230 Design and Analysis of Algorithms</h4>
<span>Jan - May 2017</span>
<p class="timeline-text">
Teaching Assistant<br>
Conducted weekly tutorials, prepared and marked assignments.
</p>
</li>
<li class="timeline-item">
<h4 class="h4 timeline-item-title">CS3230 Design and Analysis of Algorithms</h4>
<span>Aug - Dec 2016</span>
<p class="timeline-text">
Teaching Assistant<br>
Conducted weekly tutorials, prepared and marked assignments.
</p>
</li>
</ol>
</section>
</article>
<article class="files" data-page="files">
<header>
<h2 class="h2 article-title">Files</h2>
</header>
<section class="service">
<h3 class="h3 service-title">Application Pacakge</h3>
<ul class="service-list">
<li class="service-item">
<div class="service-icon-box">
<img src="https://img.icons8.com/?size=100&id=13593&format=png&color=000000" alt="PDF-logo" width="40">
</div>
<a href="research_statement.pdf" class="service-link">
<div class="service-content-box">
<h4 class="h4 service-item-title">Research Statement</h4>
<p class="service-item-text">
An in-depth overview of my research interests and contributions.
</p>
</div>
</a>
</li>
<li class="service-item">
<div class="service-icon-box">
<img src="https://img.icons8.com/?size=100&id=13593&format=png&color=000000" alt="PDF-logo" width="40">
</div>
<a href="teaching statement.pdf" class="service-link">
<div class="service-content-box">
<h4 class="h4 service-item-title">Teaching Statement</h4>
<p class="service-item-text">
My philosophy and approach to education and student mentorship.
</p>
</div>
</a>
</li>
<li class="service-item">
<div class="service-icon-box">
<img src="https://img.icons8.com/?size=100&id=13593&format=png&color=000000" alt="PDF-logo" width="40">
</div>
<a href="cv.pdf" class="service-link">
<div class="service-content-box">
<h4 class="h4 service-item-title">Curriculum Vitae</h4>
<p class="service-item-text">
Detailed summary of my academic and professional background.
</p>
</div>
</a>
</li>
<li class="service-item">
<div class="service-icon-box">
<img src="https://img.icons8.com/?size=100&id=13625&format=png&color=000000" alt="PPT-logo" width="40">
</div>
<a href="#" class="service-link">
<div class="service-content-box">
<h4 class="h4 service-item-title">Recruitment Talk Slides</h4>
<p class="service-item-text">
Presentation slides from my recent recruitment talk. (To be updated)
</p>
</div>
</a>
</li>
</ul>
</section>
</article>
</div>
</main>
<!--
- custom js link
-->
<script src="./assets/js/script.js"></script>
<!--
- ionicon link
-->
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
</body>
</html>