-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpeople.html
More file actions
973 lines (641 loc) · 25.6 KB
/
people.html
File metadata and controls
973 lines (641 loc) · 25.6 KB
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
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags always come first -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<link rel="stylesheet" href="/css/design.css">
<link rel="icon" href="/favicon.ico">
<title></title>
</head>
<body>
<!-- Load jQuery before the content in order to support the papers page sorting -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<header>
<div class="brand-bg-color">
<div class="container">
<div class="brand-navbar">
<div class="row">
<div class="flex-separate col-12 d-flex justify-content-between align-items-center">
<a href="/" class="nav-link">
<img src="/img/tulane-sse-logo.png" alt="Tulane School of Science and Engineering" id="header-logo"
style="height: 60px; margin: 10px 0; padding: 5px; border-radius: 4px;"/>
</a>
<!-- Navbar toggle button for mobile -->
<button class="navbar-toggler d-block d-sm-none" type="button" data-toggle="collapse" data-target="#collapseNav" aria-controls="collapseNav" aria-expanded="false" aria-label="Toggle navigation">
☰
</button>
<!-- Desktop navigation links -->
<div class="navbar-nav nav-horizontal d-none d-sm-flex">
<a class="nav-item nav-link" href="/projects.html">Projects</a>
<a class="nav-item nav-link" href="/papers/">Papers</a>
<a class="nav-item nav-link" href="/grants/">Grants</a>
<a class="nav-item nav-link" href="/news/">News</a>
<a class="nav-item nav-link" href="/people.html">People</a>
<a class="nav-item nav-link" href="/about/">About</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Mobile navigation menu (only shows when collapsed) -->
<div class="nav-bg-color d-sm-none">
<nav class="container navbar navbar-dark navbar-expand-sm">
<div class="collapse navbar-collapse" id="collapseNav">
<div class="navbar-nav">
<a class="nav-item nav-link" href="/projects.html">Projects</a>
<a class="nav-item nav-link" href="/papers/">Papers</a>
<a class="nav-item nav-link" href="/grants/">Grants</a>
<a class="nav-item nav-link" href="/news/">News</a>
<a class="nav-item nav-link" href="/people.html">People</a>
<a class="nav-item nav-link" href="/about/">About</a>
</div>
</div>
</nav>
</div>
</header>
<main class="container">
<br />
<div class="row">
<div class="col-12">
<h2 class="page-title"></h2>
<style>
div .member-images, .alumni-images {
display: flex;
flex-wrap: wrap;
flex-flow: flex-start;
}
.member-image, .alumni-image {
font-size: 16px;
display: inline-block;
max-width: 130px;
object-fit: cover;
margin: 0px 4px;
}
@media screen and (max-width: 443px){
.member-image, .alumni-image {
margin: 0px calc((100% - 260px)/4);
}
}
a {
color: inherit;
}
.crop-image {
max-height: 130px;
object-fit: cover;
max-width: 100%;
border: 1px solid black;
}
</style>
<h2>Current Lab Members</h2>
<div class="member-images">
<a class="member-image Dr. Hridesh Rajan" href="http://web.cs.iastate.edu/~hridesh/">
<figure>
<!-- All members have a site listed-->
<img class="crop-image" src="/img/people/hrajan.jpg" alt="Image of Dr. Hridesh Rajan">
<!--All members have a site listed-->
<figcaption>
Dr. Hridesh Rajan
[Director]
</figcaption>
</figure>
</a>
<a class="member-image Dr. Sayma Sultana" href="https://sayma23.github.io/">
<figure>
<!-- All members have a site listed-->
<img class="crop-image" src="/img/people/sayma.png" alt="Image of Dr. Sayma Sultana">
<!--All members have a site listed-->
<figcaption>
Dr. Sayma Sultana
[Postdoctoral Fellow]
</figcaption>
</figure>
</a>
<a class="member-image Fraol Batole" href="https://fraolbatole.github.io/">
<figure>
<!-- All members have a site listed-->
<img class="crop-image" src="/img/people/fraol.jpg" alt="Image of Fraol Batole">
<!--All members have a site listed-->
<figcaption>
Fraol Batole
[PhD]
</figcaption>
</figure>
</a>
<a class="member-image Ruchira Manke" href="https://tads.research.iastate.edu/people/ruchira-manke">
<figure>
<!-- All members have a site listed-->
<img class="crop-image" src="/img/people/ruchira.jpg" alt="Image of Ruchira Manke">
<!--All members have a site listed-->
<figcaption>
Ruchira Manke
[PhD]
</figcaption>
</figure>
</a>
<a class="member-image Deepak-George Thomas" href="https://deepakgthomas.github.io/">
<figure>
<!-- All members have a site listed-->
<img class="crop-image" src="/img/people/deepak.jpg" alt="Image of Deepak-George Thomas">
<!--All members have a site listed-->
<figcaption>
Deepak-George Thomas
[PhD]
</figcaption>
</figure>
</a>
</div>
<h2>Lab Alumni</h2>
<div class="alumni-images">
<a class="alumni-image Dr. Ali Ghanbari" href="https://ali-ghanbari.github.io/">
<figure>
<img class="crop-image" src="/img/people/ali.jpg" alt="Image of Dr. Ali Ghanbari">
<!--All members have a site listed-->
<figcaption>
Dr. Ali Ghanbari
[Postdoctoral Fellow]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. Breno Dantas Cruz" href="https://www.cs.iastate.edu/people/breno-dantas-cruz">
<figure>
<img class="crop-image" src="/img/people/breno.jpg" alt="Image of Dr. Breno Dantas Cruz">
<!--All members have a site listed-->
<figcaption>
Dr. Breno Dantas Cruz
[Postdoctoral Fellow]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. Hoan A. Nguyen" href="https://sites.google.com/site/nguyenanhhoan/home">
<figure>
<img class="crop-image" src="/img/people/hnguyen.jpg" alt="Image of Dr. Hoan A. Nguyen">
<!--All members have a site listed-->
<figcaption>
Dr. Hoan A. Nguyen
[Postdoctoral Fellow]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. Zhen Yu" href="http://design.cs.iastate.edu">
<figure>
<img class="crop-image" src="/img/people/zyu.jpeg" alt="Image of Dr. Zhen Yu">
<!--All members have a site listed-->
<figcaption>
Dr. Zhen Yu
[Postdoctoral Fellow]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. Sayem Imtiaz" href="https://www.cs.iastate.edu/people/sayem-mohammad-imtiaz">
<figure>
<img class="crop-image" src="/img/people/simtiaz.jpg" alt="Image of Dr. Sayem Imtiaz">
<!--All members have a site listed-->
<figcaption>
Dr. Sayem Imtiaz
[PhD Fall'24]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. Giang Nguyen" href="https://www.cs.iastate.edu/gnguyen">
<figure>
<img class="crop-image" src="/img/people/giang.jpeg" alt="Image of Dr. Giang Nguyen">
<!--All members have a site listed-->
<figcaption>
Dr. Giang Nguyen
[PhD Fall'24]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. David OBrien" href="https://davidmobrien.github.io/">
<figure>
<img class="crop-image" src="/img/people/david.png" alt="Image of Dr. David OBrien">
<!--All members have a site listed-->
<figcaption>
Dr. David OBrien
[PhD Fall'24]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. Shibbir Ahmed" href="https://www.cs.iastate.edu/people/shibbir-ahmed">
<figure>
<img class="crop-image" src="/img/people/sahmed.jpg" alt="Image of Dr. Shibbir Ahmed">
<!--All members have a site listed-->
<figcaption>
Dr. Shibbir Ahmed
[PhD Summer'24]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. Mohammad Wardat" href="https://www.oakland.edu/secs/directory/wardat/">
<figure>
<img class="crop-image" src="/img/people/wardat.jpg" alt="Image of Dr. Mohammad Wardat">
<!--All members have a site listed-->
<figcaption>
Dr. Mohammad Wardat
[PhD Summer'23]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. Sumon Biswas" href="https://sumonbis.github.io/">
<figure>
<img class="crop-image" src="/img/people/sbiswas.jpg" alt="Image of Dr. Sumon Biswas">
<!--All members have a site listed-->
<figcaption>
Dr. Sumon Biswas
[PhD Spring'22, MS Spring'21]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. Rangeet Pan" href="https://rangeetpan.github.io">
<figure>
<img class="crop-image" src="/img/people/pan.jpg" alt="Image of Dr. Rangeet Pan">
<!--All members have a site listed-->
<figcaption>
Dr. Rangeet Pan
[PhD Spring'22]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. Samantha Khairunnesa" href="https://www.linkedin.com/in/samantha-syeda">
<figure>
<img class="crop-image" src="/img/people/skhairunnesa.jpg" alt="Image of Dr. Samantha Khairunnesa">
<!--All members have a site listed-->
<figcaption>
Dr. Samantha Khairunnesa
[PhD Summer'21, MS Fall'17]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. Hamid Bagheri" href="http://www.cs.iastate.edu/people/hamid-bagheri">
<figure>
<img class="crop-image" src="/img/people/hbagheri.jpg" alt="Image of Dr. Hamid Bagheri">
<!--All members have a site listed-->
<figcaption>
Dr. Hamid Bagheri
[PhD Spring'21]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. Md. Johirul Islam" href="https://scholar.google.com/citations?user=HdY_VO4AAAAJ&hl=en">
<figure>
<img class="crop-image" src="/img/people/jislam.jpg" alt="Image of Dr. Md. Johirul Islam">
<!--All members have a site listed-->
<figcaption>
Dr. Md. Johirul Islam
[PhD Summer'20, MS Fall'19]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. Ganesha Upadhyaya" href="http://web.cs.iastate.edu/~ganeshau/">
<figure>
<img class="crop-image" src="/img/people/gupadhyaya.jpg" alt="Image of Dr. Ganesha Upadhyaya">
<!--All members have a site listed-->
<figcaption>
Dr. Ganesha Upadhyaya
[PhD Fall'17, MS Spring'15]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. Yuheng Long" href="http://web.cs.iastate.edu/~csgzlong/">
<figure>
<img class="crop-image" src="/img/people/ylong.jpg" alt="Image of Dr. Yuheng Long">
<!--All members have a site listed-->
<figcaption>
Dr. Yuheng Long
[PhD Spring'16, MS Spring'10]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. Mehdi Bagherzadeh" href="https://mbagherz.bitbucket.io">
<figure>
<img class="crop-image" src="/img/people/mbagherzadeh.jpg" alt="Image of Dr. Mehdi Bagherzadeh">
<!--All members have a site listed-->
<figcaption>
Dr. Mehdi Bagherzadeh
[PhD Summer'16, MS Fall'10]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. Robert Dyer" href="http://www.cs.bgsu.edu/rdyer/">
<figure>
<img class="crop-image" src="/img/people/rdyer.png" alt="Image of Dr. Robert Dyer">
<!--All members have a site listed-->
<figcaption>
Dr. Robert Dyer
[PhD Fall'13, MS Fall'08]
</figcaption>
</figure>
</a>
<a class="alumni-image Dr. Tyler Sondag">
<figure>
<img class="crop-image" src="/img/people/tsondag.jpg" alt="Image of Dr. Tyler Sondag">
<!--All members have a site listed-->
<figcaption>
Dr. Tyler Sondag
[PhD Fall'11, MS Fall'09]
</figcaption>
</figure>
</a>
<a class="alumni-image Astha Singh" href="https://www.astha-singh.com/">
<figure>
<img class="crop-image" src="/img/people/astha.png" alt="Image of Astha Singh">
<!--All members have a site listed-->
<figcaption>
Astha Singh
[MS Spring'24]
</figcaption>
</figure>
</a>
<a class="alumni-image Jackson L Maddox" href="http://design.cs.iastate.edu">
<figure>
<img class="crop-image" src="/img/people/jmaddox.jpg" alt="Image of Jackson L Maddox">
<!--All members have a site listed-->
<figcaption>
Jackson L Maddox
[MS Summer'18]
</figcaption>
</figure>
</a>
<a class="alumni-image Ramanathan Ramu" href="http://www.cs.iastate.edu/people/ramanathan-ramu">
<figure>
<img class="crop-image" src="/img/people/rramu.jpg" alt="Image of Ramanathan Ramu">
<!--All members have a site listed-->
<figcaption>
Ramanathan Ramu
[MS Fall'17]
</figcaption>
</figure>
</a>
<a class="alumni-image Nitin M. Tiwari" href="http://www.cs.iastate.edu/people/nitin-tiwari">
<figure>
<img class="crop-image" src="/img/people/ntiwari.jpg" alt="Image of Nitin M. Tiwari">
<!--All members have a site listed-->
<figcaption>
Nitin M. Tiwari
[MS Spring'17]
</figcaption>
</figure>
</a>
<a class="alumni-image Eric Y Lin">
<figure>
<img class="crop-image" src="/img/people/blank.png" alt="Image of Eric Y Lin not found">
<!--All members have a site listed-->
<figcaption>
Eric Y Lin
[MS Spring'16, B.S. Fall'12]
</figcaption>
</figure>
</a>
<a class="alumni-image Sean L. Mooney" href="http://web.cs.iastate.edu/~smooney/">
<figure>
<img class="crop-image" src="/img/people/smooney.jpg" alt="Image of Sean L. Mooney">
<!--All members have a site listed-->
<figcaption>
Sean L. Mooney
[MS Summer'15]
</figcaption>
</figure>
</a>
<a class="alumni-image Harish Narayanappa" href="http://web.cs.iastate.edu/~harish/">
<figure>
<img class="crop-image" src="/img/people/hnarayanappa.jpg" alt="Image of Harish Narayanappa">
<!--All members have a site listed-->
<figcaption>
Harish Narayanappa
[MS Spring'10]
</figcaption>
</figure>
</a>
<a class="alumni-image Youssef W. Hanna">
<figure>
<img class="crop-image" src="/img/people/yhanna.jpg" alt="Image of Youssef W. Hanna">
<!--All members have a site listed-->
<figcaption>
Youssef W. Hanna
[MS Fall'08]
</figcaption>
</figure>
</a>
<a class="alumni-image Rakesh Setty">
<figure>
<img class="crop-image" src="/img/people/rsetty.jpg" alt="Image of Rakesh Setty">
<!--All members have a site listed-->
<figcaption>
Rakesh Setty
[MS Fall'08]
</figcaption>
</figure>
</a>
<a class="alumni-image Mahantesh Hosamani">
<figure>
<img class="crop-image" src="/img/people/blank.png" alt="Image of Mahantesh Hosamani not found">
<!--All members have a site listed-->
<figcaption>
Mahantesh Hosamani
[MS Fall'07]
</figcaption>
</figure>
</a>
<a class="alumni-image Huaiyao Ma" href="https://www.info.iastate.edu/individuals/info/294581/Ma-Huaiyao">
<figure>
<img class="crop-image" src="/img/people/huaiyao.jpg" alt="Image of Huaiyao Ma">
<!--All members have a site listed-->
<figcaption>
Huaiyao Ma
[B.S. Fall'22]
</figcaption>
</figure>
</a>
<a class="alumni-image Nathaniel M Wernimont" href="http://design.cs.iastate.edu">
<figure>
<img class="crop-image" src="/img/people/nwernimont.jpg" alt="Image of Nathaniel M Wernimont">
<!--All members have a site listed-->
<figcaption>
Nathaniel M Wernimont
[B.S. Spring'20]
</figcaption>
</figure>
</a>
<a class="alumni-image Robert H Schmidt" href="http://design.cs.iastate.edu">
<figure>
<img class="crop-image" src="/img/people/rschmidt.jpg" alt="Image of Robert H Schmidt">
<!--All members have a site listed-->
<figcaption>
Robert H Schmidt
[B.S. Spring'19]
</figcaption>
</figure>
</a>
<a class="alumni-image David Johnston" href="https://github.com/dwtj">
<figure>
<img class="crop-image" src="/img/people/djohnston.jpg" alt="Image of David Johnston">
<!--All members have a site listed-->
<figcaption>
David Johnston
[B.S. Spring'16]
</figcaption>
</figure>
</a>
<a class="alumni-image Sambhav P. Srirama">
<figure>
<img class="crop-image" src="/img/people/ssrirama.png" alt="Image of Sambhav P. Srirama">
<!--All members have a site listed-->
<figcaption>
Sambhav P. Srirama
[B.S. Spring'16]
</figcaption>
</figure>
</a>
<a class="alumni-image Cody Hanika">
<figure>
<img class="crop-image" src="/img/people/blank.png" alt="Image of Cody Hanika not found">
<!--All members have a site listed-->
<figcaption>
Cody Hanika
[B.S. Spring'16]
</figcaption>
</figure>
</a>
<a class="alumni-image Dalton Mills">
<figure>
<img class="crop-image" src="/img/people/blank.png" alt="Image of Dalton Mills not found">
<!--All members have a site listed-->
<figcaption>
Dalton Mills
[B.S. Fall'15]
</figcaption>
</figure>
</a>
<a class="alumni-image Joseph Baker">
<figure>
<img class="crop-image" src="/img/people/blank.png" alt="Image of Joseph Baker not found">
<!--All members have a site listed-->
<figcaption>
Joseph Baker
[B.S. Fall'15]
</figcaption>
</figure>
</a>
<a class="alumni-image Trey Erenberger">
<figure>
<img class="crop-image" src="/img/people/blank.png" alt="Image of Trey Erenberger not found">
<!--All members have a site listed-->
<figcaption>
Trey Erenberger
[B.S. Fall'15]
</figcaption>
</figure>
</a>
<a class="alumni-image Shang Liu">
<figure>
<img class="crop-image" src="/img/people/sliu.png" alt="Image of Shang Liu">
<!--All members have a site listed-->
<figcaption>
Shang Liu
[B.S. Spring'15]
</figcaption>
</figure>
</a>
<a class="alumni-image Bryan Shrader">
<figure>
<img class="crop-image" src="/img/people/blank.png" alt="Image of Bryan Shrader not found">
<!--All members have a site listed-->
<figcaption>
Bryan Shrader
[B.S. Spring'14]
</figcaption>
</figure>
</a>
<a class="alumni-image Rex Fernando">
<figure>
<img class="crop-image" src="/img/people/rfernando.jpg" alt="Image of Rex Fernando">
<!--All members have a site listed-->
<figcaption>
Rex Fernando
[B.S. Spring'13]
</figcaption>
</figure>
</a>
</div>
</div>
</div>
<br />
</main>
<footer>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
},
i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-512574-3', 'auto');
ga('send', 'pageview');
</script>
<div class="container">
<div>
<div class="row">
<div class="col-12">
<div class="row">
<div class="col-xs-12 col-lg-3 tulane-logo-wrapper">
<a href="http://www.iastate.edu">
<img src="/img/tulane-logo.png" alt="Tulane University" class="tulane-logo">
</a>
</div>
<div class="col-xs-12 col-sm-6 col-md-5 col-lg-4">
<p>
<b>Laboratory for Software Design</b>
</p>
<p>201 Lindy Claiborne Boggs Center</p>
<p>6823 St. Charles Avenue</p>
<p>New Orleans, LA 70118-5698</p>
<p>Phone: (504) 865-5764</p>
<p>E-Mail: hrajan@tulane.edu</p>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4">
<p>
Copyright ©
2026
Tulane University. All rights reserved.
<div class="d-none d-lg-block" style="margin-top: 0">
The research and educational activities described on these pages has been supported in part by the
<a href="http://www.nsf.gov">US National Science Foundation (NSF)</a>.
</div>
</p>
</div>
<div class="col-md-3 col-lg-1 d-none d-md-block project-logos">
<div>
<a href="http://web.cs.iastate.edu/~panini/">
<img src="/img/panini-logo.svg" class="logo" alt="Boa Logo">
Panini
</div>
<div>
<a href="http://boa.cs.iastate.edu">
<img src="/img/boa-logo.svg" class="logo" alt="Boa Logo">
Boa
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- jQuery first, then Tether, then Bootstrap JS. -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.2.0/js/tether.min.js" integrity="sha384-Plbmg8JY28KFelvJVai01l8WyZzrYWG825m+cZ0eDDS1f7d/js6ikvy1+X+guPIB" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>
<script src="/js/design.js"></script>
</body>
</html>