-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1454 lines (1217 loc) · 68.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
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, shrink-to-fit=no, user-scalable=yes">
<meta name="author" content="Isaac Teuscher">
<meta name="keywords" content="Isaac Teuscher, Isaac H Teuscher, iteuscher, teuscher, isaac henry teuscher, bio, website">
<title>Isaac Teuscher</title>
<link rel="shortcut icon" href="images/favicon.ico" />
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- CSS stylesheet -->
<link href="css/mainstyle.css" rel="stylesheet">
<!-- load up jquery locally instead of from online link -->
<script src="vendor/jquery/jquery.min.js"></script>
<!--load up all font awesome icons-->
<script src="fonts/fontawesome-all.js"></script>
<!-- Slick image slideshow -->
<link rel="stylesheet" href="other/slick/slick.css" />
<link rel="stylesheet" href="other/slick/slick-theme.css" />
<link rel="stylesheet" href="other/aos/aos.css" />
<!-- Print.js -->
<!-- <script src="other/print-js/print.min.js"></script>
<link rel="stylesheet" href="other/print-js/print.min.css"> -->
<!--Photo Swipe -->
<!-- <link rel='stylesheet prefetch' href='other/photoswipe/css/photoswipe.min.css'>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/photoswipe/4.1.1/default-skin/default-skin.min.css'>
<link rel="stylesheet" href="other/photoswipe/css/photoswipe.css"> -->
<!-- Slippry image slideshow -->
<!-- <script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script src="other/slippry/dist/slippry.min.js"></script>
<link rel="stylesheet" href="other/slippry/dist/slippry.css">
<link rel="stylesheet" href="other/slippry/demo/demo.css"> -->
</head>
<body id="page-top">
<!-- NAV BAR -->
<nav id="menu" class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top"> <img class="navbar-icon" src="images/icons/iht_icon_white.png"/> </a>
<!-- Original plain nav toggler -->
<!-- <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button> -->
<!-- animated nav toggler -->
<button class="navbar-toggler collapsed navbar-toggle" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar top-bar"> </span>
<span class="icon-bar middle-bar"></span>
<span class="icon-bar bottom-bar"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#interests">Interests</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#resume">Resume</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- TITLE AND MAIN IMAGE -->
<div class="main-img" src="images/cloud_hi_photo.jpeg"> </div>
<div class="container text-center main-title">
<div class="spacer-large"> </div>
<div class="spacer-medium"></div>
<h1>Isaac<br>Teuscher</h1>
<div class="svg-wrapper">
<div style="margin: 5ex;"> </div>
<svg height="150" width="320">
<rect class="shape" height="150" width="320" />
</svg>
<div class="lead"> </div>
<!-- <div class="lead"> hi <div> -->
</div>
<!-- <div class="circle-img"> </div> -->
</div>
<!-- Sections Container (section content wrapper) -->
<div class="sections-container">
<!-- About -->
<section class="about" id="about">
<div class="container">
<!-- <div class="row"> -->
<div data-aos="fade-right" class="col-lg-8 mx-auto">
<h2>About</h2>
<!-- <p class="lead">I'm Isaac Teuscher.</p> -->
<p> I'm currently a senior at <a href="https://www.headroyce.org/about-us" target="_blank">Head-Royce School</a> in Oakland, CA.
<!-- I love rotisserie chicken, long beach runs, and even longer naps. -->
I'm heading to <a href="https://byu.edu/" target="_blank">BYU</a> in Provo, UT this fall as an undeclared major.
I have some CS proficency and am interested in front-end web development.
</p>
</div>
<!-- </div> -->
</div>
<div class="spacer spacer-medium"> </div>
<!-- SOCIAL MEDIA BUTTONS -->
<div class="container">
<div id="socialbox" data-aos="fade-right">
<a href="https://www.facebook.com/isaac.teuscher" class="c-link c-link--facebook c-tooltip" aria-label="Facebook">
<svg class="c-icon">
<use xlink:href="#icon--facebook"></use>
</svg>
</a>
<a href="https://www.instagram.com/isaac.teuscher/" class="c-link c-link--instagram c-tooltip" aria-label="Instagram">
<svg class="c-icon">
<use xlink:href="#icon--instagram"></use>
</svg>
</a>
<a href="https://twitter.com/ihteuscher" class="c-link c-link--twitter c-tooltip" aria-label="Twitter">
<svg class="c-icon">
<use xlink:href="#icon--twitter"></use>
</svg>
</a>
<a href="https://www.linkedin.com/in/isaacteuscher" class="c-link c-link--linkedin c-tooltip" aria-label="LinkedIn">
<svg class="c-icon">
<use xlink:href="#icon--linkedin"></use>
</svg>
</a>
<a href="https://github.com/iteuscher/" class="c-link c-link--github c-tooltip" aria-label="Github">
<svg class="c-icon">
<use xlink:href="#icon--github"></use>
</svg>
</a>
<svg style="display: none">
<symbol id="icon--facebook" viewbox="0 0 24 24">
<path d="M19,4V7H17A1,1 0 0,0 16,8V10H19V13H16V20H13V13H11V10H13V7.5C13,5.56 14.57,4 16.5,4M20,2H4A2,2 0 0,0 2,4V20A2,2 0 0,0 4,22H20A2,2 0 0,0 22,20V4C22,2.89 21.1,2 20,2Z" />
</symbol>
<symbol id="icon--twitter" viewbox="0 0 24 24">
<path d="M17.71,9.33C17.64,13.95 14.69,17.11 10.28,17.31C8.46,17.39 7.15,16.81 6,16.08C7.34,16.29 9,15.76 9.9,15C8.58,14.86 7.81,14.19 7.44,13.12C7.82,13.18 8.22,13.16 8.58,13.09C7.39,12.69 6.54,11.95 6.5,10.41C6.83,10.57 7.18,10.71 7.64,10.74C6.75,10.23 6.1,8.38 6.85,7.16C8.17,8.61 9.76,9.79 12.37,9.95C11.71,7.15 15.42,5.63 16.97,7.5C17.63,7.38 18.16,7.14 18.68,6.86C18.47,7.5 18.06,7.97 17.56,8.33C18.1,8.26 18.59,8.13 19,7.92C18.75,8.45 18.19,8.93 17.71,9.33M20,2H4A2,2 0 0,0 2,4V20A2,2 0 0,0 4,22H20A2,2 0 0,0 22,20V4C22,2.89 21.1,2 20,2Z" />
</symbol>
<symbol id="icon--linkedin" viewbox="0 0 24 24">
<path d="M19,19H16V13.7A1.5,1.5 0 0,0 14.5,12.2A1.5,1.5 0 0,0 13,13.7V19H10V10H13V11.2C13.5,10.36 14.59,9.8 15.5,9.8A3.5,3.5 0 0,1 19,13.3M6.5,8.31C5.5,8.31 4.69,7.5 4.69,6.5A1.81,1.81 0 0,1 6.5,4.69C7.5,4.69 8.31,5.5 8.31,6.5A1.81,1.81 0 0,1 6.5,8.31M8,19H5V10H8M20,2H4C2.89,2 2,2.89 2,4V20A2,2 0 0,0 4,22H20A2,2 0 0,0 22,20V4C22,2.89 21.1,2 20,2Z" />
</symbol>
<symbol id="icon--email" viewbox="0 0 24 24">
<path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z" />
</symbol>
<symbol id="icon--instagram" viewbox="0 0 24 24">
<path d="M7.8,2H16.2C19.4,2 22,4.6 22,7.8V16.2A5.8,5.8 0 0,1 16.2,22H7.8C4.6,22 2,19.4 2,16.2V7.8A5.8,5.8 0 0,1 7.8,2M7.6,4A3.6,3.6 0 0,0 4,7.6V16.4C4,18.39 5.61,20 7.6,20H16.4A3.6,3.6 0 0,0 20,16.4V7.6C20,5.61 18.39,4 16.4,4H7.6M17.25,5.5A1.25,1.25 0 0,1 18.5,6.75A1.25,1.25 0 0,1 17.25,8A1.25,1.25 0 0,1 16,6.75A1.25,1.25 0 0,1 17.25,5.5M12,7A5,5 0 0,1 17,12A5,5 0 0,1 12,17A5,5 0 0,1 7,12A5,5 0 0,1 12,7M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9Z" />
</symbol>
<symbol id="icon--github" viewbox="0 0 18 18">
<path d="M8,0 C3.58,0 0,3.58 0,8 C0,11.54 2.29,14.53 5.47,15.59 C5.87,15.66 6.02,15.42 6.02,15.21 C6.02,15.02 6.01,14.39 6.01,13.72 C4,14.09 3.48,13.23 3.32,12.78 C3.23,12.55 2.84,11.84 2.5,11.65 C2.22,11.5 1.82,11.13 2.49,11.12 C3.12,11.11 3.57,11.7 3.72,11.94 C4.44,13.15 5.59,12.81 6.05,12.6 C6.12,12.08 6.33,11.73 6.56,11.53 C4.78,11.33 2.92,10.64 2.92,7.58 C2.92,6.71 3.23,5.99 3.74,5.43 C3.66,5.23 3.38,4.41 3.82,3.31 C3.82,3.31 4.49,3.1 6.02,4.13 C6.66,3.95 7.34,3.86 8.02,3.86 C8.7,3.86 9.38,3.95 10.02,4.13 C11.55,3.09 12.22,3.31 12.22,3.31 C12.66,4.41 12.38,5.23 12.3,5.43 C12.81,5.99 13.12,6.7 13.12,7.58 C13.12,10.65 11.25,11.33 9.47,11.53 C9.76,11.78 10.01,12.26 10.01,13.01 C10.01,14.08 10,14.94 10,15.21 C10,15.42 10.15,15.67 10.55,15.59 C13.71,14.53 16,11.53 16,8 C16,3.58 12.42,0 8,0 L8,0 Z" />
</symbol>
</svg>
</div>
</div>
</section>
<div class="section-split">
<div class="line line-orange"></div>
<div class="line line-white"></div>
<div class="line line-purple"></div>
<div class="line line-white"></div>
<div class="line line-blue"></div>
</div>
<!--Projects-->
<section id="projects" class="projects">
<div class="container">
<div data-aos="fade-right" class="col-lg-8 mx-auto">
<h2>Projects</h2>
<p class="lead">Work I've done or am currently working on.</p>
<div class="spacer-small"></div>
</div>
<div id="theGrid" class="exp-grid-container">
<link rel="stylesheet" type="text/css" href="css/expanding-grid/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/expanding-grid/style1.css" />
<script src="js/expanding-grid/modernizr.custom.js"></script>
<section class="grid">
<div class="top-bar">
<!-- <h2 class="top-bar__headline">Latest articles</h2> -->
<div class="filter">
<p class="lead filtertitle">Filter by:</p>
<div class="tags-container row"></div>
</div>
</div>
<!-- <div class="griditems-container"> -->
<div class="exp-grid-link grid__item item" data-item-id="1" data-item-tags="Web Design">
<h2 class="title title--preview">HRS Opportunities Hub Website</h2>
<div class="loader"></div>
<!-- <span class="category">Stories for humans</span> -->
<div class="meta meta--preview">
<img class="meta__avatar" src="images/thumbs/theoh.png" alt="thumb-theoh" />
<span class="meta__date">
<i class="fa fa-calendar fa-lg"></i> Sept 2016 - March 2017 </span>
<span class="meta__reading-time item-tags">
<i class="fa fa-tags fa-lg"></i>
</span>
</div>
</div>
<div class="exp-grid-link grid__item item" data-item-id="2" data-item-tags="Web Design, Express & Node.js">
<h2 class="title title--preview">Lux: Community Polling Web Activity</h2>
<div class="loader"></div>
<!-- <span class="category">Stories for humans</span> -->
<div class="meta meta--preview">
<img class="meta__avatar" src="images/thumbs/lux.png" alt="thumb-lux" />
<span class="meta__date">
<i class="fas fa-calendar fa-lg"></i> Dec 2017</span>
<span class="meta__reading-time item-tags">
<i class="fas fa-tags fa-lg"></i>
</span>
</div>
</div>
<div class="exp-grid-link grid__item item" data-item-id="3" data-item-tags="Unity Game, Group Project">
<h2 class="title title--preview">Maze Explorer Game</h2>
<div class="loader"></div>
<!-- <span class="category">Stories for humans</span> -->
<div class="meta meta--preview">
<img class="meta__avatar" src="images/thumbs/mazeexplorer.png" alt="thumb-mazeexplorer" />
<span class="meta__date">
<i class="fas fa-calendar fa-lg"></i> Dec 2016 </span>
<span class="meta__reading-time item-tags">
<i class="fas fa-tags fa-lg"></i>
</span>
</div>
</div>
<div class="exp-grid-link grid__item item" data-item-id="4" data-item-tags="iOS app, Group Project">
<h2 class="title title--preview">HRS Schedule & Sign In/Out App</h2>
<div class="loader"></div>
<!-- <span class="category">Stories for humans</span> -->
<div class="meta meta--preview">
<img class="meta__avatar" src="images/thumbs/classy.png" alt="thumb-classy" />
<span class="meta__date">
<i class="fas fa-calendar fa-lg"></i> Jan 2018</span>
<span class="meta__reading-time item-tags">
<i class="fas fa-tags fa-lg"></i>
</span>
</div>
</div>
<div class="exp-grid-link grid__item item" data-item-id="5" data-item-tags="Java">
<h2 class="title title--preview">Java Steganography Encoding Program</h2>
<div class="loader"></div>
<!-- <span class="category">Stories for humans</span> -->
<div class="meta meta--preview">
<img class="meta__avatar" src="images/thumbs/steganography.png" alt="thumb-steganography" />
<span class="meta__date">
<i class="fas fa-calendar fa-lg"></i> Fall 2016</span>
<span class="meta__reading-time item-tags">
<i class="fas fa-tags fa-lg"></i>
</span>
</div>
</div>
<!-- <div class="exp-grid-link grid__item item" data-item-id="6" data-item-tags="Android App, Java, WIP">
<h2 class="title title--preview">On Pace: Android app for Track & Field</h2>
<div class="loader"></div>
<div class="meta meta--preview">
<img class="meta__avatar" src="images/thumbs/onpace.png" alt="thumb-onpace" />
<span class="meta__date">
<i class="fas fa-calendar fa-lg"></i> Summer 2016</span>
<span class="meta__reading-time item-tags">
<i class="fas fa-tags fa-lg"></i>
</span>
</div>
</div> -->
<div class="exp-grid-link grid__item item" data-item-id="7" data-item-tags="Web Design">
<h2 class="title title--preview">My Personal Website</h2>
<div class="loader"></div>
<!-- <span class="category">Stories for humans</span> -->
<div class="meta meta--preview">
<img class="meta__avatar" src="images/thumbs/me.png" alt="thumb-me" />
<span class="meta__date">
<i class="fas fa-calendar fa-lg"></i> Jan 2018</span>
<span class="meta__reading-time item-tags">
<i class="fas fa-tags fa-lg"></i>
</span>
</div>
</div>
<!-- </div> griditems-container -->
</section>
<section class="content bg-light">
<div class="scroll-wrap">
<article class="content__item item" data-item-id="1" data-item-tags="Web Design">
<!-- <span class="category category--full">Stories for humans</span> -->
<h2 class="title title--full">HRS Opportunities Hub Website</h2>
<div class="meta meta--full">
<img class="meta__avatar" src="images/thumbs/theoh.png" alt="thumb-theoh" />
<!-- <span class="meta__author">Isaac Teuscher</span> -->
<span class="meta__date">
<i class="fas fa-calendar fa-lg"></i> Sept 2016 - March 2017 </span>
<span class="meta__reading-time item-tags">
<i class="fas fa-tags fa-lg"></i>
</span>
</div>
<p> </p>
<div class="spacer-small"> </div>
<h3> What is the Opportunities Hub? </h3>
<p> I worked with Head-Royce School's Center for Community Engagement and IT department to design and create
a website and filterable database for students to better access oppurtunities including summer travel programs,
community service organizations, internships, etc. Branded as 'The OH!', the site has undergone many design iterations
over nearly a year as I've worked with Ms. Nancy Feidelman to make it best fit the needs of the Head-Royce community.
</p>
<div class="spacer-very-small"> </div>
<img class="avg-image" src="images/theoh-screenshot.png" alt="The OH! screenshot">
<div class="caption">Screenshot from The OH!</div>
<div class="spacer-medium"> </div>
<h3> Design </h3>
<p> The OH! is a simple webpage running a custom
<a target="_blank" href="https://sites.google.com/site/scriptsexamples/available-web-apps/awesome-tables">Awesome Table</a>
(a plugin which helps turns Google spreadsheet data into filterable, dynamic elements).
My goal when building the site was that the administrators and faculty adding new programs would
never have to see a line of code if they didn't want to. As such the data input, organization and display
process is integrated with G-Suite (Google forms, spreadsheets, Awesome Table, etc) but has HTML, CSS, and JavaScript
behind the scenes. </p>
<div class="spacer-small"> </div>
<h3> Current Use </h3>
<p> The database has 350+ programs and has had over a thousand page views. It is used by students, teachers, and parents
throughout the Head-Royce School community. </p>
<div class="spacer-very-small"> </div>
<p class="lead"> Visit the
<a target="_blank" href="https://hrsinstitute.github.io/theOH/theoh.html">Live Website.</a>
</p>
</article>
<article class="content__item item" data-item-id="2" data-item-tags="Web Design, Express & Node.js">
<!-- <span class="category category--full">Stories for humans</span> -->
<h2 class="title title--full">Lux: Community Polling Web Activity</h2>
<div class="meta meta--full">
<img class="meta__avatar" src="images/thumbs/lux.png" alt="thumb-lux" />
<div class="spacer-small"> </div>
<!-- <span class="meta__author">Isaac Teuscher</span> -->
<span class="meta__date">
<i class="fas fa-calendar fa-lg"></i> Dec 2017 </span>
<span class="meta__reading-time item-tags">
<i class="fas fa-tags fa-lg"></i>
</span>
</div>
<p> </p>
<div class="spacer-small"> </div>
<h3> What is Lux? </h3>
<p>
Lux is a web-based activity to help a community become more aware of its silent identites.
The website and server is built with Express and Node.JS (Express server, Pug on the frontend, Knex and a MySQL DB on the backend).
</p>
<div class="spacer-small"> </div>
<h3> How does it work? </h3>
<p> A Lux is created with questions like: ‘Have you been bullied at school?’ or ‘Have you been sexually harassed by someone
from our community?’ A link to the Lux is shared out to the members who each privatly answer the questions. All answers
are stored anonymously. Then at an assembly or meeting, each member heads to the shared link and is anonymously given
the answers of someone else. The questions are read aloud and people stand up when their given answer is yes. Although
numbers and graphs can make the same points, this exercise is especially powerful because you see your peers standing
and know that they are giving voice to the identity of someone else in the room.
</p>
<div class="spacer-small"> </div>
<h3> Inspiration for Lux </h3>
<p> The idea and structure of Lux is based off similar activites led by affinity groups at Head-Royce School in Oakland, CA.
The inspiration to create a website to run Lux activities came from the #MeToo movement and the national interest in
understanding the pevelence of issues like sexual harrasment that are too often ignored.
</p>
<div class="spacer-small"> </div>
<h3> Project Resources </h3>
<p>
You can see the Github repository for Lux <a href="https://github.com/iteuscher/lux" target="__blank">here</a>.
For the User Guide to help with installation and setup, click <a target="_blank" href="project-files/pdfs/Lux User Guide.pdf">here</a>.
</p>
<div class="spacer-small"> </div>
<p class="note"> ** Lux is currently a work in progress. Not all of the features are working. **</p>
<div class="spacer-very-small"> </div>
<p class="lead"> Visit the
<a target="_blank" href="https://luxdemo.herokuapp.com/">Live Demo Website.</a>
</p>
</article>
<article class="content__item item" data-item-id="3" data-item-tags="Unity Game, Group Project">
<!-- <span class="category category--full">Stories for humans</span> -->
<h2 class="title title--full">Maze Explorer Game</h2>
<div class="meta meta--full">
<img class="meta__avatar" src="images/thumbs/mazeexplorer.png" alt="thumb-mazeexplorer" />
<!-- <span class="meta__author">Isaac Teuscher</span> -->
<div class="spacer-small"> </div>
<span class="meta__date">
<i class="fas fa-calendar fa-lg"></i> Dec 2016</span>
<span class="meta__reading-time item-tags">
<i class="fas fa-tags fa-lg"></i>
</span>
</div>
<p> </p>
<div class="spacer-small"> </div>
<h3> What is Maze Explorer? </h3>
<p> Maze Explorer is a 1st person dungeon explorer game which generates a random maze each new round.
It's complete with music and audio effects. You must explore the maze and collect all the orbs
before your oxygen runs out to win. You also have to watch out for traps on the floor which either
slow you down or temporarily blind you.
</p><p>
Matthew Chan, Jonathan Wu, and I made the game together using the
<a href="https://unity3d.com" target="__blank">Unity Game Engine</a>.
</p>
<div class="spacer-small"> </div>
<div class="slideshow">
<div class="slideshow-element"><img class="avg-image" src="project-files/MazeExplorer/ss2.png"></div>
<div class="slideshow-element"><img class="avg-image" src="project-files/MazeExplorer/ss3.png"></div>
<div class="slideshow-element"><img class="avg-image" src="project-files/MazeExplorer/ss4.png"></div>
</div>
<div class="caption">Screenshots of the gameplay</div>
<!-- OLD: <div class="slideshow">
<div class="slideShow-prev slideShow-arrow" style="color: white;">
<svg class="slideShow-svg" viewBox="0 0 24 24">
<g fill="currentColor">
<path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"></path>
</g>
</svg>
</div>
<div class="slideShow-next slideShow-arrow" style="color: white;">
<svg class="slideShow-svg" viewBox="0 0 24 24">
<g fill="currentColor">
<path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"></path>
</g>
</svg>
</div>
</div>
<div class="spacer-small"> </div>
<img class="slides1 avg-image" src="project-files/MazeExplorer/ss2.png">
<img class="slides1 avg-image" src="project-files/MazeExplorer/ss3.png">
<img class="slides1 avg-image" src="project-files/MazeExplorer/ss4.png">
<div class="caption">Screenshots from the app</div>
<a class="plain-link" onclick="plusDivs(-1)">
<div class="slideShow-prev slideShow-arrow" style="color: black;">
<svg class="slideShow-svg" viewBox="0 0 24 24">
<g fill="currentColor">
<path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"></path>
</g>
</svg>
</div>
<i class="far fa-2x fa-arrow-alt-circle-left"></i>
</a>
<a class="plain-link" onclick="plusDivs(+1)">
<div class="slideShow-next slideShow-arrow" style="color: black;">
<svg class="slideShow-svg" viewBox="0 0 24 24">
<g fill="currentColor">
<path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"></path>
</g>
</svg>
</div>
<i class="far fa-2x fa-arrow-alt-circle-right"></i>
</a>
<script>
var slideIndex = 1;
showDivs(slideIndex);
function plusDivs(n) {
showDivs(slideIndex += n);
}
function showDivs(n) {
var i;
var x = document.getElementsByClassName("slides1");
if (n > x.length) { slideIndex = 1 }
if (n < 1) { slideIndex = x.length }
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndex - 1].style.display = "block";
}
</script> -->
<div class="spacer-small"> </div>
<!-- <h3> Project Resources </h3> -->
<p>
You can read the User Guide to help with installation and setup
<a target="_blank" href="project-files/MazeExplorer/Maze-Explorer_User-Guide.pdf">here</a>.
</p>
<div class="spacer-very-small"> </div>
<p class="note"> * Maze Explorer is only available for OSX (Mac's). *</p>
<div class="spacer-very-small"> </div>
<p class="lead"> Download
<a href="project-files/MazeExplorer/Maze-Explorer.zip">Maze Explorer</a> [ZIP]
</p>
</article>
<article class="content__item item" data-item-id="4" data-item-tags="iOS app, Group Project">
<!-- <span class="category category--full">Stories for humans</span> -->
<h2 class="title title--full">HRS Schedule & Sign In/Out App</h2>
<div class="meta meta--full">
<img class="meta__avatar" src="images/thumbs/classy.png" alt="thumb-classy" />
<!-- <span class="meta__author">Isaac Teuscher</span> -->
<div class="spacer-small"> </div>
<span class="meta__date">
<i class="fas fa-calendar fa-lg"></i> Jan 2018</span>
<span class="meta__reading-time item-tags">
<i class="fas fa-tags fa-lg"></i>
</span>
</div>
<p> </p>
<div class="spacer-small"> </div>
<h3> What is the Head-Royce Schedule App? </h3>
<p> A few years ago, Natalie Hartman created the iOS app 'HRS Classy' which let students at
Head-Royce see exactly how long they had left in class and how long until their next class started.
Because of the confusing rotating block schedule, the app was greatly appreciated by students.
However, when Natalie graduated and her developer license expired, 'HRS Classy' disappeared from the app store.
I reached out to Natalie for her code and have been working with Will Xenakis and my brother Noah Teuscher
to make a fresh version of the app so students can once know when they need to be in (or out) of class.
</p>
<!-- <img class="slides2 avg-image" src="project-files/MazeExplorer/ss2.png">
<img class="slides2 avg-image" src="project-files/MazeExplorer/ss3.png">
<img class="slides2 avg-image" src="project-files/MazeExplorer/ss4.png">
<div class="caption">Screenshots from the app</div>
<a onclick="plusDivs(-1)">
<i class="far fa-2x fa-arrow-alt-circle-left"></i>
</a>
<a onclick="plusDivs(+1)">
<i class="far fa-2x fa-arrow-alt-circle-right"></i>
</a>
<script>
var slideIndex = 1;
showDivs(slideIndex);
function plusDivs(n) {
showDivs(slideIndex += n);
}
function showDivs(n) {
var i;
var x = document.getElementsByClassName("slides2");
if (n > x.length) { slideIndex = 1 }
if (n < 1) { slideIndex = x.length }
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndex - 1].style.display = "block";
}
</script> -->
<div class="spacer-small"> </div>
<h3> Current Status </h3>
<p>
We are in talks with the Head-Royce School administration to get permission
and licensing to host the app on the app store. Our goal is that the app will stay availible
and beloved long after we graduate from Head-Royce.
</p>
<div class="spacer-small"> </div>
<p class="note"> ** Though this app is only made for iOS devices, another student is making an Android version. **</p>
<div class="spacer-very-small"> </div>
<p class="lead"> Check the iOS
<a target="__blank" href="https://www.apple.com/ios/app-store/">App Store</a> for it's upcoming release.
</p>
</article>
<article class="content__item item" data-item-id="5" data-item-tags="Java">
<!-- <span class="category category--full">Stories for humans</span> -->
<h2 class="title title--full">Java Steganography Encoding Program</h2>
<div class="meta meta--full">
<img class="meta__avatar" src="images/thumbs/steganography.png" alt="thumb-steganography" />
<!-- <span class="meta__author">Isaac Teuscher</span> -->
<span class="meta__date">
<i class="fas fa-calendar fa-lg"></i> Fall 2016</span>
<span class="meta__reading-time item-tags">
<i class="fas fa-tags fa-lg"></i>
</span>
</div>
<p> </p>
<div class="spacer-small"> </div>
<h3> What is Steganography? </h3>
<p> Steganography is the practice of concealing a file, message, image, or video within another file, message, image, or video.
Whereas cryptography is the practice of protecting the contents of a message alone, steganography is concerned with concealing
the fact that a secret message is being sent as well as concealing the contents of the message.
<br> - Wikipedia
</p>
<div class="spacer-small"> </div>
<h3> How does my program work? </h3>
<p>
My program takes normal images (png, jpg, etc) and encodes a secret message in them. You can also use it to decode messages
out of images that have been encoded by my program. The program is written in Java.
</p>
<div class="spacer-small"> </div>
<img class="slides3 avg-image" src="project-files/Steg/hidden_data-01.png">
<!-- <img class="slides3 avg-image" src="project-files/MazeExplorer/ss3.png">
<img class="slides3 avg-image" src="project-files/MazeExplorer/ss4.png"> -->
<div class="spacer-small"> </div>
<!-- <div class="caption">Screenshots of the program</div> -->
<!-- <a onclick="plusDivs(-1)">
<i class="far fa-2x fa-arrow-alt-circle-left"></i>
</a>
<a onclick="plusDivs(+1)">
<i class="far fa-2x fa-arrow-alt-circle-right"></i>
</a> -->
<script>
var slideIndex = 1;
showDivs(slideIndex);
function plusDivs(n) {
showDivs(slideIndex += n);
}
function showDivs(n) {
var i;
var x = document.getElementsByClassName("slides3");
if (n > x.length) { slideIndex = 1 }
if (n < 1) { slideIndex = x.length }
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndex - 1].style.display = "block";
}
</script>
<div class="spacer-small"> </div>
<p class="note"> ** You will need an <a target="__blank" href="https://java.com/en/download/">updated JRE</a> to run the program **</p>
<div class="spacer-very-small"> </div>
<p class="lead"> Download the
<a href="project-files/">Steganography Program</a> [ZIP]
</p>
</article>
<!-- <article class="content__item item" data-item-id="6" data-item-tags="Android App, Java, WIP">
<h2 class="title title--full">On Pace: Android app for Track & Field</h2>
<div class="meta meta--full">
<img class="meta__avatar" src="images/thumbs/onpace.png" alt="thumb-onpace" />
<span class="meta__date">
<i class="fas fa-calendar fa-lg"></i> Summer 2016</span>
<span class="meta__reading-time item-tags">
<i class="fas fa-tags fa-lg"></i>
</span>
</div>
<p> </p>
<p>An Android app made for timing paces when running. Designed for real time measuring of track and field lap splits
as you run.
</p>
<p> Will be available on the Google Play Store under "On Pace" once it is finished!</p>
<video width="288" height="512" controls>
<source type="video/mp4" src="/project-files/OnPace/onpace_video.mp4">
Your browser does not support this demo video :(
</video>
<p>Demo video of 'On Pace'</p>
<a class="exp-grid-link" href="/project-files/OnPace/onpace.zip"> Download the latest version [ZIP] </a>
</article> -->
<article class="content__item item" data-item-id="7" data-item-tags="Web Design">
<!-- <span class="category category--full">Stories for humans</span> -->
<h2 class="title title--full">My Personal Website</h2>
<div class="meta meta--full">
<img class="meta__avatar" src="images/thumbs/me.png" alt="thumb-me" />
<!-- <span class="meta__author">Isaac Teuscher</span> -->
<span class="meta__date">
<i class="fas fa-calendar fa-lg"></i> Jan 2018 </span>
<span class="meta__reading-time item-tags">
<i class="fas fa-tags fa-lg"></i>
</span>
</div>
<p> </p>
<div class="spacer-small"> </div>
<p> Version 2 of my personal portfolio website.
Built using Bootstrap, JQuery, a few plugins, and a lot of HTML and CSS.
</p>
<div class="spacer-small"> </div>
<p> You can see all the code for this site in my <a target="__blank" href="https://github.com/iteuscher/me" >Github repository</a>.
</p>
<div class="spacer-small"> </div>
<p> Return to the
<a href="index.html">homepage</a>.
</p>
</article>
</div> <!-- /scrollwrap -->
<button class="close-button">
<i class="fas fa-times fa-2x"></i>
<span>Close</span>
</button>
</section>
<!-- grid section -->
</div> <!-- /exp-grid-container -->
</div> <!-- /container -->
</section>
<div class="section-split">
<div class="line line-orange"></div>
<div class="line line-white"></div>
<div class="line line-purple"></div>
<div class="line line-white"></div>
<div class="line line-blue"></div>
</div>
<!--Interests-->
<section id="interests" class="interests">
<div class="container">
<div class="row">
<div class="col-lg-10 mx-auto">
<div data-aos="fade-right">
<h2>Interests</h2>
</div>
<!-- <p class="lead">What I <i class="far fa-heart"></i> to do.</p> -->
<main>
<input id="tab1" type="radio" name="tabs" checked>
<label for="tab1">Running</label>
<input id="tab2" type="radio" name="tabs">
<label for="tab2">Boy Scouts</label>
<input id="tab3" type="radio" name="tabs">
<label for="tab3">Church</label>
<input id="tab4" type="radio" name="tabs">
<label for="tab4">Other</label>
<section class="tab-content" id="content1">
<div class="img-container">
<img class="img-responsive" src="images/cards/ncs.jpg">
<!-- <img class="img-responsive" src="images/California-CIF-Cross-Country-State-Championships2016-8323_full.jpg"> -->
</div>
<p> 4 year varsity runner at Head-Royce School. 3 time MVP in both Cross Country and Track. </p>
<div class="description">
<!-- <h5>My Current Personal Records:</h5> -->
<div class="table-responsive">
<table class="table table-bordered ">
<thead>
<tr>
<th scope="col">Distance</th>
<th scope="col">Time</th>
<!-- <th scope="col">Date</th> -->
<th scope="col">Meet</th>
</tr>
</thead>
<tbody>
<tr>
<td>5k (Cross Country)</td>
<td>16:09.1</td>
<!-- <td>Nov 11, 2016</td> -->
<td>California State D5 XC Championships</td>
</tr>
<tr>
<td>3200m</td>
<td>9:35.76</td>
<!-- <td>April 29, 2017</td> -->
<td>Sacramento Meet of Champions</td>
</tr>
<tr>
<td>1600m</td>
<td>4:30.84</td>
<!-- <td>April 1, 2017</td> -->
<td>Chabot Invitational</td>
</tr>
<tr>
<td>800m</td>
<td>1:59.45</td>
<!-- <td>April 27, 2017</td> -->
<td>BCL East Meet #2</td>
</tr>
</tbody>
</table>
</div>
<!-- <iframe height='500' width='95%' frameborder='0' allowtransparency='true' scrolling='yes' src='https://www.strava.com/athletes/11419101/latest-rides/a28419c215d825614b714cdbe2932897ebb26a0a'></iframe> -->
<link href='https://fonts.googleapis.com/css?family=Quicksand:300,400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Lato:400,300' rel='stylesheet' type='text/css'>
<div class="followcard-container">
<div class="followcard-header">
<div class="bio">
<img src="images/cards/Strava_Logo-700x400.jpg" alt="background" class="bg">
<div class="desc">
<p>Strava is a social network for athletes. Millions of athletes all over the world
use Strava to track their runs via phone or GPS device.</p>
</div>
</div>
</div>
<div class="followcard-content">
<div class="data">
<ul>
<li>
450+
<div>Runs</div>
</li>
<li>
1,700+
<div>Total Miles</div>
</li>
<li>
27
<div>Followers</div>
</li>
</ul>
</div>
<div> <a class="follow" href="https://www.strava.com/athletes/11419101/" target="_blank"> <i class="fab fa-strava"> </i> Follow me</a></div>
</div>
</div>
</div>
</section>
<section class="tab-content" id="content2">
<div class="img-container">
<img class="img-tall" src="images/cards/eagle.jpg">
</div>
<h5>Eagle Scout in Troop 16 (achieved rank in October 2017)</h5>
<div>
<p> Each year, thousands of children are born without two fully functional hands due to a variety of defects such as amniotic
band syndrome. While professional prosthetics exist, they are often not feasible for children as they cost thousands of dollars
and must be constantly replaced as the child grows. To address this issue, makers around the world have created mechanical
prosthetic hands which can be 3D printed for less than $100.
</p>
<p> After being introduced to the e-NABLE community by my grandmother
(yes my grandma introduced me to 3D printing) I decided to create 10 3D printed prosthetic hands for children in need for
my eagle scout project. I gathered supplies, found a local printer, organized volunteers to assemble the hands, and shipped
off the finished hands to e-NABLE who will distribute them around the world. Although there were some new tools and techniques
I had to learn, there are a lot of people who have made really helpful guides and tips, so I was able to understand how make
the hands even though I’d never 3D printed before. I definitely couldn’t have done it without my array of fantastic friends
and family who not only funded the project (total cost was about $800), but many of whom helped gather supplies as well as
assembling and testing the hands.
</p>
<p> If you want to learn more about 3D printing or specifically how 3D printing can be applied
to create prosthetic hands go to <a target="_blank" href="http://enablingthefuture.org/">e-NABLE's website</a> to learn more!
Feel free to <a href="#contact">contact me</a> with any questions you might have, I’d love to help.
</p>
</div>
<div class="followcard-container">
<div class="followcard-header">
<div class="bio">
<img src="images/10hands.jpg" alt="background" class="bg">
<div class="desc">
<p>The e-NABLE Community is a group of individuals from all over the world who are using their 3D printers to create
free 3D printed hands and arms for those in need of an upper limb assistive device.</p>
</div>
</div>
</div>
<div class="followcard-content">
<div class="data">
<ul>
<li>
$800+
<div>fundraised</div>
</li>
<li>
10
<div>hands made</div>
</li>
<li>
20+
<div>volunteers</div>
</li>
</ul>
</div>
<div>
<a class="follow2 follow" href="https://sites.google.com/headroyce.org/isaac-17-and-prosthetic-hands/home" target="_blank">
Learn more about
</br> my project</a>
</div>
</div>
</div>
</section>
<section class="tab-content" id="content3">
<div class="img-container">
<img class="img-wide" src="images/cards/cv1.jpg">
</div>
<p>
I'm a member of the LDS Church (commonly known as the Mormon Church).
I'm planning to serve a 2 year sevice & proselytizing mission.
</p>
<a target="_blank" class="indented" href="http://mormon.org"> <i class="fas fa-book"> </i> Learn more about my church</a>
</section>
<section class="tab-content" id="content4">
<p>
I play the piano, mostly classical pieces.
Here is some of my repertoire:
</p>
<ul class="list-group">
<li class="list-group-item">Fantasy No. 3 in D Minor (K. 397) by Mozart</li>