-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1396 lines (1373 loc) · 96.3 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 2020</title>
<link rel="shortcut icon" href="./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.min.css">
<link rel="stylesheet" href="./css/main.min.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">
<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 all-women and non-binary hackathon">
<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="All-women and non-binary hackathon 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="All-women and non-binary hackathon 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;
}
})
});
</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: "i0aisamb"
});
</script>
<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>
</head>
<body>
<div class="hero-horizon">
<img src="./img/hero/horizon_top.svg" alt="sun setting behind water">
</div>
<!-- navbar -->
<nav id="navbar" class="navbar navbar-expand-sm navbar-light sticky-top d-sm-block d-none">
<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">
<a class="navbar-brand" href="https://gotechnica.org">
<div class="logo"></div>
</a>
<ul class="navbar-nav text-center mx-auto">
<!-- <li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li> -->
<!-- <li class="nav-item">
<a class="nav-link" href="#tracks">Tracks</a>
</li> -->
<!-- <li class="nav-item">
<a class="nav-link" href="#registration">Registration</a>
</li> -->
<li class="nav-item">
<a class="nav-link" href="#speakers">Speakers</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#schedule">Schedule</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./files/2020AnnualReport.pdf" target="_blank">2020 Report</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://technica2020.devpost.com/" target="_blank">Devpost</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="#sponsors">Sponsors</a>
</li> -->
</ul>
</div>
</nav>
<div class="hero">
<!-- clouds -->
<img id="cloud1" src="./img/hero/cloud1.svg" alt="cloud #1">
<img id="cloud2" src="./img/hero/cloud2.svg" alt="cloud #2">
<img id="cloud3" src="./img/hero/cloud3.svg" alt="cloud #3">
<img id="cloud4" src="./img/hero/cloud4.svg" alt="cloud #4">
<img id="cloud5" src="./img/hero/cloud5.svg" alt="cloud #5">
<img id="cloud6" src="./img/hero/cloud6.svg" alt="cloud #6">
<img id="cloud7" src="./img/hero/cloud7.svg" alt="cloud #7">
<img id="cloud8" src="./img/hero/cloud8.svg" alt="cloud #8">
<!-- birds -->
<div id="birds">
<img data-depth="0.5" src="./img/hero/birds.svg" alt="birds">
</div>
<div class="container">
<div class="hero-information">
<div class="hero-logo">
<img id="theme-logo" src="img/hero/expand_horizon.svg" alt="Expand Your Horizons">
<img id="technica-logo" src="img/technica-logo-white.svg" alt="Technica logo">
</div>
<p><b>Oct 24-25, 2020</b> ⊹ Virtual Environment</p>
</div>
<!-- <button class="register-btn btn" onclick="location.href='https://gotechnica.typeform.com/to/TcQ4ecwG'">Register</button> -->
</div>
</div>
<div class="intro section" id="intro">
<div class="container intro-container">
<h1 class="header">Thank You</h1>
<div class="row">
<div class="col-lg-6">
<p>Thank you for joining us at Technica 2020 to #ExpandYourHorizons!</p>
<p>This year we doubled our attendance, hosting <b>1868 hackers</b> from across 45 US states, 36 countries, and 6 different continents, resulting in the most inclusive and accessible Technica yet! We hope you left Technica inspired, emboldened, and excited to continue to explore the possibilities of the tech sphere!</p>
<p>We look forward to seeing you next year. Check out our past events <a class="link" href="https://2020s.gotechnica.org" target="_blank">here</a>!</p>
</div>
<div class="col-lg-6">
<iframe id="intro-vid" src="https://www.youtube.com/embed/jQPchs1UW-Q" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
<div class="main">
<div class="section" id="real-intro">
<div class="container intro-container" id="about">
<h1 class="header">What is Technica?</h1>
<div class="row">
<div class="col">
<p>Technica is the world’s largest all-women and nonbinary hackathon, hosted annually by students at the University of Maryland. In response to COVID-19, we will be hosting Technica virtually this year to keep our hackers healthy!</p>
<p>Over the duration of 24 hours, women and non-binary people are immersed in tech culture and encouraged to exercise their imagination to create interesting and innovative hacks.</p>
<p>Technica 2020's theme is “Expand Your Horizons”. We want to challenge our hackers to step out of their comfort zone and try something new, whether that's exploring a new technology, tinkering with hardware hacks, or coding for the very first time! This year we're introducing our beginners and hardware tracks, designed for hackers looking for extra support or interested in trying their hand at electronics. At Technica, we want our hackers to learn, grow, and meet new people, so join us at Technica 2020 to #ExpandYourHorizons!</p>
</div>
<!-- <div class="col-lg-6">
<iframe id="intro-vid" src="https://www.youtube.com/embed/jQPchs1UW-Q" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div> -->
</div>
</div>
</div>
<div class="tracks section" id="tracks">
<div class="container">
<!-- Header -->
<h1 class="header">Tracks</h1>
<p class="text-left">We are offering 4 different tracks for Technica this year! Each track is designed to best accomodate a hacker's interests and skill level with track-specific mentors. Hackers may express interest in multiple tracks during registration but will only be able to participate in one.</p>
<!-- Body -->
<div class="text-center gallery">
<div class="general track-flick-item">
<img class="track-image" src="./img/hacker_mountain.svg" alt="simple mountains and sun sketch">
<h3>General: CLOSED</h3>
<p class="general-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-lover out there. Hackers of all skill levels are welcomed and supported!</p>
<span class="track-note">We have reached capacity for the general track and will no longer be accepting additional hackers.</span>
</div>
<div class="research track-flick-item">
<img class="track-image" src="./img/research_cloud.svg" alt="simple clouds and sun sketch">
<h3>Research: CLOSED</h3>
<p>Calling all undergraduates interested in research! Come explore the fields of research within computer science. This track is a separate 3-day workshop where you’ll get to work hands-on with faculty researchers and other students to use technology and research to address social issues!</p>
<!-- <span class="track-note">Hackers must also register for the Tech + Research workshop. More information can be found <a href="https://inclusion.cs.umd.edu/events/techresearch" target="_blank" class="black-link"><b>here</b></a>.</span> -->
<span class="track-note">We have reached capacity for the research track and will no longer be accepting additional hackers.</span>
</div>
<div class="beginner track-flick-item">
<img class="track-image" src="./img/beginner_waves.svg" alt="simple waves and sun sketch">
<h3>Beginners: CLOSED</h3>
<p class="beginner-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 includes everything from an introduction to hackathons and Technica to universal coding and logic concepts!</p>
<span class="track-note">We have reached capacity for the beginner track and will no longer be accepting additional hackers.</span>
</div>
<div class="hardware track-flick-item">
<img class="track-image" src="./img/hardware_city.svg" alt="simple city skyline and sun sketch">
<h3>Hardware: CLOSED</h3>
<p>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 to personalized sessions helping you code and build your own projects!</p>
<!-- <span class="track-note">This track is designed for people who have little to no experience with Arduino design and coding.</span> -->
<span class="track-note">We have reached capacity for the hardware track and will no longer be accepting additional hackers.</span>
</div>
</div>
</div>
</div>
<div class="registration section">
<div class="container">
<!-- Header -->
<h1 class="header" id="registration">Registration</h1>
<!-- Body -->
<div class="text-center">
<div class="row">
<div class="col-md-6 col-xl-7 order-md-2">
<img class="registration-image" src="./img/hacker.png" alt="hacker typing at a laptop programming an Arduino circuit board">
</div>
<div class="col-md order-md-1 align-self-center">
<div class="hacker">
<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" onclick="location.href='https://gotechnica.typeform.com/to/TcQ4ecwG'" type="button" disabled>Closed</button>
</div>
</div>
</div>
<div class="row justify-content-cente">
<div class="col-md-6 col-xl-6">
<img class="registration-image" src="./img/mentor.png" alt="mentor helping a hacker with their code">
</div>
<div class="col-md-6 col-xl-5 align-self-center">
<div class="mentor">
<p>Come help hackers with their ideas by being a resource for hackers who may have questions about their projects. Mentors can be anyone of any gender willing to share their knowledge! <br>Learn more about mentor expectations <a target="_blank" href="./files/mentor.pdf" class="black-link"><b>here</b>.</a></p>
<button class="btn" onclick="location.href='https://gotechnica.typeform.com/to/j54XiHXL'" disabled>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/volunteer.png" alt="volunteer ready to provide support">
</div>
<div class="col-md order-md-5 align-self-center">
<div class="volunteer">
<p>Come help with the operations! Volunteers are a huge helping hand and help make sure the hackathon runs smoothly. Anyone of any gender can volunteer and help make Technica a success!</p>
<button class="btn" onclick="location.href='https://gotechnica.typeform.com/to/a98B9Tyd'" disabled>Closed</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="speaker section">
<div class="container">
<!-- Header -->
<h1 class="header" id="speakers">Keynote Speakers</h1>
<div class="row" style="margin-top: 30px">
<div class="col-lg-5">
<div class="speaker-graphic">
<div class="speaker-horizon text-center">
<img class="speaker-bird-one" src="./img/speakers/pink_bird.svg">
<img class="speaker-bird-two" src="./img/speakers/pink_bird.svg">
<img class="speaker-bird-three" src="./img/speakers/pink_bird.svg">
<img class="speaker-headshot" src="./img/speakers/jewelburks.jpg" alt="Headshot of Jewel Burks Solomon">
<div class="speaker-cloud text-left">
<div class="speaker-name">Jewel Burks</div>
<div class="speaker-position">Head of Google for Startups</div>
</div>
</div>
<img class="speaker-wave" src="./img/speakers/wave.svg">
</div>
</div>
<div class="col-lg-7" style="display: flex; align-items: center;">
<div class="speaker-bio d-none d-sm-block">
<b>Jewel Burks Solomon</b> is an advocate for representation and access in the technology industry. As co-founder of Partpic, a startup designed to streamline the purchase of maintenance and repair parts using computer vision, Jewel and her team built groundbreaking technology poised to change the way people everywhere locate products.
Partpic raised over $2 million in seed funding from notable investors like AOL co-founder, Steve Case, and Comcast Ventures, and integrated its software into mobile apps/websites of large parts distributors and retailers. Partpic was acquired by Amazon in late 2016 and the technology now powers visual search for replacement parts in the Amazon Mobile Shopping app.<br><br>
Jewel is a proud board member at Goodie Nation and the Harvard Debate Council Diversity Project, and spends much of her free time mentoring startup founders and angel investing.<br><br>Jewel has been featured in notable publications such as Forbes, Wired, TechCrunch, Essence, Glamour, and Business Insider.
Prior to founding Partpic, Jewel served in management, enterprise sales, and strategic diversity roles at McMaster-Carr Industrial Supply and Google, Inc. Jewel is a native of Nashville TN, and graduate of Howard University. She currently resides in Atlanta, GA with her husband, Zekarias.
</div>
<div class="d-block d-sm-none speaker-bio">
<div class="accordion">
<h4>Click to see bio</h4>
<div class="faq-toggle-icon"></div>
</div>
<div class="panel">
<b>Jewel Burks Solomon</b> is an advocate for representation and access in the technology industry. As co-founder of Partpic, a startup designed to streamline the purchase of maintenance and repair parts using computer vision, Jewel and her team built groundbreaking technology poised to change the way people everywhere locate products.
Partpic raised over $2 million in seed funding from notable investors like AOL co-founder, Steve Case, and Comcast Ventures, and integrated its software into mobile apps/websites of large parts distributors and retailers. Partpic was acquired by Amazon in late 2016 and the technology now powers visual search for replacement parts in the Amazon Mobile Shopping app.<br><br>
Jewel is a proud board member at Goodie Nation and the Harvard Debate Council Diversity Project, and spends much of her free time mentoring startup founders and angel investing.<br><br>Jewel has been featured in notable publications such as Forbes, Wired, TechCrunch, Essence, Glamour, and Business Insider.
Prior to founding Partpic, Jewel served in management, enterprise sales, and strategic diversity roles at McMaster-Carr Industrial Supply and Google, Inc. Jewel is a native of Nashville TN, and graduate of Howard University. She currently resides in Atlanta, GA with her husband, Zekarias.
</div>
</div>
</div>
</div>
<div class="row" style="margin-top: 70px">
<div class="col-lg-5">
<div class="speaker-graphic">
<div class="speaker-horizon text-center">
<img class="speaker-bird-one" src="./img/speakers/pink_bird.svg">
<img class="speaker-bird-two" src="./img/speakers/pink_bird.svg">
<img class="speaker-bird-three" src="./img/speakers/pink_bird.svg">
<img class="speaker-headshot" src="./img/speakers/cadrancowansage.jpeg" alt="Headshot of Cadran Cowansage">
<div class="speaker-cloud text-left" id="cadran-cloud">
<div class="speaker-name">Cadran Cowansage</div>
<div class="speaker-position">CEO & Founder of Elpha</div>
</div>
</div>
<img class="speaker-wave" src="./img/speakers/wave.svg">
</div>
</div>
<div class="col-lg-7" style="display: flex; align-items: center;">
<div class="speaker-bio d-none d-sm-block">
<b>Cadran Cowansage</b> is the CEO and Founder of <a target="_blank" href="https://elpha.com/" class="black-link"><b>Elpha</b></a>, an online community dedicated to accelerating the careers of women in the tech industry. The Elpha community is tens of thousands of members strong and includes women at all levels in software engineering, product, sales, marketing, design, and more. Elpha is part of Y Combinator’s Summer 2019 Batch and has raised over $1 million in seed funding. Before founding Elpha, Cadran was a Lead Software Engineer at Y Combinator, and before that a Senior Software Engineer at MongoDB. She holds a Masters in Biomedical Informatics from Columbia University and an undergraduate degree in Computer Science and Biology from Colby College.
</div>
<div class="d-block d-sm-none speaker-bio">
<div class="accordion">
<h4>Click to see bio</h4>
<div class="faq-toggle-icon"></div>
</div>
<div class="panel">
<b>Cadran Cowansage</b> is the CEO and Founder of <a target="_blank" href="https://elpha.com/" class="black-link"><b>Elpha</b></a>, an online community dedicated to accelerating the careers of women in the tech industry. The Elpha community is tens of thousands of members strong and includes women at all levels in software engineering, product, sales, marketing, design, and more. Elpha is part of Y Combinator’s Summer 2019 Batch and has raised over $1 million in seed funding. Before founding Elpha, Cadran was a Lead Software Engineer at Y Combinator, and before that a Senior Software Engineer at MongoDB. She holds a Masters in Biomedical Informatics from Columbia University and an undergraduate degree in Computer Science and Biology from Colby College.
</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">Saturday</a>
</li>
<li class="nav-item schedule-toggler" id="suntogglecontainer">
<a href="#sun" id="suntoggle" class="link" data-toggle="tab">Sunday</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">10:00 AM -<br>11:00 AM</div>
<div class="event-name">Open Ceremony</div>
<div class="event-type event">Main Event</div>
</div>
<div class="schedule-event-nodesc">
<div class="event-time">11:00 AM -<br>11:30 AM</div>
<div class="event-name">Hacking Begins</div>
<div class="event-type event">Main Event</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event1">
<div class="event-time">11:00 AM -<br>11:30 AM</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="#event2">
<div class="event-time">11:00 AM -<br>4:00 PM</div>
<div class="event-name">Capture the Flag<br><span class="event-subname">Hosted by Bank of America</span></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">Capture the Flag</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Come test your cyber security knowledge and hacking skills at the Capture the Flag competition held by Bank of America at <a class="link" href="https://technica2020ctf.com" target="_blank">technica2020ctf.com</a>!
This solo competition tests skills in multiple categories. Participants will be able to sign up and participate anytime between 11am-4pm EST on the day of.
Prizes will be given to participants with the top 10 highest scores.<br>The top 3 highest scores will receive the GRAND PRIZE: a portable Bose speaker, a BofA glass water bottle, and a reusable stainless steel straw.
The next 7 highest scores will receive the a BofA glass water bottle and a reusable stainless steel straw.
<br>Be sure to use your real email when registering so we can contact you for your shipping address if you are in the top 10!
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event3">
<div class="event-time">11:30 AM -<br>12:00 PM</div>
<div class="event-name">Team Formation</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">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">
Want to meet new people and talk about your interests? Interested in forming a team? This event is perfect for you!
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event4">
<div class="event-time">12:00 PM -<br>1:00 PM</div>
<div class="event-name">Technichat: Diversity and Inclusion</div>
<div class="event-type panel-meetup horizon-event">Panel</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">Technichat: Diversity and Inclusion</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
How is diversity and inclusion handled in the tech space today? Join us and our panel of professionals from tech and tech-related positions to learn about their experiences in Tech and diversity and inclusion in Tech!
<br><br><i>This event is an "Expand Your Horizons" event.</i>
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event5">
<div class="event-time">12:30 PM -<br>1:15 PM</div>
<div class="event-name">Blockchain Governance</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">Blockchain Governance</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
We based our democracy in checks and balances of power, but we based technology in a centralized authority. Blockchain offers an alternative. Using blockchain, we can build tools for our government that reflect our values, distribute power, re-build citizen's trust in government and even create fundamental change.<br>This talk is about how woman can shape blockchain technology to increase equality, promote access and advance social changes in our society.
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event6">
<div class="event-time">1:00 PM -<br>2:00 PM</div>
<div class="event-name">Underrepresented People in Tech<br><span class="event-subname">Technica Community Meetup</span></div>
<div class="event-type panel-meetup horizon-event">Meetup</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">Underrepresented People 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">
This Technica Community Meetup is for anyone who feels underrepresented in the tech community, or wants to learn about being a better ally. The goal is to build community among underrepresented groups and allies, hear from diverse perspectives, and work to make tech a more inclusive space for all people.
<br><br><i>This event is an "Expand Your Horizons" event.</i>
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event7">
<div class="event-time">1:00 PM -<br>2:00 PM</div>
<div class="event-name">Choose Your Own Misadventure<br><span class="event-subname">Hosted by Bank of America</span></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">Choose Your Own Misadventure</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.
<br>In this workshop, we'll talk about the basics of threat modeling - one of the most useful tools in cyber security. Then we'll break into small groups to threat model an example project. Then we'll come back together to talk about our threat models and answer any questions.
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event8">
<div class="event-time">1:30 PM -<br>2:00 PM</div>
<div class="event-name">Capture the Flag<br><span class="event-subname">Hosted by MLH</span></div>
<div class="event-type minievent">Mini-Event</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">Capture the Flag</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Join MLH for a game of Capture the Flag hosted by US Air Force!
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event9">
<div class="event-time">1:30 PM -<br>2:15 PM</div>
<div class="event-name">How to Scrape Twitter to Monitor Hate Speech<br><span class="event-subname">Hosted by Fifth Tribe & America Indivisible</span></div>
<div class="event-type workshop">Workshop</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">How to Scrape Twitter to Monitor Hate Speech</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Join Fifth Tribe & America Indivisible for this workshop on an overview of the problem of monitoring hate speech online, the key features of two Twitter scrapers we built ([1] No Islamophobia and [2] ISIS Fanboys), the tech stack we used, and a walk through of how to make your own.
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event10">
<div class="event-time">2:00 PM -<br>2:45 PM</div>
<div class="event-name">Career Skills Kick Start<br><span class="event-subname">Hosted by M&T Tech</span></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">Career Skills Kick Start</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Wondering what recruiters are looking for? Join technology and HR professionals from M&T Tech for a professional development session on resume writing, interviewing and career preparation. M&T women professionals will join a short panel discussion to share their experience.
</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">Technichat: Women in Tech</div>
<div class="event-type panel-meetup horizon-event">Panel</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">Technichat: 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">
What does it mean to be a woman in Tech? Join us and our panel of female professionals from tech and tech-related positions to learn more about their experiences in Tech and what it's like to be a woman in Tech!
<br><br><i>This event is an "Expand Your Horizons" event.</i>
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event12">
<div class="event-time">2:30 PM -<br>3:30 PM</div>
<div class="event-name">Getting Started with Machine Learning</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">Getting Started with Machine Learning</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
In this workshop, participants can get started with Machine Learning and learn how they can implement it with their own projects. There will be a brief introduction to ML and its applications followed by a small demo on making a binary image classifier on Google Colab.
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event13">
<div class="event-time">3:00 PM -<br>4:15 PM</div>
<div class="event-name">Importance of Building Equitable Tech</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">Importance of Building Equitable Tech</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Building technology for users of all abilities and backgrounds should be a priority for all product teams. Sadly, that is not the case. By participating in this workshop, you'll learn about accessibility basics, tools you can use to make your projects more accessible, and how each of us can work to make digital equity a reality. </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">Tech for Social Good<br><span class="event-subname">Technica Community Meetup</span></div>
<div class="event-type panel-meetup horizon-event">Meetup</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">Tech for Social Good</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
How can we harness the power of tech to empower people and build tech for good? Join this Technica Community Meetup to learn more about the unique ways in which tech and social change intersect and meet others who want to make a positive impact on the world!
<br><br><i>This event is an "Expand Your Horizons" event.</i>
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event15">
<div class="event-time">3:00 PM -<br>3:45 PM</div>
<div class="event-name">Global Health Hack Talks<br><span class="event-subname">Hosted by Abt Associates</span></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">Global Health Hack Talks</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
In this workshop, Abt Associates will highlight some of the innovative applications of digital technology in the global health space. Panelists will highlight considerations for using appropriate technology in developing country settings and take questions and answers about their hacks and potential hacks for the prize category.
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event16">
<div class="event-time">3:30 PM -<br>4:15 PM</div>
<div class="event-name">Intro to Google Cloud</div>
<div class="event-type workshop">Workshop</div>
</div>
<div class="modal fade" id="event16" tabindex="-1" role="dialog" aria-labelledby="event16label" 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="event16label">Intro to Google Cloud</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
In this workshop, you will learn how to host your application on Google Cloud Platform (GCP) and the benefits of using Cloud Computing. At the end, you will have created your first website on Cloud for free.
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event17">
<div class="event-time">4:00 PM -<br>4:45 PM</div>
<div class="event-name">How to Learn the Most Tech Things in the Universe<br><span class="event-subname">Hosted by T. Rowe Price</span></div>
<div class="event-type workshop">Workshop</div>
</div>
<div class="modal fade" id="event17" tabindex="-1" role="dialog" aria-labelledby="event17label" 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="event17label">How to Learn the Most Tech Things in the Universe</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
The idea of this session by T. Rowe Price is to show some tech skills – in the context of programming examples – for how to learn, and help keep up-to-date in a rapidly changing tech environment. The goal is to show you the importance of identifying and mastering concepts, as well as how to do it in the context of being onboarded to a new software product. A great session for anyone in the “General” Track and hackers of all skill levels!
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event18">
<div class="event-time">4:00 PM -<br>4:30 PM</div>
<div class="event-name">Daytime Yoga</div>
<div class="event-type minievent">Mini-Event</div>
</div>
<div class="modal fade" id="event18" tabindex="-1" role="dialog" aria-labelledby="event18label" 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="event18label">Daytime Yoga</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Take a break from hacking and attend a peaceful yoga session! :)
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event19">
<div class="event-time">4:30 PM -<br>5:00 PM</div>
<div class="event-name">Bob Ross Painting<br><span class="event-subname">Hosted by MLH</span></div>
<div class="event-type minievent">Mini-Event</div>
</div>
<div class="modal fade" id="event19" tabindex="-1" role="dialog" aria-labelledby="event19label" 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="event19label">Bob Ross Painting</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Join MLH and channel your inner artist for a painting session on MS Paint!
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event20">
<div class="event-time">5:00 PM -<br>6:00 PM</div>
<div class="event-name">Redstone Computer Architecture in Minecraft</div>
<div class="event-type workshop">Workshop</div>
</div>
<div class="modal fade" id="event20" tabindex="-1" role="dialog" aria-labelledby="event20label" 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="event20label">Redstone Computer Architecture in Minecraft</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Want to learn how to build basic computing circuits with Minecraft's Redstone? Join us for some fun with basic computer architecture and redstone in Minecraft! We'll cover logic gates, adders, encoders, decoders, and more!
<br>(Minecraft Account Required)
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event21">
<div class="event-time">5:00 PM -<br>6:00 PM</div>
<div class="event-name">Non-Traditional Roles in Tech<br><span class="event-subname">Technica Community Meetup</span></div>
<div class="event-type panel-meetup horizon-event">Meetup</div>
</div>
<div class="modal fade" id="event21" tabindex="-1" role="dialog" aria-labelledby="event21label" 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="event21label">Non-Traditional Roles 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">
The world of tech has more than meets the eye, from research, design, and education to product management, medicine, and even law! Join this Technica Community Meetup to learn more about the diverse fields that incorporate tech and how they can relate to your interests.
<br><br><i>This event is an "Expand Your Horizons" event.</i>
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event22">
<div class="event-time">5:00 PM -<br>6:00 PM</div>
<div class="event-name">App Development with Flutter</div>
<div class="event-type workshop">Workshop</div>
</div>
<div class="modal fade" id="event22" tabindex="-1" role="dialog" aria-labelledby="event22label" 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="event22label">App Development with Flutter</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
In this workshop, participants will learn how to create mobile apps for Android and iOS using the Dart language and Flutter framework. This is a popular framework developed by Google.
</div>
</div>
</div>
</div>
<div class="schedule-event-nodesc">
<div class="event-time">6:00 PM -<br>6:30 PM</div>
<div class="event-name">Mini-Games Session 1</div>
<div class="event-type minievent">Mini-Event</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event23">
<div class="event-time">7:00 PM -<br>7:45 PM</div>
<div class="event-name">Projecting the Future<br><span class="event-subname">Hosted by Wayfair</span></div>
<div class="event-type workshop">Workshop</div>
</div>
<div class="modal fade" id="event23" tabindex="-1" role="dialog" aria-labelledby="event23label" 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="event23label">Projecting the Future</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
A pre-recorded tech talk on project mapping presented by Nicole Tan, an Engineer on the Wayfair Next team.
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event24">
<div class="event-time">7:00 PM -<br>9:00 PM</div>
<div class="event-name">Trivia Night</div>
<div class="event-type minievent horizon-event">Mini-Event</div>
</div>
<div class="modal fade" id="event24" tabindex="-1" role="dialog" aria-labelledby="event24label" 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="event24label">Trivia Night</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Ready for a night of trivia? Come and join the Technica Trivia Night where hackers can work in teams to answer trivia questions!
<br><br><i>This event is an "Expand Your Horizons" event.</i>
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event25">
<div class="event-time">7:30 PM -<br>8:30 PM</div>
<div class="event-name">Social Justice and Tech<br><span class="event-subname">Hosted by PLUMAS</span></div>
<div class="event-type workshop horizon-event">Workshop</div>
</div>
<div class="modal fade" id="event25" tabindex="-1" role="dialog" aria-labelledby="event25label" 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="event25label">Social Justice and 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 PLUMAS (Political Latinx United for Movement and Action in Society) as they discuss how technology factors into social justice and how you can engage and educate your audience effectively in a time where social media is the most dominant way to connect people. We will be discussing misinformation and digital engagement.
<br><br><i>This event is an "Expand Your Horizons" event.</i>
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event26">
<div class="event-time">8:30 PM -<br>10:00 PM</div>
<div class="event-name">Intro to Design Thinking</div>
<div class="event-type workshop">Workshop</div>
</div>
<div class="modal fade" id="event26" tabindex="-1" role="dialog" aria-labelledby="event26label" 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="event26label">Intro to Design Thinking</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
An introduction to the world of design thinking! Design thinking is a human-centered process and mindset for innovation. We will deep dive into one of the steps in the process (ex. Ideate or Define) to build your skills! This might give you more perspective for your Technica hack or how you approach problems in general! Come ready to unleash your creativity!
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event27">
<div class="event-time">9:00 PM -<br>9:45 PM</div>
<div class="event-name">Overcoming Imposter Syndrome</div>
<div class="event-type workshop">Workshop</div>
</div>
<div class="modal fade" id="event27" tabindex="-1" role="dialog" aria-labelledby="event27label" 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="event27label">Overcoming Imposter Syndrome</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Ever feel like a fraud, or like you’re taking up someone else’s seat? During this workshop, we’ll dive into the causes and effects of imposter syndrome, explore real-life situations, and build up your toolbox of strategies to both recognize and combat imposter syndrome.
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event28">
<div class="event-time">9:00 PM -<br>10: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="event28" tabindex="-1" role="dialog" aria-labelledby="event28label" 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="event28label">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">
This hands-on workshop will leverage Python, the Reddit API, and AWS to provide a basic overview of how to perform web scraping and prepare it for visualization. Participants will learn how to design a Python program that considers user error in system arguments, select a Docker image, and complete the full ETL pipeline.
Time permitting, participants will also learn how to install Docker on an EC2 instance and use the Neo4j image to populate a graph database with the scraped data.
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event29">
<div class="event-time">10:00 PM -<br>12:00 AM</div>
<div class="event-name">Open Mic Night</div>
<div class="event-type minievent">Mini-Event</div>
</div>
<div class="modal fade" id="event29" tabindex="-1" role="dialog" aria-labelledby="event29label" 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="event29label">Open Mic Night</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Play music? Sing? Read poetry? Improv dance? Sign up to perform for this Technica Open Mic Night at <a class="link" href="https://docs.google.com/forms/d/e/1FAIpQLScUBwaThMjyCtWvysYCNmbwO3ihOTSCjt2IRvEIaQXWUIDsmw/viewform" target="_blank">gotechnica.org/openmicnight</a>! Or just come and listen/watch and be with people. This is the opportunity for hackers, mentors, volunteers, and organizers to share any talents, ideas, interests and etc. with the rest of Technica.
</div>
</div>
</div>
</div>
<div class="schedule-event" data-toggle="modal" data-target="#event30">
<div class="event-time">10:00 PM -<br>10:45 PM</div>
<div class="event-name">Flask 101</div>
<div class="event-type workshop">Workshop</div>