-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1058 lines (910 loc) · 59 KB
/
Copy pathindex.html
File metadata and controls
1058 lines (910 loc) · 59 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 content="width=device-width, initial-scale=1.0" name="viewport">
<title>ADL Appathon 2021</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="/img/favicon.png" rel="icon">
<link href="/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<!-- <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Raleway:300,400,500,700,800"
rel="stylesheet"> -->
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;600;700;800&display=swap"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/about-style.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-167896725-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-167896725-1');
</script>
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="d-flex align-items-center ">
<div class="container-fluid container-xxl d-flex align-items-center">
<div id="logo" class="me-auto">
<!-- Uncomment below if you prefer to use a text logo -->
<!-- <h1><a href="index.html">The<span>Event</span></a></h1>-->
<h1 class="logo mr-auto">
<a href="/">
<img src="/img/favicon.png" style="vertical-align: middle;"> <span style="vertical-align: middle;">ADL</span>
</a>
</h1>
</div>
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#schedule">Schedule</a></li>
<li><a class="nav-link scrollto" href="#speakers">Speakers</a></li>
<li><a class="nav-link scrollto" href="#supporters">Sponsors</a></li>
<li><a class="nav-link scrollto" href="#team">Team</a></li>
<!--<li><a class="nav-link scrollto" href="#judges">Judges</a></li>
<li><a class="nav-link scrollto" href="#mentors">Mentors</a></li>-->
<li><a class="nav-link scrollto" href="#faq">FAQ</a></li>
<!-- <li class="dropdown"><a href="#"><span>Drop Down</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="dropdown"><a href="#"><span>Deep Drop Down</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 2</a></li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
</ul>
</li> -->
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
<a class="buy-tickets scrollto"
href="https://docs.google.com/forms/d/e/1FAIpQLScwzPvNG_H585YF2Rqe1GrUeS7ZK5Nvp7br7pbrGq-vRgKdug/viewform"
class="about-btn ">Register</a>
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="hero-container" data-aos="zoom-in" data-aos-delay="100">
<h1 class="mb-4 pb-0"><a href="https://appdevleague.org">ADL</a> Appathon 2021</h1>
<p class="mb-4 pb-0">August 6-8</p>
<div>
<a href="https://docs.google.com/forms/d/e/1FAIpQLScwzPvNG_H585YF2Rqe1GrUeS7ZK5Nvp7br7pbrGq-vRgKdug/viewform"
class="about-btn "> Register </a>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSezDo56vF8m6qQvzJQ_CUQFVvWLyJHD386apnWzWZ_IX3mgxg/viewform "
class="about-btn ">Submit a Project</a>
<a href="https://discord.gg/FtegFYAuZ6" class="about-btn ">Join Our Discord</a>
</div>
</div>
</section><!-- End Hero Section -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-6">
<h1 style="text-align: center">About The Event</h1>
<p>The Appathon works to educate the next generation of technologists, innovators, and leaders. From
researchers to entrepreneurship trailblazers, this conference is a unique opportunity to
interact with the leaders in the fields of AI and application development through workshops and
panels. As part of this event, students will also have the chance to compete in a competition
(ideathon), where they can submit business pitches and/or prototypes for an app that can have a
real-world impact.</p>
</div>
<div class="col-lg-3" style="text-align: center">
<h3>Where</h3>
<p>Online <br> (Zoom and Discord)</p>
</div>
<div class="col-lg-3" style="text-align: center">
<h3>When</h3>
<p>August 6-8</p>
</div>
</div>
</div>
</section><!-- End About Section -->
<section id="submissions" class="section-with-bg" style="padding-top: 50px">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Submission Guidelines</h2>
<a style="margin: 5px" href="/rubric.pdf">See the submission guidelines</a>
</div>
<div class="row" style="padding: 20px; background-color: #f6f7fd">
<div class="col-sm-4">
<div class="guideline card" style="border-radius: 6px; margin-bottom: 10px;">
<div class="card-body" style="backface-visibility: hidden;">
<h5 class="card-title">Business Pitch</h5>
<p class="card-text">This idea should be recorded in the form of a 2-5 minute video, where
you introduce an app that can have a real-world impact. </p>
<ol>
<li class="card-text">Video Length: 2-5 minutes</li>
<li class="card-text">Product name and it’s problem statement (what it attempts to
solve)
</li>
<li class="card-text">Market size for the product (how many people will it reach)</li>
<li class="card-text">Specifics about the product (how it works & how an app is
incorporated
in it)
</li>
<li class="card-text">Competitive analysis (how is the product different than other
products)
</li>
</ol>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="guideline card" style="border-radius: 6px; margin-bottom: 10px;">
<div class="card-body" style="backface-visibility: hidden;">
<h5 class="card-title">Writeup</h5>
<p class="card-text">This idea should be written in the form of a 500-1000 word writeup,
where you introduce an app that can have a real-world impact.</p>
<ol>
<li class="card-text">Writeup Length: 500-1000 words</li>
<li class="card-text">Product name and it’s problem statement (what it attempts to
solve)
</li>
<li class="card-text">Market size for the product (how many people will it reach)</li>
<li class="card-text">Specifics about the product (how it works & how an app is
incorporated
in it)
</li>
<li class="card-text">Competitive analysis (how is the product different than other
products)
</li>
</ol>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="guideline card" style="border-radius: 6px;">
<div class="card-body" style="backface-visibility: hidden;">
<h5 class="card-title">Prototype</h5>
<p class="card-text">This idea should be written in the form of a prototype demonstrated in
a 2-5 minute video, where you introduce an app that can have a real-world impact.</p>
<ol>
<li class="card-text">Video Length: 2-5 minutes</li>
<li class="card-text">Product name and it’s problem statement (what it attempts to
solve)
</li>
<li class="card-text">Demo of the app and features</li>
<li class="card-text">How the app works, what technologies you used to build the
prototype,
etc.
</li>
<li class="card-text">Future plans with this prototype (what else can you add to make it
even
better?)
</li>
</ol>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Judges Section -->
<!-- ======= Schedule Section ======= -->
<section id="schedule" class="section-with-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Event Schedule</h2>
<center>
<p>All timings are in PST</p>
</center>
</div>
<ul class="nav nav-tabs" role="tablist" data-aos="fade-up" data-aos-delay="100">
<li class="nav-item">
<a class="nav-link active" href="#day-1" role="tab" data-bs-toggle="tab">Day 1</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#day-2" role="tab" data-bs-toggle="tab">Day 2</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#day-3" role="tab" data-bs-toggle="tab">Day 3</a>
</li>
</ul>
<h2 class="sub-heading"> Developing Applications for a Cause </h2>
<div style="display:flex; flex-direction: row; justify-content: center;">
<div style="width: 25px; height: 25px; background-color: #0e1b4d; margin-right: 10px; border-radius: 50%;"></div>
<p style=" margin-right: 30px;">Keynotes</p>
<div style="width: 25px; height: 25px; background-color: #37517e; margin-right: 10px; border-radius: 50%"></div>
<p style=" margin-right: 30px;">Speakers</p>
<div style="width: 25px; height: 25px; background-color: #6e82b8; margin-right: 10px; border-radius: 50%"></div>
<p>Workshops</p>
</div>
<div class="tab-content row justify-content-center" data-aos="fade-up" data-aos-delay="200">
<!-- Schdule Day 1 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade show active" id="day-1">
<div class="row schedule-item">
<div class="col-md-2" style="max-width: 100px">
<time>6:30 PM</time>
</div>
<div class="col-md-10" style="width: 70%">
<h4>Opening Ceremony</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2" style="max-width: 100px">
<time>8:00 PM</time>
</div>
<div class="col-md-10" style="width: 70%">
<h4>Game Night</h4>
</div>
</div>
</div>
<!-- End Schdule Day 1 -->
<!-- Schdule Day 2 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade" id="day-2">
<div class="row schedule-item">
<div style="width: 25px; height: 25px; background-color: #0e1b4d; margin-right: 10px; border-radius: 50%;"></div>
<div class="col-md-2" style="max-width: 100px">
<time>9:00 AM</time>
</div>
<div class="col-md-10" style="width: 70%">
<h4>Keynote - Biomedical Applications of AI: Looking for Patterns in Brain Data</h4>
<div class="card card-custom card-custom-small"
style="display: flex; flex-direction: row; background-color: #f6f7fd">
<img class="card-img-top card-img-custom-small" src="/headshots/Keynote1-BrianDean.png"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small">
<h5 class="card-title" style="font-weight: bold; text-align: start">
Brian Dean </h5>
<p class="card-text" style="text-align: start"> Head of USACO, Director of CS at Clemson University</p>
</div>
</div>
<h6> In this talk, I’ll discuss some of my current research at the intersection of AI and computational neuroscience, looking for patterns in brain data (EEG, MRI) that might be indicative of neurological disorders such as Epilepsy, Autism, and Alzheimer’s. Along the way, we’ll take diversions into social network analytics, Google Pagerank, automated software bug finding, and how to algorithmically navigate a cocktail party. I’ll also discuss briefly some of my work in promoting high-school computing via the USA Computing Olympiad. </h6>
</div>
</div>
<div class="row schedule-item" >
<div style="width: 25px; height: 25px; background-color: #6e82b8; margin-right: 10px; border-radius: 50%"></div>
<div class="col-md-2" style="max-width: 100px">
<time>10:00 AM</time>
</div>
<div class="col-md-10" style="width: 70%">
<h4>Basics of Web Development</h4>
</div>
</div>
<div class="row schedule-item" >
<div style="width: 25px; height: 25px; background-color: #6e82b8; margin-right: 10px; border-radius: 50%"></div>
<div class="col-md-2" style="max-width: 100px">
<time>10:30 AM</time>
</div>
<div class="col-md-10" style="width: 70%">
<h4>Creating a Polling System with advanced JavaScript</h4>
</div>
</div>
<div class="row schedule-item" >
<div style="width: 25px; height: 25px; background-color: #37517e; margin-right: 10px; border-radius: 50%"></div>
<div class="col-md-2" style="max-width: 100px">
<time>11:00 AM</time>
</div>
<div class="col-md-10" style="width: 70%">
<h4 >Investigating AI Ethics: Making (and Keeping) Neural Networks Humane</h4>
<div class="card card-custom card-custom-small"
style="display: flex; flex-direction: row; background-color: #f6f7fd; justify-content: start;">
<img class="card-img-top card-img-custom-small" src="/headshots/Speaker1-DamianMusk.png"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small">
<h5 class="card-title" style="font-weight: bold; text-align: start">
Damian Musk</h5>
<p class="card-text" style="text-align: start">Co-founder (3x), Frequent speaker </p>
</div>
</div>
<h6 > AI is a rapidly emerging (and fairly new) technology, but fiction writers have been exploring superintelligence going off the rails for decades. As we incorporate increasingly sophisticated neural networks into our apps, this means we're going to have to think about the ethical ramifications of what we're doing, and what AI means for changes in society as a whole. To do this, we'll also examine how current popular apps employ (or don't) a technoethical mindset in developing the features we may regularly indulge in a little less mindfully.</h6>
</div>
</div>
<div class="row schedule-item" >
<div style="width: 25px; height: 25px; background-color: #f6f7fd; margin-right: 10px; border-radius: 50%"></div>
<div class="col-md-2" style="max-width: 100px">
<time>12:00 PM</time>
</div>
<div class="col-md-10" style="width: 70%">
<h4>Lunch break </h4>
</div>
</div>
<div class="row schedule-item">
<div style="width: 25px; height: 25px; background-color: #6e82b8; margin-right: 10px; border-radius: 50%"></div>
<div class="col-md-2" style="max-width: 100px">
<time>2:00 PM</time>
</div>
<div class="col-md-10" style="width: 70%">
<h4>Learn the basics of AI </h4>
</div>
</div>
<div class="row schedule-item">
<div style="width: 25px; height: 25px; background-color: #37517e; margin-right: 10px; border-radius: 50%"></div>
<div class="col-md-2" style="max-width: 100px">
<time>3:00 PM</time>
</div>
<div class="col-md-10" style="width: 70%;">
<h4>Reliable Crowdsourcing and Computer Vision for Helping Young Children</h4>
<div class="card card-custom card-custom-small"
style="display: flex; flex-direction: row; background-color: #f6f7fd">
<img class="card-img-top card-img-custom-small" src="/headshots/Speaker2-PeterWashington.png"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small">
<h5 class="card-title" style="font-weight: bold; text-align: start">
Peter Washington</h5>
<p class="card-text" style="text-align: start">Founder of MLpro, Stanford PhD</p>
</div>
</div>
<h6> Early childhood is the most potent opportunity to impact long-term health and learning. However, there are major bottlenecks to care, with a massive shortage of clinicians for diagnosis and treatment, disproportionately affecting underserved populations. This thesis centers around developing a streamlined system for continuously phenotyping children with potential developmental delays by leveraging distributed non-expert crowdworkers in conjunction with machine learning algorithms. This work involves collecting diagnostically rich information from children and their parents in a secure and trustworthy manner, curating a reliable and capable crowd workforce for labeling behavioral features, and training improved behavioral classifiers for detection of neurodevelopmental concerns.</h5>
</div>
</div>
<div class="row schedule-item">
<div style="width: 25px; height: 25px; background-color: #6e82b8; margin-right: 10px; border-radius: 50%"></div>
<div class="col-md-2" style="max-width: 100px">
<time>4:00 PM</time>
</div>
<div class="col-md-10" style="width: 70%">
<h4>Developing an ML video game application</h4>
</div>
</div>
</div>
<!-- End Schdule Day 2 -->
<!-- Schdule Day 3 -->
<div role="tabpanel" class="col-lg-9 tab-pane fade" id="day-3">
<div class="row schedule-item">
<div style="width: 25px; height: 25px; background-color: #0e1b4d; margin-right: 10px; border-radius: 50%;"></div>
<div class="col-md-2" style="max-width: 100px">
<time>9:00 AM</time>
</div>
<div class="col-md-10" style="width: 70%">
<h4 >Keynote - Your Opportunity to Drive DEI in Technology</h4>
<div class="card card-custom card-custom-small"
style="display: flex; flex-direction: row; background-color: #f6f7fd;">
<img class="card-img-top card-img-custom-small" src="/headshots/Keynote2-TarikhCampbell.png"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small">
<h5 class="card-title" style="font-weight: bold; text-align: start">
Tarikh Campbell</h5>
<p class="card-text" style="text-align: start"> Microsoft Program Manager, MIT graduate</p>
</div>
</div>
<h6>While the technology industry has grown more rapidly than almost any other in the last 30 years, its progress in representation has been slow and delayed. This contributes to long running, growing inequities that must be a priority for modern technologists. Listen in for a brief history of Diversity, Equity, & Inclusion in technology and your opportunity to be the generation that finally brings it to fruition.</h6>
</div>
</div>
<div class="row schedule-item">
<div style="width: 25px; height: 25px; background-color: #37517e; margin-right: 10px; border-radius: 50%"></div>
<div class="col-md-2" style="max-width: 100px">
<time>10:00 AM</time>
</div>
<div class="col-md-10" style="width: 70%">
<h4>3 Ways To Diversify Student Opportunities In STEM</h4>
<div class="card card-custom card-custom-small"
style="display: flex; flex-direction: row; background-color: #f6f7fd">
<img class="card-img-top card-img-custom-small" src="/headshots/Speaker3-GaliciaGordon.png"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small">
<h5 class="card-title" style="font-weight: bold; text-align: start">
Galicia Gordon</h5>
<p class="card-text" style="text-align: start">Founder of Leading Learners (100k+ students), Frequent speaker (40x)</p>
</div>
</div>
<h6>Since 1990, employment in STEM occupations has grown 79%. The global EdTech market is projected to reach $285.2 billion by 2027. In 2015, some 40 percent of all U.S. 15-year-old students expected to have either a health or STEM career at age 30. The STEM field is growing in a fast-paced arena and ripe for your innovation to come through. Tune into this talk to gain tools, insights, and ideas on how to diversify your options as a student interested in STEM —anywhere from high school to post-grad.</h6>
</div>
</div>
<div class="row schedule-item">
<div style="width: 25px; height: 25px; background-color: #6e82b8; margin-right: 10px; border-radius: 50%"></div>
<div class="col-md-2" style="max-width: 100px">
<time>11:00 AM</time>
</div>
<div class="col-md-10" style="width: 70%">
<h4> Building a career in STEM</h4>
</div>
</div>
<div class="row schedule-item">
<div style="width: 25px; height: 25px; background-color: #f6f7fd; margin-right: 10px; border-radius: 50%"></div>
<div class="col-md-2" style="max-width: 100px">
<time>12:00 PM</time>
</div>
<div class="col-md-10" style="width: 70%">
<h4>Lunch break & Judging</h4>
</div>
</div>
<div class="row schedule-item">
<div style="width: 25px; height: 25px; background-color: #f6f7fd; margin-right: 10px; border-radius: 50%"></div>
<div class="col-md-2" style="max-width: 100px">
<time>2:00 PM</time>
</div>
<div class="col-md-10" style="width: 70%">
<h4>Closing Ceremony </h4>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Schedule Section -->
<section id="speakers" class="section-with-bg">
<div class="container" data-aos="fade-up" style="margin-bottom: 30px">
<div class="section-header">
<h2>Speakers</h2>
</div>
<div class="row flex-nowrap clearfix" data-aos="zoom-in" data-aos-delay="100" style="overflow-x: scroll; overflow-y: hidden; height: 560px;">
<div class="person col-lg-6 col-md-9 col-xs-12" style="display:flex; flex-direction: row; align-items: center; justify-content: center; width: 450px; padding: 0px; margin-right: 10px; margin-left: 10px;">
<div class="card card-custom card-custom-small"
style=" height: 95%; width: 100%; display: flex; flex-direction: column; justify-content: start; align-items: start;">
<br>
<img class="card-img-top card-img-custom-small" src="/headshots/Keynote1-BrianDean.png"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small">
<h3 class="card-title" style="font-weight: bold; text-align: left">
Brian Dean </h3>
<h6 class="card-text" ><br>Head of USACO<br> Director of CS at Clemson University</h6>
<hr>
<p class="card-text">Brian Dean earned his undergraduate and graduate degrees from MIT, and is currently professor and chair of computer science in the School of Computing at Clemson University. His research interests span most of algorithmic computer science, with current emphasis on biomedical applications. Dr. Dean also serves as director of the USACO, which identifies and trains top high-school students in algorithmic computing and selects the team of top students representing the USA at the International Olympiad in Informatics each year.</p>
</div>
</div>
</div>
<div class="person col-lg-6 col-md-9 col-xs-12" style="display:flex; flex-direction: row; align-items: center; justify-content: center;width: 450px; padding: 0px; margin-right: 10px; margin-left: 10px;">
<div class="card card-custom card-custom-small"
style=" height: 95%; width: 100%; display: flex; flex-direction: column; justify-content: start; align-items: start;">
<br>
<img class="card-img-top card-img-custom-small" src="/headshots/Speaker1-DamianMusk.png"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small">
<h3 class="card-title" style="font-weight: bold; text-align: left">
Damian Musk </h3>
<h6 class="card-text" ><br>Co-founder (3x)<br>Frequent speaker</h6>
<hr>
<p class="card-text">Damian Musk is a rising sophomore at Stanford Online High School and aspires to research theoretical physics, particularly condensed matter physics and applications in quantum information, currently working in related fields at Caltech and Fermilab Theory. He frequently gives talks on scientific developments in a number of fields, including applied psychology and technology ethics.</p>
</div>
</div>
</div>
<div class="person col-lg-6 col-md-9 col-xs-12" style="display:flex; flex-direction: row; align-items: center; justify-content: center; width: 450px; padding: 0px; margin-right: 10px; margin-left: 10px;">
<div class="card card-custom card-custom-small"
style=" height: 95%; width: 100%; display: flex; flex-direction: column; justify-content: start; align-items: start;">
<br>
<img class="card-img-top card-img-custom-small" src="/headshots/Speaker2-PeterWashington.png"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small">
<h3 class="card-title" style="font-weight: bold; text-align: left">
Peter Washington
</h3>
<h6 class="card-text" ><br>Founder of MLpro<br>Stanford PhD</h6>
<hr>
<p class="card-text">Peter is entering his final year as a PhD student at Stanford University in Bioengineering specializing in AI for Healthcare. His research focuses on digital diagnostics for pediatric autism using crowdsourcing and computer vision. He is also the founder of MLPro.io, a website for data science and machine learning coding practice. Prior to enrolling in the PhD program, he completed a Master's in Computer Science from Stanford and a Bachelor's in Computer Science from Rice University.</p>
</div>
</div>
</div>
<div class="person col-lg-6 col-md-9 col-xs-12" style="display:flex; flex-direction: row; align-items: center; justify-content: center; width: 450px; padding: 0px; margin-right: 10px; margin-left: 10px;;">
<div class="card card-custom card-custom-small"
style=" height: 95%; width: 100%; display: flex; flex-direction: column; justify-content: start; align-items: start;">
<br>
<img class="card-img-top card-img-custom-small" src="/headshots/Keynote2-TarikhCampbell.png"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small">
<h3 class="card-title" style="font-weight: bold; text-align: left">
Tarikh Campbell
</h3>
<h6 class="card-text" ><br>Microsoft Program Manager<br>MIT graduate</h6>
<hr>
<p class="card-text">Tarikh Campbell is the Program Manager for Workplace Inclusion at Microsoft New England Research & Development. He works with many groups and industry leaders to create more equitable and inclusive pathways for aspiring technology leaders. Tarikh was the former Senior Director of Marketing at The Partnership, Inc., one of the most highly regarded facilitators of leadership development programming and networking for Massachusetts’ professionals of color. He is a frequent speaker on diversity, equity and inclusion at industry, university, and nonprofit events.</p>
</div>
</div>
</div>
<div class="person col-lg-6 col-md-9 col-xs-12" style="display:flex; flex-direction: row; align-items: center; justify-content: center; width: 450px; padding: 0px; margin-right: 10px; margin-left: 10px;">
<div class="card card-custom card-custom-small"
style=" height: 95%; width: 100%; display: flex; flex-direction: column; justify-content: start; align-items: start;">
<br>
<img class="card-img-top card-img-custom-small" src="/headshots/Speaker3-GaliciaGordon.png"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small">
<h3 class="card-title" style="font-weight: bold; text-align: left">
Galicia Gordon
</h3>
<h6 class="card-text" ><br>Founder of Leading Learners (100k+ students)<br>Frequent speaker (40x)</h6>
<hr>
<p class="card-text">Galicia Gordon is the Founder of Leading Learners, a global platform with a mission of supporting students through free and accessible resources. Leading Learners has reached students from all corners of the world, including students from Harvard, Columbia, McGill, Oxford, among several top tier institutes. She started her startup Leading Learners as a student in high school, and has since reached 100,000 students globally. Ask Galicia about tips to starting a global platform and overall more meaningful design and work decisions.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="supporters" class="section-with-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Sponsors</h2>
<a style="margin: 5px" href="/ADL-Sponsor-Package.pdf">See our sponsorship package</a>
</div>
<div class="row no-gutters supporters-wrap clearfix" data-aos="zoom-in" data-aos-delay="100">
<a class="col-lg-3 col-md-4 col-xs-6" href="https://www.linode.com">
<div class="supporter-logo">
<img src="img/sponsors/linode.png" class="img-fluid" alt="">
</div>
</a>
<a class="col-lg-3 col-md-4 col-xs-6" href="https://econhacks.org/">
<div class="supporter-logo" >
<img src="img/sponsors/econhacks.jpg" class="img-fluid" alt="">
</div>
</a>
<a class="col-lg-3 col-md-4 col-xs-6" href="https://replit.com">
<div class="supporter-logo">
<img src="img/sponsors/replit.svg" class="img-fluid" alt="">
</div>
</a>
<a class="col-lg-3 col-md-4 col-xs-6" href="https://balsamiq.com">
<div class="supporter-logo">
<img src="img/sponsors/balsamiq-logo-print.png" class="img-fluid" alt="">
</div>
</a>
</div>
<div class="row no-gutters supporters-wrap clearfix"
style="display: flex; flex-direction: row; justify-content: center" data-aos="zoom-in"
data-aos-delay="100">
<a class="col-lg-3 col-md-4 col-xs-6" href="https://angelasunconsulting.com">
<div class="supporter-logo">
<img src="img/sponsors/asconsulting.png" class="img-fluid" alt="">
</div>
</a>
<a class="col-lg-3 col-md-4 col-xs-6" href="https://www.interviewcake.com">
<div class="supporter-logo">
<img src="img/sponsors/interview-cake.jpg" class="img-fluid" alt="">
</div>
</a>
<a class="col-lg-3 col-md-4 col-xs-6" href="https://www.sublimehq.com">
<div class="supporter-logo">
<img src="img/sponsors/sublime.png" class="img-fluid" alt="">
</div>
</a>
<a class="col-lg-3 col-md-4 col-xs-6" href="https://www.wolframalpha.com/">
<div class="supporter-logo">
<img src="img/sponsors/wolfram.png" class="img-fluid" alt="">
</div>
</a>
</div>
<div class="row no-gutters supporters-wrap clearfix"
style="display: flex; flex-direction: row; justify-content: center" data-aos="zoom-in"
data-aos-delay="100">
<a class="col-lg-3 col-md-4 col-xs-6" href="https://www.hackathonsinternational.com">
<div class="supporter-logo" >
<img src="img/sponsors/HackIntl.png" style="background-color: black" class="img-fluid" alt="">
</div>
</a>
<a class="col-lg-3 col-md-4 col-xs-6" href="https://www.qoom.io">
<div class="supporter-logo" >
<img src="img/sponsors/qoom.png" class="img-fluid" alt="">
</div>
</a>
<a class="col-lg-3 col-md-4 col-xs-6" href="https://utm.guru/udBnf">
<div class="supporter-logo" >
<img src="img/sponsors/slingshot.png" style="background-color: black" class="img-fluid" alt="">
</div>
</a>
<a class="col-lg-3 col-md-4 col-xs-6" href="https://1password.com">
<div class="supporter-logo">
<img src="img/sponsors/1password.png" class="img-fluid" alt="">
</div>
</a>
</div>
</div>
</section><!-- End Sponsors Section -->
<section id="team" class="section-with-bg">
<div class="container" data-aos="fade-up" style="margin-bottom: 30px">
<div class="section-header">
<h2>Our Team</h2>
</div>
<div class="">
<h3>Leadership Team</h3>
</div>
<div class="row no-gutters supporters-wrap clearfix" data-aos="zoom-in" data-aos-delay="100">
<div class="person col-lg-3 col-md-4 col-xs-6">
<div class="card card-custom card-custom-small"
style="display: flex; flex-direction: row; background-color: #f6f7fd">
<img class="card-img-top card-img-custom-small" src="/img/team/krish.jpg"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small">
<h5 class="card-title" style="font-weight: bold; text-align: start">
Krish </h5>
<p class="card-text" style="text-align: start">Executive Director</p>
</div>
</div>
</div>
<div class="person col-lg-3 col-md-4 col-xs-6">
<div class="card card-custom card-custom-small"
style="display: flex; flex-direction: row; background-color: #f6f7fd">
<img class="card-img-top card-img-custom-small" src="/img/team/kabir.png"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small">
<h5 class="card-title" style="font-weight: bold; text-align: start">
Kabir </h5>
<p class="card-text" style="text-align: start">Director of Tech</p>
</div>
</div>
</div>
<div class="person col-lg-3 col-md-4 col-xs-6">
<div class="card card-custom card-custom-small"
style="display: flex; flex-direction: row; background-color: #f6f7fd">
<img class="card-img-top card-img-custom-small" src="/img/team/shafin.png"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small">
<h5 class="card-title" style="font-weight: bold; text-align: start">
Shafin </h5>
<p class="card-text" style="text-align: start">Director of Ops</p>
</div>
</div>
</div>
<div class="person col-lg-3 col-md-4 col-xs-6">
<div class="card card-custom card-custom-small"
style="display: flex; flex-direction: row; background-color: #f6f7fd">
<img class="card-img-top card-img-custom-small" src="/img/team/ishir.png"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small">
<h5 class="card-title" style="font-weight: bold; text-align: start">
Ishir </h5>
<p class="card-text" style="text-align: start">Director of Outreach</p>
</div>
</div>
</div>
</div>
</div>
<div class="container" data-aos="fade-up">
<div class="">
<h3>Officer Team</h3>
</div>
<div class="row no-gutters supporters-wrap clearfix" data-aos="zoom-in" data-aos-delay="100">
<div class="person col-lg-3 col-md-4 col-xs-6">
<div class="card card-custom card-custom-small"
style="display: flex; flex-direction: row; background-color: #f6f7fd">
<img class="card-img-top card-img-custom-small" src="/img/team/sarthak.png"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small">
<h5 class="card-title" style="font-weight: bold; text-align: start">
Sarthak </h5>
<p class="card-text" style="text-align: start">Website Lead</p>
</div>
</div>
</div>
<div class="person col-lg-3 col-md-4 col-xs-6">
<div class="card card-custom card-custom-small"
style="display: flex; flex-direction: row; background-color: #f6f7fd">
<img class="card-img-top card-img-custom-small" src="/img/team/athreya.png"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small">
<h5 class="card-title" style="font-weight: bold; text-align: start">
Athreya </h5>
<p class="card-text" style="text-align: start">Workshops Lead</p>
</div>
</div>
</div>
<div class="person col-lg-3 col-md-4 col-xs-6">
<div class="card card-custom card-custom-small"
style="display: flex; flex-direction: row; background-color: #f6f7fd">
<img class="card-img-top card-img-custom-small" src="/img/team/claire.png"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small">
<h5 class="card-title" style="font-weight: bold; text-align: start">
Claire </h5>
<p class="card-text" style="text-align: start">Partnerships Lead</p>
</div>
</div>
</div>
<div class="person col-lg-3 col-md-4 col-xs-6">
<div class="card card-custom card-custom-small"
style="display: flex; flex-direction: row; background-color: #f6f7fd">
<img class="card-img-top card-img-custom-small" src="/img/team/cynthia.png"
alt="Profile Photo">
<div class="card-body-custom card-body-custom-small" style="text-align: start">
<h5 class="card-title" style="font-weight: bold; text-align: start">
Cynthia </h5>
<p class="card-text" style="text-align: start">Design Lead</p>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Sponsors Section -->
<!-- <section id="judges" class="section-with-bg" style="padding-top: 50px">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Judges</h2>
</div>
<div class="row no-gutters supporters-wrap clearfix" data-aos="zoom-in" data-aos-delay="100">
<center>
<h1>Coming Soon</h1>
</center>
</div>
</div>
</section>
<section id="mentors" class="section-with-bg" style="padding-top: 50px">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Mentors</h2>
</div>
<div class="row no-gutters supporters-wrap clearfix" data-aos="zoom-in" data-aos-delay="100">
<center>
<h1>Coming Soon</h1>
</center>
</div>
</div>
</section> -->
<!-- ======= Supporters Section ======= -->
<!-- ======= F.A.Q Section ======= -->
<section id="faq">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Frequently Asked Questions</h2>
</div>
<div class="row justify-content-center" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-9">
<ul class="faq-list">
<li>
<div data-bs-toggle="collapse" class="collapsed question" href="#faq1">Who can attend?
<i class="bi bi-chevron-down icon-show"></i><i
class="bi bi-chevron-up icon-close"></i></div>
<div id="faq1" class="collapse" data-bs-parent=".faq-list">
<p>
All students in grades 6-12 are welcome to attend! Unlike most of our monthly
workshops, this is an international event, so all students across the world are welcome to
attend.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq2" class="collapsed question">How will the event be
held?
<i
class="bi bi-chevron-down icon-show"></i><i
class="bi bi-chevron-up icon-close"></i></div>
<div id="faq2" class="collapse" data-bs-parent=".faq-list">
<p>
The event will be held virtually due to the ongoing COVID-19 pandemic. After
registration, participants will receive more detailed logistical information.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq3" class="collapsed question">What is the project
format?
<i
class="bi bi-chevron-down icon-show"></i><i
class="bi bi-chevron-up icon-close"></i></div>
<div id="faq3" class="collapse" data-bs-parent=".faq-list">
<p>
5 min (max) video that allows students to pitch a business plan. If students are not
comfortable submitting a video of themselves, they are also allowed to submit a
write up.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq4" class="collapsed question">How will project
submission work?
<i class="bi bi-chevron-down icon-show"></i><i
class="bi bi-chevron-up icon-close"></i></div>
<div id="faq4" class="collapse" data-bs-parent=".faq-list">
<p>
Students will be allowed to submit projects starting July 5, and the deadline for
projects is August 5th. You will submit your project via this <a
href="https://docs.google.com/forms/d/e/1FAIpQLSezDo56vF8m6qQvzJQ_CUQFVvWLyJHD386apnWzWZ_IX3mgxg/viewform">form</a>.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq5" class="collapsed question">What is unique about
this event?
<i
class="bi bi-chevron-down icon-show"></i><i
class="bi bi-chevron-up icon-close"></i></div>
<div id="faq5" class="collapse" data-bs-parent=".faq-list">
<p>
Many organizations, especially during the COVID pandemic, have hosted online
hackathons and summits. What makes this flagship Appathon event unique is its
emphasis on idea creation for apps. The widespread impact an app can have on the
world is unimaginable, and through our interactive workshops and prize-incentivized
competition, students will delve into the world of application development.
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq6" class="collapsed question">How can I sponsor
this event?
<i
class="bi bi-chevron-down icon-show"></i><i
class="bi bi-chevron-up icon-close"></i></div>
<div id="faq6" class="collapse" data-bs-parent=".faq-list">
<p>
Please check out the link to our sponsorship prospectus. Feel free to contact us
through our email: contact@appdevleague.org.
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</section><!-- End F.A.Q Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 footer-contact">
<h1 class="logo mr-auto">
<a href="/">
<span style="vertical-align: middle;">ADL</span>
</a>
</h1>
Copyright © 2019-21 by App Dev League, Inc. <br><br/>
Registered as a 501(c)(3) tax-deductible non profit organization (EIN: 85-3376559)<br><br>
<strong>Email:</strong> <a
href="mailto:contact@appdevleague.org">contact@appdevleague.org</a><br><br>
<br><br>
<p> Created and maintained by <a href="https://github.com/orgs/App-Dev-League" target="_blank">App
Dev League's</a> Tech Team</p>
</p>
</div>