-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
1392 lines (1102 loc) · 61.4 KB
/
index.html
File metadata and controls
1392 lines (1102 loc) · 61.4 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
<!-- Website built by Jeffrey Zhou '27 :D -->
<!-- _______ _ _ _ _ _ -->
<!-- |__ __| | | | | | | | | | | -->
<!-- | | ___ __ _ _ __ ___ | |__| | __ _ ___| | _| |_ ___ ___| |__ -->
<!-- | |/ _ \/ _` | '_ ` _ \ | __ |/ _` |/ __| |/ / __/ _ \/ __| '_ \ -->
<!-- | | __/ (_| | | | | | | | | | | (_| | (__| <| || __/ (__| | | | -->
<!-- |_|\___|\__,_|_| |_| |_| |_| |_|\__,_|\___|_|\_\\__\___|\___|_| |_| -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta property="og:image" content="/tmp_preview.png" />
<!-- <meta property="og:image:width" content="650" />
<meta property="og:image:height" content="362" /> -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-72Z617HLV6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-72Z617HLV6');
</script>
<link rel="canonical" href="https://hack.caltech.edu/" />
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--- primary meta tags -->
<title>Hacktech - Caltech's Premier Hackathon</title>
<meta name="title" content="Hacktech - Caltech's Premier Hackathon">
<meta name="description" content="Join us at Hacktech, Caltech's premier hackathon, where innovation meets creativity!">
<!-- seo -->
<meta name="description" content="Join Hacktech, an annual intercollegiate hackathon hosted by the California Institute of Technology. Apply now for free and participate in exciting challenges!">
<meta name="keywords" content="Hacktech, Caltech, hackathon, social good, technology, innovation, sustainability, public health, interactive multimedia">
<meta property="og:title" content="Hacktech by Caltech">
<meta property="og:description" content="Join Hacktech, an annual intercollegiate hackathon hosted by the California Institute of Technology. Apply now for free and participate in exciting challenges!">
<meta property="og:image" content="images/hacktech-logo-icon.svg">
<meta property="og:url" content="https://hack.caltech.edu">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Hacktech by Caltech">
<meta name="twitter:description" content="Join Hacktech, an annual intercollegiate hackathon hosted by the California Institute of Technology. Apply now for free and participate in exciting challenges!">
<meta name="twitter:image" content="images/hacktech-logo-icon.svg">
<meta name="twitter:url" content="https://hack.caltech.edu">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Event",
"name": "Hacktech by Caltech",
"startDate": "2025-04-19T21:00:00Z",
"endDate": "2025-04-21T09:00:00Z",
"location": {
"@type": "Place",
"name": "Caltech",
"address": {
"@type": "PostalAddress",
"addressLocality": "Pasadena",
"addressRegion": "CA",
"postalCode": "91125",
"addressCountry": "US"
}
},
"description": "Join Hacktech, an annual intercollegiate hackathon hosted by the California Institute of Technology. Apply now for free and participate in exciting challenges!",
"image": "images/hacktech-logo-icon.svg",
"url": "https://hack.caltech.edu"
}
</script>
<script>
document.addEventListener('contextmenu', function (e) {
e.preventDefault();
});
</script>
<!-- Favicon -->
<link rel="icon" href="./favicon.png" type="image/png">
<link rel="icon" href="./images/favicon.png" />
<!--- google font link -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Oxanium:wght@400;500;600;700&family=Work+Sans:wght@600&display=swap"
rel="stylesheet">
<!--- custom css link -->
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/updates.css">
<link rel="stylesheet" href="./css/sponsors.css">
<link rel="stylesheet" href="./css/speakers.css">
<link rel="stylesheet" href="./css/gallery.css">
<link rel="stylesheet" href="./css/judges.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
.notification-bubble {
position: absolute;
top: -8px;
right: -12px;
width: 25px;
height: 25px;
background-color: red;
border-radius: 50%;
font-size: 14px;
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}
.btn-wrapper {
position: relative;
display: inline-block;
}
</style>
</head>
<body id="top">
<!-- APPLICATION MODAL -->
<div class="modal" id="application-modal">
<div class="modal-content">
<span class="close" onclick="closeModal()">×</span>
<!-- Role Selection -->
<div id="role-selection">
<h2>Select your role below:</h2>
<div class="role-buttons">
<button onclick="showForm('sponsor')" class="btn">Sponsor</button>
<button onclick="showForm('judge')" class="btn">Judge</button>
</div>
</div>
<!-- Sponsor Form -->
<form id="sponsor-form" onsubmit="submitForm(event, 'sponsor')">
<p style="font-size: 30px; font-weight: bold;">
Sponsor Hacktech for our 2026 iteration!
</p>
<div class="bullet-points">
<p>
- Introduce your product or platform to 1000+ student developers <br>
- Recruit from an elite pool of software developers and engineers <br>
- Increase your brand's visibility through Hacktech media channels/events <br>
- Facilitate interaction between participants and your employees & brand<br>
</p>
<a href="/2026/hacktech_2026_sponsor_tentative.pdf" class="footer-link" style="color: orange;" target="_blank">Click Here for our tentative 2026 Sponsorship Packet!</a>
</div>
<input type="text" name="name" placeholder="Full Name" required>
<input type="text" name="company" placeholder="Company/Organization Name" required>
<input type="email" name="email" placeholder="Email" required>
<textarea name="inquiry" placeholder="Inquiry" required></textarea>
<button type="submit" class="submit-btn">Submit</button>
</form>
<!-- Judge Form -->
<form id="judge-form" onsubmit="submitForm(event, 'judge')">
<!-- Judge applications Closed -->
<!-- <p style="font-size: 30px; font-weight: bold;">
Thanks you for your interest in judging Hacktech!
</p>
Unfortunately, all judging spots have been filled for this year. If you are a sponsor looking to send judges, please fill out the sponsor form. -->
<!-- Judge applications Open -->
<p style="font-size: 30px; font-weight: bold;">
Apply to be a Judge for Hacktech!
</p>
<div class="bullet-points">
<p>
For our 2026 iteration, we are looking for judges who are passionate about technology, innovation and helping aspiring students. Note that spots are limited, and priority will be given to standout individuals, or sponsor company judges. If you are a sponsor looking to send judges, please review/fill out the sponsor form.
</p>
<br>
<p>
Interested in learning more or chatting about Hacktech? Connect with one of our Directors - we'd love to hear from you!
</p>
</div>
<input type="text" name="name" placeholder="Full Name" required>
<input type="text" name="company" placeholder="Company Name and Role" required>
<input type="email" name="email" placeholder="Email" required>
<textarea name="experience" placeholder="Have you judged at any other hackathon previously? If so, please specify which one." required></textarea>
<button type="submit" class="submit-btn">Submit</button>
</form>
</div>
</div>
<!-- Hacker Updates Modal -->
<!-- <div class="modal" id="updates-modal">
<div class="modal-content">
<span class="close" onclick="closeUpdatesModal()">×</span>
<h2 style="font-size: 30px; font-weight: bold; margin-bottom: 20px; color: orange;">Hacker Updates - April 24, 2025</h2>
<div class="updates-content">
<p>• At this time, all late adds and acceptances have been sent out, and we are unable to consider further applications or late requests!</p>
<p>• If you are a participant, you should be in the Discord server at this point. If you are planning to participate and have not joined Discord, please reach out to hacktech@caltech.edu ASAP.</p>
<p>• All further communications about the event will take place in Discord.</p>
</div>
</div>
</div> -->
<div class="modal" id="updates-modal">
<div class="modal-content">
<span class="close" onclick="closeUpdatesModal()">×</span>
<h2 style="font-size: 30px; font-weight: bold; margin-bottom: 20px; color: orange;">Hacker Updates - March 16, 2025</h2>
<div class="updates-content">
<p>We are still working on finalizing details for the event, including tracks, sponsors, speakers, and more. </p>
<!-- <p>Student applications will be opened early next week, so stay tuned for more updates! Our team looks forward to reading all your applications!</p> -->
<p>Our 2026 applications are now closed for non-Caltech participants. First round acceptances have been released and we may be sending additional acceptance batches based on yield. </p>
</div>
</div>
</div>
<!--- #HEADER --->
<header class="header active" data-header>
<div class="container">
<a href="#" class="logo">
<img src="./images/logo.webp" class="logo-img" alt="unigine home">
</a>
<nav class="navbar" data-navbar>
<ul class="navbar-list">
<li class="navbar-item">
<a href="#home" class="navbar-link" data-nav-link>home</a>
</li>
<li class="navbar-item">
<a href="#about" class="navbar-link" data-nav-link>about</a>
</li>
<li class="navbar-item">
<a href="#speaker" class="navbar-link" data-nav-link>speakers</a>
</li>
<li class="navbar-item">
<a href="#sponsor" class="navbar-link" data-nav-link>sponsors</a>
</li>
<li class="navbar-item">
<a href="#faq" class="navbar-link" data-nav-link>faq</a>
</li>
</ul>
</nav>
<button class="nav-toggle-btn" aria-label="toggle menu" data-nav-toggler>
<span class="line line-1"></span>
<span class="line line-2"></span>
<span class="line line-3"></span>
</button>
</div>
</header>
<main>
<article>
<!--- #landing PAGE --->
<div class="hero has-before" id="home">
<!-- Particles.js container -->
<div id="particles-js"></div>
<div class="container">
<div class="hero-title-wrapper">
<img src="./images/logo-text.svg" alt="Hacktech Logo" class="hero-title-image">
</div>
<br>
<p class="section-subtitle">April 24 - 26, 2026</p><br>
<div style="display: flex; gap: 20px; justify-content: center; margin: 0 auto; max-width: 500px; flex-wrap: wrap;">
<!-- Use below for hacker Application -->
<!-- <a href="https://docs.google.com/forms/d/e/1FAIpQLSf2bu7U7FyYgXEfdyfWSOjPSmEdSeE_j9nPpUv4b1lj07Emhw/viewform?usp=sf_link" class="btn" data-btn target="_blank" style="flex: 0 1 auto; margin: 0px;">I'm a Hacker</a> -->
<!-- <a href="https://hacktech2025.devpost.com/" class="btn" data-btn target="_blank" style="display: inline-flex; align-items: center; justify-content: center; gap: 4px; padding: 12px 24px;">
2025 Devpost
<i class="fas fa-external-link-alt" style="font-size: 0.8em; transform: translateY(-1px);"></i>
</a> -->
<!-- Notification bubble modal -->
<!-- <div class="btn-wrapper">
<button onclick="openUpdatesModal()" class="btn" data-btn>I'm a Hacker!</button>
<div class="notification-bubble">!</div>
</div> -->
<!-- No notifaction modal -->
<!-- <button onclick="openUpdatesModal()" class="btn" data-btn>I'm a Hacker!</button> -->
<div class="btn-wrapper">
<a href="https://hack.caltech.edu/live" target="_blank" class="btn" data-btn>
Hacker Live Site!
</a>
<div class="notification-bubble">!</div>
</div>
<button onclick="openModal()" class="btn" data-btn>I'm a Sponsor/Judge!</button>
</div>
<div class="hero-banner">
<img src="./images/hero-banner-2.png" width="850" height="414" alt="Hacker banner" class="w-100 slide-up">
<img src="./images/hero-banner-bg.webp" alt="Hacker banner background" class="hero-banner-bg slide-up-delay">
</div>
</div>
</div>
<!--- #ABOUT SECTION -->
<section class="section about" id="about">
<h2 class="h2 section-title">
<span class="span">Hacktech</span> 2025 RECAP
</h2>
<!-- <p class="section-text" data-reveal="bottom">
Our mission is to create "Realistic Impact," which entails encouraging participants to create projects that could be feasibly implemented in real-world scenarios to make tangible change.
</p> -->
<p class="section-subtitle" id="upcoming-label" data-reveal="bottom">
2025 Stats:
</p>
<div class="hero-stats-overlay">
<div class="stat">
<span class="stat-number" data-target="10">5</span>
<span class="stat-text">countries</span>
</div>
<div class="stat">
<span class="stat-number" data-target="60">45</span>
<span class="stat-text">universities</span>
</div>
<div class="stat">
<span class="stat-number" data-target="400">0</span>
<span class="stat-text">hackers</span>
</div>
<div class="stat">
<span class="stat-number" data-target="60">0</span>
<span class="stat-text">prizes</span>
</div>
<div class="stat">
<span class="stat-number" data-target="36">0</span>
<span class="stat-text">hours</span>
</div>
</div>
<div class="container about-container">
<div class="about-text" >
<p class="section-text-about" style="text-align: center;">
Hacktech is Caltech's annual intercollegiate hackathon. During the 36‑hour event, participants will collaborate in teams of 1 to 4 members to develop projects that align with our themes. Whether you're a seasoned coder or a beginner, Hacktech invites you to join a vibrant community of problem solvers, dreamers, and builders on Caltech's campus. Check out our <a href="https://hacktech2025.devpost.com/"
target="_blank"
style="color: orange; display: inline; white-space: nowrap;">
2025 Devpost <i class="fas fa-external-link-alt" style="font-size: 0.8em; transform: translateY(-1px);"></i>
</a> to see the amazing projects our hackers built during our 2025 event!
</p>
</div>
</div>
<br>
<div class="about-gallery" data-reveal="bottom">
<div class="gallery-wrapper">
<div class="gallery-container">
<div class="gallery-track">
<img src="./2025/previews/1.png" alt="Hacktech Preview 1" class="gallery-image active">
<img src="./2025/previews/2.png" alt="Hacktech Preview 2" class="gallery-image">
<img src="./2025/previews/3.png" alt="Hacktech Preview 3" class="gallery-image">
<img src="./2025/previews/4.png" alt="Hacktech Preview 4" class="gallery-image">
<img src="./2025/previews/5.png" alt="Hacktech Preview 5" class="gallery-image">
<img src="./2025/previews/6.png" alt="Hacktech Preview 6" class="gallery-image">
</div>
<button class="gallery-nav gallery-prev" aria-label="Previous image">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="15 18 9 12 15 6"></polyline>
</svg>
</button>
<button class="gallery-nav gallery-next" aria-label="Next image">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</button>
<div class="gallery-dots">
<button class="gallery-dot active" data-index="0"></button>
<button class="gallery-dot" data-index="1"></button>
<button class="gallery-dot" data-index="2"></button>
<button class="gallery-dot" data-index="3"></button>
<button class="gallery-dot" data-index="4"></button>
<button class="gallery-dot" data-index="5"></button>
</div>
</div>
</div>
</div>
<br>
<div class="container about-container">
<div class="about-text" >
<p class="section-text-about">
<span style="color: white; font-weight: bold;">For 2026, our tracks have not yet been finalized, but for reference, here were our 2025 tracks: Healthcare, Finance/Data Analytics, and Sustainability.</span>
</span>
<br>
<span style="color: orange; font-weight: bold;">What's New for 2026?</span> This year we are excited to implement much of your feedback from last year's event, and plan to continue hosting a fully in-person event with the same general venue setup as last year. Check back here later to see updates on our tracks and other event details!<br>
</p>
</div>
<div class="about-image" data-reveal="right">
<img src="./images/hacker.webp" width="300" height="auto" loading="lazy" alt="About Image">
</div>
</div>
</section>
<!--- #SPEAKERS SECTION -->
<section class="section news" aria-label="our latest news" id="speaker">
<div class="container">
<p class="section-subtitle" data-reveal="bottom">A Round of Applause for our</p>
<h2 class="h2 section-title" data-reveal="bottom">
Hacktech <span class="span">Speakers</span>
</h2>
<p class="section-text" data-reveal="bottom">
Hacktech would not be the same without the contributions of our speakers,
whose insights, expertise, and passion drive the innovation and creativity
that define us.
</p>
<!-- START OF SPEAKER BOX CONTAINER -->
<ul class="news-list">
<!-- FIRST SPEAKER CARD, ADD MORE AS WE GO -->
<li data-reveal="bottom">
<div class="news-card">
<figure class="card-banner img-holder" style="--width: 600; --height: 600;">
<img src="./images/tbd_person.webp" width="600" height="600" loading="lazy"
alt="Placeholder" class="img-cover">
</figure>
<div class="card-content">
<a href="#" class="card-tag">Intro Speaker</a>
<ul class="card-meta-list">
<li class="card-meta-item">
<ion-icon name="calendar-outline" aria-hidden="true"></ion-icon>
<time class="card-meta-text" datetime="2022-01-01">Time TBD</time>
</li>
<li class="card-meta-item">
<ion-icon name="person-outline" aria-hidden="true"></ion-icon>
<p class="card-meta-text">location TBD</p>
</li>
</ul>
<h3 class="h3">
<a class="card-title">TBD</a>
</h3>
<!-- <p class="card-text">
Dr. Kip Thorne is a Nobel laureate in Physics, the Feynman Professor of Theoretical Physics, Emeritus, at Caltech, renowned for his pioneering contributions to gravitational physics and astrophysics, and co-founded LIGO project.
</p> -->
</div>
</div>
</li>
<li data-reveal="bottom">
<div class="news-card">
<figure class="card-banner img-holder" style="--width: 600; --height: 600;">
<img src="./images/tbd_person.webp" width="600" height="600" loading="lazy"
alt="Placeholder" class="img-cover">
</figure>
<div class="card-content">
<a href="#" class="card-tag">Topic TBD</a>
<ul class="card-meta-list">
<li class="card-meta-item">
<ion-icon name="calendar-outline" aria-hidden="true"></ion-icon>
<time class="card-meta-text" datetime="2022-01-01">Time TBD</time>
</li>
<li class="card-meta-item">
<ion-icon name="person-outline" aria-hidden="true"></ion-icon>
<p class="card-meta-text">location TBD</p>
</li>
</ul>
<h3 class="h3">
<a class="card-title">TBD</a>
</h3>
<!-- <p class="card-text">
Adam D'Angelo is the co-founder and CEO of Quora, and recieved his Bachelors from Caltech. Before establishing Quora in 2009, he served as Chief Technology Officer and Vice President of Engineering at Facebook.
</p> -->
</div>
</div>
</li>
<li data-reveal="bottom">
<div class="news-card">
<figure class="card-banner img-holder" style="--width: 600; --height: 600;">
<img src="./images/tbd_person.webp" width="600" height="600" loading="lazy"
alt="Placeholder" class="img-cover">
</figure>
<div class="card-content">
<a href="#" class="card-tag">Topic TBD</a>
<ul class="card-meta-list">
<li class="card-meta-item">
<ion-icon name="calendar-outline" aria-hidden="true"></ion-icon>
<time class="card-meta-text" datetime="2022-01-01">Time TBD</time>
</li>
<li class="card-meta-item">
<ion-icon name="person-outline" aria-hidden="true"></ion-icon>
<p class="card-meta-text">location TBD</p>
</li>
</ul>
<h3 class="h3">
<a class="card-title">TBD</a>
</h3>
<!-- <p class="card-text">
Dr. Animashree (Anima) Anandkumar is NVIDIA's former Director of AI Research and the current Bren Professor at Caltech. She specializes in large-scale machine learning, non-convex optimization and high-dimensional statistics.
</p> -->
</div>
</div>
</li>
</ul>
</div>
</section>
</article>
</main>
<!-- - #SPONSOR SECTION -->
<section class="section upcoming" aria-labelledby="upcoming-label" id="sponsor">
<div class="container">
<p class="section-subtitle" id="upcoming-label" data-reveal="bottom">
Huge thanks to our
</p>
<h2 class="h2 section-title" data-reveal="bottom">
Hacktech <span class="span">Sponsors</span>
</h2>
<p class="section-text" data-reveal="bottom">
Our sponsors are essential, providing support that helps us create an amazing event. We’re grateful for their partnership! More sponsors to come!
</p>
<ol class="upcoming-list">
<section class="sponsors-section">
<div class="sponsors-container">
<div class="sponsor-row tier-gold">
<!-- <div class="sponsor-card">
<a href="https://www.openai.com/" target="_blank">
<img src="./images/openai.png" width="100%" loading="lazy"alt="Gold Sponsor 1" class="card-banner">
</a>
<h3 class="h3 card-title">
<a href="https://www.openai.com/" class="card-link" target="_blank">OpenAI <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
OpenAI is an AI research and deployment company dedicated to ensuring that general-purpose artificial intelligence benefits all of humanity.
</div> -->
<!-- <div class="sponsor-card">
<a href="https://www.extraordinary.com/" target="_blank">
<img src="./images/e.png" width="100%" loading="lazy"alt="Gold Sponsor 1" class="card-banner">
</a>
<h3 class="h3 card-title">
<a href="https://www.extraordinary.com/" class="card-link" target="_blank">Extraordinary.com <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
</div> -->
<div class="sponsor-card">
<a href="https://www.ycombinator.com/" target="_blank">
<img src="./images/yc.png" width="100%" loading="lazy"alt="Gold Sponsor 1" class="card-banner">
</a>
<h3 class="h3 card-title">
<a href="https://www.ycombinator.com/" class="card-link" target="_blank">Y Combinator <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
Make something people want.
</div>
<div class="sponsor-card">
<a href="https://www.kleinerperkins.com/" target="_blank">
<img src="./images/kp.png" width="100%" loading="lazy"alt="Gold Sponsor 1" class="card-banner">
</a>
<h3 class="h3 card-title">
<a href="https://www.kleinerperkins.com/" class="card-link" target="_blank">Kleiner Perkins <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
Kleiner Perkins is an American venture capital firm headquartered on Sand Hill Road in Menlo Park in Silicon Valley.
</div>
<div class="sponsor-card">
<a href="https://listenlabs.ai/" target="_blank">
<img src="./images/listen.png" width="100%" loading="lazy"alt="Gold Sponsor 1" class="card-banner">
</a>
<h3 class="h3 card-title">
<a href="https://listenlabs.ai/" class="card-link" target="_blank">Listen Labs <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
Listen is an end-to-end research platform. Our customers replace surveys, focus groups, and in-depth interviews with Listen's AI-moderated interviews.
</div>
<div class="sponsor-card">
<a href="https://www.rox.com/" target="_blank">
<img src="./images/rox.png" width="100%" loading="lazy"alt="Gold Sponsor 1" class="card-banner">
</a>
<h3 class="h3 card-title">
<a href="https://www.rox.com/" class="card-link" target="_blank">Rox <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
The Rox agent generates pipeline, qualifies leads, books meetings, manages deals, and expands accounts — all on autopilot. Built for the Global 2000.
</div>
<div class="sponsor-card">
<a href="https://ironsite.ai/" target="_blank">
<img src="./images/ironsite.png" width="100%" loading="lazy"alt="Gold Sponsor 1" class="card-banner">
</a>
<h3 class="h3 card-title">
<a href="https://ironsite.ai/" class="card-link" target="_blank">Ironsite AI <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
We use spatial intelligence and AI to help humans do what we do best: build.
</div>
<div class="sponsor-card">
<a href="https://ifm.ai/" target="_blank">
<img src="./images/ifm.png" width="100%" loading="lazy"alt="Gold Sponsor 1" class="card-banner">
</a>
<h3 class="h3 card-title">
<a href="https://ifm.ai/" class="card-link" target="_blank">Institute of Foundation Models <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
The Institute of Foundation Models (IFM) at MBZUAI — the world’s first AI university — is a global research center focused on advancing open, scientifically rigorous foundation models.
</div>
<!-- <div class="sponsor-card">
<a href="" target="_blank">
<img src="./images/tbd_large.png" width="100%" loading="lazy"alt="Gold Sponsor 1" class="card-banner">
</a>
<h3 class="h3 card-title">
<a href="" class="card-link" target="_blank">TBD</a>
</h3>
</div> -->
</div>
<div class="sponsor-row tier-silver">
<!--
<div class="sponsor-card">
<div class="image-container">
<img src="./images/orkes.png" loading="lazy" alt="Silver Sponsor 1" class="card-banner">
</div>
<h3 class="h3 card-title">
<a href="https://www.orkes.io" class="card-link" target="_blank">Orkes <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
<div class="card-meta"></div>
Unified Application Platform for building Highly Reliable Applications & AI Agents.
</div>
<div class="sponsor-card">
<div class="image-container">
<img src="./images/drw.png" loading="lazy" alt="Silver Sponsor 1" class="card-banner">
</div>
<h3 class="h3 card-title">
<a href="https://www.drw.com" class="card-link" target="_blank">DRW Holdings <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
DRW is a diversified trading firm innovating across both traditional and cutting-edge markets.
</div>
<div class="sponsor-card">
<div class="image-container">
<img src="./images/dryft.png" loading="lazy" alt="Silver Sponsor 1" class="card-banner">
</div>
<h3 class="h3 card-title">
<a href="https://www.godryft.com" class="card-link" target="_blank">Dryft <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
Dryft builds AI supply chain planners that mimic, optimize and automate human operational decision in manufacturing.
<div class="card-meta"></div>
</div> -->
<!-- <div class="sponsor-card">
<a href="https://studentaffairs.caltech.edu/funding/moore-hufstedler-fund-mhf" target="_blank">
<img src="./images/mhf_small.png" width="100%" loading="lazy" alt="Gold Sponsor 1" class="card-banner">
</a>
<h3 class="h3 card-title">
<a href="https://studentaffairs.caltech.edu/funding/moore-hufstedler-fund-mhf" class="card-link" target="_blank">Moore-Hufstedler Fund <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
<div class="card-meta"></div>
</div> -->
<div class="sponsor-card">
<div class="image-container">
<img src="./images/citadel.png" loading="lazy" alt="Silver Sponsor 1" class="card-banner">
</div>
<h3 class="h3 card-title">
<a href="https://www.citadel.com" class="card-link" target="_blank">Citadel <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
<div class="card-meta"></div>
</div>
<div class="sponsor-card">
<div class="image-container">
<img src="./images/deshaw.png" loading="lazy" alt="Silver Sponsor 2" class="card-banner">
</div>
<h3 class="h3 card-title">
<a href="https://www.deshaw.com/" class="card-link" target="_blank">D.E. Shaw Group <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
<div class="card-meta"></div>
</div>
<div class="sponsor-card">
<div class="image-container">
<img src="./images/drw.png" loading="lazy" alt="Silver Sponsor 1" class="card-banner">
</div>
<h3 class="h3 card-title">
<a href="https://www.drw.com" class="card-link" target="_blank">DRW Holdings <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
</div>
<div class="sponsor-card">
<div class="image-container">
<img src="./images/hrt.png" loading="lazy" alt="Silver Sponsor 1" class="card-banner">
</div>
<h3 class="h3 card-title">
<a href="https://www.hudsonrivertrading.com/" class="card-link" target="_blank">Hudson River Trading <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
<div class="card-meta"></div>
</div>
<div class="sponsor-card">
<div class="image-container">
<img src="./images/sideshift.png" loading="lazy" alt="Silver Sponsor 1" class="card-banner">
</div>
<h3 class="h3 card-title">
<a href="https://www.sideshift.app/" class="card-link" target="_blank">Sideshift <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
<div class="card-meta"></div>
</div>
<div class="sponsor-card">
<div class="image-container">
<img src="./images/sif.png" loading="lazy" alt="Silver Sponsor 1" class="card-banner">
</div>
<h3 class="h3 card-title">
<a href="https://sif.caltech.edu/" class="card-link" target="_blank">Caltech SIF <i class="fas fa-external-link-alt" style="font-size: 0.8em;"></i></a>
</h3>
<div class="card-meta"></div>
</div>
<!-- <div class="sponsor-card">
<div class="image-container">
<img src="./images/tbd.jpg" loading="lazy" alt="Silver Sponsor 1" class="card-banner">
</div>
<h3 class="h3 card-title">
<a href="" class="card-link" target="_blank">TBD </a>
</h3>
<div class="card-meta"></div>
</div>
<div class="sponsor-card">
<div class="image-container">
<img src="./images/tbd.jpg" loading="lazy" alt="Silver Sponsor 1" class="card-banner">
</div>
<h3 class="h3 card-title">
<a href="" class="card-link" target="_blank">TBD </a>
</h3>
<div class="card-meta"></div>
</div> -->
</div>
<div class="sponsor-row tier-bronze">
<!-- <div class="sponsor-card">
<div class="image-container">
<a href="" target="_blank">
<img src="./images/wolfram.png" loading="lazy" alt="Silver Sponsor 2" class="card-banner">
</a>
</div>
<h3 class="h3 card-title">Wolfram Research</h3>
<div class="card-meta"></div>
</div> -->
</div>
</div>
</section>
</ol>
</div>
</section>
<!-- JUDGES SECTION -->
<!-- <div style="margin-top: -5rem;"></div>
<section class="section" id="judges">
<div class="container">
<p class="section-subtitle" id="upcoming-label" data-reveal="bottom">
Huge thanks to our 2025
</p>
<h2 class="h2 section-title" data-reveal="bottom">
Hacktech <span class="span">Judges</span>
</h2>
<p class="section-text" data-reveal="bottom">
Meet our panel of judges for Hacktech, representing academia and industry.
</p>
<div class="judges-grid">
<div class="judge-card"><div class="judge-name">Rosy Macedo</div><div class="judge-affiliation">Caltech</div></div>
<div class="judge-card"><div class="judge-name">Mike Vorhaus</div><div class="judge-affiliation">Caltech</div></div>
<div class="judge-card"><div class="judge-name">Isaac Garcia Munoz</div><div class="judge-affiliation">Caltech</div></div>
<div class="judge-card"><div class="judge-name">Jamie Robertson</div><div class="judge-affiliation">Caltech, Ex-Disney</div></div>
<div class="judge-card"><div class="judge-name">Will Heltsley</div><div class="judge-affiliation">Caltech, Ex-SpaceX</div></div>
<div class="judge-card"><div class="judge-name">Drew Brower</div><div class="judge-affiliation">Caltech</div></div>
<div class="judge-card"><div class="judge-name">Adam Blank</div><div class="judge-affiliation">Caltech</div></div>
<div class="judge-card"><div class="judge-name">Tom McWilliams</div><div class="judge-affiliation">Caltech</div></div>
<div class="judge-card"><div class="judge-name">Bach-Thuan Bui</div><div class="judge-affiliation">Coolant Climate</div></div>
<div class="judge-card"><div class="judge-name">Somil Gupta</div><div class="judge-affiliation">Broccoli Al</div></div>
<div class="judge-card"><div class="judge-name">Ada Cyborg</div><div class="judge-affiliation">Extraordinary.com</div></div>
<div class="judge-card"><div class="judge-name">Mokshit Jain</div><div class="judge-affiliation">Cognition</div></div>
<div class="judge-card"><div class="judge-name">Ter Seesillapachai</div><div class="judge-affiliation">Ramp</div></div>
<div class="judge-card"><div class="judge-name">Aryan Gulati</div><div class="judge-affiliation">Extraordinary.com</div></div>
<div class="judge-card"><div class="judge-name">Rushil Nagarsheth</div><div class="judge-affiliation">Hypercard</div></div>
<div class="judge-card"><div class="judge-name">Dennis Jin</div><div class="judge-affiliation">Snap</div></div>
<div class="judge-card"><div class="judge-name">Toby Brown</div><div class="judge-affiliation">Beem</div></div>
<div class="judge-card"><div class="judge-name">Sally Ragab</div><div class="judge-affiliation">Neunetix</div></div>
<div class="judge-card"><div class="judge-name">Andrew Herrera</div><div class="judge-affiliation">Wolfram</div></div>
<div class="judge-card"><div class="judge-name">Jeff Bull</div><div class="judge-affiliation">Orkes</div></div>
<div class="judge-card"><div class="judge-name">Jonas Ebrahimi</div><div class="judge-affiliation">Karmen</div></div>
</div>
</div>
</section>
<div style="margin-bottom: 5rem;"></div> -->
<!-- END JUDGES SECTION -->
<!-- FAQ SECTION -->
<section class="faq-section" id="faq">
<div class="container">
<h2 class="h2 section-title" data-reveal="bottom">
General FAQ
</h2>
<p class="section-text" data-reveal="bottom">
If you can't find your answer here, feel free to contact us via our email or social media! FAQ last updated March 14th, 2025.
</p>
<div class="faq-item">
<button class="faq-question" aria-expanded="false">
What is a Hackathon?
<span class="faq-toggle-icon">+</span>
</button>
<div class="faq-answer">
In our Hackathon, you have 36 hours to code a product that regards one of our topics. Work by yourself or with a team of up to 4 people!
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false">
What is Hacktech?
<span class="faq-toggle-icon">+</span>
</button>
<div class="faq-answer">
Hacktech is Caltech’s annual hackathon bringing together innovators to showcase the latest advancements in technology and coding. There's food, speakers, recruiters, and of course, tons of building!
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false">
How can I participate in Hacktech?
<span class="faq-toggle-icon">+</span>
</button>
<div class="faq-answer">
To participate, you can register on our website! NOTE: Our 2025 event has wrapped up and applications for 2026 have also closed.
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false">
Where is the event held?
<span class="faq-toggle-icon">+</span>
</button>
<div class="faq-answer">
Hacktech is held at Caltech's campus. This year we will likely be utilizing Avery House and the Annenberg Center for Information Science and Technology as our main venues. Please refer to our website and the map below for detailed directions and accommodation options when the time comes.
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false">
Do I have to be in-person?
<span class="faq-toggle-icon">+</span>
</button>
<div class="faq-answer">
Yes, Hacktech is now a fully in-person event instead of the hybrid format as before. Hackers must check in and be present throughout the hackathon to participate.
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false">
How much does it cost?
<span class="faq-toggle-icon">+</span>
</button>
<div class="faq-answer">
Hacktech is free to attend! We will provide food, swag, lessons, and amazing memories! Travel reimbursement for 2026 is still relatively limited, and we will not be able to provide reimbursement to all participants. Unfortunately, partial reimbursement will not be provided this year.
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false">
Who can participate?
<span class="faq-toggle-icon">+</span>
</button>
<div class="faq-answer">
For Hacktech 2026, all enrolled college undergraduate students (4-year or community college programs) are welcome! Note that you must be 18 or older as per institute requirements. No exceptions can be made.
</div>
</div>
<div class="faq-item">
<button class="faq-question" aria-expanded="false">
How many people are on a team?
<span class="faq-toggle-icon">+</span>
</button>
<div class="faq-answer">