-
Notifications
You must be signed in to change notification settings - Fork 3
/
members.json
1115 lines (1114 loc) · 48.1 KB
/
members.json
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
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"years":[
{
"year":2016,
"members":[
{
"interests": "Machine Learning, Representation Learning, NLP, Speech Recognition",
"name": "Corby Rosset",
"languages": "Python, Java, C, MATLAB",
"notes": "Vice President(2016)",
"academic_standing": "Junior",
"hobbies": "Travel, foodie restaurants, instagram",
"bio": "Machine Learning Student Research",
"create_profile": true,
"alumni": false,
"tutoring": "Yes, all machine learning based classes",
"image": "images/corby_rosset.jpeg"
},
{
"interests": "Dank Apps, Distributed Systems, Networking",
"name": "Trevor Aron",
"languages": "Python, C++, C, Swift, Java",
"notes": "Treasurer(2016)",
"academic_standing": "Masters Student",
"hobbies": "Snowboarding",
"bio": "Building intrusion tolerant SCADA systems for powergrids",
"create_profile": true,
"alumni": false,
"tutoring": "Systems classes",
"image": "images/trevor_aron.jpeg"
},
{
"interests": "ham radio, raspberry pi projects",
"name": "Stephen Hamilton",
"languages": "Python, C, C#, C++, Ruby, Ada",
"academic_standing": "PhD student",
"hobbies": "ham radio, high altitude balooning",
"bio": "US Army active duty officer in cyber operations",
"create_profile": true,
"alumni": false,
"tutoring": "No",
"image": "images/stephen_hamilton.jpeg"
},
{
"interests": "Natural Language Processing, Computer Vision, Deep Learning, Machine Learning",
"name": "Akshay Srivatsan",
"languages": "Python, Java, C, C++, Matlab, R",
"academic_standing": "Junior set to complete BS/MSE in 2017",
"hobbies": "Bhangra (a type of Indian dance) and Video Games",
"bio": "Akshay Srivatsan is a student at Johns Hopkins University pursuing a combined Master\u2019s and Bachelor\u2019s degree in Computer Science and Applied Math and Statistics. He has worked at Bloomberg LP and at Applied Communication Sciences over the past two summers, and will work at Facebook this year. Akshay has a strong interest in machine learning, specifically in natural language processing, and has experience with graphical model approaches such as LDA and also deep learning based techniques such as word vector embeddings. He is currently doing research with Dr. Jason Eisner, a professor at JHU affiliated with the Center for Language and Speech Processing and the Machine Learning @ JHU community, and is a CA for Dr. Eisner\u2019s class on Natural Language Processing. Recently Akshay has also become interested in TensorFlow as an effective toolkit for deep learning. Using the library, he has implemented projects on deep Q learning, and on deep canonical correlation analysis.",
"create_profile": true,
"alumni": false,
"tutoring": "CA of NLP 600.465",
"image": "images/akshay_srivatsan.jpg"
},
{
"interests": "Keyboard Shortcuts",
"name": "Emily Wagner",
"languages": "C, C++, Python, Java",
"academic_standing": "First-year Masters",
"hobbies": "Music, Running, Hiking, Yoga",
"bio": "Masters student with research in distributed systems - specifically high-performance networking",
"create_profile": true,
"alumni": false,
"tutoring": "Operating Systems, Networks, Distributed Systems, Intermediate Programming "
},
{
"interests": "Machine Learning, Software Engineering, Entrepreneurship",
"name": "Noah Presler",
"languages": "Java, Python, Ruby, C, C++, JavaScript",
"academic_standing": "Junior",
"hobbies": "Cooking, Game of Thrones, Building Fun Apps and Websites",
"bio": "Noah Presler is a junior Computer Science major. He is an incoming Associate Product Management Intern at Google and is also the CEO of Hopkins Student Enterprises. He co-founded Hop and Shake, the protein/smoothie bar in the recreation center, and also co-founded Semester.ly, the popular course scheduling website.",
"create_profile": true,
"alumni": false,
"tutoring": "Algorithms, Data Structures, Computer Networks, UIMA"
},
{
"interests": "Data analysis, hospital operations, jazz music",
"name": "Dan Adler",
"languages": "Python, C++, ",
"academic_standing": "2016",
"hobbies": "Jazz piano and percussion, running, web design",
"bio": "Dan is a young professional interested in utilizing data to transform healthcare. He has worked in analytics consulting, medical startups and performed computational biology research.",
"create_profile": true,
"alumni": true,
"tutoring": "Data Structures, Intermediate, CIS",
"image": "images/dan_adler.jpg"
},
{
"interests": "mobile health, machine learning on healthcare, and computer networks",
"name": "Andong Zhan",
"languages": "Python, Java, Android, C",
"academic_standing": "six-year Ph.D. student",
"hobbies": "Traveling, soccer, swimming, hiking",
"bio": "I am a sixth-year Ph.D student in the Dept. of Computer Science at Johns Hopkins University. My advisers are Prof. Andreas Terzis and Prof. Suchi Saria. My current research interests include mobile health, machine learning on healthcare data, and computer networks.",
"create_profile": true,
"alumni": false,
"tutoring": "Programming, Computer Networks, Machine learning"
},
{
"interests": "Augmented and virtual reality, computer vision, computer graphics",
"name": "Tiffany Chung",
"languages": "C/C++, Python, Java, HTML/CSS, JavaScript",
"academic_standing": "2017",
"hobbies": "Watching movies, ultimate frisbee",
"bio": "California girl.",
"create_profile": true,
"alumni": false,
"tutoring": "Intermediate Programming, Intro Programming, Data Structures, Computer Vision",
"image": "images/tiffany_chung.jpg"
},
{
"interests": "Machine Learning, Natural Language Processing",
"name": "Tai-ting Hsieh",
"languages": "Java, Python",
"academic_standing": "2016",
"hobbies": "Basketball",
"bio": "I am a double major in Computer Science and Computer Engineering; currently in my senior year, I am also working towards a concurrent Bachelor's and Master's degree in computer science.",
"create_profile": true,
"alumni": false,
"tutoring": "Intro to Automata, Data Structures"
},
{
"interests": "Entrepreneurship, UI/UX Design, Algorithms",
"name": "Blaine Muri",
"languages": "Java, C, C++, Perl, Ruby, Python, React, Javascript",
"academic_standing": "2016",
"hobbies": "Cooking, Biking, Hiking",
"bio": "A driven computer scientist working in San Francisco",
"create_profile": true,
"alumni": true,
"tutoring": "Information Retrieval and Web Agents, Automata and Computation Theory, Intro Java, Data Structures"
},
{
"interests": "Soccer, Movies, Programming contests, and Volunteering, ",
"name": "Nishikant Deshmukh",
"languages": "C/C++/CUDA/JAVA",
"academic_standing": "Graduate Student",
"hobbies": "NONE",
"bio": "I work in the field of Medical Imaging, Computer Graphics, Computer Vision, and Parallel Computing.",
"create_profile": true,
"alumni": false,
"tutoring": "Intermediate Programming, Computer Graphics Computer Vision, Computer Integrated Surgery"
},
{
"interests": "Data science, security systems",
"name": "Kathleen Kusworo",
"languages": "Java, Python, C++",
"academic_standing": "2017",
"hobbies": "Reading, writing",
"bio": "I was born and raised in Indonesia, but I'm happy to call the US my second home. I am double-majoring in CS and AMS at Hopkins, where I'm also working as a course assistant for Intro to Programming in Java. Outside of class, I've co-founded a cultural student group for Indonesian and Malaysian students and served as a co-president for two semesters.",
"create_profile": true,
"alumni": false,
"tutoring": "Intro to Java"
},
{
"interests": "Academically, particle-astrophysics, systems programming, and open source. Less academically, see \"Hobbies\"",
"name": "Ben Rosser",
"languages": "Python (primarily); C, C++, Java, Ruby, OCaml",
"academic_standing": "2016 - Senior",
"hobbies": "Programming for fun (I tend to start lots of small projects), reading, video games.",
"bio": "I'm a physics and CS double major, soon to be pursuing a PhD in (probably experimental high-energy) physics at UPenn. For my many sins, I have been the current ACM sysadmin for the past two years. I'm also an open source contributor and advocate: I'm a software packager for the Fedora Project, among other things.",
"create_profile": true,
"alumni": true,
"tutoring": "Not going to be around next year - N/A?"
},
{
"interests": "Ultimate Frisbee, Basketball, Hiking/Mountaineering, Robotics",
"name": "Zachary Paine Sabin",
"languages": "Python, C++, Matlab, Java",
"academic_standing": "Senior",
"hobbies": "Ultimate Frisbee, Basketball, Hiking/Mountaineering, Wasting time on Internet",
"bio": "I'm from Lexington MA and I'm currently a senior at JHU. My high school robotics team came in top 4 in the world at the FTC world championships and ever since then I've been interested in Computer Science and Robotics. I'm a Computer Science major with minors in Philosophy and Robotics. ",
"create_profile": true,
"alumni": true,
"tutoring": "Algorithms, CSF, Automata"
}
]
},
{
"year":2015,
"members":[
{
"alumni":false,
"create_profile":true,
"name":"Christina Garman",
"notes":"",
"interests":"cryptography, computer security",
"academic_standing":"PhD student"
},
{
"alumni":true,
"create_profile":true,
"name":"Lin Yang",
"notes":"",
"interests":"Algorithms, Complexity theory",
"academic_standing":"Masters/PhD student",
"languages":"Java, pyhton, C, C++, Matlab, Mathematica",
"hobbies":"reading, archery, music"
},
{
"name":"Roger Que",
"interests":"NLP, computer security",
"academic_standing":"Master's",
"languages":"Python, Java, JavaScript, Ruby",
"hobbies":"writing, photography",
"alumni":true,
"create_profile":true
},
{
"alumni":false,
"create_profile":true,
"notes": "Secretary(2015, 2016)",
"name":"Kunal Lillaney",
"interests":"Data Intensive Computing, Distributed Systems, Computer Security",
"tutoring":"Parallel Programming",
"academic_standing":"PhD Student",
"languages":"Python, C, Java",
"hobbies":"gaming, reading, cooking"
},
{
"name":"Vamsi Chunduru",
"interests":"robotics, web development, artificial intelligence",
"tutoring":"Algorithms, Artificial Intelligence",
"academic_standing":"Bachelors/Masters",
"languages":"Java, Python, C","hobbies":"video games, traveling",
"alumni":true,
"create_profile":true
},
{
"alumni":false,
"create_profile":true,
"name":"Mozhi Zhang",
"interests":"Natural Language Processing, Machine Learning",
"tutoring":"Data Structure, Algorithms",
"academic_standing":"Combined Bachelor's/Master's",
"languages":"Java, Python, C",
"hobbies":"soccer"
},
{
"name":"Yvonne Jiang",
"interests":"Genomics, User Interface Design",
"tutoring":"Computer System Fundamentals, Parallel Programming",
"academic_standing":"Bachelors",
"languages":"Python, Java, C, MATLAB",
"hobbies":"Violin, reading, puzzling, origami",
"alumni":true,
"create_profile":true
},
{
"name":"Jennifer Lu",
"interests":"Genomics",
"tutoring":"Data Structures, Intermediate Programming",
"academic_standing":"Bachelor's",
"languages":"Java, Python, C, C++, Perl, Matlab, SQL",
"hobbies":"Reading, baking, tetris, Netflix, piano, singing, dancing, candy crush",
"alumni":true,
"create_profile":true,
"image":"images/jen_lu.jpg"
},
{
"name":"Michael Shavit",
"interests":"Security, Systems",
"academic_standing":"Bachelor's/Masters",
"languages":"C, Python, Java, etc",
"create_profile":true,
"alumni":false
},
{
"name":"Diana Chen",
"interests":"Systems",
"tutoring":"Intro to Java, Intermediate Programming, Data Structures",
"academic_standing":"Concurrent bachelor's and master's",
"languages":"Java, Python, C, OCaml",
"alumni":false,
"create_profile":true
},
{
"name":"Naomi Ephraim",
"interests":"Algorithms, Graph Theory",
"academic_standing":"Bachelor's",
"languages":"Java, Python, C, C++",
"hobbies":"knitting, baking, volleyball",
"alumni":false,
"create_profile":true
},
{
"name":"Jose Ulises Nino Rivera ",
"interests":"Machine Learning in Healthcare, Programming Languages",
"tutoring":"Data Structures, Algorithms, CSF",
"academic_standing":"Masters of Science ",
"languages":"Python, Haskell, Java, C",
"hobbies":"Running",
"alumni":true,
"create_profile":true,
"image":"images/jose_nino.jpg"
},
{
"name":"Lindsey Fernandez",
"interests":"Medical Imaging, Neuroengineering, Big Data",
"academic_standing":"Bachelor's",
"languages":"Java, Python, Matlab, HTML/CSS/Javascript",
"alumni":false,
"create_profile":true
},
{
"name":"Neil Mallinar",
"interests":"Algorithms, Machine Learning, Artificial Intelligence, Data Analytics, computer vision, sound processing",
"tutoring":"Data structures, algorithms, Machine Learning, computer vision, Artificial Intelligence",
"academic_standing":"Bachelors",
"languages":"Java, python, C, javascript, ruby, C++",
"hobbies":"Piano, guitar, music production, hiking",
"create_profile":true,
"alumni":false,
"image":"images/neil_mallinar.jpg"
}
]
},
{
"year":2014,
"members":[
{
"alumni":false,
"create_profile":true,
"name":"Carlo Olcese",
"notes":"",
"interests":"Entrepreneurship, Genomics, Finance",
"tutoring":"Data Structures, Algorithms",
"bio":"Carlo enjoys software development and solving problems with computers. Over the past 2 summers he worked as a software engineer at two finance firms: Standard & Poor's Capital IQ (https://www.capitaliq.com/) and Goldman Sachs (http://www.goldmansachs.com/). He has also taken a number of upper level CS classes and is currently a concurrent BS/MS at Hopkins for computer science. He plans to finish his Master's in the fall of 2015. He has been a course assistant for Intro to Java, Objected Oriented Software Engineering, and Compilers/Interpreters. Besides his work in CS, he is currently the layout editor for the undergraduate philosophy journal. He is still not sure what he wants to pursue after graduation, but he will be joining a start-up in NYC for the Summer of 2015.",
"academic_standing":"Bachelor's & Master's Student",
"languages":"Java, Python, C++, Perl",
"hobbies":"Weight Lifting, App. development, and basketball",
"image":"images/carlo_olcese.jpg"
},
{
"alumni":true,
"create_profile":true,
"name":"Tuvia Lerea",
"notes":"Vice-President",
"interests":"Security and Privacy",
"tutoring":"Computer System Fundamentals, Intermediate Programming",
"bio":"Tuvia graduated from SAR high school in The Bronx, NY. He then took a year off between high school and college, during which he studied in an Israeli pre-army programming institution for several months, and worked in a PTSD lab for 9 months. He came to JHU as a Neuroscience major, but after taking Intro Java he fell in love with programming. He transitioned to the CS major in the second semester of his sophomore year. Since switching to CS he joined Bootup Baltimore as well as the HopHacks team. Upon graduation, he intends to continue on at Hopkins to pursue his Masters degree in Computer Science. <br> Tuvia frequents the Dean's List and is currently the UPE Vice President.",
"academic_standing":"Bachelor's Student",
"languages":"Java, C, Javascript",
"hobbies":"Programming, StarCraft, Bootup Baltimore, skiing",
"image":"images/tuvia_lerea.jpg"
},
{
"alumni":true,
"name":"Benjamin Glickman",
"notes":"Treasurer"
},
{
"alumni":true,
"name":"Gregory Furman"
},
{
"alumni":true,
"name":"Charles Seidell",
"create_profile":true,
"interests":"Algorithms, NLP, Machine Learning, Automata and Computational Theory",
"bio":"Charlie is a recent graduate from Johns Hopkins University as a member of the class of 2014. He studied mathematics, computer science, and the classics and is currently working as a software engineer at Epic in Madison Wisconsin. He loves to read, swim, and play videogames. He received the CS +X Award, achieved 8x Semesters on Deans List, and the Pistritto Fellowship",
"languages":"Python, C, Latin",
"hobbies":"Magic: The Gathering, Videogames, Reading, Tennis",
"image":"images/charles_seidell.jpg"
},
{
"alumni":false,
"create_profile":true,
"name":"Disa Mhembere",
"notes":"President (2015, 2016), Secretary (2014), ",
"interests":"Data-Intensive Scientific Computing, Parallel Programming, Compilers and Interpreters, Web-programming.",
"tutoring":"Data Structures, Parallel Programming",
"bio":"Disa is PhD student in Computer Science (CS) at the Johns Hopkins University where he researches under Prof. Randal Burns in the Hopkins Storage Systems Lab. He is the current Secretary of the Hopkins UPE chapter. He obtained his BS in Electrical Engineering and proceeded to complete his MSE in Engineering Management (with a CS concentration) before joining the CS department full-time and obtaining his MSE in CS in 2015. He enjoys studying the synergy between Computer Science and business and loves to broaden his knowledge of the two fields. <br> Disa received the Computer Science Graduate (Paul V. Renoff) Fellowship and was awarded the UPE Special Recognition Award in (2014).",
"academic_standing":"PhD Student",
"languages":"Python, C, C++, Java",
"hobbies":"Tennis, snowboarding, running, biking",
"image":"images/disa_mhembere.jpg"
},
{
"alumni":true,
"create_profile":true,
"name":"Tze-Yuan Cheng",
"interests":"Computer Vision, Robotics",
"bio":"Tze-Yuan is a PhD student in mechanical engineering, as well as a Master's student in computer science. His research focuses on algorithmic applications of computer vision in medical infrared imaging.",
"academic_standing":"PhD Student",
"languages":"Matlab, C, C++",
"image":"images/no_image_male.png"
},
{
"alumni":true,
"name":"Jeremy Dolinko"
},
{
"alumni":true,
"create_profile":true,
"name":"Ben Cohen",
"interests":"Programming Languages, Compilers, Type Theory, and generally anything to do with language paradigms and the various choices a language can make that affect its use and 'feel'. Also, anything that has to do with design and 'Software Development' productivity, so things like Design Patterns and other high-level design-based abstraction of common programming solutions.",
"bio":"Ben graduated with a BS in CS May 2014 and started with Microsoft in the Fall as a Program Manager, working on the Windows Azure platform. While at Hopkins, in regards to CS, he researched under Prof. Scott Smith on the BigBang language (implemented integer and floating point arithmetic into the TinyBang interpreter) and CAed Intermediate Programming with Prof. Yair Amir and UI & Mobile Apps with Prof. Joanne Selinski. He is a big fan of learning new languages, especially ones with unique paradigms, and as a result had a particular love for Prof. Scott Smith's Programming Languages class. Outside of CS, he is a big comedy and theater nut, and hopes to one day do comedy writing on some professional level.",
"languages":"Haskell, Python, C",
"hobbies":"Sketch Comedy, Improv, Standup, Theater",
"image":"images/benjamin_cohen.jpg"
},
{
"alumni":true,
"name":"Maxwell Dickey"
}
]
},
{
"year":2013,
"members":[
{
"alumni":false,
"create_profile":true,
"name":"Alexander Schiffhauer",
"notes":"President (2014), Secretary",
"interests":"Entrepreneurship, Business, and Algorithms",
"tutoring":"Algorithms, Compilers & Interpreters",
"bio":"Alexander is an APM at Google. He received his B.A. in Computer Science at JHU in 2013. Following this, he took a year off graduate school to pursue his entrepreneurial aspirations at <a href='http://www.bighugegames.com'>Big Huge Games</a>, where they released the Apple's Editors' Choice app, <a href='http://www.dominations.com'>DomiNations</a>. Shortly after, he returned to JHU to complete his M.S.E. in Computer Science and was elected president of UPE. Alexander was a finalist in the Johns Hopkins Business Plan Competition in 2013, and he hopes to run his own company one day.",
"academic_standing":"Master's Student",
"languages":"C#, C, OCaml",
"hobbies":"Travel, photography, basketball, running, bicycling, and guitar",
"image":"images/alexander_schiffhauer.jpg"
},
{
"alumni":true,
"name":"Grace Yeo"
},
{
"alumni":true,
"name":"Daniel Deutsch"
},
{
"alumni":true,
"create_profile":true,
"name":"David Watson",
"interests":"Compilers, NLP",
"bio":"David just graduated from Hopkins in 2014, and will be going to Google as my first job. In his words \"I've had an amazing time in the CS department, particularly suffering and loving NLP, as well as Compiler and Interpreters.\"",
"languages":"Python, C, Java",
"hobbies":"Hobbies: Biking, surfing, hula hooping",
"image":"images/no_image_male.png"
},
{
"alumni":true,
"name":"Austin Estep"
},
{
"alumni":true,
"name":"Bennett Ellis"
},
{
"alumni":true,
"name":"Praneeth Sadda"
},
{
"alumni":true,
"name":"Paul Martin"
},
{
"alumni":true,
"name":"Sharon Li"
},
{
"alumni":true,
"name":"Jay DeYong",
"notes":"Vice-President"
},
{
"alumni":true,
"name":"Jeffrey Dallatezza",
"notes":"President"
},
{
"alumni":true,
"name":"Daniel Abolafia"
},
{
"alumni":true,
"name":"Emily Daggett"
},
{
"alumni":true,
"name":"David Lichtenberg"
}
]
},
{
"year":2012,
"members":[
{
"alumni":true,
"name":"Alexander Liu"
},
{
"alumni":true,
"name":"Juneki Hong",
"create_profile":true,
"interests":"Natural Language Processing, Machine Learning",
"bio":"Juneki completed both his BS and MSE in Computer Science at JHU. He has since migrated to pursue further graduate eduation at Carnegie Mellon University (CMU) in the Fall of 2014. In Juneki's own words \"I am a fungi\".",
"languages":"Python, Prolog, English",
"hobbies":"Video games, configuring my laptop to my preference, learning something",
"image":"images/juneki_hong.jpg"
},
{
"alumni":true,
"name":"Noah Belcher"
},
{
"alumni":true,
"name":"Vincent Ng"
},
{
"alumni":true,
"name":"Martin Kelly"
},
{
"alumni":true,
"name":"Katherine Wu"
},
{
"alumni":true,
"name":"Ishwar Sivakumar"
},
{
"alumni":true,
"name":"Henry Pao"
},
{
"alumni":true,
"name":"Daniel Obenshain"
},
{
"alumni":true,
"name":"Jay Feldman"
}
]
},
{
"year":2011,
"members":[
{
"alumni":true,
"name":"Courtney Napoles"
},
{
"alumni":true,
"name":"Haluk Tokgozoglu",
"notes":"Secretary"
},
{
"alumni":false,
"create_profile":true,
"name":"Michael Rushanan",
"notes":"President (2012)",
"interests":"Computer Security, Cryptography, Embedded Systems",
"bio":"Micheal is a Ph.D. student at the Johns Hopkins University in the Health and Medical Security Lab (HMS). Micheal's research focus is medical device security and privacy. He is a self-described technologist and enjoys open source software development and hardware hobbyism.",
"academic_standing":"PhD Student",
"languages":"Python, C, Go",
"hobbies":"Running, Video Gaming, Open Source Software and Electronics Development",
"image":"images/micheal_rushanan.png"
},
{
"alumni":true,
"name":"Elizabeth Cha"
},
{
"alumni":true,
"name":"Alexander Ropson"
},
{
"alumni":true,
"name":"Joel Scaria"
},
{
"alumni":true,
"name":"Kieran Magee"
},
{
"alumni":true,
"name":"Leah Hanson"
},
{
"alumni":true,
"name":"Luwei Zhou"
},
{
"alumni":true,
"name":"Jeremy Weiss"
},
{
"alumni":true,
"name":"Stephyn Butcher"
},
{
"alumni":true,
"name":"Jonathan Schwam",
"notes":"Vice-President"
},
{
"alumni":true,
"name":"James Doverspike"
},
{
"alumni":true,
"name":"Jonathan Satria"
}
]
},
{
"year":2010,
"members":[
{
"alumni":true,
"name":"Sohel Sanghani"
},
{
"alumni":true,
"create_profile":true,
"name":"Yun Liu",
"bio":" Yun received his B.S. in biology and commputer science from Johns Hopkins University in 2010. He is currently working towards a Ph.D. in the Harvard-MIT Division of Health Sciences and Technology (HST), co-advised by Professors Collin Stultz and John Guttag. His research experience spanned molecular virology, bioinformatics and computational chemistry. Yun's current research revolves around cardiovascular risk stratification, but he is also interested in other medical big data fields.",
"interests":"Medical big data",
"languages":"Python",
"image":"images/no_image_male.png"
},
{
"alumni":true,
"name":"Evan Goldschmidt"
},
{
"alumni":true,
"name":"Eddie Holzinger"
},
{
"alumni":true,
"name":"Ryan Ly"
},
{
"alumni":true,
"name":"Matthew Ziegellbaum"
},
{
"alumni":true,
"name":"Matthew Pagano"
},
{
"alumni":true,
"name":"Lauren Bradel"
},
{
"alumni":true,
"name":"Maria Ayad"
},
{
"alumni":true,
"name":"Chancellor Pascale"
},
{
"alumni":true,
"name":"Zhenyu Chen"
}
]
},
{
"year":2009,
"members":[
{
"alumni":true,
"name":"Manaswi Gupta",
"notes":"Secretary"
},
{
"alumni":true,
"name":"John Hioknan"
},
{
"alumni":true,
"name":"William Prin III"
},
{
"alumni":true,
"name":"Emily DiDonato"
},
{
"alumni":true,
"name":"Robert Doverspike",
"notes":"President"
},
{
"alumni":true,
"name":"Arthur Dassh"
},
{
"alumni":true,
"name":"Aaron Mannenbach"
},
{
"alumni":true,
"name":"H. Parker Shelton",
"notes":"Vice-President"
},
{
"alumni":true,
"name":"James Gettinger"
}
]
},
{
"year":2008,
"members":[
{
"alumni":true,
"name":"Eric Ngao"
},
{
"alumni":true,
"name":"Mitchell Williams",
"notes":"Vice-President"
},
{
"alumni":true,
"name":"Cole Strode"
},
{
"alumni":true,
"name":"Crystal Chemn"
}
]
},
{
"year":2007,
"members":[
{
"alumni":true,
"name":"Chris Johns"
},
{
"alumni":true,
"name":"Jonathan Polirer"
},
{
"alumni":true,
"name":"Brendan O'Connor",
"notes":"Vice-President"
},
{
"alumni":true,
"name":"Rodwitt Lai",
"notes":"Secretary"
},
{
"alumni":true,
"name":"Terence Lee"
}
]
},
{
"year":2006,
"members":[
{
"alumni":true,
"name":"Michael Constantinos"
},
{
"alumni":true,
"name":"Yair Flicker",
"create_profile":true,
"bio":"I studied at JHU from 2001 - 2006 and received BS/MSE degrees in CS. While in school I started my company <a href=\"http://smartlogic.io/\">SmartLogic</a>. We build custom web / mobile based software.",
"interests":"Applications, Systems, Protocols, Programming Languages",
"languages":"C, Python/Perl, Functional",
"hobbies":"Biking, running, networking, travelling",
"image":"images/yair_flicker.jpg"
},
{
"alumni":true,
"name":"Joanna Kochaniak"
},
{
"alumni":true,
"name":"Andrew Levy"
},
{
"alumni":true,
"name":"Samuel Huay"
},
{
"alumni":true,
"name":"Jonathan Lasko",
"notes":"President"
},
{
"alumni":true,
"name":"Safiullah Shareef"
},
{
"alumni":true,
"name":"Zachary Scott"
},
{
"alumni":true,
"name":"James Stephan"
},
{
"alumni":true,
"name":"Joseph Romano"
},
{
"alumni":true,
"name":"Raaid Ahmad"
},
{
"alumni":true,
"name":"Venkat Bhac-Avatula"
},
{
"alumni":true,
"name":"Jeffrey Dvornek"
},
{
"alumni":true,
"name":"Peter Frohlich",
"notes":"Senior Lecturer"
}
]
},
{
"year":2004,
"members":[
{
"alumni":true,
"name":"John Trupiano"
},
{
"alumni":true,
"name":"Jonathan Grover"
},
{
"alumni":true,
"name":"Danico Scepanovic"
},
{
"alumni":true,
"name":"Andrew Pile"
},
{
"alumni":true,
"name":"Nilchil Palekar"
},
{
"alumni":true,
"name":"Chris Auyeung"
},
{
"alumni":true,
"name":"David Carrick"
},
{
"alumni":true,
"name":"Joanne Tsui"
},
{
"alumni":true,
"name":"Charalambos Antonia"
},
{
"alumni":true,
"name":"Benny Tsai"
},
{
"alumni":true,
"name":"Jon Morra"
},
{
"alumni":true,
"name":"Michael Balazs"
},
{
"alumni":true,
"name":"John Rittenhouse"
}
]
},
{
"year":2003,
"members":[
{
"alumni":true,
"name":"James Zarfoss"
},
{
"alumni":true,
"name":"Lauren Rosenblatt"
},
{
"alumni":true,
"name":"Svetlana Minia"
},
{
"alumni":true,
"name":"Nathaniel Duca"
},
{
"alumni":true,
"name":"Hadi Husain"
}
]
},
{
"year":2002,
"members":[
{
"alumni":true,
"name":"Michael Mattozzi"
},
{
"alumni":true,
"name":"Alvin Ting"
},
{
"alumni":true,
"name":"Hashima Munjal"
},
{
"alumni":true,
"name":"Peter Keeler",
"notes":"Vice-President"
},
{
"alumni":true,
"name":"Ryan Caudy",
"notes":"Secretary"
},
{
"alumni":true,
"name":"Darren Davis"
},
{
"alumni":true,
"name":"Michael Hilsdale"
},
{
"alumni":true,
"name":"Jason Gordon"
},
{
"alumni":true,
"name":"John Cramp"
},
{
"alumni":true,
"name":"Phillip Chiu"
},
{
"alumni":true,
"name":"Siddharth Sonrexa"
},
{
"alumni":true,
"name":"Roy Lirov"
},
{
"alumni":true,
"name":"Adam Dziorny"
},
{
"alumni":true,
"name":"Chuck Crow",
"notes":"President"
}
]
},
{
"year":2001,
"members":[
{
"alumni":true,
"name":"Dr. Joanne F. Selinski",
"notes":"Associate Teaching Professor"
},
{
"alumni":true,
"name":"John Stoneham"
},
{
"alumni":true,
"name":"Joshua Freedman"
},
{
"alumni":true,
"name":"Robert Yashinski Jr."
},
{
"alumni":true,
"name":"Matthew Michaelson"
},
{
"alumni":true,
"name":"Max Smolens"