-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmembers.html
635 lines (455 loc) · 30.4 KB
/
members.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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
<!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>Members - SWAG Lab</title>
<link rel="stylesheet" href="../assets/css/main.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css"
integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk"
crossorigin="anonymous">
<link rel="icon" type="image/png" href="../assets/img/favicon.png"/>
<link rel="stylesheet" href="../assets/css/members/all.css">
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark mb-2 py-3 bg-primary">
<div class="container-fluid">
<a class="navbar-brand" href="../"><img height="30px" width="119.3px" src="../assets/img/SWAGLogoWhite.png" alt="SWAG Logo"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText"
aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="../index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="../members.html">Members</a>
</li>
<li class="nav-item">
<a class="nav-link" href="../publications.html">Publications</a>
</li>
<li class="nav-item">
<a class="nav-link" href="../teaching.html">Teaching</a>
</li>
<li class="nav-item">
<a class="nav-link" href="../tools.html">Tools</a>
</li>
<li class="nav-item">
<a class="nav-link" href="../funding-partners.html">Funding Partners</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<h1 class="display-5">Members</h1>
<hr>
<h1 class="display-6">Professors</h1>
<div class="row justify-content-center">
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/michael-godfrey.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/michael-godfrey.jpg"
alt="Michael Godfrey's profile picture"
class="profile-pic">
</div>
<h2>Michael Godfrey</h2>
</a>
<h5>Professor</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/shane-mcintosh.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/shane-mcintosh.jpg"
alt="Shane McIntosh's profile picture"
class="profile-pic">
</div>
<h2>Shane McIntosh</h2>
</a>
<h5>Associate Professor</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/mei-nagappan.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/mei-nagappan.png"
alt="Mei Nagappan's profile picture"
class="profile-pic">
</div>
<h2>Mei Nagappan</h2>
</a>
<h5>Associate Professor</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/chengnian-sun.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/chengnian-sun.png"
alt="Chengnian Sun's profile picture"
class="profile-pic">
</div>
<h2>Chengnian Sun</h2>
</a>
<h5>Assistant Professor</h5>
</div>
</div>
<hr>
<h1 class="display-6">Students</h1>
<div class="row justify-content-center">
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/wenhan-zhu-cosmos.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/wenhan-zhu-cosmos.png"
alt="Wenhan Zhu (Cosmos)'s profile picture"
class="profile-pic">
</div>
<h2>Wenhan Zhu (Cosmos)</h2>
</a>
<h5>PhD Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/partha-chakraborty.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/partha-chakraborty.jpg"
alt="Partha Chakraborty's profile picture"
class="profile-pic">
</div>
<h2>Partha Chakraborty</h2>
</a>
<h5>PhD Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/yiwen-dong.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/yiwen-dong.jpg"
alt="Yiwen Dong's profile picture"
class="profile-pic">
</div>
<h2>Yiwen Dong</h2>
</a>
<h5>PhD Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/farshad-kazemi.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/farshad-kazemi.jpg"
alt="Farshad Kazemi's profile picture"
class="profile-pic">
</div>
<h2>Farshad Kazemi</h2>
</a>
<h5>PhD Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/kishanthan-thangarajah.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/kishanthan-thangarajah.png"
alt="Kishanthan Thangarajah's profile picture"
class="profile-pic">
</div>
<h2>Kishanthan Thangarajah</h2>
</a>
<h5>PhD Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/yongqiang-tian.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/yongqiang-tian.jpg"
alt="Yongqiang Tian's profile picture"
class="profile-pic">
</div>
<h2>Yongqiang Tian</h2>
</a>
<h5>PhD Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/zhenyang-xu.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/zhenyang-xu.jpg"
alt="Zhenyang Xu's profile picture"
class="profile-pic">
</div>
<h2>Zhenyang Xu</h2>
</a>
<h5>PhD Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/yaxin-cheng.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/yaxin-cheng.png"
alt="Yaxin Cheng's profile picture"
class="profile-pic">
</div>
<h2>Yaxin Cheng</h2>
</a>
<h5>MMath Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/daniel-erhabor.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/daniel-erhabor.png"
alt="Daniel Erhabor's profile picture"
class="profile-pic">
</div>
<h2>Daniel Erhabor</h2>
</a>
<h5>MMath Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/mehran-meidani.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/mehran-meidani.jpg"
alt="Mehran Meidani's profile picture"
class="profile-pic">
</div>
<h2>Mehran Meidani</h2>
</a>
<h5>MMath Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/aniruddhan-murali.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/aniruddhan-murali.jpg"
alt="Aniruddhan Murali's profile picture"
class="profile-pic">
</div>
<h2>Aniruddhan Murali</h2>
</a>
<h5>MMath Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/xueyao-eve-yu.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/xueyao-eve-yu.jpg"
alt="Xueyao (Eve) Yu's profile picture"
class="profile-pic">
</div>
<h2>Xueyao (Eve) Yu</h2>
</a>
<h5>MMath Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/zhili-zeng.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/zhili-zeng.jpg"
alt="Zhili Zeng's profile picture"
class="profile-pic">
</div>
<h2>Zhili Zeng</h2>
</a>
<h5>MMath Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/xueyan-zhang.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/xueyan-zhang.png"
alt="Xueyan Zhang's profile picture"
class="profile-pic">
</div>
<h2>Xueyan Zhang</h2>
</a>
<h5>MMath Student</h5>
</div>
</div>
<hr>
<h1 class="display-6">Interns</h1>
<div class="row justify-content-center">
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/jeffrey-kam.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/jeffrey-kam.jpg"
alt="Jeffrey Kam's profile picture"
class="profile-pic">
</div>
<h2>Jeffrey Kam</h2>
</a>
<h5>Undergraduate Research Fellow</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/vikram-n-subramanian.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/vikram-n-subramanian.jpg"
alt="Vikram N Subramanian's profile picture"
class="profile-pic">
</div>
<h2>Vikram N Subramanian</h2>
</a>
<h5>Undergraduate Research Assistant</h5>
</div>
</div>
<hr>
<h1 class="display-6">Alumni</h1>
<div class="row justify-content-center">
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/lakshmanan-arumugam.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/lakshmanan-arumugam.jpeg"
alt="Lakshmanan Arumugam's profile picture"
class="profile-pic">
</div>
<h2>Lakshmanan Arumugam</h2>
</a>
<h5>MMath Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/kilby-baron.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/kilby-baron.jpg"
alt="Kilby Baron's profile picture"
class="profile-pic">
</div>
<h2>Kilby Baron</h2>
</a>
<h5>MSc Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/toshiki-hirao.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/toshiki-hirao.jpg"
alt="Toshiki Hirao's profile picture"
class="profile-pic">
</div>
<h2>Toshiki Hirao</h2>
</a>
<h5>Collaborating PhD Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/rahul-iyer.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/default-profile.png"
alt="Rahul Iyer's profile picture"
class="profile-pic">
</div>
<h2>Rahul Iyer</h2>
</a>
<h5>Software Engineer at Amazon</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/hossein-keshavarz.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/hossein-keshavarz.jpg"
alt="Hossein Keshavarz's profile picture"
class="profile-pic">
</div>
<h2>Hossein Keshavarz</h2>
</a>
<h5>MMath Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/yuvika-khardenavis.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/yuvika-khardenavis.jpg"
alt="Yuvika Khardenavis's profile picture"
class="profile-pic">
</div>
<h2>Yuvika Khardenavis</h2>
</a>
<h5>Undergraduate Research Assistant</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/reza-nadri.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/reza-nadri.jpg"
alt="Reza Nadri's profile picture"
class="profile-pic">
</div>
<h2>Reza Nadri</h2>
</a>
<h5>MMath Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/arman-naeimain.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/arman-naeimian.jpg"
alt="Arman Naeimain's profile picture"
class="profile-pic">
</div>
<h2>Arman Naeimain</h2>
</a>
<h5>MMath Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/achyudh-ram.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/default-profile.png"
alt="Achyudh Ram's profile picture"
class="profile-pic">
</div>
<h2>Achyudh Ram</h2>
</a>
<h5>Software Development Engineer</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/christophe-rezk.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/christophe-rezk.jpg"
alt="Christophe Rezk's profile picture"
class="profile-pic">
</div>
<h2>Christophe Rezk</h2>
</a>
<h5>MMath Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/sheik-shameer.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/sheik-shameer.jpg"
alt="Sheik Shameer's profile picture"
class="profile-pic">
</div>
<h2>Sheik Shameer</h2>
</a>
<h5>Alumni</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/shivashree-vysali.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/shivashree-vysali.jpg"
alt="Shivashree Vysali's profile picture"
class="profile-pic">
</div>
<h2>Shivashree Vysali</h2>
</a>
<h5>MMath Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/ruiyin-wen.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/ruiyin-wen.jpeg"
alt="Ruiyin Wen's profile picture"
class="profile-pic">
</div>
<h2>Ruiyin Wen</h2>
</a>
<h5>MMath Student</h5>
</div>
<div class="col col-md-3 col-sm-6 col-12 my-4 text-center">
<a class="member-link" href="../members/farida-el-zanaty.html">
<div class="profile-pic-container">
<img src="../assets/other/profile-pics/farida-el-zanaty.jpg"
alt="Farida El Zanaty's profile picture"
class="profile-pic">
</div>
<h2>Farida El Zanaty</h2>
</a>
<h5>MMath Student</h5>
</div>
</div>
</div>
<ul class="nav justify-content-center credits pt-4 pb-3">
<li class="nav-item">
<h6>Designed and built by <a target="_blank" href="https://vishnus.me">Vishnu Satish</a></h6>
</li>
</ul>
<div class="position-fixed bottom-0 end-0 p-3" style="z-index: 1220">
<div id="copy-toast" class="toast hide" role="alert" aria-live="assertive" aria-atomic="true">
<div class="toast-body">
Copied text.
</div>
</div>
</div>
<script src="../assets/js/bootstrap.min.js"></script>
<script src="../assets/js/main.js"></script>
</body>
</html>