-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
2033 lines (1984 loc) · 130 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" dir="ltr">
<head>
<!--
████████╗ ███████╗ ██████╗ ██╗ ██╗ ███╗ ██╗ ██╗ ██████╗ █████╗
╚══██╔══╝ ██╔════╝ ██╔════╝ ██║ ██║ ████╗ ██║ ██║ ██╔════╝ ██╔══██╗
██║ █████╗ ██║ ███████║ ██╔██╗ ██║ ██║ ██║ ███████║
██║ ██╔══╝ ██║ ██╔══██║ ██║╚██╗██║ ██║ ██║ ██╔══██║
██║ ███████╗ ╚██████╗ ██║ ██║ ██║ ╚████║ ██║ ╚██████╗ ██║ ██║
╚═╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝
-->
<!--
**
* @license
* MyFonts Webfont Build ID 3356385, 2017-03-08T21:49:12-0500
*
* The fonts listed in this notice are subject to the End User License
* Agreement(s) entered into by the website owner. All other parties are
* explicitly restricted from using the Licensed Webfonts(s).
*
* You may obtain a valid license at the URLs below.
*
* Webfont: FF DIN Web Pro Bold by FontFont
* URL: http://www.myfonts.com/fonts/fontfont/ff-din/pro-bold/
*
* Webfont: FF DIN Web Pro by FontFont
* URL: http://www.myfonts.com/fonts/fontfont/ff-din/pro-regular/
*
*
* License: http://www.myfonts.com/viewlicense?type=web&buildid=3356385
* Licensed pageviews: 50,000
* Webfonts copyright: 2009 Albert-Jan Pool published by FSI FontShop International GmbH
*
* © 2017 MyFonts Inc
**
-->
<meta charset="utf-8">
<title>Technica 2021</title>
<meta name="description" content="The world's largest hackathon for underrepresented genders">
<script type="application/ld+json">
{
"@context": "https://gotechnica.org",
"@type": "Organization",
"url": "https://www.gotechnica.org/",
"logo": "https://gotechnica.org/img/technica-logo.png",
}
{
"@context": "https://gotechnica.org",
"@type": "Event",
"name": "Technica 2021",
"startDate": "2021-11-12T8:00-24:00",
"endDate": "2021-11-14T00:00-20:00",
"eventAttendanceMode": "https://schema.org/MixedEventAttendanceMode",
"eventStatus": "https://schema.org/EventScheduled",
"location": [{
"@type": "VirtualLocation",
"url": "https://gotechnica.org/"
},
{
"@type": "Place",
"name": "Reckord Armory",
"address": {
"@type": "PostalAddress",
"streetAddress": "4490 Rossborough Ln",
"addressLocality": "College Park",
"postalCode": "20742",
"addressRegion": "MD",
"addressCountry": "US"
}
}],
"image": [
"https://gotechnica.org/img/technica-logo.png",
],
"description": "The world's largest hackathon for underrepresented genders.",
"performer": {
"@type": "PerformingGroup",
"name": "Jewel Burks"
},
"organizer": {
"@type": "Organization",
"name": "Technica",
"url": "https://gotechnica.org"
}
}
</script>
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/flickity.min.css">
<link rel="stylesheet" href="./css/base.css">
<link rel="stylesheet" href="./css/main.css">
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="https://rawgit.com/tobia/Pause/master/jquery.pause.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/jquery.marquee.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/parallax/3.1.0/parallax.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/flickity.pkgd.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="author" content="Technica Hacks">
<meta name="description" content="World’s largest hackathon for underrepresented genders">
<meta name="robots" content="NOODP, index, follow">
<meta itemprop="name" content="Technica">
<!-- Twitter Card data -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@gotechnica">
<meta name="twitter:title" content="Technica">
<meta name="twitter:description" content="Hackathon for underrepresented genders at University of Maryland.">
<meta name="twitter:creator" content="@gotechnica">
<meta name="twitter:image" content="http://gotechnica.org/img/share-link.png">
<meta name="twitter:domain" content="http://gotechnica.org">
<!-- Google site verif -->
<meta name="google-site-verification" content="uGQ5sqadq9-6SPyKFrrOm_N5oys-xoJ7sSBKjw6LCI4">
<!-- Open Graph data (Facebook) -->
<meta property="og:title" content="Technica">
<meta property="og:description" content="Hackathon for underrepresented genders at University of Maryland.">
<meta property="og:type" content="website">
<meta property="og:url" content="http://gotechnica.org">
<meta property="og:image" content="http://gotechnica.org/img/share-link.png">
<meta property="og:image:url" content="http://gotechnica.org/img/share-link.png">
<!-- Redirect URLs -->
<script>
const path = window.location.pathname;
const redirectsGETUrl = "https://hugoburbelo-technica-url-shortener.builtwithdark.com/redirects"
const formattedPath = "/" + path;
$.get(redirectsGETUrl, redirects => {
redirects.forEach(redirect => {
if(path === redirect.host) {
window.location = redirect.target;
}
})
});
// only send tracking events if we're deployed to prod
if (window.location.href === "https://gotechnica.org/") {
const visitTrackingURL = "https://hugoburbelo.builtwithdark.com/track_visit"
$.post(visitTrackingURL, {"date": (new Date().toLocaleDateString()), "type": "landing_page_visit"});
}
</script>
<!-- Intercom Widget -->
<script>
// We pre-filled your app ID in the widget URL: 'https://widget.intercom.io/widget/i0aisamb'
(function(){var w=window;var ic=w.Intercom;if(typeof ic==="function"){ic('reattach_activator');ic('update',w.intercomSettings);}else{var d=document;var i=function(){i.c(arguments);};i.q=[];i.c=function(args){i.q.push(args);};w.Intercom=i;var l=function(){var s=d.createElement('script');s.type='text/javascript';s.async=true;s.src='https://widget.intercom.io/widget/i0aisamb';var x=d.getElementsByTagName('script')[0];x.parentNode.insertBefore(s,x);};if(w.attachEvent){w.attachEvent('onload',l);}else{w.addEventListener('load',l,false);}}})();
window.Intercom("boot", {
app_id: "vatua0af"
});
</script>
<!-- Snap Pixel Code -->
<script type='text/javascript'>
(function(e,t,n){if(e.snaptr)return;var a=e.snaptr=function()
{a.handleRequest?a.handleRequest.apply(a,arguments):a.queue.push(arguments)};
a.queue=[];var s='script';r=t.createElement(s);r.async=!0;
r.src=n;var u=t.getElementsByTagName(s)[0];
u.parentNode.insertBefore(r,u);})(window,document,
'https://sc-static.net/scevent.min.js');
snaptr('init', '9ef7a0c0-005a-43e9-afc0-6bcd7025860c', {
'user_email': '__INSERT_USER_EMAIL__'
});
snaptr('track', 'PAGE_VIEW');
</script>
<!-- End Snap Pixel Code -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:1902775,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
<!-- Global site tag (gtag.js) - Google Ads: 306690382 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-306690382"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'AW-306690382');
</script>
<meta name="google-site-verification" content="SY4_05HT_JLBTy9D_iKluy7X5hrU00UdkWS2HYXk3KA" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-211023062-1">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-211023062-1');
</script>
</head>
<body>
<!-- navbar -->
<nav id="navbar" class="navbar navbar-expand-lg navbar-light sticky-top" role="navigation">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav text-center mx-auto">
<!--<li class="nav-item about-nav">
<a class="nav-link" href=".intro-container">About</a>
</li>
<li class="nav-item tracks-nav">
<a class="nav-link" href="#tracks">Tracks</a>
</li>
<li class="nav-item reg-nav">
<a class="nav-link" href="#registration">Registration</a>
</li>-->
<li class="nav-item speakers-nav">
<a class="nav-link" href="#speakers">Speakers</a>
</li>
<li class="nav-item sched-nav">
<a class="nav-link" href="#schedule">Schedule</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://technica2021.devpost.com" target="_blank">Devpost</a>
</li>
<!--<li class="nav-item">
<a class="nav-link" href="report.html" target="_blank">2021 Report</a>
</li>
<li class="nav-item faq-nav">
<a class="nav-link" href="#faq">FAQ</a>
</li>-->
<li class="nav-item contact-nav">
<a class="nav-link" href=".themed-contact-footer">Contact</a>
</li>
</ul>
</div>
</nav>
<div class="hero hero-index" role="banner">
<div class="hero-cottage bg-image" alt="cottage on a countryside hill with full trees and pastel lavender" style="display: flex; grid-area: overlap-content;">
<img id=hero-cottage src="img/hero/hero-cottage.webp" alt="cottage on a countryside hill with full trees and pastel lavender" style="width: 100%; min-height: 100%; object-fit: cover">
</div>
<div class="hero-text">
<div class="hero-information" id="hero-nav">
<div class="hero-logo">
<img id="theme-logo" src="img/hero/welcome-home.webp" alt="Welcome Home" style="z-index: -1;">
<img id="technica-logo" src="img/technica-logo.png" alt="Technica logo">
</div>
<p id="hero-tagline"><b>November 13-14, 2021</b> ⊹ Hybrid Environment</p>
<p id="hero-value">Pave your path in tech with hackers all over the world!</p>
</div>
<!--<div class="hero-action text-center">
<button class="register-btn btn" onclick="location.href='https://register.gotechnica.org'" disabled style>Register Now</button>
<p class="hero-learn">or learn more below!</p>
</div>-->
<div class="section" id="about">
<div class="container intro-container">
<h1 class="header">Thank You</h1>
<div class="row">
<div class="col-lg-6">
<p>Technica is the world’s largest hackathon for underrepresented genders, hosted annually by students at the University of Maryland. We hope you felt at home with us at Technica 2021!</p>
<p>This year we pionereed a hybrid model, offering the Technica experience both in-person and online. We achieved record attendance, hosting <b>2002 hackers</b>, 297 in-person and 1705 virtually from across 43 US states, 30 countries, and 5 continents, resulting in the most inclusive and accessible Technica yet!</p>
<p>We hope your tech journey doesn't end at Technica - keep paving your path in the tech space and we look forward to seeing you back next year! To watch the Technica 2021 recap video and workshop recordings when they are ready, see our <a class="link" href="https://www.youtube.com/channel/UC-Wo4UqhGUKQEp4o-51VMIw/videos" target="_blank"> YouTube channel</a>. Check out our past events <a class="link" href="http://sleeper.gotechnica.org" target="_blank">here</a>.</p>
</div>
<div class="col-lg-6">
<iframe id="recap-vid" src="https://www.youtube.com/embed/l4qsQdzdADw" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> <!-- recap video not working ("Video unavailable") so keeping explainer video for now -->
</div>
</div>
</div>
</div>
<!--<div class="section" id="about">
<div class="container intro-container">
<h1 class="header">What is Technica?</h1>
<div class="row">
<div class="col-lg-6">
<p>Technica is the world’s largest hackathon for underrepresented genders, hosted annually by students at the University of Maryland.</p>
<p>Over the duration of 24 hours, Technica hackers are immersed in tech culture and encouraged to exercise their imagination to create interesting and innovative hacks.</p>
<p>This year, Technica will be hosted in a hybrid format, with the option to hack virtually or in-person depending on one's preference.</p>
<p>Technica's 2021 theme is "Welcome Home." We want Technica to be an inclusive environment where you can learn new things, meet new people, and receive support! No matter where you are for Technica 2021, we hope you can call Technica home.</p>
</div>
<div class="col-lg-6">
<iframe id="explainer-vid" src="https://www.youtube.com/embed/l4qsQdzdADw" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
</div>-->
<div class="testimonials section" id="testimonials">
<div class="container">
<h1 class="header">Hear From Our Hackers!</h1>
<div class="text-center gallery">
<div class="beginner track-flick-item">
<p class="testimonial-quote">"Technica made me feel more positive about stepping into the tech industry, knowing that so many encouraging peers will surround me in the future."</p>
<img class="testimonial-image" src="img/testimonials/testimonial-alyshba.webp" alt="woman smiling in front of pink ombre flowers">
<p class="testimonial-name"><br>- Alyshba Ahmed, 2020 hacker</p>
</div>
<div class="general track-flick-item">
<p class="testimonial-quote">“Technica was very impactful because of the relationships I made and the significance of building VR software for the next generation of students that like hands-on work.”</p>
<img class="testimonial-image" src="img/testimonials/testimonial-anna.webp" alt="woman with long brown hair smiling in front of brick wall">
<p class="testimonial-name"><br>- Anna Blendermann, 2019 hacker</p>
</div>
<div class="beginner track-flick-item">
<p class="testimonial-quote">"Technica has introduced me to a community I naturally would have never had access to! I found everyone super inspiring and it was generally such a positive, welcoming environment."</p>
<img class="testimonial-image" src="img/testimonials/testimonial-sophie.webp" alt="woman smiling in front of pink ombre flowers">
<p class="testimonial-name"><br>- Sophie Lübeck, 2020 hacker</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="main" role="main" style="background-color: #b5d5b2;">
<div class="what-can-you-do section" id="what-can-you-do">
<div class="container">
<h1 class="header">What You Can Do at Technica</h1>
<div class="slide"></div>
<ul class="nav nav-tabs">
<li class="tab-container blue" id="blue" onclick="toggleTab('blue', '#8cd8ed')">
<a data-toggle="tab" class="tab active blue" href="#friends">
<div class="title blue"><div class="tab radio blue"></div>
<span style="font-size: 135%;">Make new friends</span>
</div>
</a>
</li>
<li class="tab-container purple" id="purple" onclick="toggleTab('purple', '#9c8da5')">
<a data-toggle="tab" class="tab purple" href="#skills"><div class="title purple">
<div class="tab radio purple"></div>
<span style="font-size: 135%;">Learn new skills</span>
</div></a>
</li>
<li class="tab-container pink" id="pink" onclick="toggleTab('pink', '#ed648d')">
<a data-toggle="tab" class="tab pink" href="#network"><div class="title pink">
<div class="tab radio pink"></div>
<span style="font-size: 135%;">Network</span>
</div></a>
</li>
</ul>
<div id="tab-content" class="tab-content unexpanded">
<div id="friends" class="tab-pane fade in active show">
<div class="content-wrapper row">
<div class="col-lg-6">
<div class="content-heading">Mini Events</div>
<div class="content-clarification">In-person & Virtual</div>
<div class="content-text">Want to take a break from coding and have some fun? Mini Events are for you! Mini-Events allow you to meet new friends, get creative, and even make something you can take home! The Mini Events we have planned for this year are Open Mic Night, Family Feud, Techni-Arts and Crafts, and Board Game Corner.</div>
</div>
<img class="content-img col-10 col-md-5 img-fluid" src="./img/minievents.svg" />
</div>
<div class="row expand-btn btn" onclick="expand('tab-content')">View More
<img class="arrow-img" src="./img/arrow_down.svg" />
</div>
<div class="content-wrapper row expanded-content">
<div class="col-lg-6">
<div class="content-heading">Watercooler</div>
<div class="content-clarification">Virtual, both in-person and virtual hackers will be able to participate!</div>
<div class="content-text">Here’s to a weekend of making new friends! A major part of the magic of Technica is the serendipitous encounters hackers have in the hallways at 3am. Whether that’s bumping into someone or wandering over to the snack table and striking up a conversation, hackers will often exit the weekend having made a friend.
<br><br>
Hackers will be able to join our water cooler via the navigation bar in the
platform, and be instructed to join a shared Zoom call. From there, they can be assigned to a
timed breakout room by the water cooler manager in order to mingle casually with 3-5 other hackers and a volunteer chaperone.
</div>
</div>
<img class="content-img col-10 col-md-5 img-fluid" src="./img/watercooler.svg" />
</div>
<div class="content-wrapper row expanded-content">
<div class="col-lg-6">
<div class="content-heading">Form A Team</div>
<div class="content-clarification">Virtual, both in-person and virtual hackers can participate!</div>
<div class="content-text">During Technica, you have the option to work alone or in teams of up to 4
people for your hack! Didn’t come with a team but don't want to work alone? Come to Form a Team and
we will help you find other team members based on your interests, technical specializations, prize categories,
and what kind of project experience you want at Technica!
</div>
</div>
<img class="content-img col-10 col-md-5 img-fluid" src="./img/formateam.svg" />
</div>
<div class="row collapse-btn btn" onclick="expand('tab-content')"><a href="#what-can-you-do">View Less</a>
<img class="arrow-img" src="./img/arrow_up.svg" />
</div>
</div>
<div id="skills" class="tab-pane fade">
<div class="content-wrapper row">
<div class="col-lg-6">
<div class="content-heading">Workshops</div>
<div class="content-clarification">In-person or Virtual - TBD</div>
<div class="content-text">Technica aims to be a learning experience for everyone by
providing fun and informative workshops. Hackers have the option to attend workshops
in order to learn more general tech skills, practice tech skills relevant to their hack,
and learn about new career paths and opportunities that they may wish to pursue.
</div>
</div>
<img class="content-img col-10 col-md-5 img-fluid" src="./img/workshops.svg" />
</div>
<div class="row expand-btn btn" onclick="expand('tab-content')">View More
<img class="arrow-img" src="./img/arrow_down.svg" />
</div>
<div class="content-wrapper row expanded-content">
<div class="col-lg-6">
<div class="content-heading">Research</div>
<div class="content-clarification">Virtual with an optional in-person meet-up</div>
<div class="content-text">Tech + Research is a three day research track geared towards engaging undergraduate underrepresented gender students in computing. During these three days, student teams work together and use technology to solve pressing issues. Students will participate in this research track at Technica co-hosted by the Iribe Initiative for Inclusion & Diversity in Computing.
<br><br>
The weekend event will bring together computing faculty from institutions across the state of Maryland to serve as mentors on projects in their research areas. Along with providing hands-on research experience in a dynamic hackathon setting, the weekend research track will include sessions introducing attendees to the basics of computer science research (CSR) and highlight the exciting opportunities that come with pursuing a graduate degree in computer science.<a href="https://medium.com/gotechnica/what-you-could-learn-from-a-weekend-of-research-581156e0e4bc" target="_blank" class="link-green">Learn more here!</a>
</div>
</div>
<img class="content-img col-10 col-md-5 img-fluid" src="./img/research.svg" />
</div>
<div class="content-wrapper row expanded-content">
<div class="col-lg-6">
<div class="content-heading">Technichats</div>
<div class="content-clarification">In-person & Virtual</div>
<div class="content-text">Technichats are spaces for people in different communities to come together and discuss their experiences and challenges in tech. The goal of these meetups is to build community among underrepresented groups, hear from diverse perspectives, and work to make tech a more inclusive space for all people.
<br><br>
Technichats take place on the main event-long livestream which can feature company representatives in a panel moderated by the Technica team. This will include a live Q&A with our attendees and will be recorded and posted on the Technica youtube channel.
</div>
</div>
<img class="content-img col-10 col-md-5 img-fluid" src="./img/technichats.svg" />
</div>
<div class="row collapse-btn btn" onclick="expand('tab-content')"><a href="#what-can-you-do">View Less</a>
<img class="arrow-img" src="./img/arrow_up.svg" />
</div>
</div>
<div id="network" class="tab-pane fade">
<div class="content-wrapper row">
<div class="col-lg-6">
<div class="content-heading">Sponsorship Fair</div>
<div class="content-clarification">In-person & Virtual</div>
<div class="content-text">Looking to network? Companies are welcome to have recruiters and recruiting materials at their booth at Technica, where they will be able to interact with hackers. There will be a Sponsorship Fair in which hackers are encouraged to visit open booths and network with recruiters, potentially gaining an invitation to apply for openings or even an internship or job offer.
</div>
</div>
<img class="content-img col-10 col-md-5 img-fluid" src="./img/sponsorfair.svg" />
</div>
<div class="row expand-btn btn" onclick="expand('tab-content')">View More
<img class="arrow-img" src="./img/arrow_down.svg" />
</div>
<div class="content-wrapper row expanded-content">
<div class="col-lg-6">
<div class="content-heading">Chat With Mentors</div>
<div class="content-clarification">In-person & Virtual</div>
<div class="content-text">Need some advice? Mentors work closely with hackers throughout the weekend. They assist with questions that arise, as well as problem-solve with hackers on their projects. Mentors are there to provide guidance and insights to participants, who choose to create a software or hardware project during the hackathon.
</div>
</div>
<img class="content-img col-10 col-md-5 img-fluid" src="./img/chatwmentor.svg" />
</div>
<div class="row collapse-btn btn" onclick="expand('tab-content')"><a href="#what-can-you-do">View Less</a>
<img class="arrow-img" src="./img/arrow_up.svg" />
</div>
</div>
</div>
</div>
</div>
<div class="tracks section" id="tracks">
<div class="container">
<div class="heading">
<h1 class="header">Tracks</h1>
<p>We are offering four different tracks for Technica this year! Each track is designed to best accommodate a hacker's interests and skill level with track-specific mentors. Hackers select the track they wish to participate in during registration.</p>
</div>
<div class="row row-eq-height">
<div class="col-lg-3 tracks-panel" style="padding: 0.7rem;">
<div class="tracks-card general-border h-100">
<div class="img-holder">
<img src="./img/tracks/bike-icon.svg" alt="simple bike with flower basket sketch">
</div>
<h3 class="tracks-title">General</h3>
<p class="track-text">For any and all hackers! Come build to your heart's content using hardware, software, or anything you want with other hackers. Hackers can be students, designers, or just any tech-lovers out there. Hackers of all skill levels are welcomed and supported!</p>
<p class="tracks-note">We have reached capacity for this track and will no longer be accepting additional hackers.</p>
</div>
</div>
<div class="col-lg-3 tracks-panel" style="padding: 0.7rem;">
<div class="tracks-card research-border h-100">
<div class="img-holder">
<img src="./img/tracks/lemonade-icon.svg" alt="simple lemonade in pitcher and two glasses sketch">
</div>
<h3 class="tracks-title">Research</h3>
<p class="track-text">Calling all undergraduates interested in research! Come explore the fields of research within computer science. You will get to work hands-on with faculty researchers and peers to address social issues using technology and research! This track is a separate 3-day event taking place during Technica weekend.</p>
<p class="tracks-note">We have reached capacity for this track and will no longer be accepting additional hackers.</p>
</div>
</div>
<div class="col-lg-3 tracks-panel" style="padding: 0.7rem;">
<div class="tracks-card beginner-border h-100">
<div class="img-holder">
<img src="./img/tracks/flower-basket-icon.svg" alt="simple flower basket sketch">
</div>
<h3 class="tracks-title">Beginner</h3>
<p class="track-text">New to hackathons? Don't know how to code? No worries! You'll be provided with dedicated resources to help you be successful at Technica and beyond. This track begins with exclusive workshops a few weeks before Technica, and includes everything from an introduction to hackathons to universal coding and logic concepts.</p>
<p class="tracks-note">We have reached capacity for this track and will no longer be accepting additional hackers.</p>
</div>
</div>
<div class="col-lg-3 tracks-panel" style="padding: 0.7rem;">
<div class="tracks-card hardware-border h-100">
<div class="img-holder">
<img src="./img/tracks/cottage-icon.svg" alt="simple cottage home sketch">
</div>
<h3 class="tracks-title">Hardware</h3>
<p class="track-text">Spark up your project with some hardware! We’ll provide you with the resources needed to kickstart your own hardware projects and master the fundamentals from the ground up. This includes a kit with instructional materials and personalized sessions to help you code and build your own hacks!</p>
<p class="tracks-note">We have reached capacity for this track and will no longer be accepting additional hackers.</p>
</div>
</div>
</div>
</div>
</div>
<div class="registration section">
<div class="container">
<h1 class="header" id="registration">Join our Family as a...</h1>
<div class="text-center">
<div class="row">
<div class="col-md-6 col-xl-7 order-md-2">
<img class="hacker-image" src="./img/registration/hacker-bird.svg" width="65%" height="100%" alt="bird holding lavender in front of grenery">
</div>
<div class="col-md order-md-1 align-self-center">
<div class="hacker">
<h3 class="register-heading">Hacker</h3>
<p>Come build using hardware, software, or anything you want with other hackers! You don't have to know how to code to be a hacker. Hackers can be students, designers, or just any tech-lover out there!</p>
<button class="btn dark-btn" onclick="location.href='https://register.gotechnica.org'" type="button" disabled style>Closed</button>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-6 col-xl-6">
<div class="polaroid-wrapper col-lg-3">
<img class="polaroid polaroid1 registration-image" src="img/registration/mentor-animal-polaroid.svg" alt="duck and frog posing in a polaroid" width="100%" height="100%">
<img class="polaroid polaroid2 registration-image" src="img/registration/mentor-scenery-polaroid.svg" alt="polaroid of a grassy hill and cloudy sky" width="100%" height="100%">
</div>
</div>
<div class="col-md-6 col-xl-5 align-self-center">
<div class="mentor">
<h3 class="register-heading">Mentor</h3>
<p>Come help hackers with their ideas by being a resource for hackers who may have questions about their projects. Mentors can be anyone 18 years or older and of any gender willing to share their knowledge! There will be in-person and virtual opportunities. Learn more about mentor expectations <a class="link" target="_blank" href="./files/MentorTrackExpectations.pdf" style="color: #000;"><b>here</b></a>.</p>
<button class="btn dark-btn" onclick="location.href='https://gotechnica.typeform.com/to/Yw9VMBVi'" type="button" disabled style>Closed</button>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-xl-7 order-md-6">
<img class="registration-image" src="./img/registration/volunteer-frog.svg" height="100%" width="50%" alt="frog holding mushrooms">
</div>
<div class="col-md order-md-5 align-self-center">
<div class="volunteer">
<h3 class="register-heading">Volunteer</h3>
<p>Come help with the operations! Volunteers are a huge helping hand and help make sure the hackathon runs smoothly. Anyone 18 years or older and of any gender can volunteer and help make Technica a success! There will be in-person and virtual opportunities.</p>
<button class="btn dark-btn" onclick="location.href='https://gotechnica.typeform.com/to/rmGg9cCj'" type="button" disabled style>Closed</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="speaker section">
<div class="container">
<h1 class="header" id="speakers">Featured Speakers</h1>
<div class="text-center">
<div class="row" id="keynote-speakers">
<div class="col-md-6">
<!--<h2>Opening Keynote Speaker</h2>-->
<img id="keynote-speaker-1" class="keynote-speaker" src='./img/speakers/RobynExton.webp' width="70%"/>
<div class="speaker-label" id="keynote-label-1">
<p class="speaker-name">Robyn Exton <span style="font-size: 85%">(she/her)</span></p>
<p class="speaker-title">CEO & Founder, HER</p>
<div class="accordion-holder">
<div class="accordion">
<h4>Click to read bio</h4>
<h4><i class="fas fa-arrow-down"></i></h4>
</div>
<div class="panel">
<p>Robyn is the CEO & Founder of HER the world's largest dating and community app for queer women, nonbinary, trans and gender non-conforming folks.
HER builds products and experiences that connect queers in the way that works best for them. The app is home to 8 million people across the world, with dating and community connections, and their online events have hosted over 20,000 people. With content, events and communities, HER is opening up opportunities for LGBTQ women and queer folks that never existed before.</p>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<!--<h2>Closing Keynote Speaker</h2>-->
<img id="keynote-speaker-2" class="keynote-speaker" src='./img/speakers/OmiBell.webp' width="70%"/>
<div class="speaker-label" id="keynote-label-2">
<p class="speaker-name">Omi Bell <span style="font-size: 85%">(she/her)</span></p>
<p class="speaker-title">CEO & Founder, Black Girl Ventures</p>
<div class="accordion-holder">
<div class="accordion">
<h4>Click to read bio</h4>
<h4><i class="fas fa-arrow-down"></i></h4>
</div>
<div class="panel">
<p>Named as one of Entrepreneur Magazine’s Top 100 Powerful Women in Business, Shelly Omilâdè Bell is a computer scientist, system disruptor, and business strategist who moves ideas to profit while empowering people to live, build, and foster better relationships. She connects entrepreneurs, investors, and corporations in order to diversify their talent pipeline, increase equity, and grow their brands.</p>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="row" id="other-speakers">
<div class="col-md-4">
<img id="other-speaker-1" src='./img/speakers/speaker_frame.svg' height="85%" width="85%"/>
<div class="speaker-label" id="other-speaker-label-1">
<p class="speaker-name">Full Name</p>
<p class="speaker-title">Role at/of Company</p>
</div>
</div>
<div class="col-md-4">
<img id="other-speaker-2" src='./img/speakers/speaker_frame.svg' height="85%" width="85%"/>
<div class="speaker-label" id="other-speaker-label-2">
<p class="speaker-name">Full Name</p>
<p class="speaker-title">Role at/of Company</p>
</div>
</div>
<div class="col-md-4">
<img id="other-speaker-3" src='./img/speakers/speaker_frame.svg' height="85%" width="85%"/>
<div class="speaker-label" id="other-speaker-label-3">
<p class="speaker-name">Full Name</p>
<p class="speaker-title">Role at/of Company</p>
</div>
</div>
</div> -->
</div>
</div>
</div>
<div class="schedule section">
<div class="container">
<h1 class="header" id="schedule">Schedule</h1>
<div class="schedule-container">
<ul class="nav nav-tabs nav-fill">
<li class="nav-item schedule-toggler active-day" id="sattogglecontainer">
<a href="#sat" id="sattoggle" class="active link" data-toggle="tab"><span style="font-size: 13px; margin-right: 2px;">SAT</span> November 13</a>
</li>
<li class="nav-item schedule-toggler" id="suntogglecontainer">
<a href="#sun" id="suntoggle" class="link" data-toggle="tab"><span style="font-size: 13px; margin-right: 2px;">SUN</span> November 14</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane fade show active" id="sat">
<div class="schedule-event-nodesc">
<div class="event-time">7:30 AM -<br>10:00 AM</div>
<div class="event-name">Breakfast</div>
<!--<div class="event-location">Location TBD</div>-->
<div class="event-type food">Food</div>
</div>
<div class="schedule-event-nodesc">
<div class="event-time">11:00 AM</div>
<div class="event-name">Hacking Begins!</div>
<div class="event-type event">Main Event</div>
</div>
<div class="schedule-event-nodesc">
<div class="event-time">11:00 AM -<br>12:00 PM</div>
<div class="event-name">Opening Ceremony</div>
<div class="event-type event">Main Event</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event0">
<div class="event-time">11:00 AM -<br>6:00 PM</div>
<div class="event-name">Sponsorship Fair</div>
<div class="event-type sponsored">Sponsored</div>
</div>
<div class="modal fade" id="event0" tabindex="-1" role="dialog" aria-labelledby="event0label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="modal-title event-modal-title" id="event0label">Sponsorship Fair</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Looking to network? Stop by the booths at the Sponsorship Fair to speak with recruiters from 17 of our sponsoring companies and learn about their internship and full-time opportunities.
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event2">
<div class="event-time">12:00 PM -<br>12:30 PM</div>
<div class="event-name">Team Formation</div>
<div class="event-type minievent">Mini-Event</div>
</div>
<div class="modal fade" id="event2" tabindex="-1" role="dialog" aria-labelledby="event2label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="modal-title event-modal-title" id="event2label">Team Formation</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
If you're interested in finding team members to hack with, attend this virtual, asynchronous event! First, complete the form at <a class="link" href="https://gotechnica.org/teamformationform" target=_blank">gotechnica.org/teamformationform</a> to list your preferences. Then, view potential team members at <a class="link" href="https://gotechnica.org/teamformationsheet" target=_blank">gotechnica.org/teamformationsheet</a> and reach out to them on Slack to form a team!
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event1">
<div class="event-time">12:00 PM -<br>1:00 PM</div>
<div class="event-name">Technica 101</div>
<div class="event-type workshop">Workshop</div>
</div>
<div class="modal fade" id="event1" tabindex="-1" role="dialog" aria-labelledby="event1label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="modal-title event-modal-title" id="event1label">Technica 101</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Learn more about hackathons and what Technica has to offer!
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event3">
<div class="event-time">12:00 PM -<br>3:00 PM</div>
<div class="event-name">Techni-Arts & Crafts</div>
<div class="event-type minievent">Mini-Event</div>
</div>
<div class="modal fade" id="event3" tabindex="-1" role="dialog" aria-labelledby="event3label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="modal-title event-modal-title" id="event3label">Techni-Arts & Crafts</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Let's get creative! Come paint glass jars, make friendship bracelets, or construct your very own Technified beaded bracelet as you mingle with fellow hackers!
</div>
</div>
</div>
</div>
<div class="schedule-event-nodesc">
<div class="event-time">12:30 PM -<br>4:00 PM</div>
<div class="event-name">Lunch</div>
<div class="event-type food">Food</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event5">
<div class="event-time">12:30 PM -<br>1:30 PM</div>
<div class="event-name">Built to Protect: Design Tech to Protect Privacy in the Information Age</div>
<div class="event-type workshop">Workshop</div>
</div>
<div class="modal fade" id="event5" tabindex="-1" role="dialog" aria-labelledby="event5label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="modal-title event-modal-title" id="event5label">Built to Protect: Design Tech to Protect Privacy in the Information Age</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Data privacy is one of the biggest concerns of the digital age, yet why do so many people remain unaware of it's importance? In this workshop, we'll engage in conversations on online privacy, what it is, and how we can take action.
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event4">
<div class="event-time">12:30 PM -<br>1:30 PM</div>
<div class="event-name">Invisibly Trans in Tech</div>
<div class="event-type workshop">Workshop</div>
</div>
<div class="modal fade" id="event4" tabindex="-1" role="dialog" aria-labelledby="event4label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="modal-title event-modal-title" id="event4label">Invisibly Trans in Tech</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Trans people are always around even when you don't know it. Come learn about a Black man of trans experience and his journey from corporate america in the Tech as a stealth individual to the Interim Executive Director of TransTech Social Enterprises.
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event6">
<div class="event-time">12:30 PM -<br>1:30 PM</div>
<div class="event-name">What Can I Do Other than Software Engineering?</div>
<div class="event-type workshop">Workshop</div>
</div>
<div class="modal fade" id="event6" tabindex="-1" role="dialog" aria-labelledby="event6label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="modal-title event-modal-title" id="event6label">What Can I Do Other than Software Engineering?</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Come learn about alternate career pathways in tech!
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event8">
<div class="event-time">1:00 PM -<br>3:00 PM</div>
<div class="event-name">Networking Portal</div>
<div class="event-type sponsored">Sponsored</div>
</div>
<div class="modal fade" id="event8" tabindex="-1" role="dialog" aria-labelledby="event8label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="modal-title event-modal-title" id="event8label">Networking Portal</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
A speed date opportunity between recruiters and hackers where they are randomly paired to chat for about 5 minutes, after which both parties will be randomly paired with someone else.
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event7">
<div class="event-time">1:30 PM -<br>2:00 PM</div>
<div class="event-name">Crash Course: Building Responsive Websites</div>
<div class="event-type workshop">Workshop</div>
</div>
<div class="modal fade" id="event7" tabindex="-1" role="dialog" aria-labelledby="event7label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="modal-title event-modal-title" id="event7label">Crash Course: Building Responsive Websites</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Recall the last time you browsed a website. Which device did you use: a laptop, tablet, phone, or watch? How do software engineers make sure the website layout is responsive to users’ screen size? In this workshop, we’ll go through some popular websites, identify the responsive part, and learn how to code them in JavaScript/HTML/CSS.
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event9">
<div class="event-time">1:30 PM -<br>2:30 PM</div>
<div class="event-name">Women in Tech</div>
<div class="event-type technichat">Techni-chat</div>
</div>
<div class="modal fade" id="event9" tabindex="-1" role="dialog" aria-labelledby="event9label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="modal-title event-modal-title" id="event9label">Women in Tech</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Join in on a conversation on being a women in the technology industry with panelists from our sponsoring companies!
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event11">
<div class="event-time">2:00 PM -<br>3:00 PM</div>
<div class="event-name">Reddit Web Scraping with Python & AWS</div>
<div class="event-type workshop">Workshop</div>
</div>
<div class="modal fade" id="event11" tabindex="-1" role="dialog" aria-labelledby="event11label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="modal-title event-modal-title" id="event11label">Reddit Web Scraping with Python & AWS</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Learn how to use the Reddit API with Python code to extract data from your favorite subreddits. Then, use AWS and Neo4j to visualize the connections between posts and redditors in 3D!
<br><br>
Note: This workshop requires an AWS root account to participate. Optionally (though recommended!) please also create a Reddit developer account. The instructions are listed at <a class="link" href="https://go.umd.edu/reddit20for2" target="_blank">go.umd.edu/reddit20for20</a>
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event12">
<div class="event-time">2:30 PM -<br>3:00 PM</div>
<div class="event-name">Notion</div>
<div class="event-type workshop">Workshop</div>
</div>
<div class="modal fade" id="event12" tabindex="-1" role="dialog" aria-labelledby="event12label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="modal-title event-modal-title" id="event12label">Notion!</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Come learn the fundamentals of Notion, an all-in-one workspace and productivity tool, from Technica's very own Chief of Staff!
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event10">
<div class="event-time">3:00 PM -<br>3:30 PM</div>
<div class="event-name">Sidestepping Self-Doubt</div>
<div class="event-type workshop">Workshop</div>
</div>
<div class="modal fade" id="event10" tabindex="-1" role="dialog" aria-labelledby="event10label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="modal-title event-modal-title" id="event10label">Sidestepping Self-Doubt</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Listen to 18 minute podcast <a class="link" href="https://jjdigeronimo.com/9" target="_blank">here</a> to join an active conversation. When I reflect on times when I was eager to take a new role, position, or new project, or even shift the direction of my career, I did not realize that self-doubt held me back in so many ways. Not just in my career, but really, my life too.
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event14">
<div class="event-time">3:00 PM -<br>4:00 PM</div>
<div class="event-name">Fellowship Demo</div>
<div class="event-type community">Community</div>
</div>
<div class="modal fade" id="event14" tabindex="-1" role="dialog" aria-labelledby="event14label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="modal-title event-modal-title" id="event14label">Fellowship Demo</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Drop by to marvel at and learn from the project the incredible Technica Fellows have been working on!
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event15">
<div class="event-time">3:00 PM -<br>4:00 PM</div>
<div class="event-name">Intro to Blockchain & Stellar</div>
<div class="event-type workshop">Workshop</div>
</div>
<div class="modal fade" id="event15" tabindex="-1" role="dialog" aria-labelledby="event15label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="modal-title event-modal-title" id="event15label">Intro to Blockchain & Stellar</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Come learn about Blockchain with Stellar, an open-source network for currencies and payments!
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event13">
<div class="event-time">3:00 PM -<br>4:30 PM</div>
<div class="event-name">Choose Your Own Misadventure: Threat Modeling Your Project</div>
<div class="event-type workshop">Workshop</div>
</div>
<div class="modal fade" id="event13" tabindex="-1" role="dialog" aria-labelledby="event13label" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="modal-title event-modal-title" id="event13label">Choose Your Own Misadventure: Threat Modeling Your Project</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
You have an idea for your project. You know what you want to do. Join Bank of America in figuring out what can go wrong. Whether it's accidentally making private data publicly available, or someone abusing your project to cause harm, threat modeling can help you understand what threats you're facing so you can do something about them before they happen.
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event16">