-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
1128 lines (1003 loc) · 51.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>
<!-- Add the v6 core styles and then select the individual styles you need, like Solid and Brands -->
<link href="assets/css/fontawesome.min.css" rel="stylesheet" />
<link href="assets/css/brands.min.css" rel="stylesheet" />
<link href="assets/css/topbar.css" rel="stylesheet"/>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description"
content="HackUMass is an outpost for your craziest ideas. November 8 - 10, 2024 at Amherst, MA." />
<meta name="keywords"
content="HackUMass, UMass Amherst, University of Massachusetts, hackathons, HackUMass XII, HackUMass XI, HackUMass X, HackUMass IX, HackUMass VIII, HackUMass VII, Hackumass VI, HackUMass V, hackathon" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Event",
"name": "HackUMass XII",
"description": "HackUMass is an outpost for your craziest ideas. November 8 - 10, 2024 at Amherst, MA.",
"image": [
"https://hackumass.com/assets/img/logo.png",
"https://hackumass.com/assets/img/useful/hardware.jpg",
"https://hackumass.com/assets/img/soldering.png",
"https://hackumass.com/assets/img/useful/sponsors.jpg"
],
"startDate": "2024-11-8",
"endDate": "2024-11-10",
"location": {
"@type": "Place",
"name": "University of Massachusetts Amherst",
"address": {
"@type": "PostalAddress",
"streetAddress": "650 N Pleasant St",
"addressLocality": "Amherst",
"addressRegion": "MA",
"postalCode": "01003",
"addressCountry": "US"
}
},
"offers": {
"@type": "Offer",
"name": "Participant",
"price": "0",
"priceCurrency": "USD",
"validFrom": "2020-07-14T00:00",
"url": "https://hackumass.com",
"availability": "https://schema.org/InStock"
}
},
{
"@type": "Organization",
"name": "HackUMass",
"url": "https://hackumass.com",
"logo": "https://hackumass.com/assets/img/logo-universal.svg",
"sameAs": [
"https://twitter.com/hackumass",
"https://facebook.com/hackUMass",
"https://www.instagram.com/hackumass"
]
}
]
}
</script>
<meta property="og:title" content="HackUMass XII" />
<meta property="og:url" content="hackumass.com" />
<meta property="og:type" content="website" />
<meta property="og:description"
content="HackUMass is an outpost for your craziest ideas. November 8 - 10, 2024 at UMass Amherst." />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://www.hackumass.com/assets/img/logo.png" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:site" content="@hackumass" />
<meta property="twitter:creator" content="@hackumass" />
<meta property="twitter:title" content="HackUMass XII" />
<meta property="twitter:description"
content="HackUMass is an outpost for your craziest ideas. November 8 - 10, 2024 at UMass Amherst." />
<meta property="twitter:image" content="https://www.hackumass.com/assets/img/logo.png" />
<meta property="twitter:image:alt" content="HackUMass XII, November 8 - 10, 2024" />
<title>HackUMass XII - An outpost for your craziest ideas</title>
<link href="assets/css/core.min.css?1563139757687" rel="stylesheet" />
<link href="assets/css/thesaas.min.css?1563139757687" rel="stylesheet" />
<link href="assets/css/style.css?1563139757687" rel="stylesheet" />
<!-- Favicons -->
<link rel="apple-touch-icon" href="assets/img/favicon.png" />
<link rel="icon" href="assets/img/favicon.ico" />
</head>
<body>
<!-- Topbar -->
<nav id="topbar" class="topbar topbar-inverse topbar-expand-sm topbar-fixed"
style="position:fixed;right:0;background:rgb(58, 58, 58);width:100%; height: 50; opacity: 0.8;">
<div class="container">
<div class="topbar-left">
<!-- For now, nothing on the left bar of the top bar -->
<!-- Enable banner if HackUMass IX affiliates with MLH again-->
<a id="mlh-trust-badge" style="
display:block;
max-width:100px;
min-width:60px;
position:fixed;
left:50px;
top:0;
width:10%;
z-index:10000"
href="https://mlh.io/na?utm_source=na-hackathon&utm_medium=TrustBadge&utm_campaign=2025-season&utm_content=white" target="_blank"><img src="https://s3.amazonaws.com/logged-assets/trust-badge/2025/mlh-trust-badge-2025-white.svg" alt="Major League Hacking 2025 Hackathon Season" style="width:100%"></a>
<!-- Enable banner if Pinnacle collaboration is on for HUM-IX-->
<!-- <a id="pinnacle-badge" style="display:block;max-width:100px;min-width:60px;position:fixed;left:200px;top:0;width:10%;z-index:10000" href="https://pinnacle.us.org/" target="_blank"><img src="assets/img/partners/pinnacle_badge.png" alt="Pinnacle" style="width:100%"></a> -->
</div>
<div class="topbar-right" style="position:absolute; right:0">
<!-- <a class="btn btn-sm btn-outline btn-white hidden-sm-down" href="https://about.hackumass.com/">About Us</a> -->
<a class="btn btn-sm btn-outline btn-white hidden-sm-down" href="https://about.hackumass.com/opensource.html"
target="_blank">Open Source</a>
<a class="btn btn-sm btn-outline btn-white" href="https://hackumass-x.devpost.com/project-gallery"
target="_blank">Previous Projects</a>
<a class="btn btn-sm btn-outline btn-white" href="https://discord.gg/aqbbYnkKpd" target="_blank">Discord</a>
</div>
</div>
</nav>
<!-- END Topbar -->
<!-- Header -->
<header class="header header-inverse h-fullscreen p-0 bg-primary overflow-hidden" style="
background-image: linear-gradient(
-45deg,
rgba(60, 60, 60, 1) 0%,
rgba(60, 60, 60, 1) 100%
);">
<!--canvas class="constellation"></canvas-->
<div class="bg">
<video class="bg-video" loop muted autoplay id="primary-video">
<source src="assets/videos/hardware.mp4" type="video/mp4" />
</video>
</div>
<div class="container text-center">
<div class="row h-full align-items-center">
<div class="col-lg-9 col-12 mx-auto">
<img src="assets/img/logo-universal.svg" alt="" style="height: 75%; width: 75%" />
<!-- <img src="assets/img/logo-pink-gear-blink-anim.svg" style="height: 75%; width: 75%"> -->
<br />
<p class="lead text-white fs-24">
November 8th - 10th, 2024 | 36 Hours | Amherst, MA
</p>
<div class="row" style="justify-content: center">
<div class="col" style="padding: 1em">
<a id="home-button" class="btn btn-xl btn-round btn-default" style="color: black"
href="https://dashboard.hackumass.com/">Dashboard</a>
</div>
<!-- <div class="col" style="padding: 1em">
<a
id="home-button"
class="btn btn-xl btn-round btn-default"
style="color: black"
href="https://hackumass.com/apply"
>Apply To Be An Organizer!</a
>
</div> -->
</div>
<!-- Section for Social Media -->
<div class="col-12 p-3">
<a class="social-instagram social-btn social-tag" target="_blank" href="https://www.instagram.com/hackumass/">
<i class="fa fa-instagram larger-icon"></i>
</a>
<a class="social-twitter social-btn social-tag" target="_blank" href="https://twitter.com/hackumass">
<i class="fa fa-twitter larger-icon"></i>
</a>
<a class="social-facebook social-btn social-tag" target="_blank" href="https://www.facebook.com/hackUMass/">
<i class="fa fa-facebook larger-icon"></i>
</a>
<a class="social-instagram social-btn social-tag" target="_blank" href="https://www.tiktok.com/@hackumass">
<i class="fa-brands fa-tiktok larger-icon"></i>
</a>
</div>
</div>
</div>
</div>
</header>
<!-- END Header -->
<!-- Main container -->
<main class="main-content" id="mainContent">
<button type="button" hidden="true" class="btn btn-primary" data-toggle="modal" data-target="#covidModal"
id="modalOpen">
Open modal
</button>
<div class="modal fade" id="covidModal" tabindex="-1" role="dialog" style="display: none" aria-hidden="true">
<div class="modal-dialog modal-lg absolute-center" style="height: 80vh; width: 80%;" role="document">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<!-- Event Application is Coming Soon -->
<!-- <h3>
<b>HackUMass IX Is Coming Soon!</b>
</h3>
<p class="lead">
We will be hosting HackUMass IX this year from November 5th - 7th. Applications will be opening shortly!
</p>
<p class="lead">
If you have any questions, message us at <a href="mailto: team@hackumass.com">team@hackumass.com</a>.
</p>
<br> -->
<!-- Event Application is Online -->
<!-- h3 class="half-rem-padding">
<b>HackUMass XI is On!</b>
</h3>
<p class="lead half-rem-padding">
We are hosting HackUMass XI from November 11th - 13th, 2022. HackUMass XI allows students to collaborate on
projects, win
awards, network with companies and sponsors, and attend workshops. Unlike last year, <strong>All Eligible
Students</strong> will be
able to apply, participate, and win awards. To get
started with the application process:
</p>
<table class="default-center">
<tr>
<th class="popup-table-header d-none d-md-table-cell" style="border-right: 1px solid #c5c7ca">
<b>APPLY</b>
</th>
<td class="lead half-rem-padding">
Go to the <a href="http://dashboard.hackumass.com/">HackUMass Dashboard</a> and
<strong>create an account with your school email</strong> to apply.
All participants must re-register new accounts. Accounts from previous years have been deactivated.
</td>
</tr>
<tr-->
<!-- <th> class="popup-table-header"><b>Non-UMass Amherst Students</b></th>
<td class="lead half-rem-padding">
Go to the <a
href="https://forms.gle/CM8fy18A3HRXn3G1A">HackUMass
Sign-Up Form</a> and submit your application.
All participants must sign up with their school email address.
</td-->
<!-- </tr>
</table>
<p class="lead half-rem-padding">
Once you've applied, <a href="https://discord.com/invite/5VBMwfvtFD" target="_blank">join the discord
server</a>
for team formation, event updates, asking questions, and more!
</p>
<h3 class="half-rem-padding">
<b>Applications for HackUMass IX are Closed!</b>
</h3>
<p class="lead half-rem-padding">
Thank you all for applying! We hope to have a great event this year. If you are unable to attend then we hope to welcome you all back to HackUMass XI next year.
If you have any questions, message us at <a href="mailto: team@hackumass.com">team@hackumass.com</a>.
</p> -->
<!-- Organizing Team Applications Open -->
<h3 class="half-rem-padding">
<b>HackUMass XII x UMassGives is here!!</b>
</h3>
<p class="lead half-rem-padding">
Visit
<a href="https://umass.scalefunder.com/gday/giving-day/84641/department/90301" target="_blank">HackUMass XII x UMassGives</a>
if you are interested in donating to our wonderful HackUMass team.
With your help, we can make HackUMass XII the best event yet! Donations begin on
<b>April 24th, 2024 at 3PM</b>! If you have any
questions, message us at
<a href="mailto: team@hackumass.com">team@hackumass.com</a>. Thank you for all of your support! <br>
<br>
With love, <br>
HackUMass Team ♥ 🍪🍪
</p>
</div>
</div>
</div>
</div>
<!-- Main container -->
<main class="main-content">
<section class="section" style="padding-bottom: 0">
<div class="container">
<header class="section-header mb-0" style="padding-bottom: 30px">
<small style="font-size: 20px">Who are we?</small>
<h2>
We are <b class="primary-color">HackUMass</b>, a
<b class="primary-color">36-hour event</b><br />
where students bring their
<b class="primary-color">craziest ideas</b> to life.
</h2>
</header>
<div class="row gap-y">
<div class="col-12 offset-md-2 col-md-8 mb-30">
<div class="humv-video embed-responsive embed-responsive-16by9">
<iframe width="760" height="415" src="https://www.youtube.com/embed/HldI-jUAufo" frameborder="0"
allowfullscreen></iframe>
</div>
</div>
</div>
<center>
<h4 style="padding-top: 0px">
Watch a recap of <b class="primary-color">HackUMass VII</b>, where
<b class="primary-color">1,000 students</b><br />came together to
<b class="primary-color">learn</b> and <b class="primary-color">build</b>
<u><a href="https://hackumass-vii-projects.hackumass.com/public.html" target="_blank">some incredible
projects</a></u>
</h4>
</center>
</div>
</section>
<!--
|‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒
| Schedule Highlights
|‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒
-->
<!--
|‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒
| Features
|‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒
-->
<section class="section bg-gray" style="padding-bottom: 0;">
<div class="bg">
<!--video class="bg-video" loop muted autoplay>
<source src="assets/videos/participants.mp4" type="video/mp4" />
</video-->
</div>
<div class="container">
<header class="section-header">
<small style="font-size: 20px">Why HackUMass?</small>
<div>
<h2 class="primary-color">What Makes Us Unique</h2>
</div>
<hr />
</header>
<div class="row gap-y align-items-center">
<div class="col-12 col-md-5">
<img class="rounded shadow-2" src="assets/img/useful/hardware.jpg" alt="..." />
</div>
<div class="col-12 col-md-7">
<h4 class="primary-color" style="font-weight: normal">
<b>Hardware</b> from A to Z
</h4>
<h5 style="font-weight: normal">
At HackUMass, we foster collaboration among developers and engineers,
empowering them to craft outstanding software and hardware projects.
Our extensive toolkit includes everything from Arduinos and Raspberry
Pis to quadcopters and Oculus Rifts. With the resources in hand and
your creative ideas, let's bring them to life at HackUMass!
</h5>
</div>
</div>
<hr />
<div class="row gap-y align-items-center">
<div class="col-12 col-md-7">
<h4 class="primary-color" style="font-weight: normal">
Creative <b>Hackers</b>
</h4>
<h5 style="font-weight: normal">
HackUMass welcomes hackers of all backgrounds and experience
levels - from veterans to newcomers, developers to entrepreneurs.
Our aim is to unite and inspire a diverse community. Join 800
participants in one of New England's top hackathons. Come make
new connections and be part of something special.
</h5>
</div>
<div class="col-12 col-md-5">
<img class="rounded shadow-2" src="assets/img/useful/hackers.jpg" alt="..." />
</div>
</div>
<hr />
</div>
</section>
<div class="container">
<div class="row gap-y align-items-center">
<div class="col-12 col-md-5">
<img class="rounded shadow-2" src="assets/img/useful/venue.jpg" alt="..." />
</div>
<div class="col-12 col-md-7">
<h4 class="primary-color" style="font-weight: normal" style="background-color: rgb(100, 100, 100)"">
Incredible <b>Venue</b>
</h4>
<h5 style="font-weight: normal">
Tired of the same old gym-based hacking? Say no more! HackUMass takes
place in the cutting-edge Integrative Learning Center (ILC) at
UMass Amherst. This state-of-the-art, four-story, 173,000 sq. ft.
facility offers 2,000 seats and ample space for hacking, rest, yoga,
Super Smash Bros, and more. As one of New England's biggest research
universities, we're serious about our hacking spaces, and we think
you'll love it.
</h5>
</div>
</div>
<hr />
<div class="row gap-y align-items-center">
<div class="col-12 col-md-7">
<h4 class="primary-color" style="font-weight: normal">
#1 <b>Dining</b>
</h4>
<h5 style="font-weight: normal">
Soylent not cutting it for you? Don’t worry. We have the
<a
href="http://www.food-management.com/news-trends/umass-tops-2016-princeton-review-best-campus-food-listing">#1
dining service in the nation!</a>
As a HackUMass participant, you'll enjoy access to our highly-rated
dining halls and other facilities. Any dietary restrictions? No problem!
We cater to all special dietary needs.
</h5>
</div>
<div class="col-12 col-md-5">
<img class="rounded shadow-2" src="assets/img/useful/food.jpg" alt="..." />
</div>
</div>
<hr />
<div class="row gap-y align-items-center">
<div class="col-12 col-md-5">
<img class="rounded shadow-2" src="assets/img/useful/sponsors.jpg" alt="MITRE sponsors at HackUmass X" />
</div>
<div class="col-12 col-md-7">
<h4 class="primary-color" style="font-weight: normal">
Generous <b>Sponsors</b>
</h4>
<h5 style="font-weight: normal">
HackUMass thrives with the support of our diverse incredible sponsors,
ranging from startups to industry giants. They bring you workshops,
tech talks, prizes, swag, and more. Check out this year's sponsors below
(and make sure to say thanks to them)! If your company is interested in
sponsoring, reach out to us at <a href="mailto:team@hackumass.com"
target="_blank">team@hackumass.com</a>.
</h5>
</div>
</div>
</div>
<section class="section" id="section-faq">
<div class="container">
<header class="section-header">
<header class="section-header" style="margin: 10px auto 0px">
<small style="font-size: 20px">Have Questions?</small>
</header>
<div>
<h2 class="primary-color">Frequently Asked Questions</h2>
</div>
<p class="lead">
Drop us an email if you can't find an answer to your question in
this list
</p>
</header>
<div class="accordion" id="accordion-general">
<div class="card">
<h5 class="card-title">
<a data-toggle="collapse" data-parent="#accordion-general" href="#collapse-general-1">What is a
hackathon?</a>
</h5>
<div id="collapse-general-1" class="collapse">
<div class="card-block">
A hackathon is where students bring their cool ideas to life.
Over the course of 36 hours, participants can use software
and/or hardware to build their idea and win prizes, whether as
a team or as an individual.
</div>
</div>
</div>
<div class="card">
<h5 class="card-title">
<a data-toggle="collapse" data-parent="#accordion-general" href="#collapse-general-2">Where is it?</a>
</h5>
<div id="collapse-general-2" class="collapse">
<div class="card-block">
HackUMass XII will be completely in-person this year. This includes check-in,
hardware checkout, swag pickup, participation and judging. Mentoring and most
workshops will also take place in-person. More details regarding
the career fair, opening and closing ceremonies, and catering
will be given closer to the hackathon.
</div>
</div>
</div>
<div class="card">
<h5 class="card-title">
<a data-toggle="collapse" data-parent="#accordion-general" href="#collapse-general-3">Who's
coming?</a>
</h5>
<div id="collapse-general-3" class="collapse">
<div class="card-block">
We expect over 1000 hackers from across the U.S. to attend our
hackathon.
</div>
</div>
</div>
<div class="card">
<h5 class="card-title">
<a data-toggle="collapse" data-parent="#accordion-general" href="#collapse-general-4">Who can
attend?</a>
</h5>
<div id="collapse-general-4" class="collapse">
<div class="card-block">
Participation in HackUMass XII is not limited to UMass Amherst students.
The hackathon and the workshops are open to all college/university students, across all majors!
</div>
</div>
</div>
<div class="card">
<h5 class="card-title">
<a data-toggle="collapse" data-parent="#accordion-general" href="#collapse-general-5">Do I need
experience?</a>
</h5>
<div id="collapse-general-5" class="collapse">
<div class="card-block">
We welcome hackers of all experience levels to HackUMass! Our
beginner track will help hackers who want to learn more about
software and hardware hacking get started. We will also have
mentors willing to help if you run into any problems during
the event.
</div>
</div>
</div>
<div class="card">
<h5 class="card-title">
<a data-toggle="collapse" data-parent="#accordion-general" href="#collapse-general-6">Should I be
in a
team?</a>
</h5>
<div id="collapse-general-6" class="collapse">
<div class="card-block">
We encourage everyone to work in a team of up to 4 people.
Larger teams are allowed, but we are unable to guarantee that
every member of your team will be able to receive prizes if
you win. There will be plenty of opportunities to form your
team online and at the event -- so don't worry if you haven't
yet planned it out.
</div>
</div>
</div>
<!-- <div class="card">
<h5 class="card-title">
<a data-toggle="collapse" data-parent="#accordion-general" href="#collapse-general-7">Will you be providing travel reimbursements?</a>
</h5>
<div id="collapse-general-7" class="collapse">
<div class="card-block">
We are unable to provide travel reimbursements, but will be sending buses to New York and Boston. If you aren't sure whether you'll be able to make it, we encourage you to apply regardless -- we will send you more details on our buses closer to the event.
</div>
</div>
</div> -->
<div class="card">
<h5 class="card-title">
<a data-toggle="collapse" data-parent="#accordion-general" href="#collapse-general-8">Can I start
my
project before the event?</a>
</h5>
<div id="collapse-general-8" class="collapse">
<div class="card-block">
No, you may not start your project beforehand. All of the work
related to the project must be done during the event.
</div>
</div>
</div>
<div class="card">
<h5 class="card-title">
<a data-toggle="collapse" data-parent="#accordion-general" href="#collapse-general-9">Is there a
Code of
Conduct we need to abide by?</a>
</h5>
<div id="collapse-general-9" class="collapse">
<div class="card-block">
Be smart about your actions. We enforce the
<a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf">MLH Code of Conduct</a>
at our event.
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section bg-gray" id="sponsorship">
<div class="container">
<header class="section-header" style="margin: 10px auto 0px">
<small style="font-size: 20px">This hackathon is brought to you by...</small>
</header>
<header class="section-header" style="margin-bottom: 35px">
<div>
<h2 class="primary-color">Our Sponsors</h2>
<p class="lead">
Want to Sponsor HackUMass? Reach out to us at <a href = "mailto:team@hackumass.com"> team@hackumass.com</a>
</p>
</div>
</header>
</div>
<div id="sponsors-container"></div>
<!-- <div class="partner-container" style="margin-top: -75px">
<div class="partner partner-small">
<a target="_blank" href="https://amazon.com" style="margin-top: 80px"><img
src="assets/img/sponsors/diamond/amazon.png" alt="Amazon" /></a>
</div>
<div class="partner partner-medium">
<a target="_blank" href="https://www.cics.umass.edu/" style="margin-top: 20px; width: 70%; height: 70%"><img
src="assets/img/sponsors/diamond/CICS.jpeg" alt="CICS" /></a>
</div>
<div class="partner partner-medium">
<a target="_blank" href="https://www.mitre.org/" style="margin-top: 80px"><img
src="assets/img/sponsors/gold/MITRE.png" alt="MITRE" /></a>
</div>
</div>
<div class="partner-container" style="margin-top: -30px">
<div class="partner partner-medium">
<a target="_blank" href="https://www.digitalocean.com/"
style="margin-top: 20px; width: 85%; height: 85%"><img src="assets/img/sponsors/diamond/DigitalOcean.png"
alt="DigitalOcean" /></a>
</div>
<div class="partner partner-medium">
<a target="_blank" href="https://engineering.umass.edu/" style="margin-top: 20px"><img
src="assets/img/sponsors/diamond/engineering.png" alt="Engineering" /></a>
</div>
<div class="partner partner-medium">
<a target="_blank" href="https://www.isenberg.umass.edu/centers/berthiaume-center-for-entrepreneurship" style="margin-top: 20px"><img
src="assets/img/sponsors/diamond/UMass_Berthiaume.png" alt="Engineering" /></a>
</div>
</div> -->
<br/>
<br/>
<br/>
<header class="section-header" style="margin-bottom: 35px">
<div >
<h2 class="primary-color">Our Partners</h2>
</div>
</header>
<div id="partners-container"></div>
<!-- </div>
<div class="partner-container" style="margin-top: 50px">
<div class="partner partner-small">
<a target="_blank" href="https://www.echo3d.co/" style="width: 95%; height: 95%"><img
src="assets/img/partners/echo3d.png" alt="echo3d" /></a>
</div>
<div class="partner partner-small">
<a target="_blank" href="https://cloud.google.com/" style="margin-top: 60px"><img
src="assets/img/sponsors/mlh/GoogleCloud.png" alt="GoogleCloud" /></a>
</div>
<div class="partner partner-small">
<a target="_blank" href="https://www.umassamherstm5.org/"
style="margin-top: 15px; width: 40%; height: 40%"><img src="assets/img/partners/M5Logo.png"
alt="M5" /></a>
</div>
</div>
<div class="partner-container" style="margin-top: 50px">
<div class="partner partner-small">
<a target="_blank" href="https://mlh.io/" style="margin-top: 40px; width: 80%; height: 80%"><img
src="assets/img/partners/mlh.png" alt="MLH" /></a>
</div>
<div class="partner partner-small">
<a target="_blank" href="https://www.quidio.co/"
style="margin-top: 15px; width: 40%; height: 40%"><img src="assets/img/partners/Quidio.png"
alt="Quidio" /></a>
</div>
<div class="partner partner-small">
<a target="_blank" href="https://www.silverscreendesign.com/" style="margin-top: 40px; width: 80%; height: 80%"><img
src="assets/img/partners/silverscreen.png" alt="silverscreen" /></a>
</div>
</div>
<div class="partner-container" style="margin-top: 20px">
<div class="partner partner-small">
<a target="_blank" href="http://hackp.ac/mlh-StandOutStickers-hackathons" style="margin-top: 60px"><img
src="assets/img/partners/standout-stickers.png" alt="StandOut Stickers" /></a>
</div>
</div>
</section> -->
<!-- <center>
<div style="width: 40%; height: 35%">
<a target="_blank" href="https://aws.amazon.com"><img src="assets/img/sponsors/title/amazon_logo_generic.png" alt="Amazon logo" /></a>
</div>
</center>
<br />
<br />
<br />
<div class="partner-container" style="margin-top: -75px">
<div class="partner partner-medium">
<a target="_blank" href="https://www.optum.com/"><img src="assets/img/sponsors/gold/Optum.jpg" alt="Optum" ></a>
</div>
<div class="partner partner-medium">
<br/><br/><br/>
<a target="_blank" href="https://www.citizensbank.com/"><img src="assets/img/sponsors/gold/Citizens_Bank.PNG" alt="Citizen's Bank Logo" ></a>
</div>
<div class="partner partner-medium">
<a target="_blank" href="https://www.mitre.com/"><br /><br /><img src="assets/img/sponsors/gold/MITRE.jpg" alt="MITRE" ></a>
</div>
</div>
<br />
<br />
<div class="partner-container">
<div style="width: 20%; height: 35%; display: inline-block; padding-right: 5%">
<a target="_blank" href="https://www.paytronix.com"><br /><img src="assets/img/sponsors/bronze/paytronix.png" alt="Paytronix logo" /></a>
</div>
<div style="width: 20%; height: 35%; display: inline-block; padding-left: 5%">
<a target="_blank" href="https://www.massmutual.com"><img src="assets/img/sponsors/bronze/massmutual.png" alt="MassMutual" /></a>
</div>
</div>
<br />
<br />
<hr />
<br />
<br />
<div class="partner-container" style="margin-top: -75px">
<div class="partner partner-medium">
<br/><br/><br/>
<a target="_blank" href="https://www.isenberg.umass.edu/"><img src="assets/img/partners/isenberg-medium.png" alt="Isenberg Logo"></a>
</div>
<div class="partner partner-medium">
<br/><br/><br/>
<a target="_blank" href="https://www.cics.umass.edu/"><img src="assets/img/partners/CICS-medium.png" alt="CICS Logo"></a>
</div>
<div class="partner partner-medium">
<a target="_blank" href="https://engineering.umass.edu/"><img src="assets/img/partners/COE-medium.png" alt="College of Engineering Logo"></a>
</div>
</div>
<div class="partner-container">
<div class="partner partner-small" style = "width: 25%; height: 25%;">
<br /><br />
<a target="_blank" href="https://www.mobilepixels.us"><img src="assets/img/sponsors/bronze/mobilepixels.png" alt="MobilePixels"></a>
</div>
<div class="partner partner-small">
<a target="_blank" href="http://indico.io" style="margin-top: 20px"><img src="assets/img/partners/Indico.png" alt="Indico"></a>
</div>
<div class="partner partner-small">
<a target="_blank" href="https://nvidia.com" style="margin-top: 20px"><img src="assets/img/partners/nvidia-deeplearning.png" alt="NVIDIA Deep Learning"></a>
<a target="_blank" href="https://sites.google.com/umass.edu/all-campus-makerspace/"><img src="assets/img/partners/all-campus-makerspace.png" alt="UMass All-Campus Makerspace" /></a>
</div>
</div>
<div class="partner-container">
<div class="partner partner-small">
<br />
<a target="_blank" href="https://digitalocean.com" style="margin-top: 40px"><img src="assets/img/partners/digitalocean.png" alt="DigitalOcean"></a>
</div>
<div class="partner partner-small">
<a target="_blank" href="https://industrial.ubidots.com/accounts/signup_industrial/?utm_source=partners&utm_medium=referral&utm_campaign=hackumass" style="margin-top: 40px"><img src="assets/img/partners/ubidots.png" alt="Ubidots"></a>
</div>
<div class="partner partner-small">
<br />
<a target="_blank" href="https://hvmn.com/go-cubes" style="margin-top: 10px"><img src="assets/img/partners/go-cubes-small.png" alt="Go Cubes"></a>
</div>
</div>
<div class="partner-container">
<div class="partner partner-small">
<a target="_blank" href="https://wolfram.com" style="margin-top: 40px"><img src="assets/img/partners/wolfram.png" alt="Wolfram"></a>
</div>
<div class="partner partner-small" style = "width: 15%; height: 15%;">
<a target="_blank" href="https://www.jetbrains.com" style="margin-left: 80px"><img src="assets/img/partners/JetBrains.png" alt="JetBrains Logo" height=150/></a>
</div>
<div class="partner partner-small">
<a target="_blank" href="http://hackp.ac/mlh-stickermule-hackathons" style="margin-top: 20px"><img src="assets/img/sponsors/mlh/stickermule.png" alt="StickerMule"></a>
</div>
</div>
</section> -->
<!--
|‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒
| The Organizing Team
|‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒
-->
<section class="section bg-gray">
<div class="container-fluid" >
<header class="section-header">
<small style="font-size: 20px">Our Team</small>
<div>
<h2 class="primary-color">Meet the people behind it!</h2>
</div>
</header>
<div style="width: 70%; margin: auto" id="team-container">
<!-- members info will be generated in this div by our-team.js -->
<section id="tabs">
<div class="container">
<div class="row">
<div class="col-xs-12 ">
<nav>
<div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
<a class="nav-item nav-link active" id="nav-directors-tab" data-toggle="tab" href="#nav-directors" role="tab" aria-controls="nav-directors" aria-selected="true">Directors</a>
<a class="nav-item nav-link" id="nav-hardware-tab" data-toggle="tab" href="#nav-hardware" role="tab" aria-controls="nav-hardware" aria-selected="true">Hardware</a>
<a class="nav-item nav-link" id="nav-logistics-tab" data-toggle="tab" href="#nav-logistics" role="tab" aria-controls="nav-logistics" aria-selected="false">Logistics</a>
<a class="nav-item nav-link" id="nav-prdesign-tab" data-toggle="tab" href="#nav-prdesign" role="tab" aria-controls="nav-prdesign" aria-selected="false">PR/Design</a>
<a class="nav-item nav-link" id="nav-sponsorship-tab" data-toggle="tab" href="#nav-sponsorship" role="tab" aria-controls="nav-sponsorship" aria-selected="false">Sponsorship</a>
<a class="nav-item nav-link" id="nav-technology-tab" data-toggle="tab" href="#nav-technology" role="tab" aria-controls="nav-technology" aria-selected="false">Technology</a>
</div>
</nav>
<div class="tab-content py-3 px-3 px-sm-0" id="nav-tabContent">
<div class="tab-pane fade show active" id="nav-directors" role="tabpanel" aria-labelledby="nav-directors-tab">
</div>
<div class="tab-pane fade" id="nav-hardware" role="tabpanel" aria-labelledby="nav-hardware-tab">
</div>
<div class="tab-pane fade" id="nav-logistics" role="tabpanel" aria-labelledby="nav-logistics-tab">
</div>
<div class="tab-pane fade" id="nav-prdesign" role="tabpanel" aria-labelledby="nav-prdesign-tab">
</div>
<div class="tab-pane fade" id="nav-sponsorship" role="tabpanel" aria-labelledby="nav-sponsorship-tab">
</div>
<div class="tab-pane fade" id="nav-technology" role="tabpanel" aria-labelledby="nav-technology-tab">
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</section>
<!-- <section class="section" id="section-review">
<div class="container-fluid">
<header class="section-header">
<small>Attendees Seem to Like Us...</small>
<h2 class="primary-color">Tweets about us </h2>
</header>
<div class="swiper-container swiper-button-circular" data-slides-per-view="2" data-space-between="50" data-centered-slides="true">
<div class="swiper-wrapper pb-0">
<div class="swiper-slide">
<div class="card card-shadowed">
<a href="https://twitter.com/pshenoy/status/1126603186729570304" style="color: black">
<div class="card-block px-30">
<p class="text-quoted mb-0">Our DeepRoof paper on using computer vision to estimate solar potential of home roof images was accepted for oral presentation to KDD (@kdd_news)! Previously won 1st prize at @HackUMass hackathon. @umasscs authors S Lee, S. Iyengar, S Maji, @pshenoy #SmartCities #AIforGood</p>
<div class="media align-items-center pb-0">
<img class="avatar avatar-xs" src="assets/img/twitter/pshenoy_profile.png" alt="...">
<div class="media-body lh-1">
<h6 class="mb-0">Prashant Shenoy</h6>
<small>@pshenoy </small>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="card card-shadowed">
<a href="https://twitter.com/Vukovic96_/status/1051554445107040258" style="color: black">
<div class="card-block px-30">
<p class="text-quoted mb-0">Made top 3 finalists and won best game at #HackUMass. I’m so happy! Catch PRAKTIKA on computers near you later this week! </p>
<div class="media align-items-center pb-0">
<img class="avatar avatar-xs" src="assets/img/twitter/vic_profile.jpg" alt="...">
<div class="media-body lh-1">
<h6 class="mb-0">Alexander Vuković</h6>
<small>@Vukovic96_ </small>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="card card-shadowed">
<a href="https://twitter.com/inacubicle/status/1051505628080984070" style="color: black">
<div class="card-block px-30">
<p class="text-quoted mb-0">Great weekend mentoring @HackUMass! Big props to all the hackers there! Everyone should be proud of what they built</p>
<div class="media align-items-center pb-0">
<img class="avatar avatar-xs" src="assets/img/twitter/marc_profile.jpg" alt="...">
<div class="media-body lh-1">
<h6 class="mb-0">Marc Rudkowski</h6>
<small>@inacubicle</small>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="card card-shadowed">
<a href="https://twitter.com/Markforged/status/785500001778761728" style="color: black">
<div class="card-block px-30">
<p class="text-quoted mb-0">We had a great time at @HackUMass this weekend. Thanks to everyone that came by and learned more about
the printer!</p>
<div class="media align-items-center pb-0">
<img class="avatar avatar-xs" src="assets/img/twitter/markforged_profile.jpg" alt="...">
<div class="media-body lh-1">
<h6 class="mb-0">Markforged</h6>
<small>@Markforged </small>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="card card-shadowed">
<a href="https://twitter.com/inacubicle/status/785150335476269056" style="color: black">
<div class="card-block px-30">
<p class="text-quoted mb-0">Had so much fun at @HackUMass! Was an amazing experience mentoring and lots of amazing hacks! Everyone
should be proud! #hackerlife</p>
<div class="media align-items-center pb-0">
<img class="avatar avatar-xs" src="assets/img/twitter/mark_profile.jpg" alt="...">
<div class="media-body lh-1">
<h6 class="mb-0">Marc Rudkowski</h6>
<small>@inacubicle</small>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<div class="card card-shadowed">
<a href="https://twitter.com/jibodev/status/784561593946341378" style="color: black">
<div class="card-block px-30">
<p class="text-quoted mb-0">600+ hackers excited to be @HackUMass thank you for letting @JiboRobot be a part of this!</p>
<div class="media align-items-center pb-0">
<img class="avatar avatar-xs" src="https://pbs.twimg.com/profile_images/734994972391276544/Me_txfsK_bigger.jpg" alt="...">
<div class="media-body lh-1">
<h6 class="mb-0">iboDev</h6>
<small>@jibodev</small>
</div>