-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1334 lines (1293 loc) · 46.4 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.0" />
<title>MasseyHacks IX</title>
<!-- Preconnect -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="preconnect" href="https://cdnjs.cloudflare.com" />
<link rel="preconnect" href="https://cdn.jsdelivr.net" />
<link rel="preconnect" href="https://s3.amazonaws.com" />
<!-- Google Verification -->
<meta
name="google-site-verification"
content="mNqGBDXOgqYZfCAW6P3Ab-7dv--ePsjdB9RrqpEOe3k"
/>
<!-- Meta -->
<link rel="canonical" href="https://masseyhacks.ca/" />
<meta
name="description"
content="Windsor-Essex's 9th high school hackathon. Create memories and guide the story of your STEM journey at MasseyHacks IX!"
/>
<meta property="og:title" content="MasseyHacks IX" />
<meta
property="og:description"
content="Windsor-Essex's 9th high school hackathon. Create memories and guide the story of your STEM journey at MasseyHacks IX!"
/>
<meta
property="og:image"
content="https://masseyhacks.ca/assets/logo.svg"
/>
<meta property="og:url" content="https://masseyhacks.ca/" />
<meta property="og:type" content="website" />
<meta property="twitter:title" content="MasseyHacks IX" />
<meta
property="twitter:description"
content="Windsor-Essex's 9th high school hackathon. Create memories and guide the story of your STEM journey at MasseyHacks IX!"
/>
<!-- Favicon -->
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<!-- AOS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/aos/3.0.0-beta.6/aos.css"
/>
<!-- Bootstrap -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.2.3/css/bootstrap.min.css"
/>
<!-- Stylesheets -->
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/hero.css" />
<link rel="stylesheet" href="css/scrollbar.css" />
<link rel="stylesheet" href="css/clouds.css" />
<link rel="stylesheet" href="css/nav.css" />
<link rel="stylesheet" href="css/socialdock.css" />
<link rel="stylesheet" href="css/termynal.css" />
<link rel="stylesheet" href="css/faq.css" />
<link rel="stylesheet" href="css/sponsors.css" />
<link rel="stylesheet" href="css/about.css" />
<link rel="stylesheet" href="css/carousel.css" />
<link rel="stylesheet" href="css/footer.css" />
<link rel="stylesheet" href="css/schedule.css" />
<link rel="stylesheet" href="css/classic-10_7_dtp.css" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
/>
<!-- Splide -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/splidejs/4.1.4/css/splide.min.css"
/>
<!-- JS Files -->
<script src="js/main.js" defer></script>
<script src="js/countdown.js" defer></script>
<script src="js/init.js" defer></script>
<script src="js/anchorscroll.js" defer></script>
<script src="js/schedule.js" defer></script>
<script
src="js/termynal.js"
data-termynal-container="#termynal"
defer
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.2.3/js/bootstrap.min.js"
defer
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/splidejs/4.1.4/js/splide.min.js"
defer
></script>
<script
src="https://cdn.jsdelivr.net/npm/@splidejs/[email protected]/dist/js/splide-extension-auto-scroll.min.js"
defer
></script>
</head>
<body>
<!-- Navigation menu -->
<header>
<nav>
<div class="bg-white nav-burger" onclick="toggleNavLinks()">
<div></div>
<div></div>
<div></div>
</div>
<ul class="bg-white unstyled-list nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#partners">Partners</a></li>
</ul>
</nav>
</header>
<!-- Background -->
<div id="background"></div>
<!-- Social icons on left side -->
<div id="socialdock" class="glass-card bg-white">
<a href="https://instagram.com/masseyhacks" target="_blank">
<i class="fab fa-instagram-square"></i>
</a>
<a href="mailto:[email protected]" target="_blank">
<i class="fas fa-envelope-square"></i>
</a>
<a href="https://twitter.com/masseyhacks" target="_blank">
<i class="fab fa-twitter-square"></i>
</a>
<a
href="https://www.youtube.com/channel/UCTYmXP2HjkqhLV1OW4EDW5Q"
target="_blank"
>
<i class="fab fa-youtube-square"></i>
</a>
<a href="https://www.facebook.com/masseyhacks" target="_blank">
<i class="fab fa-facebook-square"></i>
</a>
</div>
<script>
window.addEventListener("load",()=>{
window.addEventListener("scroll",()=>{
var social = document.getElementById("socialdock").getBoundingClientRect();
var schedule = document.querySelector(".schedule-container").getBoundingClientRect();
if(window.innerWidth<=1200||window.hamOpened){
return;
}
if((social.top<schedule.bottom&&social.top>schedule.top)||(social.bottom<schedule.bottom&&social.bottom>schedule.top)){
document.getElementById("socialdock").style.opacity = "0";
}else{
document.getElementById("socialdock").style.opacity = "0.8";
}
});
});
</script>
<!-- Clouds -->
<div id="clouds">
<div id="clouds-1"></div>
<div id="clouds-2"></div>
<div id="clouds-3"></div>
<div id="clouds-4"></div>
<div id="clouds-5"></div>
</div>
<!-- Hero -->
<section id="home" data-aos="zoom-out" data-aos-duration="600">
<div id="hero-glass" class="glass-card">
<img src="assets/logo.svg" alt="Logo" class="hero-logo" />
<h1>MasseyHacks IX</h1>
<p class="hero-date">May 6–7th, 2023</p>
<div class="countdown-border">
<div class="countdown" data-date="07-05-2023" data-time="5:00">
<div class="day">
<span class="num"></span><span class="word"></span>
</div>
<div class="hour">
<span class="num"></span><span class="word"></span>
</div>
<div class="min">
<span class="num"></span><span class="word"></span>
</div>
<div class="sec">
<span class="num"></span><span class="word"></span>
</div>
</div>
</div>
<div id="socialhoriz">
<a href="https://instagram.com/masseyhacks" target="_blank">
<i class="fab fa-instagram-square"></i>
</a>
<a href="mailto:[email protected]" target="_blank">
<i class="fas fa-envelope-square"></i>
</a>
<a href="https://twitter.com/masseyhacks" target="_blank">
<i class="fab fa-twitter-square"></i>
</a>
<a
href="https://www.youtube.com/channel/UCTYmXP2HjkqhLV1OW4EDW5Q"
target="_blank"
>
<i class="fab fa-youtube-square"></i>
</a>
<a href="https://www.facebook.com/masseyhacks" target="_blank">
<i class="fab fa-facebook-square"></i>
</a>
</div>
<div style="font-size: 1.2rem; text-align: center; margin-top: 15px;">
Thank you all for coming. <br> See you at MasseyHacks X!
</div>
<a class="btn" id="transparency-report" href="./files/transparency-report.pdf">
Transparency Report
</a>
<!-- <div id="application-div" class="btn">
<div id="application-overlay">
<p>Apply Now</p>
</div>
<div id="application-links">
<a href="https://form.typeform.com/to/OLlHOhvU" target="_blank"
>Mentor</a
>
<a href="https://form.typeform.com/to/sYiBl4F1" target="_blank"
>Hacker</a
>
<a href="https://form.typeform.com/to/ltu4rNqD" target="_blank"
>Volunteer</a
>
</div>
</div> -->
<!--
<script>
var inside = false;
document.getElementById("hero-glass").onmouseenter = () => {
inside = true;
document.getElementById("application-div").style.animation =
"appexpand .15s linear forwards";
document.querySelector("#application-overlay p").style.animation =
"appfadeout .15s linear forwards";
setTimeout(() => {
if (!inside) {
return;
}
document.getElementById("application-overlay").style.display =
"none";
document.getElementById("application-links").style.display =
"flex";
document.getElementById("application-div").style.padding = "0";
document.getElementById("application-links").style.animation =
"appfadein .15s linear forwards";
document.getElementById("application-div").style.cursor = "unset";
}, 150);
};
document.getElementById("hero-glass").onmouseleave = () => {
inside = false;
document.getElementById("application-div").style.cursor = "pointer";
document.getElementById("application-links").style.animation =
"appfadeout .15s linear forwards";
setTimeout(() => {
if (inside) {
return;
}
document.getElementById("application-div").style.animation =
"appshrink .15s linear forwards";
document.getElementById("application-div").style.padding =
"0.6em 1.5em";
document.getElementById("application-links").style.display =
"none";
document.querySelector("#application-overlay p").style.animation =
"appfadein .15s linear forwards";
document.getElementById("application-overlay").style.display =
"block";
}, 150);
};
if (
"ontouchstart" in window &&
matchMedia("(hover: none), (pointer: coarse)").matches
) {
document.getElementById("application-div").onclick =
document.getElementById("hero-glass").onmouseenter;
document.getElementById("hero-glass").onmouseenter = () => {};
document.getElementById("hero-glass").onmouseleave = () => {};
}
</script>
</div> -->
</section>
<!-- About -->
<section
id="about"
class="row"
style="grid-auto-flow: row"
data-aos="fade-right"
>
<!-- The termynal container -->
<div
class="col-md-9 shadow termynal"
id="termynal"
data-termynal
data-ty-typeDelay="40"
data-ty-lineDelay="700"
>
<span data-ty="input" data-ty-prompt=">>>">what_is_masseyhacks()</span>
<span data-ty
>MasseyHacks is a high school hackathon — an event perfect for
students fascinated by the world of technology. This 24-hour event is
an opportunity for students to explore the realm of computer science
and bring their creative ideas to life by developing a project of
their own. Never written a line of code in your life? Already created
a robot to do your homework? No matter your skill level, we invite you
to join us as a hacker to participate in workshops, engage in
countless activities, and meet other like-minded students! Create
memories and guide the story of your STEM journey at MasseyHacks
IX!</span
>
</div>
<!-- Students attended -->
<div class="col-md-3 icons">
<div id="cap" class="cap">
<div class="content">
<div>
<i class="fas fa-graduation-cap fa-10x"></i>
</div>
<div class="stats">
<h2>
<span
class="js-counter"
data-counted="false"
data-target-value="1300"
data-time="800"
>0</span
>+
</h2>
</div>
<div>
<p>students have attended</p>
</div>
</div>
</div>
<!-- Prizes awarded -->
<div id="trophy" class="trophy">
<div class="content">
<div>
<i class="fas fa-trophy fa-10x mb-3"></i>
</div>
<div class="stats">
<h2>
$<span
class="js-counter"
data-counted="false"
data-target-value="22000"
data-time="800"
>0</span
>+
</h2>
</div>
<div>
<p>in prizes awarded</p>
</div>
</div>
</div>
</div>
</section>
<!-- Image carousel -->
<div id="carousel">
<section class="splide">
<div class="splide__track">
<ul class="splide__list">
<li class="splide__slide">
<img src="./images/carousel/IMG_5121.webp" loading="lazy" />
</li>
<li class="splide__slide">
<img src="./images/carousel/IMG_5127.webp" loading="lazy" />
</li>
<li class="splide__slide">
<img src="./images/carousel/IMG_5147.webp" loading="lazy" />
</li>
<li class="splide__slide">
<img src="./images/carousel/IMG_5163.webp" loading="lazy" />
</li>
<li class="splide__slide">
<img src="./images/carousel/IMG_5185.webp" loading="lazy" />
</li>
<li class="splide__slide">
<img src="./images/carousel/IMG_5191.webp" loading="lazy" />
</li>
<li class="splide__slide">
<img src="./images/carousel/IMG_5466.webp" loading="lazy" />
</li>
<li class="splide__slide">
<img src="./images/carousel/IMG_5500.webp" loading="lazy" />
</li>
<li class="splide__slide">
<img src="./images/carousel/IMG_5586.webp" loading="lazy" />
</li>
<li class="splide__slide">
<img src="./images/carousel/IMG_5606.webp" loading="lazy" />
</li>
<li class="splide__slide">
<img src="./images/carousel/DSC_0794.webp" loading="lazy" />
</li>
<li class="splide__slide">
<img src="./images/carousel/DSC_0887.webp" loading="lazy" />
</li>
<li class="splide__slide">
<img src="./images/carousel/DSC_0982.webp" loading="lazy" />
</li>
<li class="splide__slide">
<img src="./images/carousel/DSC_0988.webp" loading="lazy" />
</li>
<li class="splide__slide">
<img src="./images/carousel/DSC_0995.webp" loading="lazy" />
</li>
<li class="splide__slide">
<img src="./images/carousel/DSC_0996.webp" loading="lazy" />
</li>
<li class="splide__slide">
<img src="./images/carousel/IMG_5116.webp" loading="lazy" />
</li>
</ul>
</div>
</section>
</div>
<!-- Schedule -->
<section id="schedule">
<div class="schedule-container">
<div class="schedule-title">
<h1
style="
color: #434667;
text-shadow: 0.125rem 0.125rem var(--pink-colour);
font-weight: bold;
"
>
Schedule
</h1>
<h5
style="
color: #434667;
text-shadow: 0.085rem 0.085rem var(--pink-colour);
"
>
Click on the events for more info!
</h5>
</div>
<div class="timeline-wrapper"></div>
<h5 id="scroll_tip" style="font-style:italic;width:100%;display:flex;justify-content:center;margin-bottom:16px;color:#555;">
<span>Tip: shift + scroll to scroll horizontally</span>
</h5>
</div>
</section>
<!-- FAQ -->
<div id="faq" class="anchack"></div>
<section id="faq" data-aos="fade-up">
<h1></h1>
<div class="glass-card">
<!-- Left column -->
<div class="accordion accordion-flush" id="accordl">
<!-- Begin question -->
<div class="accordion-item">
<h2 class="accordion-header" id="l1-heading">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#l1"
aria-expanded="false"
aria-controls="l1"
>
How do I apply?
</button>
</h2>
<div
class="accordion-collapse collapse"
id="l1"
aria-labelledby="l1-heading"
data-bs-parent="#accordl"
>
<div class="accordion-body">
Applications have closed. Join our mailing list to be notified
when applications open for MasseyHacks X!
</div>
</div>
</div>
<!-- End question -->
<!-- Begin question -->
<div class="accordion-item">
<h2 class="accordion-header" id="l2-heading">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#l2"
aria-expanded="false"
aria-controls="l2"
>
Does it cost anything to attend?
</button>
</h2>
<div
class="accordion-collapse collapse"
id="l2"
aria-labelledby="l2-heading"
data-bs-parent="#accordl"
>
<div class="accordion-body">
Nope, MasseyHacks is absolutely free to attend!
</div>
</div>
</div>
<!-- End question -->
<!-- Begin question -->
<div class="accordion-item">
<h2 class="accordion-header" id="l3-heading">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#l3"
aria-expanded="false"
aria-controls="l3"
>
Is MasseyHacks in-person or online?
</button>
</h2>
<div
class="accordion-collapse collapse"
id="l3"
aria-labelledby="l3-heading"
data-bs-parent="#accordl"
>
<div class="accordion-body">
MasseyHacks IX will be in-person. Hackers will not have the
option to participate fully virtually as we return to a more
traditional form of MasseyHacks. Unfortunately, we cannot
provide overnight accommodation at the MasseyHacks venue, so
hackers will be required to go home for the night and return in
the morning.
</div>
</div>
</div>
<!-- End question -->
<!-- Begin question -->
<div class="accordion-item">
<h2 class="accordion-header" id="l4-heading">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#l4"
aria-expanded="false"
aria-controls="l4"
>
Will food be provided?
</button>
</h2>
<div
class="accordion-collapse collapse"
id="l4"
aria-labelledby="l4-heading"
data-bs-parent="#accordl"
>
<div class="accordion-body">
Yes, meals and snacks will be provided free of cost. We will
accommodate any food sensitivities to the best of our ability.
</div>
</div>
</div>
<!-- End question -->
<!-- Begin question -->
<div class="accordion-item">
<h2 class="accordion-header" id="l5-heading">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#l5"
aria-expanded="false"
aria-controls="l5"
>
What about COVID-19?
</button>
</h2>
<div
class="accordion-collapse collapse"
id="l5"
aria-labelledby="l5-heading"
data-bs-parent="#accordl"
>
<div class="accordion-body">
We will have masks available and provided upon request. Any
individuals who are sick or experiencing symptoms will be moved
to an isolation room and asked to go home. This information may
be updated in the future to further reflect local, provincial,
and federal guidelines.
</div>
</div>
</div>
<!-- End question -->
<!-- Begin question -->
<div class="accordion-item">
<h2 class="accordion-header" id="l6-heading">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#l6"
aria-expanded="false"
aria-controls="l6"
>
Do I need a team to participate?
</button>
</h2>
<div
class="accordion-collapse collapse"
id="l6"
aria-labelledby="l6-heading"
data-bs-parent="#accordl"
>
<div class="accordion-body">
You don't need to be in a team to participate in MasseyHacks!
It's up to you whether you choose to fly solo or group up with
your friends. And who knows: you might meet some cool new people
too!
</div>
</div>
</div>
<!-- End question -->
<!-- Begin question -->
<div class="accordion-item">
<h2 class="accordion-header" id="l7-heading">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#l7"
aria-expanded="false"
aria-controls="l7"
>
What is the Code of Conduct?
</button>
</h2>
<div
class="accordion-collapse collapse"
id="l7"
aria-labelledby="l7-heading"
data-bs-parent="#accordl"
>
<div class="accordion-body">
All hackers must abide by the
<a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf"
>Code of Conduct</a
>.
</div>
</div>
</div>
<!-- End question -->
</div>
<!-- Right column ---------------------------------------------------------------------->
<div class="accordion accordion-flush" id="accordr">
<!-- Begin question -->
<div class="accordion-item">
<h2 class="accordion-header" id="r1-heading">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#r1"
aria-expanded="false"
aria-controls="r1"
>
Who can participate?
</button>
</h2>
<div
class="accordion-collapse collapse"
id="r1"
aria-labelledby="r1-heading"
data-bs-parent="#accordr"
>
<div class="accordion-body">
MasseyHacks welcomes students from grades 7-12.
</div>
</div>
</div>
<!-- End question -->
<!-- Begin question -->
<div class="accordion-item">
<h2 class="accordion-header" id="r2-heading">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#r2"
aria-expanded="false"
aria-controls="r2"
>
Do I need programming experience to participate?
</button>
</h2>
<div
class="accordion-collapse collapse"
id="r2"
aria-labelledby="r2-heading"
data-bs-parent="#accordr"
>
<div class="accordion-body">
Not at all! At MasseyHacks, we'll teach you the fundamentals you
need to know to make your project through beginner workshops and
mentors who will assist you if you ever need any help.
</div>
</div>
</div>
<!-- End question -->
<!-- Begin question -->
<div class="accordion-item">
<h2 class="accordion-header" id="r3-heading">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#r3"
aria-expanded="false"
aria-controls="r3"
>
How many people can I have on my team?
</button>
</h2>
<div
class="accordion-collapse collapse"
id="r3"
aria-labelledby="r3-heading"
data-bs-parent="#accordr"
>
<div class="accordion-body">
You can have as many as 4 people per team!
</div>
</div>
</div>
<!-- End question -->
<!-- Begin question -->
<div class="accordion-item">
<h2 class="accordion-header" id="r4-heading">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#r4"
aria-expanded="false"
aria-controls="r4"
>
Where is MasseyHacks being held?
</button>
</h2>
<div
class="accordion-collapse collapse"
id="r4"
aria-labelledby="r4-heading"
data-bs-parent="#accordr"
>
<div class="accordion-body">
MasseyHacks will be held at
<a href="https://goo.gl/maps/4AGgpJL6Ha6UbMEx8"
>Vincent Massey Secondary School</a
>
at 1800 Liberty St, Windsor, ON.
</div>
</div>
</div>
<!-- End question -->
<!-- Begin question -->
<div class="accordion-item">
<h2 class="accordion-header" id="r5-heading">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#r5"
aria-expanded="false"
aria-controls="r5"
>
Will MasseyHacks run overnight?
</button>
</h2>
<div
class="accordion-collapse collapse"
id="r5"
aria-labelledby="r5-heading"
data-bs-parent="#accordr"
>
<div class="accordion-body">
Unfortunately,
<span style="font-weight: bold"
>we cannot provide overnight accommodation</span
>
at the MasseyHacks venue, so hackers will be required to leave
the venue Saturday evening and return to the venue Sunday
morning. However, we will still be providing mentorship and
support for hackers throughout the night as they continue
working on their projects.
</div>
</div>
</div>
<!-- End question -->
<!-- Begin question -->
<div class="accordion-item">
<h2 class="accordion-header" id="r6-heading">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#r6"
aria-expanded="false"
aria-controls="r6"
>
What do I need to bring?
</button>
</h2>
<div
class="accordion-collapse collapse"
id="r6"
aria-labelledby="r6-heading"
data-bs-parent="#accordr"
>
<div class="accordion-body">
We recommend bringing the following:
<ul style="list-style-position: inside">
<li>
a piece of photo ID for check-in (e.g. student card,
passport, or drivers license)
</li>
<li>your laptop</li>
<li>laptop/phone chargers</li>
</ul>
<br />
Food, beverages, and the rest will all be provided! School
computers will be available for use during the event, but we
cannot guarantee one for everyone.
</div>
</div>
</div>
<!-- End question -->
<!-- Begin question -->
<div class="accordion-item">
<h2 class="accordion-header" id="r7-heading">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#r7"
aria-expanded="false"
aria-controls="r7"
>
What activities and workshops will be at MasseyHacks?
</button>
</h2>
<div
class="accordion-collapse collapse"
id="r7"
aria-labelledby="r7-heading"
data-bs-parent="#accordr"
>
<div class="accordion-body">
You can find the schedule <a href="#schedule">here</a>
</div>
</div>
</div>
<!-- End question -->
</div>
</div>
<!-- Separate card -->
<div class="glass-card faq-prompt">
<p>
If you have any questions or would like to inform us of any issues,
please email us at
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
</section>
<!-- Sponsors -->
<div id="sponsors" class="anchack"></div>
<section id="sponsors" data-aos="fade-up">
<h1>SPONSORS</h1>
<div class="glass-card rounded sponsor_prompt">
<!-- Sponsorship Prompt -->
<div>
<p>Interested in becoming a sponsor?</p>
<p>
Check out our
<a href="files/MH9_Sponsorship_Prospectus.pdf" target="_blank"
>sponsorship prospectus</a
>
and contact us at
<a href="mailto:[email protected]"
>!
</p>
<p>
The MasseyHacks VIII transparency report is available
<a href="https://mh8.masseyhacks.ca/files/transparency-report.pdf"
>here</a
>.
</p>
</div>
</div>
<!-- Gold Tier -->
<div class="glass-card rounded gold">
<div>
<a
href="https://www.alturanft.com/"
class="sponsor-obj zoom"
target="_blank"
><img
alt="Altura"
class="zoom"
src="images/sponsors/gold/altura.png"
loading="lazy"
/></a>
</div>
<div>
<a
href="https://www.investwindsoressex.com/en/index.aspx"
class="sponsor-obj zoom"
target="_blank"
><img
alt="Invest WindsorEssex"
class="zoom"
src="images/sponsors/gold/investwe.png"
loading="lazy"
/></a>
</div>
<div>
<a href="http://cw-e.ca/" class="sponsor-obj zoom" target="_blank"
><img
alt="Connecting Windsor-Essex"
class="zoom"
src="images/sponsors/gold/cw-e.png"
loading="lazy"
/></a>
</div>
</div>
<!-- Silver Tier -->
<div class="glass-card rounded silver">
<a
class="sponsor-obj zoom"
href="https://www.wetech-alliance.com/"
target="_blank"
><img
alt="We-Tech Alliance"
class="zoom"
src="images/sponsors/silver/wetech.png"
loading="lazy"
/></a>
<a
class="sponsor-obj zoom"
href="https://stclaircollege.ca/"
target="_blank"
><img
alt="St. Clair College"
class="zoom"