-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathholiday.html
More file actions
1267 lines (1077 loc) · 54.7 KB
/
holiday.html
File metadata and controls
1267 lines (1077 loc) · 54.7 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>Mathisi-fy</title>
<meta content="" name="descriptison">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/whitefav.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<!-- <script data-ad-client="ca-pub-5167877193885029" async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> -->
<!-- Template Main CSS File -->
<link href="assets/css/holiday.css" rel="stylesheet">
<!--Drift-->
<!-- Start of Async Drift Code -->
<!-- <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3564460925087805"
crossorigin="anonymous"></script> -->
<!-- End of Async Drift Code -->
</head>
<body>
<!-- <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3564460925087805"
crossorigin="anonymous"></script> -->
<!-- holiday-fy -->
<!-- <ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-3564460925087805"
data-ad-slot="1057722453"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script> -->
<!-- ======= Header ======= -->
<header id="header" class="fixed-top d-flex align-items-center ">
<div class="container d-flex align-items-center">
<div class="logo mr-auto">
<h1 class="text-light"><a href="/index"><span>Mathisi-fy</span></a></h1>
<!-- <a href="index.html"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
</div>
<nav class="nav-menu d-none d-lg-block">
<ul>
<li><a href="/index">Home</a></li>
<!--<li class="active"><a href="/holiday#about">About</a></li>-->
<li class="active"><a href="/holiday#about">About</a></li>
<li><a href="/holiday#prizes">Prizes</a></li>
<li><a href="/holiday#speakers">Speakers</a></li>
<li><a href="/holiday#sponsor">Sponsors</a></li>
<li><a href="/holiday#team">Team</a></li>
<li><a href="/holiday#faq">FAQs</a></li>
<li><a href="/holiday#contact">Contact Us</a></li>
<li class="get-started"><a href="https://airtable.com/shrhCE3hyMyt1tls8">Register Now!</a></li>
</ul>
</nav><!-- .nav-menu -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="container">
<div class="row">
<div class="col-lg-7 pt-5 pt-lg-0 order-2 order-lg-1 d-flex align-items-center">
<div data-aos="zoom-out">
<h1>Create innovative hardware + software projects with <span>Holiday-fy</span></h1>
<h2>Use Your Creativity to Build Projects That Benefit the World! </h2>
<div class="text-center text-lg-left">
<a href="https://airtable.com/shrhCE3hyMyt1tls8" target="_blank" class="btn-get-started scrollto">Register
Now!</a>
</div>
</div>
</div>
<div class="col-lg-5 order-1 order-lg-2 hero-img" data-aos="zoom-out" data-aos-delay="300">
<img src="assets/img/holidaylights.png" class="img-fluid animated" alt="">
</div>
</div>
</div>
<svg class="hero-waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 24 150 28 " preserveAspectRatio="none">
<defs>
<path id="wave-path" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z">
</defs>
<g class="wave1">
<use xlink:href="#wave-path" x="50" y="3" fill="rgba(255,255,255, .1)">
</g>
<g class="wave2">
<use xlink:href="#wave-path" x="50" y="0" fill="rgba(255,255,255, .2)">
</g>
<g class="wave3">
<use xlink:href="#wave-path" x="50" y="9" fill="#B3001B">
</g>
</svg>
</section><!-- End Hero -->
<!-- ======= About Section ======= -->
<section id="about" class="section-bg about">
<div class="container-fluid">
<div class="row">
<div class="col-xl-5 col-lg-6 video-box d-flex justify-content-center align-items-stretch"
data-aos="fade-right">
<!--<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" class="venobox play-btn mb-4" data-vbtype="video" data-autoplay="true"></a>-->
</div>
<div
class="col-xl-7 col-lg-6 icon-boxes d-flex flex-column align-items-stretch justify-content-center py-5 px-lg-5"
data-aos="fade-left">
<h3> What is Holiday-fy?</h3>
<p style="text-indent: 40px">Holiday-fy is a hackathon-research program run by Mathisi-fy, a 501(c)(3)
student-lead non-profit organization where we provide passionate students with an opportunity to learn the
ropes of computer science/engineering by enabling them to start their own hands-on projects while mentoring
them on their journey. We aim to host an all-inclusive event that allows students to express their
creativity and eliminate the social and economic obstacles surrounding programming and STEM. There will be
<b>prizes</b>, <b>free swag</b>, and awesome <b>tech speakers</b> from the industry!<b> The Holiday-fy event
will run from November to January</b>
</p>
<p> <b>Participants who are unable to financially fund their projects have the opportunity to apply for a
grant, where they can receive the necessary funding for hardware + software components for their
innovations.</b></p>
<p class="font-italic">At Holiday-fy, we strive to solve most pressing issues in our local communities. This
year, Holiday-fy will focus on tackling two tracks...</p>
<div class="icon-box" data-aos="zoom-in" data-aos-delay="150">
<div class="icon"><i class="icofont-people"></i></div>
<h4 class="title"><a href="">AI for Community Enhancement</a></h4>
<p class="description">Harnessing the power of artificial intelligence, how can we utilize AI technologies to enhance our local communities?
What innovative AI-driven solutions can improve areas such as healthcare, education, transportation, and more?
Create a hardware + software project that leverages AI to bring about positive changes in your local community. </p>
</div>
<div class="icon-box" data-aos="zoom-in" data-aos-delay="100">
<div class="icon"><i class='bx bx-shield-quarter'></i></div>
<h4 class="title"><a href="">CyberSecurity</a></h4>
<p class="description">Billions of accounts are hacked each year due to the lack of cybersecurity in our
everyday lives. How can we support our local communities by securing our school, business and recreational
networks? How can we increase our online cybersecurity presence through hardware and software? Innovate a
hardware + software project that makes the cyber-world a safer place</p>
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<main id="main">
<section id="process" class="section-bg pricing">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Process</h2>
<p>How It Works</p>
</div>
<div class="row" data-aos="fade-left">
<div class="col-lg-3 col-md-6">
<div class="box" data-aos="zoom-in" data-aos-delay="100">
<h3>1) Register/Apply</h3>
<ul>
<li> Fill out the <a href="https://airtable.com/shrhCE3hyMyt1tls8">registration</a> or <a
href="https://airtable.com/shr17TWeA6SrP4DuY">grant</a> form. On the grant form, You will answer
questions about your project and your interests in technology</li>
<li>Once you've completed the written application on the grant form, we will schedule an interview to
get to know you better!</li>
</ul>
<div class="btn-wrap">
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-md-0">
<div class="box" data-aos="zoom-in" data-aos-delay="200">
<h3>2) Create/Construct </h3>
<ul>
<li>During this phase, you may start creating your hardware + software project</li>
<li>You can take inspiration from our two pathways: the cybersecurity track and the local COVID-19
community track. However, you may choose to create a project outside of these two fields </li>
</ul>
<div class="btn-wrap">
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-lg-0">
<div class="box" data-aos="zoom-in" data-aos-delay="300">
<h3>3) Analyze/Revise</h3>
<ul>
<li>Once you have completed the first drafts of your projects, mentors will be available to assist and
support you on your journey</li>
<li>This is the phase where you can ask questions, explore your project vision, prepare for the
presentation, and improve your innovation </li>
</ul>
<div class="btn-wrap">
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-lg-0">
<div class="box featuredbox" id="boxboi" data-aos="zoom-in" data-aos-delay="400">
<h3>4) Present/Publish!</h3>
<ul>
<li>Publish and present your project to our team and a panel of sponsors. Demonstrate your innovation's
functionalities and your design process</li>
<li>The panel will judge and provide constructive feedback about your innovation. Through the
presentation, you will have a chance to win awesome prizes!</li>
</ul>
<div class="featured-wrap">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ======= Prizes Section ======= -->
<section id="prizes" class="section-bg features">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Prizes</h2>
<p>Swag, Tech, and More!</p>
</div>
<div class="row" data-aos="fade-left">
<div class="col-lg-3 col-md-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="50">
<i class="ri-trophy-line" style="color: #ffbb2c;"></i>
<h3>Overall Grand Prize</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="100">
<i class="ri-community-line" style="color: #5578ff;"></i>
<h3>Best AI Community Hack</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="150">
<i class="ri-terminal-box-line" style="color: #ff0000;"></i>
<h3>Best CyberSecurity Hack</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-lg-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="200">
<i class="ri-medal-line" style="color: #e361ff;"></i>
<h3>Best Beginner Hack</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="250">
<i class="ri-robot-line" style="color: #47aeff;"></i>
<h3>Hardware Hack 1st Place</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="300">
<i class="ri-bookmark-3-line" style="color: #ffa76e;"></i>
<h3>Best All-Female Hack</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="350">
<i class="ri-t-shirt-2-line" style="color: #11dbcf;"></i>
<h3>Free T-Shirts + Stickers for all</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="400">
<i class="ri-gift-line" style="color: #4233ff;"></i>
<h3>And Many More to Be Announced!</h3>
</div>
</div>
</div>
</div>
</section><!-- End Features Section -->
<!----------------------------------------------------------------------------------- PRIZES ------------------------------------------------------------------------>
<!--<section id="prizes" class="section-bg pricing">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Prizes</h2>
<p>Swag, Tech, and More!</p>
</div>
<div class="row" data-aos="fade-left">
<div class="col-lg-3 col-md-6">
<div class="box" data-aos="zoom-in" data-aos-delay="100">
<h3>Overall Grand Prize</h3>
<ul>
<li> - Team Cash Prize (500$) </li>
<li>- Custom Holiday-fy Shirts + Stickers</li>
</ul>
<div class="btn-wrap">
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-md-0">
<div class="box" data-aos="zoom-in" data-aos-delay="200">
<h3>Best COVID-19 Comm Hack</h3>
<ul>
<li>- HyperX Alloy Elite RGB Keyboard</li>
<li>- One keyboard for each team member (4)</li>
</ul>
<div class="btn-wrap">
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-lg-0">
<div class="box" data-aos="zoom-in" data-aos-delay="300">
<h3>Best CyberSecurity Hack</h3>
<ul>
<li>- HyperX PulseFire FPS Pro Gaming Mouse
</li>
<li>- One mouse for each team member (4)
</li>
</ul>
<div class="btn-wrap">
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-lg-0">
<div class="box" data-aos="zoom-in" data-aos-delay="400">
<h3>Best Beginner Hack</h3>
<ul>
<li>- Ardunio UNO 33</li>
<li>- LCD1602 Display module </li>
<li>- DC Motors and L293D Transistor</li>
<li>- 74HC595 Shift Register and LEDs</li>
<li>- Other accesories from Arduino Starter Kit</li>
<li>- One kit for each team member (4)</li>
</ul>
<div class="btn-wrap">
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-md-0">
<div class="box" data-aos="zoom-in" data-aos-delay="200">
<h3>Hardware Hack 3rd Place</h3>
<ul>
</ul>
<div class="btn-wrap">
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-md-0">
<div class="box" data-aos="zoom-in" data-aos-delay="200">
<h3>Hardware Hack 2nd Place</h3>
<ul>
<li>- ESP32 WiFi + Bluetooth Dev. Board</li>
<li>- HC-05 Bluetooth Module </li>
<li>- ESP8266 Wifi Module</li>
<li>- RC522 RFID Kit</li>
<li>- 1602 LCD w/ i2C Backpack</li>
<li>- UNO R3 Protoshield</li>
</ul>
<div class="btn-wrap">
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-md-0">
<div class="box" data-aos="zoom-in" data-aos-delay="200">
<h3>Hardware Hack 3rd Place</h3>
<ul>
<li>- GY521 3-Axis Gyro</li>
<li>- DS3231 Real Time Clock Module + Encoder Module</li>
<li>- MAX7219 8x8 LED Matrix Display</li>
<li>- ULN2003 Stepper Motor Driver</li>
<li>- 5g Servo + Hobby Motor</li>
<li>- 9V 1A Power Supply</li>
</ul>
<div class="btn-wrap">
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-md-0">
<div class="box" data-aos="zoom-in" data-aos-delay="200">
<h3>And more to come!</h3>
<ul>
<li>All participants will receive : </li>
<li>- Linode T-Shirts + Stickers</li>
<li>- Product Hunt T-Shirts</li>
<li>- Framer Enterprise</li>
<li>- JetBrains Professional Dev Tools</li>
<li>- Repl.it Hacker Plan</li>
</ul>
<div class="btn-wrap">
</div>
</div>
</div>
</div>
</div>
</section>-->
<!-- ======= Speaker Section ======= -->
<section id="speakers" class="features section-bg">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Speakers</h2>
<p>Speakers</p>
</div>
<div class="row content">
<div id="workshops" class="col-md-4 order-1 order-md-2" data-aos="fade-left">
<img src="assets/img/jessy.jpg" class="img-fluid" alt="">
</div>
<div class="col-md-8 pt-5 order-2 order-md-1" data-aos="fade-up">
<h3>Jessy Gonzalez</h3>
<p class="font-italic">
Founder @ Cyber Strategy Advisors, Program Manager @ MalwareBytes
</p>
<ul>
<li><i class="icofont-check"></i> CISSP, CGEIT, CISM, CRISC, CDPSE, PMP, Certified</li>
<li><i class="icofont-check"></i> CompTIA Excellence in Professional Development Award - Computing
Technology Industry Association</li>
<li><i class="icofont-check"></i> Certified in Risk and Information System Controls (CRISC) - ISACA</li>
</ul>
<p style="text-indent: 30px">
Jessy has been a nonprofit and business executive for 20 years, with international certifications in
information security management, systems engineering, and project management.
He is recognized nationally as a subject-matter expert, developer, public speaker, and presenter of
award-winning social enterprise business models and community technology education programs.
Mr.Gonzalez currently leads IT, Information Security, and Data Privacy compliance PMO operations at
Malwarebytes, the industry's leading cybersecurity company that protects millions of consumer and business
customers worldwide. Jessy will be speaking about Privacy & Security by Design (PbD) in relation to our
cybersecurity category
</p>
</div>
</div>
<div class="row content">
<div class="col-md-4" data-aos="fade-right">
<img src="assets/img/cek.jpg" class="img-fluid" alt="">
</div>
<div id="articles" class="col-md-8 pt-4" data-aos="fade-up">
<h3>Johan Surtihadi</h3>
<p class="font-italic">
Director of BioStatistics @ Illumina
</p>
<ul>
<li><i class="icofont-check"></i> Bachelor's Degree in Electrical Engineering, phD in Statistics @
Rensselaer Polytechnic Institute</li>
<li><i class="icofont-check"></i> Diverse experience in IVD and personalized diagnostic tests for
oncology, infectious disease, and virology</li>
<li><i class="icofont-check"></i> Extensive knowledge of clinical, medical, and regulatory aspects of
diagnostic product development and clinical/analytical validation</li>
</ul>
<p style="text-indent: 30px">
At Illumina, Johan leads biostatistics activities in clinical development and validation of IVD companion
diagnostics for oncology based on NGS technology.
He also manages product development, validation, and clinical trials for diagnostic tests based on
molecular, gene expression, genomic, and NGS methods while collaborating with pharmaceutical partners in
pharma/diagnostic co-development. Mr.Surtihadi will be speaking to us about COVID-19 diagnostic
tests/validation as related to our hackathon category</a>
</p>
</div>
</div>
</div>
</section><!-- End Speaker Section -->
<section id="sponsor" class="faq section-bg">
<div class="container">
<div class="partners-top-left">
<div class="section-title" data-aos="fade-up">
<h2>Sponsors</h2>
<p>Sponsors</p>
</div>
</div>
</div>
<div class="partners-list">
<ul>
<li>
<a href="https://google.org/" target="_blank">
<img loading="lazy" src="/assets/img/sponsors/google.png">
</a>
</li>
<li>
<a href="https://clay.run/" target="_blank">
<img loading="lazy" src="/assets/img/sponsors/clay.png">
</a>
</li>
<li>
<a href="https://www.nvidia.com/en-us/" target="_blank">
<img loading="lazy" src="/assets/img/sponsors/nvidia.png">
</a>
</li>
<li>
<a href="https://www.hyperxgaming.com/" target="_blank">
<img loading="lazy" src="/assets/img/sponsors/hyperx.png">
</a>
</li>
<li>
<a href="https://balsamiq.com/" target="_blank">
<img loading="lazy" src="/assets/img/sponsors/balsamiq.png">
</a>
</li>
<li>
<a href="https://www.framer.com/" target="_blank">
<img loading="lazy" src="/assets/img/sponsors/framer.png">
</a>
</li>
<li>
<a href="https://www.jetbrains.com/" target="_blank">
<img loading="lazy" src="/assets/img/sponsors/jetbrains.png">
</a>
</li>
<li>
<a href="https://repl.it/" target="_blank">
<img loading="lazy" src="/assets/img/sponsors/repl.png">
</a>
</li>
<li>
<a href="https://rstudio.com/" target="_blank">
<img loading="lazy" src="/assets/img/sponsors/r.png">
</a>
</li>
<li>
<a href="https://www.linode.com/" target="_blank">
<img loading="lazy" src="/assets/img/sponsors/linode.png">
</a>
</li>
<li>
<a href="https://www.wolfram.com/language/" target="_blank">
<img loading="lazy" src="/assets/img/sponsors/wolfram.png">
</a>
</li>
<li>
<a href="https://www.malwarebytes.com/" target="_blank">
<img loading="lazy" src="/assets/img/sponsors/malware.png">
</a>
</li>
<li>
<a href="https://thenewgirlcode.com/" target="_blank">
<img loading="lazy" src="/assets/img/sponsors/TNG.png">
</a>
</li>
<li>
<a href="https://www.stickergiant.com/" target="_blank">
<img loading="lazy" src="/assets/img/sponsors/sticker.png">
</a>
</li>
<li>
<a href="https://www.producthunt.com/" target="_blank">
<img loading="lazy" src="/assets/img/sponsors/product.png">
</a>
</li>
</ul>
</div>
<div class="row mt-4">
<div class="col-lg-8 mx-auto text-center">
<br>
<h3>Interested in sponsoring us?</h3>
<br>
<p>
Send our sponsorship team an email at <a href="mailto:partners@mathisify.org">partners@mathisify.org</a> for
more details!
</p>
<a href="sponsorship.pdf" target="_blank"><button type="button"
class="btn btn-outline-info">View Sponsorship Prospectus</button></a>
</div>
</div>
</div>
</section>
</section>
<!-- ======= Team Section ======= -->
<section id="team" class="section-bg team">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Team</h2>
<p>The Mathisi-fy Leadership Team</p>
</div>
<div class="row" data-aos="fade-left">
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="100">
<div class="pic"><img src="assets/img/team/winston1.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Winston Iskandar</h4>
<span>Co-Founder, Executive Director</span>
<div class="social">
<a href="https://winstoniskandar.com"><i class='bx bxs-home'></i></a>
<a href="https://github.com/winstoniskandar"><i class='bx bxl-github'></i></a>
<a href="https://www.linkedin.com/in/winstoniskandar/"><i class="icofont-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="member" data-aos="zoom-in">
<div class="pic"><img src="assets/img/team/dylannew.jpg" class="img-fluid" alt="https://dylaniskandar.com"></div>
<div class="member-info">
<h4>Dylan Iskandar</h4>
<span>Co-Founder, Operations</span>
<div class="social">
<a href="https://dylaniskandar.com"><i class='bx bxs-home'></i></a>
<a href="https://github.com/mayuridev"><i class='bx bxl-github'></i></a>
<a href="https://www.linkedin.com/in/dylaniskandar/"><i class='bx bxl-linkedin-square'></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<div class="member" data-aos="zoom-in" data-aos-delay="150">
<div class="pic"><img src="assets/img/team/Pratish2.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Pratish Rai</h4>
<span>Co-Founder, Vice President of Workshops</span>
<div class="social">
<a href="https://programmingwizard.codes"><i class='bx bxs-home'></i></a>
<a href="https://github.com/pratishrai"><i class='bx bxl-github'></i></a>
<a href="https://www.linkedin.com/in/pratish-rai-44a9731ab/"><i
class='bx bxl-linkedin-square'></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<div class="member" data-aos="zoom-in" data-aos-delay="200">
<div class="pic"><img src="assets/img/team/jane.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Chimdi Jane Samuel</h4>
<span>Mathisi-fy Nigeria, Secretary</span>
<div class="social">
<a
href="https://medium.com/@ChimdiJaneSamuel/how-i-built-my-first-game-app-with-my-mobile-phone-8936ea9bf699?_branch_match_id=802344943554465321"><i
class='bx bxs-home'></i></a>
<a href="https://github.com/JaneSamuel"><i class='bx bxl-github'></i></a>
<a href="https://twitter.com/janelovescoding"><i class='bx bxl-twitter'></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="250">
<div class="pic"><img src="assets/img/team/william3.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>William Zhang</h4>
<span>Head of Operations</span>
<div class="social">
<a href="https://williamhyzhang.github.io/"><i class='bx bxs-home'></i></a>
<a href="https://www.instagram.com/billyzhanggang/"><i class="icofont-instagram"></i></a>
<a href="https://github.com/WilliamHYZhang"><i class='bx bxl-github'></i></a>
<a href="https://www.linkedin.com/in/william-zhang-69420/"><i class="icofont-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="300">
<div class="pic"><img src="assets/img/team/audrey.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Audrey Lee</h4>
<span>Vice President of Outreach, Author</span>
<div class="social">
<a href="https://www.instagram.com/audrey___l/"><i class="icofont-instagram"></i></a>
<a href="https://github.com/AudreyL713"><i class='bx bxl-github'></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="350">
<div class="pic"><img src="assets/img/team/jeremiah.png " class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Jeremiah Jacob</h4>
<span>Mathisi-fy Nigeria, Author</span>
<div class="social">
<a href="https://twitter.com/am_jaykon"><i class='bx bxl-twitter'></i></a>
<a href="https://www.linkedin.com/in/jeremiah-jacob-731112162/"><i class="icofont-linkedin"></i></a>
<a href="https://github.com/j-kon"><i class='bx bxl-github'></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="400">
<div class="pic"><img src="assets/img/team/emily.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Emily Doami</h4>
<span>Girls Advancing Leadership in STEM Rep.</span>
<div class="social">
<a href="https://www.instagram.com/emilydoami/"><i class="icofont-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="450">
<div class="pic"><img src="assets/img/team/david.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>David Tembo</h4>
<span>Mathisi-fy Zambia, Outreach</span>
<div class="social">
<a href="www.linkedin.com/in/david-tembo-5b68ba181"><i class='bx bxl-linkedin-square'></i></a>
<a href="https://github.com/dtembo98"><i class='bx bxl-github'></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="500">
<div class="pic"><img src="assets/img/team/mark.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Mark Musisha</h4>
<span>Mathisi-fy Zambia, Community Lead</span>
<div class="social">
<a href="https://github.com/musisha"><i class='bx bxl-github'></i></a>
<a href="https://www.linkedin.com/in/markmusisha"><i class='bx bxl-linkedin-square'></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="550">
<div class="pic"><img src="assets/img/team/jackson.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Jackson Mwanaumo</h4>
<span>Mathisi-fy Zambia, Info. Technologies</span>
<div class="social">
<a href="https://www.jacksonmwanaumo.com/"><i class='bx bxs-home'></i></a>
<a href="https://www.linkedin.com/in/jackson-mwanaumo-997259199/"><i class="icofont-linkedin"></i></a>
<a href="https://github.com/jayOnechild/"><i class='bx bxl-github'></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="600">
<div class="pic"><img src="assets/img/team/mwansa.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Mwansa Mwansa</h4>
<span>Mathisi-fy Zambia, Author</span>
<div class="social">
<a href="https://www.linkedin.com/in/mwansa-mwansa-7b6b4b18a"><i class="icofont-linkedin"></i></a>
<a href="https://m.facebook.com/mwansa.squared.52"><i class="icofont-facebook"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="member" data-aos="zoom-in" data-aos-delay="650">
<div class="pic"><img src="assets/img/team/isamar.png" class="img-fluid" alt="https://dylaniskandar.com">
</div>
<div class="member-info">
<h4>Isamar Zhu</h4>
<span>Communications, Author</span>
<div class="social">
<a href="https://www.linkedin.com/in/isamar-zhu-3797781a7/"><i class='bx bxl-linkedin-square'></i></a>
</div>
</div>
</div>
</div>
<!--<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="500">
<div class="pic"><img src="assets/img/team/parity.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Parity Chizela</h4>
<span>Mathisi-fy Zambia, Author</span>
<div class="social">
<a href="https://www.paritybits.tech/"><i class='bx bxs-home'></i></a>
<a href="https://www.linkedin.com/in/paritypax"><i class="icofont-linkedin"></i></a>
<a href="https://twitter.com/paritybits_"><i class='bx bxl-twitter'></i></a>
<a href="https://www.github.com/paritybits"><i class='bx bxl-github'></i></a>
</div>
</div>
</div>
</div>-->
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="700">
<div class="pic"><img src="assets/img/team/abba.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Abubakar Haruna</h4>
<span>Mathisi-fy Nigeria, Community</span>
<div class="social">
<a href="https://abba.abbaharuna.repl.co/"><i class='bx bxs-home'></i></a>
<a href="https://scrapbook.hackclub.com/abbanso10"><i class="icofont-book-alt"></i></a>
<a href="https://github.com/Abubakarharuna10"><i class='bx bxl-github'></i></a>
<a href="https://www.linkedin.com/in/abubakarharuna10/"><i class='bx bxl-linkedin-square'></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="750">
<div class="pic"><img src="assets/img/team/jada2.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Jada Yip</h4>
<span>Graphic Design and Marketing</span>
<div class="social">
<a href="https://www.linkedin.com/in/jada-yip-186a471b7/"><i class='bx bxl-linkedin-square'></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="800">
<div class="pic"><img src="assets/img/team/lembani.png " class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Lembani Sakala</h4>
<span>Mathisi-fy Zambia, Networking</span>
<div class="social">
<a href="https://twitter.com/Lembani_"><i class='bx bxl-twitter'></i></a>
<a href="https://www.linkedin.com/in/lembani-sakala-b58615109/"><i class="icofont-linkedin"></i></a>
<a href="https://github.com/Lembani"><i class='bx bxl-github'></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Team Section -->
<!-- ======= FAQ Section ======= -->
<section id="faq" class="faq section-bg">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>F.A.Q</h2>
<p>Frequently Asked Questions</p>
</div>
<div class="faq-list">
<ul>
<li data-aos="fade-up">
<i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" class="collapse"
href="#faq-list-1">When will Holiday-fy run, and who can participate?<i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-1" class="collapse show" data-parent=".faq-list">
<p style="text-indent: 40px">
The Holiday-fy event will run from November 2023 to January 2024. ALL students (middle school
- university) are welcome to attend. If you are older or younger and still want to participate as a
maker, shoot us an email. If you're older, we welcome you to sign-up as a mentor/volunteer!
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="100">
<i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-3"
class="collapsed">Can I participate in Holiday-fy if I don't want to apply for a grant?<i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-3" class="collapse" data-parent=".faq-list">
<p style="text-indent: 40px">
Yes! You may participate and still engage in the full Holiday-fy experience even if you are not a
grant recipient. Holiday-fy offers participants grants only if they are unable to financially fund
their project independently.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="100">
<i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-4"
class="collapsed">Where do I apply for a grant?<i class="bx bx-chevron-down icon-show"></i><i
class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-4" class="collapse" data-parent=".faq-list">
<p style="text-indent: 40px">
You can apply for a grant here: (https://airtable.com/shr17TWeA6SrP4DuY). The application will ask you
about your project's logistics (how you plan to create it, what you plan to create etc..). Make us as
excited about your project as you are!
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="300">
<i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-5"
class="collapsed">How does funding work? How will I get reimbursed? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-5" class="collapse" data-parent=".faq-list">
<p style="text-indent: 40px">
Once you have completed the application process, we will schedule a Zoom/phone interview with you to
learn more about you and your project. Once you're project is approved, we will provide the funding
and reimburse you for the necessary hardware + software parts.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="400">
<i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-6"
class="collapsed">How do teams work, and what if I don't have a team? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-6" class="collapse" data-parent=".faq-list">