-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1093 lines (1009 loc) · 61.1 KB
/
index.html
File metadata and controls
executable file
·1093 lines (1009 loc) · 61.1 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
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
<!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">
<meta name="description" content="Sherman Leung's online portfolio">
<meta name="author" content="Sherman Leung">
<title>Sherman Leung's Online Portfolio</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/styles.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="font-awesome-4.1.0/css/font-awesome.min.css">
<!-- 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]-->
<!-- codyhouse timeline dependencies -->
<link href="css/timeline.css" rel="stylesheet">
<script src="js/modernizr.js"></script>
<!-- google analytics -->
<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','//www.google-analytics.com/analytics.js','ga');
// ga('create', 'UA-54100345-1', 'auto');
// ga('send', 'pageview');
</script>
</head>
<body id="page-top" class="index">
<section id="home">
<!-- Header -->
<header>
<div class="row-fluid">
<div class="container">
<div class="col-md-6">
<h1>
<span class="text-muted">s</span><span class="text-primary">.</span><span class="text-muted">leung</span>
</h1>
</div>
<div class="col-md-6">
<ul class="list-inline">
<li><a href="https://github.com/skleung">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-github fa-stack-1x"></i>
</span>
</a>
</li>
<li><a href="http://www.linkedin.com/in/shleung">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-linkedin fa-stack-1x"></i>
</span>
</a>
</li>
<li><a href="https://www.youtube.com/channel/UCU1v9WfUIdrJ0nf0A9RGvJQ">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-youtube fa-stack-1x"></i>
</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</header>
<nav>
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="row">
<div class="col-md-6 nav-box nav-md-box" id="about">
<i class="fa fa-5x fa-info"></i>
<p>about</p>
</div>
<div class="col-md-6 nav-box nav-md-box" id="timeline">
<i class="fa fa-5x fa-code-fork"></i>
<p>timeline</p>
</div>
</div>
<div class="row">
<a href="https://github.com/skleung/resumes/raw/master/resume.pdf">
<div class="col-md-12 nav-box nav-md-box" id="resume">
<i class="fa fa-5x fa-arrow-circle-o-down"></i>
<p>resume</p>
</div>
</a>
</div>
</div>
<div class="col-md-4 nav-lg-box nav-box" id="projects">
<i class="fa fa-5x fa-folder-open-o"></i>
<p>projects</p>
</div>
<div class="col-md-4">
<div class="row">
<a href="http://skleung.github.io/blog">
<div class="col-md-12 nav-box nav-md-box" id="healthtech">
<i class="fa fa-5x fa-pencil-square-o"></i>
<p>blog</p>
</div>
</a>
</div>
<div class="row">
<div class="col-md-6 nav-box nav-md-box" id="teaching">
<i class="fa fa-5x fa-university"></i>
<p>teaching</p>
</div>
<div class="col-md-6 nav-box nav-md-box" id="contact">
<i class="fa fa-5x fa-envelope-o"></i>
<p>contact</p>
</div>
</div>
</div>
</div>
</div>
</nav>
<div id="footer-push"></div>
</section>
<!-- Services Section -->
<section id="about">
<div class="container">
<div id="header">
<a href="#" class="home-btn text-primary">
<span class="fa-stack fa-lg">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-inverse fa-home fa-stack-1x"></i>
</span>
</a>
<h1>
<a href="#" class="home-link">
<span>s</span><span class="text-primary">.</span><span>leung</span>
</a>
::<span class="text-primary">about</span>
<ul class="list-inline pull-right">
<li><a href="https://github.com/skleung">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-github fa-stack-1x"></i>
</span>
</a>
</li>
<li><a href="http://www.linkedin.com/in/shleung">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-linkedin fa-stack-1x"></i>
</span>
</a>
</li>
<li><a href="https://www.youtube.com/channel/UCU1v9WfUIdrJ0nf0A9RGvJQ">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-youtube fa-stack-1x"></i>
</span>
</a>
</li>
</ul>
</h1>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2 class="section-heading">
<span class="text-primary">sherman.
</h2>
<h4>developer, designer, teacher, student.</h4>
<div class="section-text-wrapper">
<p class="lead">
I love starting, planning, and designing new things.
I'm constantly working on new ways to reimagine the old by taking inspiration from everything around me.
</p>
<p class="lead">
Originally from the DC metropolitan area, I'm currently a master's student at Stanford studying Computer Science.
I'm passionate about applying technology to healthcare and education, and care deeply about making the world a better place.
</p>
</div>
</div>
</div>
</div>
</section>
<section id="timeline">
<div class="container">
<div id="header">
<a href="#" class="home-btn text-primary">
<span class="fa-stack fa-lg">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-inverse fa-home fa-stack-1x"></i>
</span>
</a>
<h1>
<a href="#" class="home-link">
<span>s</span><span class="text-primary">.</span><span>leung</span>
</a>
::<span class="text-primary">timeline</span>
<ul class="list-inline pull-right">
<li><a href="https://github.com/skleung">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-github fa-stack-1x"></i>
</span>
</a>
</li>
<li><a href="http://www.linkedin.com/in/shleung">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-linkedin fa-stack-1x"></i>
</span>
</a>
</li>
<li><a href="https://www.youtube.com/channel/UCU1v9WfUIdrJ0nf0A9RGvJQ">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-youtube fa-stack-1x"></i>
</span>
</a>
</li>
</ul>
</h1>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div id="cd-timeline" class="cd-container">
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-picture">
<img src="img/svg/book.svg" alt="courses">
</div> <!-- cd-timeline-img -->
<div class="cd-timeline-content">
<h2>Fall 2012</h2>
<p>
<strong>Coursework</strong>: Math 51, Chem 31X, Intro to American Law, and Chem 25N.
</p><p>
Joined <a href="http://everydaypeople.org/wp/">Everyday People</a> Acappella as a Tenor, <a href="aasa.stanford.edu">AASA</a> as Frosh intern, and was a part of Freshman Dorm Government as Co-President
</p>
<span class="cd-date"></span>
</div> <!-- cd-timeline-content -->
</div> <!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-movie">
<img src="img/svg/book.svg" alt="coursework">
</div> <!-- cd-timeline-img -->
<div class="cd-timeline-content">
<h2>Winter 2013</h2>
<p>
<strong>Coursework</strong>: CS 103, CS106B, PHYS 41/42, Thinking Matters (How does your Brain work?)
<p>Mentored high school students as an <a href="http://aawp.stanford.edu/">AAWP</a> Mentor
</p>
<span class="cd-date"></span>
</div> <!-- cd-timeline-content -->
</div> <!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-picture">
<img src="img/svg/book.svg" alt="coursework">
</div> <!-- cd-timeline-img -->
<div class="cd-timeline-content">
<h2>Spring 2013</h2>
<p><strong>Coursework</strong>: CS106L, CS 107, PWR (The Art of Choosing), CHEM 33</p>
<p>Became a tutor @<a href="http://www.cardinalscholars.com/">Cardinal Scholars, joined <a href="http://web.stanford.edu/group/ssscr/whoweare.html">SSSCR</a> (now defunct) as a core member</p>
</div> <!-- cd-timeline-content -->
</div> <!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<img src="img/svg/book.svg" alt="coursework">
</div> <!-- cd-timeline-img -->
<div class="cd-timeline-content">
<h2>Summer 2013</h2>
<p>Went back home to the DMV to work on HIV-1 Vaccine Design in Dr. Peter Kwong's Lab at the Vaccine Research Center/NIH</p>
<p>Took Google's <a href="https://developers.google.com/edu/python/">online course</a> on Python, and became a top CS tutor on <a href="https://instaedu.com/">InstaEDU</a></p>
</div> <!-- cd-timeline-content -->
</div> <!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<img src="img/svg/book.svg" alt="coursework">
</div> <!-- cd-timeline-img -->
<div class="cd-timeline-content">
<h2>Fall 2013</h2>
<p><strong>Coursework</strong>: CS 274, BIO 41, CHEM 35, CHEM 36</p>
<p>Joined <a href="http://everydaypeople.org/wp/">EP</a> for a second year, also joined the <a href="http://ssb.stanford.edu">SSB</a> Business Development Team </p>
</div> <!-- cd-timeline-content -->
</div> <!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-movie">
<img src="img/svg/book.svg" alt="coursework">
</div> <!-- cd-timeline-img -->
<div class="cd-timeline-content">
<h2>Winter 2014</h2>
<p><strong>Coursework</strong>: CS 109, CS 142, BIO 42, CHEM 130, CHEM 131, CS 9</p>
<p>Joined <a href="http://changlab.stanford.edu/">Dr. Howard Chang's</a> lab to work under the direction of Dr. Robert Spitale and PhD/MD student Ryan Flynn. Started work on a project to characterize RNA-protein interactions.</p>
</div> <!-- cd-timeline-content -->
</div> <!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-movie">
<img src="img/svg/book.svg" alt="coursework">
</div> <!-- cd-timeline-img -->
<div class="cd-timeline-content">
<h2>Spring 2014</h2>
<p><strong>Coursework</strong>: CS 110, CS 198, CS547, CS 99SI, PHYS 43/44, PWR 2 (Science, Democracy, Social Media)</p>
<p>Joined the <a href="http://cs198.stanford.edu">CS198 Program</a> as a Section Leader, built <a href="pillist.herokuapp.com">landing page</a> for pillist and the <a href="http://skleung.github.io/human-2.0-ssb-2014">SSB Conference Site</a></p>
</div> <!-- cd-timeline-content -->
</div> <!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-movie">
<img src="img/svg/book.svg" alt="coursework">
</div> <!-- cd-timeline-img -->
<div class="cd-timeline-content">
<h2>Summer 2014</h2>
<p>Worked at GoDaddy over the summer on their Online Store Product under the Presence & Commerce Division </p>
<p>TA-ed CS106A as a summer section leader, and started laying the groundwork for <a href="http://skleung.gitub.io/healthplusplus">health++</a> and <a href="http://treehacks.com">TreeHacks</a></p>
</div> <!-- cd-timeline-content -->
</div> <!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-movie">
<img src="img/svg/book.svg" alt="coursework">
</div> <!-- cd-timeline-img -->
<div class="cd-timeline-content">
<h2>Fall 2014</h2>
<p><strong>Coursework</strong>: CS 221, CS 147, EE 40M, MS&E 472, MS&E 178</p>
<p>Joined Serra's dorm staff as an RCC! Coursehelper for CS 106B and CA for CS 42.</p>
<p>Built <a href="http://shesays.herokuapp.com">she says</a> at Dubhacks.
</div> <!-- cd-timeline-content -->
</div> <!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-movie">
<img src="img/svg/book.svg" alt="coursework">
</div> <!-- cd-timeline-img -->
<div class="cd-timeline-content">
<h2>Winter 2015</h2>
<p><strong>Coursework</strong>: CS 210A, CS 199, ME 104B, CS 108, CS 181W</p>
<p>Became a CS 198 Small Group Leader, led sponsor relations for <a href="http://treehacks.com">TreeHacks</a></p>
<p>Worked in collaboration with Dr. Michael Bernstein and Dr. Fei-Fei Li on <a href="visualgenome.org">VisualGenome</a></p>
</div> <!-- cd-timeline-content -->
</div> <!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-location">
<img src="img/svg/book.svg" alt="coursework">
</div> <!-- cd-timeline-img -->
<div class="cd-timeline-content">
<h2>Spring 2015</h2>
<p><strong>Coursework</strong>: CS 161, CS 210B, CS 199P, BIOMEDIN 206, CS376, MUSIC 18B</p>
<p>Small Group Leader for CS198, CA for <a href="http://cs42.stanford.edu">CS 42</a>. Planning for <a href="http://stanfordpython.github.io">CS 92SI (hap.py coder)</a>.</p>
<p>Took CodePath's inaugural iOS Bootcamp at Stanford and won Best iOS app for a mobile application that virtualizes the Physical Therapist-Patient interaction.</p>
<p>Built <a href="http://vg-game.herokuapp.com">SentenceRacer</a> and submitted to UIST 2015.</p>
</div> <!-- cd-timeline-content -->
</div> <!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-movie">
<img src="img/svg/book.svg" alt="coursework">
</div> <!-- cd-timeline-img -->
<div class="cd-timeline-content">
<h2>Summer 2015</h2>
<p>Worked as a mobile intern for Khan Academy</p>
<p>Backend/iOS engineer for muvr labs, and started <a href="www.olive.ai">Olive Health</a>.</p>
</div> <!-- cd-timeline-content -->
</div> <!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-movie">
<img src="img/svg/book.svg" alt="coursework">
</div> <!-- cd-timeline-img -->
<div class="cd-timeline-content">
<h2>Fall 2015</h2>
<p><strong>Coursework</strong>: FRENLANG 60D, MS&E 273, CS 157, BIOE 273</p>
<p>Joining the Casa Italiana Staff as an RCC. Working on TreeHacks Health and <a href="shift.stanford.edu">SHIFT</a></p>
</div> <!-- cd-timeline-content -->
</div> <!-- cd-timeline-block -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-picture">
<img src="img/svg/book.svg" alt="coursework">
</div> <!-- cd-timeline-img -->
<div class="cd-timeline-content">
<h2>Future and Beyond</h2>
<p>Musings from an <a href="http://shermanleung.com/odyssey">ME104B assignment</a> for what the next couple years might entail!</p>
</div> <!-- cd-timeline-content -->
</div> <!-- cd-timeline-block -->
</div> <!-- cd-timeline -->
</div>
</div>
</section>
<!-- Portfolio Grid Section -->
<section id="projects">
<div class="container">
<div id="header">
<a href="#" class="home-btn text-primary">
<span class="fa-stack fa-lg">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-inverse fa-home fa-stack-1x"></i>
</span>
</a>
<h1>
<a href="#" class="home-link">
<span>s</span><span class="text-primary">.</span><span>leung</span>
</a>
::<span class="text-primary">portfolio</span>
<ul class="list-inline pull-right">
<li><a href="https://github.com/skleung">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-github fa-stack-1x"></i>
</span>
</a>
</li>
<li><a href="http://www.linkedin.com/in/shleung">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-linkedin fa-stack-1x"></i>
</span>
</a>
</li>
<li><a href="https://www.youtube.com/channel/UCU1v9WfUIdrJ0nf0A9RGvJQ">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-youtube fa-stack-1x"></i>
</span>
</a>
</li>
</ul>
</h1>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="http://shermanleung.com/blog/projects-galore/" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>More Projects</h4>
<p class="text-muted">Click to view more projects!</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="http://shesays.co" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/shesays-home.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>She Says</h4>
<p class="text-muted">Full-stack Development</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="http://shermanleung.com/clarity" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/clarity.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Clarity</h4>
<p class="text-muted">Mobile Development</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="http://github.com/skleung/cs221" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/catan.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>AI agent for Settlers of Catan</h4>
<p class="text-muted">Python</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal1" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/community-home.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Community</h4>
<p class="text-muted">Full-stack Development</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal2" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/get-matched-home.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Get Matched</h4>
<p class="text-muted">Full-stack Development</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal3" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/d3js-home.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>diverge3.js</h4>
<p class="text-muted">Full-stack Development</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal5" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/ssb-home.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>SSB Conference Site</h4>
<p class="text-muted">Web Design, Branding</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal6" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/apamsa-home.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Premed APAMSA Site</h4>
<p class="text-muted">Web Design, Branding</p>
</div>
</div>
</div>
</div>
</section>
<section id="teaching">
<div class="container">
<div id="header">
<a href="#" class="home-btn text-primary">
<span class="fa-stack fa-lg">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-inverse fa-home fa-stack-1x"></i>
</span>
</a>
<h1>
<a href="#" class="home-link">
<span>s</span><span class="text-primary">.</span><span>leung</span>
</a>
::<span class="text-primary">contact</span>
<ul class="list-inline pull-right">
<li><a href="https://github.com/skleung">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-github fa-stack-1x"></i>
</span>
</a>
</li>
<li><a href="http://www.linkedin.com/in/shleung">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-linkedin fa-stack-1x"></i>
</span>
</a>
</li>
<li><a href="https://www.youtube.com/channel/UCU1v9WfUIdrJ0nf0A9RGvJQ">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-youtube fa-stack-1x"></i>
</span>
</a>
</li>
</ul>
</h1>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="section-text-wrapper">
<p>
I love teaching because how it's challenged me continously to develop a <a href="http://www.huffingtonpost.com/salman-khan/the-learning-myth-why-ill_b_5691681.html">growth mindset</a>.
I firmly believe that teaching truly is the highest form of understanding, and have the utmost respect for people that accept it as their calling.
</p>
<p>
As I've tried to live up to the amazing teachers that have inspired me throughout my life, here are some of the opportunitites I've had to share and learn with students:
</p>
<ul>
<li><a href="http://stanfordpython.github.io">CS 92SI</a> Head TA: Fall 2015</li>
<li><a href="http://cs106a.stanford.edu">CS 106A</a> Section Leader: Spring 2014, <a href="http://skleung.github.io/cs106a-sum14/">Summer 2014</a>, <a href="http://shermanleung.com/cs106a">Summer 2015</a></li>
<li><a href="http://cs106a.stanford.edu">CS 106B</a> Course Helper: Fall 2014, Section Leader: Winter 2015 </li>
<li><a href="http://cs99si.stanford.edu">CS 42</a> Course Assistant: Fall 2014, Spring 2015 </li>
<li><a href="http://shermanleung.com/cs1c">CS 1C</a> Instructor</li>
<li>Lead Chemistry Subject Peer Tutor </li>
<li><a href="http://breakoutmentors.com/">Breakout Mentor</a> in Web Development</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<div id="header">
<a href="#" class="home-btn text-primary">
<span class="fa-stack fa-lg">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-inverse fa-home fa-stack-1x"></i>
</span>
</a>
<h1>
<a href="#" class="home-link">
<span>s</span><span class="text-primary">.</span><span>leung</span>
</a>
::<span class="text-primary">contact</span>
<ul class="list-inline pull-right">
<li><a href="https://github.com/skleung">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-github fa-stack-1x"></i>
</span>
</a>
</li>
<li><a href="http://www.linkedin.com/in/shleung">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-linkedin fa-stack-1x"></i>
</span>
</a>
</li>
<li><a href="https://www.youtube.com/channel/UCU1v9WfUIdrJ0nf0A9RGvJQ">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-inverse fa-youtube fa-stack-1x"></i>
</span>
</a>
</li>
</ul>
</h1>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-subheading text-light">Drop me a line!</h2>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<form name="sentMessage" method="POST" action="//formspree.io/shermankleung@gmail.com" id="contactForm" novalidate>
<div class="row">
<div class="col-md-6">
<div class="form-group" >
<input type="text" name="_subject"class="form-control" placeholder="Subject *" id="subject" required data-validation-required-message="Please enter a subject for your message.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input type="text" class="form-control" name="_name" placeholder="Your Name *" id="name" required data-validation-required-message="Please enter your name.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input type="email" name="_replyto" class="form-control" placeholder="Your Email *" id="email" required data-validation-required-message="Please enter your email address.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<textarea class="form-control" name="_msg" placeholder="Your Message *" id="message" required data-validation-required-message="Please enter a message."></textarea>
<p class="help-block text-danger"></p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-lg-12 text-center">
<div id="success">Sent sucessfully</div>
<div id="error">There was some error sending your message</div>
<button type="submit" class="btn btn-xl">Send Message</button>
</div>
</div>
<div class="row text-center">
<p class="text-muted">Form powered by forms.brace.io</p>
</div>
</form>
<h3 class="text-primary text-center"><a href="mailto:hello@shermanleung.com">hello@shermanleung.com</a></h3>
</div>
</div>
</div>
</section>
<footer>
<div class="container text-center">
<p> Made with <a href="https://github.com/skleung/skleung.github.io"><i class="fa fa-code"></i></a>. Last updated <span class="text-primary">08/2014</span></p>
</div>
</footer>
<!-- Portfolio Modals -->
<!-- Use the modals below to showcase details about your portfolio projects! -->
<!-- Portfolio Modal 1 -->
<div class="portfolio-modal modal fade" id="portfolioModal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<a href="http://community-app.herokuapp.com"><h2>Community</h2></a>
<p class="item-intro text-muted">Group finances made easy.</p>
<a class="fancybox" rel="group" href="img/portfolio/community-dashboard.png" title="Main dashboard with balance and meal summaries" ><img src="img/portfolio/community-dashboard.png" class="img-responsive img-centered"/></a>
<div class="row">
<div class="col-md-3">
<a class="fancybox" rel="group" href="img/portfolio/community-table.png" title="Itemized list of ingredients" ><img src="img/portfolio/community-table.png" class="img-responsive"/></a>
</div>
<div class="col-md-3">
<a class="fancybox" rel="group" href="img/portfolio/community-home.png" title="Home page of the application" ><img src="img/portfolio/community-home.png" class="img-responsive"/></a>
</div>
<div class="col-md-3">
<a class="fancybox" rel="group" href="img/portfolio/community-about.png" title="About section on landing page" ><img src="img/portfolio/community-about.png" class="img-responsive"/></a>
</div>
<div class="col-md-3">
<a class="fancybox" rel="group" href="img/portfolio/community-account.png" title="Account management" ><img src="img/portfolio/community-account.png" class="img-responsive"/></a>
</div>
</div>
<p class="text-muted">Built over 7 weeks. <strong>07-08/2014</strong></p>
<p>
A <strong>Ruby on Rails</strong> application built with <strong>Venmo API</strong> to simplify payments for communal living among friends.
It features ingredient tracking, meal creation, multiple groups of friends, and payment history.
<p>
<p>
I was responsible for the <strong>UI experience</strong>, <strong>design</strong>, the majority of the <strong>front-end</strong> development, and general planning and direction for the project. On the <strong>backend</strong>, I implemented the on-the-fly payment calculations
that our app ultimately used to calculate the balance between users, and helped build out the meal create/signup on the main dashboard page.
</p>
<p>
A fellow GoDaddy Intern and I built out a minimally viable alpha version of the application for my friends to use during the summer. It took us
another 3 weeks to implement Venmo API/authentication, Multiple Groups, and some UX flow redesigns to bring it to its current state. Taking the feedback
from our alpha testers, we reiterated and pivotted some aspects of the application in preparation for a campus-wide launch for the start of the semester.
We're currently at three different campuses and growing our userbase!
</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 2 -->
<div class="portfolio-modal modal fade" id="portfolioModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<a href="http://get-matched.herokuapp.com"><h2>Get Matched</h2></a>
<p class="item-intro text-muted">Discovery Platform for small businesses.</p>
<a class="fancybox" rel="get-matched" href="img/portfolio/get-matched-tinder.png" title="Matching platform for small businesses" ><img src="img/portfolio/get-matched-tinder.png" class="img-responsive img-centered"/></a>
<div class="row">
<div class="col-md-3">
<a class="fancybox" rel="get-matched" href="img/portfolio/get-matched-search.png" title="Search page" ><img src="img/portfolio/get-matched-search.png" class="img-responsive"/></a>
</div>
<div class="col-md-3">
<a class="fancybox" rel="get-matched" href="img/portfolio/get-matched-profile.png" title="Profile management - preferences were used to rank search results" ><img src="img/portfolio/get-matched-profile.png" class="img-responsive"/></a>
</div>
<div class="col-md-3">
<a class="fancybox" rel="get-matched" href="img/portfolio/get-matched-home.png" title="Home page" ><img src="img/portfolio/get-matched-home.png" class="img-responsive"/></a>
</div>
<div class="col-md-3">
<a class="fancybox" rel="get-matched" href="img/portfolio/get-matched-msg.png" title="Messaging platform" ><img src="img/portfolio/get-matched-msg.png" class="img-responsive"/></a>
</div>
</div>
<p class="text-muted">Built over 24 hours. <strong>07/2014</strong></p>
<p>Get Matched is a platform for small businesses to find, communicate, and build partnerships with each other.
Built on top of Locu's database for small businesses, it allows small business owners the ability to search
and find other small businesses that match their preferences and are mutually beneificial to both businesses.
<p>This project won <strong>1st place</strong> at the inaugural GoDaddy intern hackathon. It was also presented at an all-hands
division meeting and received support and interest from several senior executive leaders.
</p>
<p> I led a team of 4 developers to clearly task out product development and define the modules/relationships for the application. Throughout this project, we made two major product pivots before
ending up with our final product that is probably best described as tinder-based discovery platform for small businesses. I also worked closely with an MBA student to develop a business proposal and gave demo pitch
during the final demos.
</p>
<p> On the technical side, I was responsible for front-end design and helped implement the matching algorithm and search ranking algorithm on the Rails backend.</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 3 -->
<div class="portfolio-modal modal fade" id="portfolioModal3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>diverge3js</h2>
<p class="item-intro text-muted">Mapping divergence distances within data sets</p>
<a class="fancybox" rel="d3js" href="img/portfolio/d3js-home.png" title="Matching platform for small businesses" ><img src="img/portfolio/get-matched-tinder.png" class="img-responsive img-centered"/></a>
<p class="text-muted">Built over 3 days. <strong>07/2014</strong></p>
<p>This was a project built on the Google App Engine in Python. It uses <a href="http://en.wikipedia.org/wiki/T-distributed_stochastic_neighbor_embedding">Stochastic Neighbor Embedding</a> to reduce the multi dimensional aspects of data from baseball players
into a mappable depiction on 2D canvas. </p>
<p> I was responsible for setting up the application framework, integrating d3js, and parsing the inputs from the data files </p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 4 -->
<div class="portfolio-modal modal fade" id="portfolioModal4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<a href="http://skleung.github.io/healthplusplus"><h2>health++</h2></a>
<p class="item-intro text-muted">A forum for student entrepreneurs, developers, and pre-health students to collaborate. </p>
<a class="fancybox" rel="health" href="img/portfolio/healthpp-home.png" title="Matching platform for small businesses" ><img src="img/portfolio/healthpp-home.png" class="img-responsive img-centered"/></a>
<div class="row">
<div class="col-md-3 col-md-offset-3">
<a class="fancybox" rel="health" href="img/portfolio/healthpp-mission.png" title="Mission statemtn" ><img src="img/portfolio/healthpp-mission.png" class="img-responsive"/></a>
</div>
<div class="col-md-3">
<a class="fancybox" rel="health" href="img/portfolio/healthpp-contact.png" title="Contact form utilized brace.io" ><img src="img/portfolio/healthpp-contact.png" class="img-responsive"/></a>
</div>
</div>
<p><a href="http://skleung.github.io/healthplusplus">health++</a> is an ongoing student initiative to bring together students who are passionate about changing healthcare. We act as a forum to inspire and innovation in healthcare and I'm so excited to see a dream and a vision that's been half a year in the making finally come to life!
</p>
<p>This website was built on top of startBootstrap's <a href="http://startbootstrap.com/templates/agency/">agency template</a>. It uses <a href="forms.brace.io">brace.io</a> for form submission
Credit for fonts and icons go to Google Fonts and the amazing <a href="http://fortawesome.github.io/Font-Awesome/">Font Awesome</a> pack.
</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 5 -->
<div class="portfolio-modal modal fade" id="portfolioModal5" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<!-- Project Details Go Here -->
<a href="http://skleung.github.io/human-2.0-ssb-2014/"><h2>human 2.0 conference site</h2></a>
<p class="item-intro text-muted"></p>
<a class="fancybox" rel="ssb" href="img/portfolio/ssb-signup.png" title="Signup for industry and student participants" ><img src="img/portfolio/ssb-signup.png" class="img-responsive img-centered"/></a>
<div class="row">
<div class="col-md-4">
<a class="fancybox" rel="ssb" href="img/portfolio/ssb-about.png" title="About section of landing page" ><img src="img/portfolio/ssb-about.png" class="img-responsive"/></a>
</div>
<div class="col-md-4">
<a class="fancybox" rel="ssb" href="img/portfolio/ssb-logo.png" title="Logo design" ><img src="img/portfolio/ssb-logo.png" class="img-responsive"/></a>
</div>
<div class="col-md-4">
<a class="fancybox" rel="ssb" href="img/portfolio/ssb-home.png" title="Home page" ><img src="img/portfolio/ssb-home.png" class="img-responsive"/></a>
</div>
</div>
<p>Built from scratch with bootstrap. Redesigned SSB's logo and was responsible for all things web design and branding for the conference.</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 6 -->
<div class="portfolio-modal modal fade" id="portfolioModal6" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">