-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
907 lines (886 loc) · 56.5 KB
/
index.html
File metadata and controls
907 lines (886 loc) · 56.5 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
<!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">
<title>Duke Catalyst</title>
<link rel="icon" href="img/catalystLogo.png">
<link href='https://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="./fonts/font-awesome/css/font-awesome.min.css">
<link href="css/flexslider.css" rel="stylesheet" >
<link href="css/styles.css" rel="stylesheet">
<link href="css/queries.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link rel="icon" href="img/smallLogo.png" sizes="32x32">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="top">
<header id="home">
<nav>
<div class="container-fluid">
<div class="row">
<div class="col-md-8 col-md-offset-2 col-sm-8 col-sm-offset-2 col-xs-8 col-xs-offset-2">
<nav class="pull">
<ul class="top-nav">
<li><a href="#about">About <span class="indicator"><i class="fa fa-angle-right"></i></span></a></li>
<li><a href="#what-we-do">What We Do<span class="indicator"><i class="fa fa-angle-right"></i></span></a></li>
<li><a href="#members">Members <span class="indicator"><i class="fa fa-angle-right"></i></span></a></li>
<li><a href="#faq">FAQ <span class="indicator"><i class="fa fa-angle-right"></i></span></a></li>
<li><a href="#contact">Get in Touch <span class="indicator"><i class="fa fa-angle-right"></i></span></a></li>
<li><a target = "_blank" href="interviewprep.html">Interview Prep <span class="indicator"><i class="fa fa-angle-right"></i></span></a></li>
</ul>
</nav>
</div>
</div>
</div>
</nav>
<section class="hero" id="hero">
<div class="container">
<div class="row">
<div class="col-md-12 text-right navicon">
<a id="nav-toggle" class="nav_slide_button" href="#"><span></span></a>
</div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center inner">
<h1 class="animated fadeInDown"><img class = "main-logo" src = "img/logo.svg"></h1>
<!-- <h1 class="animated fadeInDown"><span></span>CATALYST</h1>-->
<p class="logo-sub animated fadeInUp delay-05s">Duke's first social and pre-professional tech organization</p>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3 text-center">
<a href="#about" class="down-arrow-btn-top" styles = "padding-top:60px"><i class="fa fa-chevron-down"></i></a>
<!-- <a href="#members" class="learn-more-btn">Get to know us</a>-->
</div>
</div>
</div>
</section>
</header>
<section class="intro text-center section-padding" id="about">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 wp1">
<h1 class="arrow">Mission Statement</h1>
<p>Catalyst is a social and pre-professional community of tech enthusiasts. We strive to connect our members to peers with similar interests and provide members with mentorship in the field of technology. As a diverse, tight-knit group on campus, we can rely on each other for not only career and academic advice, but also for social and emotional support. We wish to help members realize their potential and explore the possibilities that await in the tech world.</p>
</div>
</div>
</div>
</section>
<section class="text-center" id="what-we-do">
<div class="container-fluid nopadding responsive-services">
<div class="wrapper">
<div class="iphone">
<!-- <div class="wp3"></div>-->
</div>
<!-- <div class="fluid-white"></div>-->
</div>
<div class="container designs">
<div class="row">
<div class="col-md-5 col-md-offset-7">
<div id="servicesSlider">
<h1 class="arrow">What We Do</h1>
<p>At Catalyst, we organize and host both pre-professional and social events. </p>
<p>
Some pre-professional events we've hosted in the past include resume workshops, tutorial workshops, and guest speakers.</p>
<p>Social events include casual dinners, parties, and SkyZone.</p>
<br>
<h1 class="arrow">Interview Prep Course</h1>
<p>Starting Spring 2018, Catalyst is conducting an interview prep course for Duke students looking to ace that technical interview. You can find out more at our <a target="_blank" href="http://dukecatalyst.co/interviewprep.html">course website.</a></p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="swag text-center">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Get to know us</h1>
<!-- <h1>I got 99 Problems<span>but <em>design</em> 'aint one</span></h1>-->
<a href="#members" class="down-arrow-btn"><i class="fa fa-chevron-down"></i></a>
</div>
</div>
</div>
</section>
<section class="team text-center section-padding" id="members">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="arrow">We're a tight-knit community passionate about tech</h1>
</div>
</div>
<div class="row">
<div class="team-wrapper">
<div id="teamSlider">
<ul class="slides">
<li>
<div class="col-md-4 wp5 ">
<img src="img/members/oscarhong.png" alt="Team Member">
<h2>Oscar Hong</h2>
<h4>President</h4>
<h4>Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Oscar is a junior from Vancouver, Canada who is pursuing a CS major, a History minor, and an Innovation and Entrepreneurship certificate. He has interned at AdStage as a software engineer and, more recently, at Freestyle Capital as an associate.</p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/vigneshgopalan.png" alt="Team Member">
<h2>Vignesh Gopalan</h2>
<h4>Co-Vice President</h4>
<h4>Computer Science Major</h4>
<h4>Class of 2020</h4>
<p>Vignesh is a sophomore majoring in Computer Science. His interests span from UI/UX design and product management to listening to hip-hop music and eating quality chicken wings.</p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/korakwok.png" alt="Team Member">
<h2>Kora Kwok</h2>
<h4>Co-Vice President</h4>
<h4>Computer Science and Visual Arts Major</h4>
<h4>Class of 2020</h4>
<p>Kora is passionate about tech entrepreneurship and startups. He enjoys traveling, browsing Reddit, and getting lost in the Duke Forest. During his gap year, he worked 6 months in Shanghai and 3 in Myanmar, then backpacked across Europe and Russia.</p>
</div>
</li>
<li>
<div class="col-md-4 wp5 ">
<img src="img/members/ashkastephen.png" alt="Team Member">
<h2>Ashka Stephen</h2>
<h4>Finance Co-Chair</h4>
<h4>Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Ashka is a junior studying CS with minors in Statistics and Finance. This past summer, she interned at Vida Health as a full-stack Software Engineer. Ashka also enjoys kayaking, dancing, reading the news, and exploring.</p>
</div>
<div class="col-md-4 wp5 delay-0.5s">
<img src="img/members/brandonguo.png" alt="Team Member">
<h2>Brandon Guo</h2>
<h4>Finance Co-Chair</h4>
<h4>ECE and Computer Science Major</h4>
<h4>Class of 2020</h4>
<p>Brandon Guo is a sophomore at Duke University. His interests in tech revolve mostly around artificial intelligence, machine learning, prosthetics/medical machinery, and robotics. </p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/jiecai.png" alt="Tea Member">
<h2>Jie Cai</h2>
<h4>Social Co-Chair</h4>
<h4>Computer Science and Statistics Major</h4>
<h4>Class of 2020</h4>
<p>Jie is a sophomore pursing a Statistics and Computer Science Interdepartmental Major. She spent 15 years growing up in Shanghai, and loves exploring the world. She hopes to help better this planet's future in a creative, interdisciplinary manner.</p>
</div>
</li>
<li>
<div class="col-md-4 wp5 ">
<img src="img/members/blairezhang.png" alt="Tea Member">
<h2>Blaire Zhang</h2>
<h4>Social Co-Chair</h4>
<h4>ECE and Computer Science Major</h4>
<h4>Class of 2020</h4>
<p>Blaire is from Shenzhen, China. Her tech interests include wearable tech, IoT, and AI, as well as Design Thinking and human-centered designs. She loves watching documentaries, playing squash, learning about religions, and enjoys food while traveling.</p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/chentianjiang.png" alt="Team Member">
<h2>Chentian Jiang</h2>
<h4>Professional Co-Chair</h4>
<h4>Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Chentian comes from a small country called Norway. She has interned at Telenor's Analytics & AI Team and would like to continue exploring the field of deep learning. Her hobbies include badminton, viola, piano and horror movies.</p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/joannali.png" alt="Team Member">
<h2>Joanna Li</h2>
<h4>Professional Co-Chair</h4>
<h4>Biomedical Engineering and Computer Science Major</h4>
<h4>Class of 2020</h4>
<p>Joanna enjoys writing bugfilled code and forgoing unit tests. Sometimes she picks up a book or two in an effort to seem "educated." She's currently working through the bibliographies of Ryu Murakami and Junot Diaz.</p>
</div>
</li>
<li>
<div class="col-md-4 wp5">
<img src="img/members/brianli.png" alt="Team Member">
<h2>Brian Li</h2>
<h4>Rush Co-Chair</h4>
<h4>Computer Science and Economics Major</h4>
<h4>Class of 2021</h4>
<p>Brian is from Princeton, NJ studying Econ and CS. He enjoys learning about developments at the intersection of technology, business, and policy. His hobbies include engineering solutions, helping friends, eating/sleeping, and complaining.</p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/vickilu.png" alt="Team Member">
<h2>Vicky Lu</h2>
<h4>Rush Co-Chair</h4>
<h4>Biology and Computer Science Major</h4>
<h4>Class of 2021</h4>
<p>Vicki is a freshman interested in the intersection between healthcare and technology as well as graphic design. Her hobbies include playing the ukulele, doing crossword puzzles, and biking.</p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/simransingh.png" alt="Team Member">
<h2>Simran Singh</h2>
<h4>New Member Education Co-Chair</h4>
<h4>Computer Science Major</h4>
<h4>Class of 2020</h4>
<p>Simran is a sophomore from Clinton, MS studying Computer Science. He’s involved with Duke Robotics and the Duke University Cancer Institute as a software developer. Simran’s interests include Artificial Intelligence, stock trading, and chess.</p>
</div>
</li>
<li>
<div class="col-md-4 wp5">
<img src="img/members/chrisshin.png" alt="Team Member">
<h2>Christopher Shin</h2>
<h4>New Member Education Co-Chair</h4>
<h4>ECE and Computer Science Major</h4>
<h4>Class of 2021</h4>
<p>Chris is a freshman who is originally from Seattle. Still trying to find his passion in tech, he is currently interested in encryption and AI. His interests outside of tech include traveling to new places, learning new cultures through food, and spending time outdoors.</p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/carolynsun.png" alt="Team Member">
<h2>Carolyn Sun</h2>
<h4>Marketing Co-Chair</h4>
<h4>Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Carolyn is obtaining a major in CS and a minor in psychology. Originally from the SF Bay Area, she interned as a UI/UX designer at a startup this past summer. Her interests include cinematography, cult movies, and obsessing over the show <i>Mr. Robot.</i></p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/kimhuynh.png" alt="Team Member">
<h2>Kim Huynh</h2>
<h4>Marketing Co-Chair</h4>
<h4>Economics and Computer Science Major</h4>
<h4>Class of 2020</h4>
<p>Kim Huynh is a cat lover and a self-proclaimed pastry connoisseur, with tech interests in UI/UX, gaming, and vr, among others. Born and raised in Boston, she can be found in any air conditioned room.</p>
</div>
</li>
<li>
<div class="col-md-4 wp5">
<img src="img/members/lanreoshin.png" alt="Team Member">
<h2>Lanre Oshin</h2>
<h4>Service Co-Chair</h4>
<h4>Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Lanre is a rising junior pursuing a computer science degree. He is interested in many topics in CS, including product management, machine learning, and data management. Outside of computer science, he's interested in music, sports, and traveling.</p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/bocurry.png" alt="Team Member">
<h2>Bo Curry</h2>
<h4>Service Co-Chair</h4>
<h4>Computer Science Major</h4>
<h4>Class of 2019</h4>
<p></p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/darrylyan.png" alt="Team Member">
<h2>Darryl Yan</h2>
<h4>Service Co-Chair</h4>
<h4>Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Darryl is a junior interested in web application development and the intersection between technology and the biomedical sciences. </p>
</div>
</li>
<li>
<div class="col-md-4 wp5 ">
<img src="img/members/catiegrasse.png" alt="Team Member">
<h2>Catie Grasse</h2>
<h4>Alumni Relations Co-Chair</h4>
<h4>Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Catie is majoring in Computer Science and earning a certificate in Information Science + Studies. This past summer she worked at Microsoft in the Artificial Intelligence and Research Division. </p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/katievandyke.png" alt="Team Member">
<h2>Katie Van Dyk</h2>
<h4>Alumni Relations Co-Chair</h4>
<h4>ECE and Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Last summer, Katie interned at Lockheed Martin and is interested in computer architecture and embedded software.</p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/bobbywang.png" alt="Team Member">
<h2>Bobby Wang</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2018</h4>
<p>Bobby is a senior from Plano, TX studying CS and math. After staying in Airbnbs in 11 countries while abroad in Europe last year, he spent his summer working for them on the product security team. You should ask him about his soundcloud!</p>
</div>
</li>
<li>
<div class="col-md-4 wp5 ">
<img src="img/members/jacobbaca.png" alt="Team Member">
<h2>Jacob Baca</h2>
<h4>Economics and Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Jacob is involved with Catalyst, Duke Blockchain Lab and Duke Conservation Technology. He’s an early riser and his favorite food is eggs for their versatility. In his free time, he enjoys running, juggling, and recreating Buzzfeed Tasty recipes.</p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/ginalee.png" alt="Team Member">
<h2>Gina Lee</h2>
<h4>Biomedical Engineering and Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Gina is interested in medical software & hardware development. Last year, she designed a mobile application for heart surgery outpatients to self-monitor their health status. Gina also loves surfing on the beach and listening to R&B music.</p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/kellyzhang.png" alt="Team Member">
<h2>Kelly Zhang</h2>
<h4>Mathematics and Computer Science Major</h4>
<h4>Class of 2020</h4>
<p>Kelly is a sophomore planning to major in math and CS with a finance minor. She first became interested in computer science through math, and enjoys using code for mathematical modeling. She is also involved in Scale & Coin and DUMU.</p>
</div>
</li>
<li>
<div class="col-md-4 wp5">
<img src="img/members/devdabke.png" alt="Team Member">
<h2>Dev Dabke</h2>
<h4>Mathematics and Computer Science Major</h4>
<h4>Class of 2018</h4>
<p>Dev is cool.</p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/kiyoonko.png" alt="Team Member">
<h2>Kiyoon Ko</h2>
<h4>Computer Science and Music Major</h4>
<h4>Class of 2019</h4>
<p>Kiyoon is the initial founder of Catalyst, lead logistics at HackDuke, and always excited to learn and try new things. He's also a big foodie and encourages everyone to check out his foodstagram @henryoonfood</p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/larissacox.png" alt="Team Member">
<h2>Larissa Cox</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2018</h4>
<p>Larissa is a part of the founding class of Catalyst and is interested in educational tech and using tech to solve problems of equality. Last summer, she interned at Microsoft as a PM. She also plays the saxophone and loves writing, hiking, and dog photos.</p>
</div>
</li>
<li>
<div class="col-md-4 wp5">
<img src="img/members/aaronchang.png" alt="Team Member">
<h2>Aaron Chang</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2018</h4>
<p>As a CompSci major with an Econ minor, Aaron is interested in how technology can be leveraged in the financial sector. Aaron is also a member of the HackDuke organizing team. Some of his favorite hobbies are hiking, playing soccer, and eating.</p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/josephdechicchis.png" alt="Team Member">
<h2>Joseph DeChicchis</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2020</h4>
<p>Joseph is a sophomore who is interested in everything from AI/Machine learning to computer architecture.</p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/codyli.png" alt="Team Member">
<h2>Cody Li</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2018</h4>
<p>Cody is a founding members of Catalyst and is interested in machine learning, architecture, and high performance computing. He is also very passionate about photography. This summer, he interned as a data engineer at Capital One in DC. </p>
</div>
</li>
<li>
<div class="col-md-4 wp5">
<img src="img/members/emmalaporte.png" alt="Team Member">
<h2>Emma LaPorte</h2>
<h4>Mechanical Engineering Major</h4>
<h4>Class of 2018</h4>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/christophersides.png" alt="Team Member">
<h2>Christopher Sides</h2>
<h4>Mechanical Engineering and Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Chris enjoys exploring all sorts of new tech spaces to get an idea for what new technologies will have a large impact. His favourite languages are Java and Python. At Duke, he currently plays club volleyball and participates on the motorsports team.</p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/albertzhu.png" alt="Team Member">
<h2>Albert Zhu</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2018</h4>
<p>Albert is a senior studying Computer Science and Music. He's currently interested in web and mobile app development, IoT, and blockchain. He's also passionate about dance and previously led StreetMed, Duke's urban dance team.</p>
</div>
</li>
<li>
<div class="col-md-4 wp5">
<img src="img/members/benhubsch.png" alt="Team Member">
<h2>Ben Hubsch</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Ben is majoring in Computer Science with a minor in Spanish and an I&E certificate. He shamelessly follows @retrieverpuppies and @puppyofday on Instagram, and he has an unparalleled love for Mexican food.</p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/scottpledger.png" alt="Team Member">
<h2>Scott Pledger</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2020</h4>
<p>Scott likes to play soccer and run track. He likes astrophotography and has experience photographing planets, stars, and the northern lights. His tech interests include VR, AR, and AI technologies.</p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/gengsng.png" alt="Team Member">
<h2>Geng Sng</h2>
<h4>Computer Science & Philosophy Major</h4>
<h4>Class of 2020</h4>
<p>Geng is an avid web developer interested in web performance, conversational interfaces, and shipping products that users love. He taught web development at General Assembly last summer, helping career-switchers become full-stack developers.</p>
</div>
</li>
<li>
<div class="col-md-4 wp5">
<img src="img/members/soravitsophastienphong.png" alt="Team Member">
<h2>Soravit Sophastienphong</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Soravit is a junior from Bangkok, Thailand. While he’s currently exploring data science and mobile app development as potential passions, he’s interned at IBM in the research triangle, Dell in Thailand, and Arbor Ventures in Hong Kong.</p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/mitchellkim.png" alt="Team Member">
<h2>Mitchell Kim</h2>
<h4>ECE and Computer Science Major</h4>
<h4>Class of 2018</h4>
<p>Mitchell is passionate about tech entrepreneurship and is currently working on a startup idea called the CampusWallet. He is interested in leveraging high-end technology to enhance and democratize educational opportunities for everyone in the world. </p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/minamungekar.png" alt="Team Member">
<h2>Mina Mungekar</h2>
<h4>ECE and Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Mina is interested in the fields of mobile development and medical technology, particularly medical imaging. She enjoys reading, martial arts, and dance, and best of all, trying new food. </p>
</div>
</li>
<li>
<div class="col-md-4 wp5">
<img src="img/members/jacobkohn.png" alt="Team Member">
<h2>Jacob Kohn</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2020</h4>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/jenniferpark.png" alt="Team Member">
<h2>Jennifer Park</h2>
<h4>Computer Science and Psychology Major</h4>
<h4>Class of 2018</h4>
<p>Jenn was born and raised in Korea and lived in Canada for 7 years. She interned at Facebook this summer as a Software Engineer. She is broadly interested in the intersection of tech and social impact. Jenn also loves music, dogs, and literature.</p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/alexandergerrese.png" alt="Team Member">
<h2>Alexander Gerrese</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Born in Paris, Alexander has lived internationally his whole life, moving 7 times before arriving at Duke. He works as CMO of Campus Enterprises, Duke’s oldest and most successful student-run company, and is Social Chair for Sigma Phi Epsilon fraternity.</p>
</div>
</li>
<li>
<div class="col-md-4 wp5 ">
<img src="img/members/emilymeng.png" alt="Team Member">
<h2>Emily Meng</h2>
<h4>Computer Science and Linguistics Major</h4>
<h4>Class of 2019</h4>
<p>Emily loves food and sleep. She spends her free time dancing and co-captaining for Dhoom, a Bollywood fusion team, and planning food events with the Japanese Culture Club. She enjoys photography and drawing, as well as bullet-journaling.</p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/jeffreyliu.png" alt="Team Member">
<h2>Jeffrey Liu</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Jeffery is a junior from Northern Virginia interested in AI and machine learning. Eventually, he wants to start his own company. Jeffery also enjoys playing tennis and basketball, and skiing. Afan of <i>Westworld</i>, Jeffery is always looking for new show recs.</p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/noasaintmarc.png" alt="Team Member">
<h2>Noa Saint-Marc</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Noa is a junior majoring in CS and minoring in economics. This past summer, she worked at Bank of America as a technology analyst and is currently studying abroad in Madrid. Noa is also a member of the Standard web team and a peer tutor. </p>
</div>
</li>
<li>
<div class="col-md-4 wp5">
<img src="img/members/andrewbihl.png" alt="Team Member">
<h2>Andrew Bihl</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2018</h4>
<p>Andrew is a CS major and an iOS developer. He is the president of the Duke's Brazilian Jiu Jitsu Club. He's a lifetime soccer player, a good piano player, an okay guitarist, and a downright disappointing cellist. He also enjoys studying Spanish and Portuguese. </p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/tracylu.png" alt="Team Member">
<h2>Tracy Lu</h2>
<h4>Mechanical Engineering Major</h4>
<h4>Class of 2019</h4>
<p>Tracy is a mechanical engineering major with minors in visual arts and CS. She is interested in the intersection of industrial design and mechanical engineering. During the summer, she interned Amazon Lab126.</p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/prathmeshpatel.png" alt="Tea Member">
<h2>Prathmesh Patel</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2020</h4>
<p>Prathmesh is a sophomore, majoring in Computer Science, minoring in Finance and pursuing the I&E certificate. He is also involved in dance as treasurer of DefMo. His tech interests include: Blockchain, Differential privacy, and Machine Learning. </p>
</div>
</li>
<li>
<div class="col-md-4 wp5">
<img src="img/members/brianjordan.png" alt="Team Member">
<h2>Brian Jordan</h2>
<h4>ECE and Computer Science Major</h4>
<h4>Class of 2020</h4>
<p>Brian is a Sophomore from northern Virginia. Fitness and music are two of his favorite interests. He is in the Duke Mobile Application Development club. His main interest in tech is the application of AI and what it means for the future.</p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/nikkihevizi.png" alt="Tea Member">
<h2>Nikki Hevizi</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2020</h4>
<p>Nikki loves traveling, spending time outdoors, staying active, and exploring new places with friends! She is passionate about using technology for social impact, and her other tech interests include cybersecurity, blockchain, and design. </p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/walkerwilletts.png" alt="Team Member">
<h2>Walker Willetts</h2>
<h4>ECE and Computer Science Major</h4>
<h4>Class of 2020</h4>
<p>Walker is a rising sophomore interested in the development of AR hardware and applications. Aside from Catalyst, he is also involved in IEEE as well as Devil's Cross Reality. In his free time, he likes to both watch and play sports. </p>
</div>
</li>
<li>
<div class="col-md-4 wp5 ">
<img src="img/members/danielspottiswood.png" alt="Team Member">
<h2>Daniel Spottiswood</h2>
<h4>Computer Science and Statistics Major</h4>
<h4>Class of 2020</h4>
<p>Daniel is from San Carlos, CA. He is involved in Investment Club, Campus Enterprises, and Lideros Unidos. This summer he completed a data analytics internship at a Bay Area startup. He is extremely interested in big data and machine learning.</p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/stuartbarker.png" alt="Team Member">
<h2>Stuart Baker</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Stuart is a junior from Singapore studying CS and Chinese. He is passionate about tech applications in the defense and intelligence sphere. In his free time, he plays rugby.</p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/farazyashar.png" alt="Team Member">
<h2>Faraz Yashar</h2>
<h4>Statistics Major</h4>
<h4>Class of 2020</h4>
<p>Faraz recently returned from an extended leave of absense wherein he served as CTO for several early-stage companies and as a tech consultant for firms such as Duke Health and IBM. Faraz currently leads teams at the Duke Institute for Health Innovation.</p>
</div>
</li>
<li>
<div class="col-md-4 wp5">
<img src="img/members/iantay.png" alt="Team Member">
<h2>Ian Tay</h2>
<h4>ECE Major</h4>
<h4>Class of 2018</h4>
<p>Favorite activity: hiking | The Best programming language: Haskell | Currently in love with T.S. Eliot and William Faulkner. | He also plays DOTA :D</p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/blakekaplan.png" alt="Team Member">
<h2>Blake Kaplan</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2018</h4>
<p>In addition to Catalyst, Blake is involved with the Duke Chronicle and Delta Sigma Pi Business Fraternity. He is very passionate about sports so find him in Cameron.</p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/janeli.png" alt="Team Member">
<h2>Jane Li</h2>
<h4>Computer Science</h4>
<h4>Class of 2021</h4>
<p>Jane is a freshman interested in exploring the intersection of psychology and tech through UI/UX design, web development, and machine learning. Outside of tech, she's passionate about food, volleyball, and spending too much time watching dog videos.</p>
</div>
</li>
<li>
<div class="col-md-4 wp5 ">
<img src="img/members/salilmitra.png" alt="Team Member">
<h2>Salil Mitra</h2>
<h4>Computer Science and Economics Major</h4>
<h4>Class of 2020</h4>
<p>Salil is a sophomore who proudly hails from Singapore. He's interested in macroeconomic data and how we can use algorithms to better guide economic policy. He also loves music (piano in particular), debates way too much, and never sleeps, so if you ever want to talk with him, roll 3rd floor Perkins in the wee hours of the night.</p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/jeremymorgan.png" alt="Team Member">
<h2>Jeremy Morgan</h2>
<h4>ECE and Computer Science Major</h4>
<h4>Class of 2020</h4>
<p>Jeremy is a sophomore from Berkeley, California who is interested in robotics and loves rock climbing. He is currently building a footstep and navigation planner for JPL’s RoboSimian quadruped robot. </p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/dorianbarber.png" alt="Team Member">
<h2>Dorian Barber</h2>
<h4>Math and Computer Science Major</h4>
<h4>Class of 2021</h4>
<p>Dorian is a freshman from Tarrytown, NY studying mathematics and computer science. Within tech he is currently interested in data science and machine learning. He is also interested in Haruki Murakami, eating, and learning new things.</p>
</div>
</li>
<li>
<div class="col-md-4 wp5 ">
<img src="img/members/helenamerk.png" alt="Team Member">
<h2>Helena Merk</h2>
<h4>Computer Science and Global Health Major</h4>
<h4>Class of 2021</h4>
<p>Helena Merk is a freshman studying Computer Science and Global health. She loves to integrate technology with her other interests and finds it a tool to make anything possible. Outside of tech, she loves the outdoors, kids, and trying new food. </p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/danielzhou.png" alt="Team Member">
<h2>Daniel Zhou</h2>
<h4>ECE and Computer Science Major</h4>
<h4>Class of 2021</h4>
<p>Daniel is from Edison, New Jersey and is studying ECE/CS. He can be easily lured to any event under the premise of free swag and he likes to gorge himself on a healthy diet of McNuggets and Panda Express. He's also into blockchain and ML.</p>
</div>
<div class="col-md-4 wp5 delay-1s">
<img src="img/members/danielchai.png" alt="Team Member">
<h2>Daniel Chai</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2019</h4>
<p>Daniel is a junior studying CS, and has interned at Bloomberg and Cisco. He’s particularly interested in distributed systems, and also enjoys basketball, chess, and bridge.</p>
</div>
</li>
<!--
<div class="col-md-4 wp5 delay-1s">
<img src="" alt="Team Member">
<h2>Angela Moon</h2>
<h4>Economics and Computer Science Major</h4>
<h4>Class of 2020</h4>
<p>Angela has interned at The Boeing Company and NCSoft, and is interested in UI/UX and Front-end development. Angela loves watching movies, playing with puppies, and hiking.</p>
</div>
-->
<!--
</li>
<li>
<div class="col-md-4 wp5">
<img src="" alt="Team Member">
<h2>Grant Kim</h2>
<h4>ECE and Computer Science Major</h4>
<h4>Class of 2021</h4>
<p>Grant is a freshman interested in psychology-backed tech, whatever that means. His interests include machine learning, application development, and game design. Hit him up if you want to fangirl over How I Met Your Mother.</p>
</div>
<div class="col-md-4 wp5 delay-05s">
<img src="img/members/farazyashar.png" alt="Team Member">
<h2>Jeremy Chen</h2>
<h4>Computer Science Major</h4>
<h4>Class of 2018</h4>
<p>Jeremy is from Cupertino, CA. He is involved in DIDA and The Chronicle and is interested in design and game development.</p>
</div>
-->
</ul>
</div>
</div>
</div>
</div>
</section>
<!--
<section class="portfolio text-center section-padding" id="portfolio">
<div class="container">
<div class="row">
<div id="portfolioSlider">
<ul class="slides">
<li>
<div class="col-md-4 wp4">
<div class="overlay-effect effects clearfix">
<div class="img">
<img src="img/portfolio-01.jpg" alt="Portfolio Item">
<div class="overlay">
<a href="#" class="expand"><i class="fa fa-search"></i><br>View More</a>
<a class="close-overlay hidden">x</a>
</div>
</div>
</div>
<h2>Creative Minds</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc ultricies nulla non metus pulvinar imperdiet. Praesent non adipiscing libero.</p>
</div>
<div class="col-md-4 wp4 delay-05s">
<div class="overlay-effect effects clearfix">
<div class="img">
<img src="img/portfolio-02.jpg" alt="Portfolio Item">
<div class="overlay">
<a href="#" class="expand"><i class="fa fa-search"></i><br>View More</a>
<a class="close-overlay hidden">x</a>
</div>
</div>
</div>
<h2>Creative Hearts</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc ultricies nulla non metus pulvinar imperdiet. Praesent non adipiscing libero.</p>
</div>
<div class="col-md-4 wp4 delay-1s">
<div class="overlay-effect effects clearfix">
<div class="img">
<img src="img/portfolio-03.jpg" alt="Portfolio Item">
<div class="overlay">
<a href="#" class="expand"><i class="fa fa-search"></i><br>View More</a>
<a class="close-overlay hidden">x</a>
</div>
</div>
</div>
<h2>Creative Ideas</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc ultricies nulla non metus pulvinar imperdiet. Praesent non adipiscing libero.</p>
</div>
</li>
<li>
<div class="col-md-4 wp4">
<div class="overlay-effect effects clearfix">
<div class="img">
<img src="img/portfolio-01.jpg" alt="Portfolio Item">
<div class="overlay">
<a href="#" class="expand"><i class="fa fa-search"></i><br>View More</a>
<a class="close-overlay hidden">x</a>
</div>
</div>
</div>
<h2>Creative Minds</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc ultricies nulla non metus pulvinar imperdiet. Praesent non adipiscing libero.</p>
</div>
<div class="col-md-4 wp4 delay-05s">
<div class="overlay-effect effects clearfix">
<div class="img">
<img src="img/portfolio-02.jpg" alt="Portfolio Item">
<div class="overlay">
<a href="#" class="expand"><i class="fa fa-search"></i><br>View More</a>
<a class="close-overlay hidden">x</a>
</div>
</div>
</div>
<h2>Creative Hearts</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc ultricies nulla non metus pulvinar imperdiet. Praesent non adipiscing libero.</p>
</div>
<div class="col-md-4 wp4 delay-1s">
<div class="overlay-effect effects clearfix">
<div class="img">
<img src="img/portfolio-03.jpg" alt="Portfolio Item">
<div class="overlay">
<a href="#" class="expand"><i class="fa fa-search"></i><br>View More</a>
<a class="close-overlay hidden">x</a>
</div>
</div>
</div>
<h2>Creative Ideas</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc ultricies nulla non metus pulvinar imperdiet. Praesent non adipiscing libero.</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
-->
<div class="ignite-cta text-center">
<div class="container">
<div class="row">
<div class="col-md-12" style="vertical-align:center">
<h1 class = "logo-text">Where We've Worked</h1>
<div class = "logo-wrap">
<img class = "companyLogo" src="img/companylogos/airbnb.png">
<img class = "companyLogo" src="img/companylogos/google.png">
<img class = "companyLogo" src="img/companylogos/apple.png">
<img class = "companyLogo" src="img/companylogos/microsoft.png">
<img class = "companyLogo" src="img/companylogos/BoA.png">
<!-- <img class = "companyLogo" src="img/companylogos/lockheedMartin.png">-->
</div>
<!-- <a href="#" class="ignite-btn">Ignite Your Passion</a>-->
</div>
</div>
</div>
</div>
<section class="features text-center section-padding" id="faq">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="arrow">FAQ</h1>
<div class="features-wrapper">
<div class="col-md-4 wp2">
<div class="icon">
<i class="fa fa-users shadow"></i>
</div>
<h2>Q. How can I join?</h2>
<p>A. We have rush twice a year — once at the beginning of each semester.</p>
</div>
<div class="col-md-4 wp2 delay-05s">
<div class="icon">
<i class="fa fa-calendar shadow"></i>
</div>
<h2>Q. Are your events open to everyone?</h2>
<p>A. Some of our events are open to everyone at Duke, and we would love to have you there. Check out our <a href = "https://www.facebook.com/dukecatalyst" target = "_blank">facebook</a> for our schedule for public events. Members have access to more exclusive events.</p>
</div>
<div class="col-md-4 wp2 delay-1s">
<div class="icon">
<i class="fa fa-envelope shadow"></i>
</div>
<h2>Q. I would love to work with Catalyst. How can I reach out?</h2>
<p>A. Please <a href = "mailto:dukecatalyst@gmail.com" target = "_blank">email</a> us.</p>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
</section>
<section class="subscribe text-center">
<div class="container">
<h1><i class="fa fa-paper-plane"></i>
<!-- <span>Join our listserv</span>-->
</h1>
<a target = "_blank" href="https://goo.gl/forms/zHolNKISD5wUM1f12" class="learn-more-btn">Join our Listserv</a>
<!--
<form action="#">
<input type="text" name="" value="" placeholder="Email" required id="email-address" required data-validation-required-message="Please enter your email.">
<input type="submit" name="" value="Send">
</form>
-->
</div>
</section>
<section class="dark-bg text-center section-padding contact-wrap" id="contact">
<a href="#top" class="up-btn"><i class="fa fa-chevron-up"></i></a>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="arrow">Drop us a line</h1>
</div>
</div>
<div class="row contact-details">
<div class="col-md-4">
<div class="light-box box-hover">
<h2><i class="fa fa-envelope"></i><span>Email</span></h2>
<p><a class = "contact-text" href = "mailto:dukecatalyst@gmail.com" target = "_blank">dukecatalyst@gmail.com</a></p>
</div>
</div>
<div class="col-md-4">
<div class="light-box box-hover">
<h2><i class="fa fa-facebook"></i><span>Facebook</span></h2>
<p><a class = "contact-text" href = "https://www.facebook.com/dukecatalyst" target = "_blank">Catalyst at Duke</a></p>
</div>
</div>
<div class="col-md-4">
<div class="light-box box-hover">
<h2><i class="fa fa-instagram"></i><span>Instagram</span></h2>
<p><a target = "_blank" href="https://www.instagram.com/dukecatalyst/">dukecatalyst</a></p>
</div>
</div>
</div>
<!--
<div class="row">
<div class="col-md-12">
<ul class="social-buttons">
<li><a href="#" class="social-btn"><i class="fa fa-dribbble"></i></a></li>
<li><a href="#" class="social-btn"><i class="fa fa-twitter"></i></a></li>
<li><a href="#" class="social-btn"><i class="fa fa-envelope"></i></a></li>
</ul>
</div>
</div>
-->
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col-md-6">
<ul class="legals">
<li>© 2017 Catalyst At Duke</li>
<!--
<li><a href="#">Terms & Conditions</a></li>
<li><a href="#">Legals</a></li>
-->
</ul>
</div>
<div class="col-md-6 credit">
<!-- <p>© 2017 Catalyst At Duke</p>-->
</div>
</div>
</div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/waypoints.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
<script src="js/jquery.flexslider.js"></script>
<script src="js/modernizr.js"></script>
</body>
</html>