-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1169 lines (1127 loc) · 57.6 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>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
"gtm.start": new Date().getTime(),
event: "gtm.js"
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != "dataLayer" ? "&l=" + l : "";
j.async = true;
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, "script", "dataLayer", "GTM-MRPP8J");
</script>
<!-- End Google Tag Manager -->
<!-- JSON-LD markup generated by Google Structured Data Markup Helper. -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Event",
"name": "Bitcamp",
"startDate": "2022-04-08",
"location": {
"@type": "Place",
"name": "Xfinity Center",
"address": {
"@type": "PostalAddress",
"streetAddress": "8500 Paint Branch Dr",
"addressLocality": "College Park",
"addressRegion": "Maryland",
"addressCountry": "USA",
"postalCode": "20740"
}
},
"image": "https://bit.camp/img/bitcamp.png",
"description": "Bitcamp is the University of Maryland's premier 36-hour hackathon, bringing together over 1,400 students, making it the largest collegiate hackathon on the East Coast.",
"url": "https://bit.camp/",
"offers": {
"@type": "Offer",
"price": "Free"
}
}
</script>
<!-- End Google JSON-LD -->
<!-- Begin Meta -->
<meta name="description"
content="Bitcamp is a place for exploration. You will have 36 hours to delve into your curiosities, learn something new, and make something awesome. With world-class mentors and hundreds of fellow campers, you're in for an amazing time. If you're ready for an adventure, see you by the fire!" />
<meta property="og:title" content="Bitcamp 2022" />
<meta property="og:site_name" content="Bitcamp 2022" />
<meta property="og:url" content="https://bit.camp/" />
<meta property="og:image" content="https://bit.camp/assets/img/badge.png" />
<meta property="og:description"
content="Bitcamp is a place for exploration. You will have 36 hours to delve into your curiosities, learn something new, and make something awesome. With world-class mentors and hundreds of fellow campers, you're in for an amazing time. If you're ready for an adventure, see you by the fire!" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:url" content="https://bit.camp/" />
<meta property="twitter:image" content="https://bit.camp/assets/img/badge.png" />
<meta name="twitter:title" content="Bitcamp 2022" />
<meta name="twitter:description"
content="Bitcamp is a place for exploration. You will have 36 hours to delve into your curiosities, learn something new, and make something awesome. With world-class mentors and hundreds of fellow campers, you're in for an amazing time. If you're ready for an adventure, see you by the fire!" />
<title>Bitcamp 2022</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- End Meta -->
<!-- Begin Favicons/Theme -->
<link rel="apple-touch-icon" sizes="180x180" href="./bitcamp-brand/favicons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./bitcamp-brand/favicons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./bitcamp-brand/favicons/favicon-16x16.png" />
<link rel="manifest" href="./bitcamp-brand/favicons/site.webmanifest" />
<link rel="mask-icon" href="./bitcamp-brand/favicons/safari-pinned-tab.svg" color="#ff6f3f" />
<link rel="shortcut icon" href="./bitcamp-brand/favicons/favicon.ico" />
<meta name="msapplication-TileColor" content="#ff6f3f" />
<meta name="msapplication-config" content="./bitcamp-brand/favicons/browserconfig.xml" />
<meta name="theme-color" content="#ffffff" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<!-- End Favicons/Theme -->
<!-- Begin CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link href="./assets/css/flickity.min.css" rel="stylesheet" />
<link href="./bitcamp-brand/bitcamp.css" rel="stylesheet" />
<link href="./assets/css/main.css" rel="stylesheet" />
<!-- End CSS -->
</head>
<div id="background">
<body>
<!-- Begin Navigation -->
<nav class="navbar navbar-light navbar-expand-sm fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="#hero">
<img src="bitcamp-brand/logos/bitcamp.png" />
<span>bitcamp</span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#linkContainer"
aria-controls="linkContainer" aria-expanded="false" aria-label="Toggle navigation">
<img class="navbar-toggler-icon" src="assets/img/hamburger.svg"></span>
</button>
<div id="linkContainer" class="navbar-collapse collapse">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#tracks">Tracks</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#mini-events">Mini Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#campfire-games">Campfire Games</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#schedule">Schedule</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faq">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#sponsors">Sponsors</a>
</li>
</ul>
</div>
</div>
<a class="mlh-trust-badge" id="mlh-trust-badge" href="https://mlh.io/"><img
src="https://s3.amazonaws.com/logged-assets/trust-badge/2022/mlh-trust-badge-2022-white.svg"
alt="Major League Hacking 2022 Hackathon Season"></a>
</nav>
<!-- End Navigation -->
<main>
<!-- Begin "Hero" -->
<section id="hero">
<div class="jumbotron">
<div id="hero-text">
<div class="logotype">bitcamp</div>
<div class="tagline">Adventure Awaits</div>
<div class="date">
<p>April 8<sup>th</sup> – 10<sup>th</sup>, 2022</p>
<a href="https://g.page/xfinity-center-umd?share">XFINITY Center</a>
<p>University of Maryland, College Park</p>
<p style="color: #ff6f3f;">Registrations are now closed!</p>
</div>
<!-- <div class="button-group">
<a href="apply.html" class="apply-button button">Apply now!</a>
<a href="https://forms.gle/6SS6oFnHFWBEdUYN8" class="minor-button button">Minors Application</a>
<a class="small button" href="mentor.html">Mentor</a>
<a class="small button" href="volunteer.html">Volunteer</a>
</div> -->
</div>
</div>
</section>
<!-- End "Hero" -->
<section id="hero-lower">
<!-- Begin "What is Bitcamp?" -->
<section id="intro" class="container">
<div class="row what-is-section gy-5">
<div id="what-is-section-text" class="col-md-6 d-flex justify-content-center flex-column">
<h2 class="section-title">What is Bitcamp?</h2>
<p>
Bitcamp is a 36 hour hackathon and the prime opportunity to delve into your curiosities,
learn something new, and build something awesome. With world-class mentors and 1,200+ fellow campers,
you're
in for an amazing experience. Whether you're a seasoned hacker or completely new to the world of
hacking,
we'll have something for you. If you're ready for an adventure, see you by the fire!
</p>
</div>
<div class="col-md-6">
<img class="what-is-img" src="assets/img/bitcamp-people.jpg" alt="Hackers enjoying Bitcamp">
</div>
</div>
</section>
<!-- End "What is Bitcamp?" -->
<br />
<!-- Begin "Tracks"-->
<section class="container">
<div id="tracks">
<h2 class="section-title">Tracks</h2>
<div class="row">
<div class="col-md-6 d-none d-md-block" style="border-right: 3px dashed var(--color-shadow)">
<div class="container">
<header>
<img src="assets/img/tracks/quantum-logo.png" alt="Quantum Logo">
<h2 class="track-head">Quantum</h2>
</header>
<footer>
<p>Our newest track! Hackers will learn more about the field of quantum computing with exclusive
mentors, sponsors, and workshops! Hackers will use their knowledge of Python and other computing
skills on educational and interactive Quantum Track activities.</p>
<!-- <a class="call-to-action">Click for More Info</a> -->
</footer>
</div>
</div>
<div class="col-md-6 d-md-none">
<div class="container">
<header>
<img src="assets/img/tracks/quantum-logo.png" alt="Quantum Logo">
<h2 class="track-head">Quantum</h2>
</header>
<footer>
<p>Our newest track! Hackers will learn more about the field of quantum computing with exclusive
mentors, sponsors, and workshops! Hackers will use their knowledge of Python and other computing
skills on educational and interactive Quantum Track activities.</p>
<!-- <a class="call-to-action">Click for More Info</a> -->
</footer>
</div>
</div>
<div class="col-md-6">
<hr class="d-sm-none" style="border: 3px solid var(--color-shadow)">
<div class="container">
<header>
<img src="assets/img/tracks/hardware-village.png" alt="Hardware Village Logo">
<h2 class="track-head">Hardware Village</h2>
</header>
<footer>
<p>Ever wanted to learn more about hacking with hardware? <strong>Hardware Village</strong> is a
place
where
you can
explore and learn cool things like soldering wires, building circuits, and programming
microcontrollers. Whether you’re a first-timer or a seasoned pro, there will be something
available
for everyone! Volunteers will be on deck at all times to show you the ropes and be well equipped
with
all your electronics needs.</p>
<a class="call-to-action" href="https://www.youtube.com/watch?v=skWDejKU2xs" tabindex="-1">Watch
the
Film</a>
</footer>
</div>
</div>
</div>
</div>
<br>
<br>
<div id="mini-events">
<h2 class="section-title">Mini Events</h2>
<div class="row">
<div class="col-md-6 d-none d-md-block" style="border-right: 3px dashed var(--color-shadow)">
<div class="container">
<header>
<img src="assets/img/tracks/colorwar.png" alt="Colorwar Logo">
<h2 class="track-head">Colorwar</h2>
</header>
<footer>
<p><strong>Colorwar</strong> is a rapid-fire live-design competition and one of the highlights of
Bitcamp. Compete in our online design challenge for a chance to draw in front of a live audience
at Bitcamp for some cool prizes!</p>
<a class="call-to-action" tabindex="-1"
href="https://medium.com/@bitcmp/calling-all-creatives-for-colorwar-443f19759cc2">Learn More</a>
</footer>
</div>
</div>
<div class="col-md-6 d-md-none">
<div class="container">
<header>
<img src="assets/img/tracks/colorwar.png" alt="Colorwar Logo">
<h2 class="track-head">Colorwar</h2>
</header>
<footer>
<p><strong>Colorwar</strong> is a rapid-fire live-design competition and one of the highlights of
Bitcamp. Compete in our online design challenge for a chance to draw in front of a live audience
at Bitcamp for some cool prizes!</p>
<a class="call-to-action" tabindex="-1"
href="https://medium.com/@bitcmp/calling-all-creatives-for-colorwar-443f19759cc2">Learn More</a>
</footer>
</div>
</div>
<div class="col-md-6">
<hr class="d-sm-none" style="border: 3px solid var(--color-shadow)">
<div class="container">
<header>
<img src="assets/img/tracks/design-den.png" alt="Design Den Logo">
<h2 class="track-head">Design Den</h2>
</header>
<footer>
<p>Need help designing your hack during Bitcamp? Stop by <strong>Design Den</strong>, and
Bitcamp’s design team will help you work on your hack’s user interface and user experience. It’s
like office hours, but for design 😎
</p>
<a class="call-to-action" tabindex="-1" href="https://www.youtube.com/watch?v=jjP1iaQka9Y">Watch
the
Film</a>
</footer>
</div>
</div>
</div>
</div>
</section>
<!-- End "Tracks"-->
<br />
<!-- Begin "Campfire Games" -->
<section id="campfire-games" class="container">
<div class="campfire-container">
<h2 class="section-title">Campfire Games</h2>
<div class="campfire-description">
<p>
The <strong>Campfire Games</strong> is a brand new way to learn, grow, and build
with the Bitcamp Community. At the start of this year's event, you will join one of three teams based
on your personality and interests—joining forces with hackers from around the world! By winning
unique
challenges, attending workshops, and participating in mini-events, you'll rack up points
for your team. At the end of Bitcamp, members of the winning team will receive limited edition Bitcamp
Apparel.
Find your community, develop your team identity, and collaborate on something bigger than yourself:
<strong>#AdventureAwaits</strong>
</p>
</div>
</div>
<br>
<div class="row" style="margin-right: 10vw;">
<div class="col-md-3">
<img class="marshie" src="assets/img/marshie_blue.png" alt="Blue marshie">
</div>
<div class="col-md-9">
<p class="marshie-paragraph">
The <strong class="blue">blue team</strong> is rational and clear-headed. Their curiosity and
intelligence
are some of their greatest assets in understanding and exploring the world around them.
</p>
</div>
</div>
<div class="row" style="margin-left: 10vw;">
<div class="col-md-3 order-md-2">
<img class="marshie" src="assets/img/marshie_green.png" alt="Green marshie" style="width:10vw;">
</div>
<div class="col-md-9 order-md-1">
<p class="marshie-paragraph">
The <strong class="green">green team</strong> is adaptable—always growing and thriving in new
and
challenging circumstances.
</p>
</div>
</div>
<div class="row" style="margin-right: 10vw">
<div class="col-md-3">
<img class="marshie" src="assets/img/marshie_red.png" alt="Red marshie">
</div>
<div class="col-md-9">
<p class="marshie-paragraph">
The <strong class="red">red team</strong> is passionate and fiery! Their emotion is their strength in
handling whatever comes their way.
</p>
</div>
</div>
</section>
<!-- Begin "Schedule" -->
<section id="schedule" class="container justify-content-center">
<div class="schedule-container">
<ul class="nav nav-tabs nav-justified" id="myTab" role="tablist" style="padding-top: 1rem; justify-content: center; align-items: center;">
<h2>Schedule</h2>
</ul>
<ul class="nav nav-tabs nav-justified" id="myTab" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link active" id="day1-tab" data-bs-toggle="tab" href="#day1" role="tab" aria-controls="day1"
aria-selected="true">
<span class="day">Fri</span>
<span class="date">April 8</span>
</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link" id="day2-tab" data-bs-toggle="tab" href="#day2" role="tab" aria-controls="day2"
aria-selected="false">
<span class="day">Sat</span>
<span class="date">April 9</span>
</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link" id="day3-tab" data-bs-toggle="tab" href="#day3" role="tab" aria-controls="day3"
aria-selected="false">
<span class="day">Sun</span>
<span class="date">April 10</span>
</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane fade active show" id="day1" role="tabpanel" aria-labelledby="day1-tab">
<table class="table schedule-table">
<tbody>
<tr>
<td>4:00 PM -<br>5:00 PM</td>
<td>Sponsor Check-In</td>
<td class="check-in">Check-In</td>
</tr>
<tr>
<td>5:00 PM -<br>7:00 PM</td>
<td>(Primary) Hacker Check-In</td>
<td class="check-in">Check-In</td>
</tr>
<tr>
<td>5:00 PM -<br>7:00 PM</td>
<td>Mentor/Volunteer Check-In</td>
<td class="check-in">Check-In</td>
</tr>
<tr>
<td>6:00 PM -<br>7:30 PM</td>
<td>Dinner</td>
<td class="food">Food Event</td>
</tr>
<tr>
<td>6:00 PM -<br>8:00 PM</td>
<td>Sponsor Fair</td>
<td class="main-event">Main Event</td>
</tr>
<tr>
<td>7:30 PM -<br>9:30 PM</td>
<td>Opening Ceremony</td>
<td class="main-event">Main Event</td>
</tr>
<tr>
<td>9:30 PM</td>
<td><strong>Hacking Starts</strong></td>
<td class="main-event">Main Event</td>
</tr>
<tr>
<td>9:30 PM -<br>10:30 PM</td>
<td>Quantum Track Workshop 1</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>9:30 PM -<br>10:30 PM</td>
<td>Bitcamp 101</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>10:00 PM -<br>11:00 PM</td>
<td>Dessert</td>
<td class="food">Food Event</td>
</tr>
<tr>
<td>10:30 PM -<br>11:30 PM</td>
<td>Team Formation</td>
<td class="mini-event">Mini Event</td>
</tr>
</tbody>
</table>
</div>
<div class="tab-pane fade" id="day2" role="tabpanel" aria-labelledby="day2-tab">
<table class="table schedule-table">
<tbody>
<tr>
<td>12:00 AM -<br>1:00 AM</td>
<td>Hungry Hungry Hippos</td>
<td class="mini-event">Mini Event</td>
</tr>
<tr>
<td>8:30 AM -<br>10:00 AM</td>
<td>Breakfast</td>
<td class="food">Food Event</td>
</tr>
<tr>
<td>9:00 AM -<br>9:45 AM</td>
<td>Building a Start-Up Right Out of College</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>9:00 AM -<br>10:00 AM</td>
<td>Dream of Coffee - Make the Coffee of Your Dream for 20 Cents in Minutes</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>9:00 AM -<br>10:00 AM</td>
<td>Quantum Track Workshop 2</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>9:00 AM -<br>12:00 PM</td>
<td>(Secondary) Hacker Check-in</td>
<td class="check-in">Check-In</td>
</tr>
<tr>
<td>10:00 AM -<br>11:00 AM</td>
<td>Hacking the Wireless World: An Intro to SDR</td>
<td class="workshop">Workshop</td>
</tr>
<!-- TITLE TBA STILL -->
<tr>
<td>10:00 AM -<br>1:00 PM</td>
<td>Design Den</td>
<td class="mini-event">Mini Event</td>
</tr>
<tr>
<td>10:30 AM -<br>11:30 AM</td>
<td>Two Six Technologies: Lessons Learned From Engineers</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>10:30 AM -<br>11:15 AM</td>
<td>Quantum Startup Foundry, Entrepreneurial Opportunities in Quantum</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>11:30 AM -<br>12:15 PM</td>
<td>Intro to ASL: Hackathon Edition</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>11:30 AM -<br>12:30 PM</td>
<td>Bloomberg Tech Interview Workshop</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>11:30 AM -<br>12:30 PM</td>
<td>Beginner's Guide to SQL (Cockroach Labs)</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>12:00 PM -<br>2:00 PM</td>
<td>Lunch</td>
<td class="food">Food Event</td>
</tr>
<tr>
<td>1:00 PM -<br>1:45 PM</td>
<td>Inclusive Design: How to avoid hidden biases related to race, gender, and sexuality</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>1:00 PM -<br>1:45 PM</td>
<td>Getting Started With Machine Learning</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>1:00 PM -<br>2:30 PM</td>
<td>Introduction to Flutter</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>2:00 PM -<br>3:00 PM</td>
<td>CoStar Panel</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>2:30 PM -<br>3:15 PM</td>
<td>Intro to Git and Github</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>2:30 PM -<br>3:30 PM</td>
<td>Quantum Track Workshop 3</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>3:00 PM -<br>4:00 PM</td>
<td>Learning Digital Logic Through Minecraft</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>3:00 PM -<br>5:00 PM</td>
<td>CoStar Interviews</td>
<td class="mini-event">Mini Event</td>
</tr>
<tr>
<td>3:30 PM -<br>4:15 PM</td>
<td>Effective Altruism: How To Optimize Your Positive Impact</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>4:00 PM -<br>5:30 PM</td>
<td>Create an API with NodeJs & Express</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>4:30 PM -<br>5:15 PM</td>
<td>Intro to Reading a Research Paper</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>5:00 PM -<br>6:00 PM</td>
<td>ColorWar</td>
<td class="mini-event">Mini Event</td>
</tr>
<tr>
<td>5:00 PM -<br>5:45 PM</td>
<td>Counter Terrorism Analytics</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>6:00 PM -<br>6:45 PM</td>
<td>Hosting Your ML Model on the Web</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>6:00 PM -<br>7:00 PM</td>
<td>Quantum Track Workshop 4</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>6:00 PM -<br>7:00 PM</td>
<td>Fireside Chat: Underrepresented Voices in STEM Panel</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>6:00 PM -<br>8:00 PM</td>
<td>Dinner</td>
<td class="food">Food Event</td>
</tr>
<tr>
<td>7:30 PM -<br>8:30 PM</td>
<td>What is a Computer? A Brief History of Computer Science</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>7:30 PM -<br>8:30 PM</td>
<td>Therapy Dog Session</td>
<td class="mini-event">Mini Event</td>
</tr>
<tr>
<td>7:30 PM -<br>8:30 PM</td>
<td>Starting Your Business at UMD with Hydraze</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>7:30 PM -<br>8:30 PM</td>
<td>Style Your Shell With Swagger</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>9:00 PM -<br>9:45 PM</td>
<td>Inclusive Design: Accessibility vs Inclusivity</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>9:00 PM -<br>10:00 PM</td>
<td>From Concept to Capital</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>9:00 PM -<br>10:00 PM</td>
<td>Building Python APIs with FastAPI</td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>9:00 PM -<br>10:00 PM</td>
<td>Salsa</td>
<td class="mini-event">Mini Event</td>
</tr>
<tr>
<td>10:00 PM -<br>11:30 PM</td>
<td>Dessert</td>
<td class="food">Food Event</td>
</tr>
</tbody>
</table>
</div>
<div class="tab-pane fade" id="day3" role="tabpanel" aria-labelledby="day3-tab">
<table class="table schedule-table">
<tbody>
<tr>
<td>12:00 AM -<br>1:00 AM</td>
<td>Marshmallow Tower/Chubby Bunny</td>
<td class="mini-event">Mini Event</td>
</tr>
<tr>
<td>7:30 AM -<br>8:30 AM</td>
<td>How to Submit Your Hack <span class="text-muted">(Office Hours)</span></td>
<td class="workshop">Workshop</td>
</tr>
<tr>
<td>8:00 AM -<br>10:00 AM</td>
<td>Breakfast</td>
<td class="food">Food Event</td>
</tr>
<tr>
<td>9:00 AM </td>
<td><strong>Hacking Ends</strong> <span class="text-muted">(submissions due)</span></td>
<td class="main-event">Main Event</td>
</tr>
<tr>
<td>10:30 AM -<br>11:30 PM</td>
<td>Quantum Track Wrap-up</td>
<td class="main-event">Main Event</td>
</tr>
<tr>
<td>10:30 AM -<br>12:30 PM</td>
<td>Project Expo</td>
<td class="main-event">Main Event</td>
</tr>
<tr>
<td>12:00 PM -<br>1:30 PM</td>
<td>Lunch</td>
<td class="food">Food Event</td>
</tr>
<tr>
<td>1:30 PM -<br>3:30 PM</td>
<td>Closing Ceremony</td>
<td class="main-event">Main Event</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<p class="text-center mt-3">All times are in Eastern Daylight Time (EDT)</p>
</section>
<!-- End "Schedule" -->
<br />
<!-- Begin "FAQ" -->
<section id="faq" class="container">
<div class="accordion accordion-flush card" id="accordionFlush">
<h2 class="section-title">FAQ</h2>
<div class="row">
<div class="col-md-6">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading1">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapse1" aria-expanded="false" aria-controls="flush-collapse1">
What is Bitcamp?
</button>
</h2>
<div id="flush-collapse1" class="accordion-collapse collapse" aria-labelledby="flush-heading1"
data-bs-parent="#accordionFlush">
<div class="accordion-body">
Bitcamp is a hackathon that values participant experience and
mentorship over competitiveness and
points. Come to have fun with your friends, learn something new, eat
s'mores, and have a generally
awesome time.
We have all sorts of crazy activities planned for you...come find
out the rest!
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading2">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapse2" aria-expanded="false" aria-controls="flush-collapse2">
What's a hackathon?
</button>
</h2>
<div id="flush-collapse2" class="accordion-collapse collapse" aria-labelledby="flush-heading2"
data-bs-parent="#accordionFlush">
<div class="accordion-body">
A hackathon is a creative marathon all about building something
cool. Students are encouraged to
come up with an idea, form teams, and then build out that idea
(typically through programming!) into
a product in 36 hours.
We want you to take something you love (sports, art, camping,
anything!) and combine it with
technology to make something awesome. It's a great time to push the
envelope and learn some new
skills.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading3">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapse3" aria-expanded="false" aria-controls="flush-collapse3">
Do I have to be experienced to attend?
</button>
</h2>
<div id="flush-collapse3" class="accordion-collapse collapse" aria-labelledby="flush-heading3"
data-bs-parent="#accordionFlush">
<div class="accordion-body">
No prior experience is required to attend Bitcamp. Exciting
workshops and helpful mentors will give
you the resources to help you build your dream project. Just come
with your head and a willingness
to learn!
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading4">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapse4" aria-expanded="false" aria-controls="flush-collapse4">
Is it okay if I don’t have an idea or team?
</button>
</h2>
<div id="flush-collapse4" class="accordion-collapse collapse" aria-labelledby="flush-heading4"
data-bs-parent="#accordionFlush">
<div class="accordion-body">
No idea? No team? No problem! There will be dedicated events during
Bitcamp for idea creation and
team formations.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading5">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapse5" aria-expanded="false" aria-controls="flush-collapse5">
Can I attend if I’m a minor (under 18)?
</button>
</h2>
<div id="flush-collapse5" class="accordion-collapse collapse" aria-labelledby="flush-heading5"
data-bs-parent="#accordionFlush">
<div class="accordion-body">
Yes! Minors can attend with a chaperone, and can apply <a
href="https://forms.gle/6SS6oFnHFWBEdUYN8">here</a>!
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading6">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapse6" aria-expanded="false" aria-controls="flush-collapse6">
Can I attend if I don’t want to participate in hacking?
</button>
</h2>
<div id="flush-collapse6" class="accordion-collapse collapse" aria-labelledby="flush-heading6"
data-bs-parent="#accordionFlush">
<div class="accordion-body">
Although Bitcamp is a hackathon, there is no requirement to hack if
you don’t want to. If hacking
isn’t your thing, you can still participate in our exciting
workshops and fun mini-events.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading7">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapse7" aria-expanded="false" aria-controls="flush-collapse7">
How else can I get involved?
</button>
</h2>
<div id="flush-collapse7" class="accordion-collapse collapse" aria-labelledby="flush-heading7"
data-bs-parent="#accordionFlush">
<div class="accordion-body">
We'd love to get you on our volunteering or mentoring teams! If
you'd like to help, please fill out
our mentor form or our volunteer form. Also, be sure to follow us on
<a href="https://www.facebook.com/bitcmp/">Facebook</a> and <a
href="https://twitter.com/bitcmp?lang=en">Twitter</a> for updates!
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading8">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapse8" aria-expanded="false" aria-controls="flush-collapse8">
Teams
</button>
</h2>
<div id="flush-collapse8" class="accordion-collapse collapse" aria-labelledby="flush-heading8"
data-bs-parent="#accordionFlush">
<div class="accordion-body">
Projects are submitted by teams to DevPost. You don't need to
finalize your team until project
submissions are due during the event. You may work individually or
in a team of up to four campers.
Don’t have a team in mind? No problem! Bitcamp will kick off with an
optional team formation event.
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading9">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapse9" aria-expanded="false" aria-controls="flush-collapse9">
When do decisions for admittances go out?
</button>
</h2>
<div id="flush-collapse9" class="accordion-collapse collapse" aria-labelledby="flush-heading9"
data-bs-parent="#accordionFlush">
<div class="accordion-body">
Admittance into Bitcamp will be going out on a rolling basis.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading10">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapse10" aria-expanded="false" aria-controls="flush-collapse10">
Who can apply to Bitcamp?
</button>
</h2>
<div id="flush-collapse10" class="accordion-collapse collapse" aria-labelledby="flush-heading10"
data-bs-parent="#accordionFlush">
<div class="accordion-body">
Any college student or high school student is more than welcome to apply to
Bitcamp!
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading11">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapse11" aria-expanded="false" aria-controls="flush-collapse11">
Is Bitcamp free to attend?
</button>
</h2>
<div id="flush-collapse11" class="accordion-collapse collapse" aria-labelledby="flush-heading11"
data-bs-parent="#accordionFlush">
<div class="accordion-body">
Yes! There is no cost to attend Bitcamp.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading12">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapse12" aria-expanded="false" aria-controls="flush-collapse12">
Can people not registered for Bitcamp attend?
</button>
</h2>
<div id="flush-collapse12" class="accordion-collapse collapse" aria-labelledby="flush-heading12"
data-bs-parent="#accordionFlush">
<div class="accordion-body">
People not registered for Bitcamp will not be allowed entrance to
the hackathon.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading13">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapse13" aria-expanded="false" aria-controls="flush-collapse13">
What have people made in the past at Bitcamp?
</button>
</h2>
<div id="flush-collapse13" class="accordion-collapse collapse" aria-labelledby="flush-heading13"
data-bs-parent="#accordionFlush">
<div class="accordion-body">
From Augmented Reality Human-Scale Pong to a research paper
detailing vulnerabilities in Google’s
reCaptcha system, the projects at Bitcamp span across all categories
and interests. You can check
out all of the amazing submissions at the <a href="https://bitcamp2019.devpost.com/">Bitcamp
2019
Devpost</a>!
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading14">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapse14" aria-expanded="false" aria-controls="flush-collapse14">
What hardware is provided at Bitcamp?
</button>
</h2>
<div id="flush-collapse14" class="accordion-collapse collapse" aria-labelledby="flush-heading14"
data-bs-parent="#accordionFlush">
<div class="accordion-body">
Arduinos, sensors (ultrasonic, photoresistors, thermistors), inputs
(buttons, switches), outputs
(LEDs, piezo speakers, 7-segment displays, micro servo motors),
passive components (resistors,
capacitors, diodes), and wiring.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading14">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapse15" aria-expanded="false" aria-controls="flush-collapse15">
Do I need to wear a mask?
</button>
</h2>
<div id="flush-collapse15" class="accordion-collapse collapse" aria-labelledby="flush-heading15"
data-bs-parent="#accordionFlush">
<div class="accordion-body">
Yes, all attendees are required to wear a mask at all times except when eating and sleeping.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading15">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"