-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
6357 lines (5948 loc) · 343 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>
<!--
Miniport by HTML5 UP
html5up.net | @n33co
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Big Data Hackathon for San Diego 2022</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/main.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/skel-viewport.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
</head>
<body>
<!-- Nav -->
<nav class="navbar navbar-default navbar-fixed-top navbar-inverse" id='nav'>
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!--a href='#top'><img src="images/logo.png" alt="" style="width:50px; margin-right:20px; " /></a-->
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul id="dropmenu" class="nav navbar-nav">
<li><a href="#top">Home</a></li>
<!--li><a href="#register">Register</a></li-->
<!-- <li><a href="#winner">Winner</a></li>
<li><a href="#media">Media</a></li>
<li><a href="#gallery">Gallery</a></li> -->
<li><a href="#theme">Theme</a></li>
<!--li><a href="#cost">Cost</a></li-->
<!--li><a href="#volunteer">Volunteer</a></li-->
<li><a href="#prize">Prizes</a></li>
<li><a href="#teamwork">Teamwork</a></li>
<li><a href="#dataset">Datasets</a></li>
<li><a href="#tools">Tools</a></li>
<li><a href="#agenda">Agenda</a></li>
<li><a href="#mentors">Mentors</a></li>
<li><a href="#judges">Judges</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#about">About</a></li>
<li><a >Archive</a>
<ul class="archive_child">
<li><a href='http://bigdataforsandiego.github.io/archive/2015/'>2015</a></li>
<li><a href='http://bigdataforsandiego.github.io/archive/2017/'>2017</a></li>
<li><a href='http://bigdataforsandiego.github.io/archive/2019/'>2019</a></li>
</ul>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<script>
$(function(){
$('#dropmenu li').hover(function(){
$("ul:not(:animated)", this).slideDown();
}, function(){
$("ul.archive_child",this).slideUp();
});
});
</script>
<!-- Top -->
<div class="wrapper style1 first" style="padding: 120px 50px">
<article class="container" id="top">
<div class="row" style='width:100%;'>
<img src='images/big_data_2022_clip.png' style="width:100%; padding:0px; margin-top: 10px" />
<div class='col-lg-8 col-md-7 col-xs-12 col-sm-6'>
<iframe width="560" height="315" src="https://www.youtube.com/embed/m37vbOtEr7E" frameborder="0" allowfullscreen style='width:100%; height:450px; margin-top:30px; '></iframe>
<!--<iframe width="100%" src="https://www.youtube.com/watch?v=r_vsKgodcUE" frameborder="0" allowfullscreen style='width:100%; height:450px; margin-top:60px; '></iframe>-->
</div>
<div class='col-lg-4 col-md-5 col-xs-12 col-sm-6'>
<!--div style="margin-left:150px"-->
<!--div-->
<header id='top-title'>
<h2>Hacking Big Data and Open Data in San Diego <a href='https://twitter.com/hashtag/hack4sd' target='_blank' style='text-decoration:underline;'>#Hack4SD</a></h2>
</header>
<!--table style="margin-left:50px"-->
<table>
<tr>
<td>Dates: </td>
<td>
Oct 8(Sat) & 15(Sat), 2022 <br>
</td>
<!--td>
February 18, 2017 <br>
(1st Round)<br>
February 25-26, 2017 <br>
(2nd Round)
</td-->
</tr>
<tr>
<td>Location: </td>
<td>
<a href="https://map.concept3d.com/?id=801#!m/147100" target="_blank">Storm Hall West</a> (Rm 012: Charles Hostler Hall)
<br> San Diego State University
</td>
</tr>
<tr>
<td>Free Parking:</td>
<td>Parking Structure <b><!--font color="red"-->#12</font></b>     Level <b><!--font color="red"-->4</font></b>: <a href="data/BigDataHackathon-Parking-Directions-V2.pdf" target="_blank">Map</a></td>
</tr>
<tr>
<td>Cost: </td>
<td>
FREE
</td>
</tr>
<tr>
<td>Contact: </td>
<td>
<a href="mailto:mtsou@sdsu.edu">Dr. Ming-Hsiang Tsou</a><br>
<a href="mailto:cpucher@sdsu.edu">Cathy Pucher (Executive Director)</a><br>
<a href="mailto:aschmitz@sdsu.edu">Dr. Amy Schmitz Weiss</a><br>
<a href="mailto:anara@sdsu.edu">Dr. Atsushi Nara</a><br>
<a href="mailto:gfernandez2@sdsu.edu">Dr. Gabriela Fernandez</a>
</td>
</tr>
<tr>
<td>Github: </td>
<td>
<a href="https://github.com/BigDataForSanDiego" target='_blank'>Github</a>
</td>
</tr>
<tr>
<td>Sponsor: </td>
<td><b>Sharp HealthCare</b></td>
</tr>
<!--tr>
<td>Free WiFi: </td>
<td>
<a href='javascript:void(0)' onclick='toggleModal("#modal_wifi_info")'>Info</a>
</td>
</tr-->
</table>
</div>
<br>
<div class='click'>
<!--a href="http://bigdataforsandiego.devpost.com/" class="button alert" button style="background-color:darkred" target='_blank'>Register Site</a-->
<!--a class="button alert" button style="background-color:darkred" target='_blank'>Register Site: Open Soon!</a-->
<!--a id="register" href="https://docs.google.com/forms/d/e/1FAIpQLSe0DANPNPC3CeatICAhMzp9h7gC0DQEYzjplWpZ7x1iv4F-wg/viewform" class="button alert" button style="background-color:darkred" target='_blank'>Register Site</a-->
<!--p>Participants must register for the event by <b><font color="darkred">Feb 15, 2017</font></b>.</p-->
<!--div style="font-size:1em;margin-top:2em"-->
<div style="font-size:1.2em">
<a href='https://drive.google.com/open?id=1FyUmbDdw0wXhkGp6mur3acI_VPtE5W1f&authuser=mtsou%40sdsu.edu&usp=drive_fs'>Public Shared Google Folders</a>
</div>
<br>
<b><div style="font-size:1.2em; color: red">
All participants of this SDSU Big Data Hackathon event MUST follow the most updated SDSU COVID-19 Campus Activities Policy:
Facial Covering is required for in-door activities at SDSU. <br>
The County of San Diego recommends eligible people to receive the new COVID-19 bivalent Boosters: <a href = "https://myturn.ca.gov/">My Turn</a><br>
See the <a href='https://sacd.sdsu.edu/student-health-services/covid-19'>link</a> for details.
</div></b>
<br>
<br>
<br>
<b><div style="font-size:2.2em">
Registration <a href='https://docs.google.com/forms/d/e/1FAIpQLSe0DANPNPC3CeatICAhMzp9h7gC0DQEYzjplWpZ7x1iv4F-wg/viewform'>HERE</a>
</div> </b>
<b><div style="font-size:1.2em; color: red">
<br>
Deadline to Register is Sept. 30 by 5 p.m.
</div></b>
<br>
<div style="font-size:1em; color: black">
Registrants will be contacted thereafter with details on teams and Hackathon logistics.
<br>
<br>
Organized by <a href='http://humandynamics.sdsu.edu' target='_blank'>Human Dynamic at Mobile Age</a> @ SDSU
</div>
</div>
</article>
</div>
<!--Top end-->
<!-- media -->
<!--gallery--><!--
</div>
</article>
</div>
<!-- Themes -->
<div class="wrapper style3" style="padding: 150px 50px" font color="black">
<article id="theme">
<header>
<h1><font color="darkred"> 2022 Theme </font></h1>
<h2><font color="black"; font-family="Arial"> Tackling Real-world Challenges in Healthcare</font></h2>
<h3>(Subtitle: Addressing Real-world Problems in Healthcare using A.I. and Informatics)</h3>
<!--p><font color="black">The hackathon will focus on three themes:</font-->
<p><font color="black">The 2022 Big Data Hackathon for San Diego aims to promote Data Science and Big Data Analytics<br>
for both students and educators in Southern California.
</font>
</p>
</header>
<div id='Theme '>
<!--<h3>
Theme
</h3>-->
<ul style="padding-left:0; margin-left:5em; margin-right: 5em; list-style-type: disc; text-align: left;">
<font color="black" >
<li><u><b>1. Artificial Intelligence/Machine Learning:</b></u> How can we leverage AI/ML Algorithms to help support diagnostics, clinical decisions, and forecast staffing and hospital capacity?</li>
<li><u><b>2. Mobile:</b></u> Designing Mobile Apps to improve user experience before, during, and after a healthcare visit.</li>
<li><u><b>3. Patient experience:</b></u> How do you incorporate the patient perspective through the intersection of patient, provider, and community data into care plans.</li>
<li><b><u>4. Health Disparities:</b></u> What is the role of big data and analytics in addressing health disparities among vulnerable and minority populations in San Diego County.</li>
<li><u><b>5. Privacy and Security:</b></u> How can we increase data privacy and enhance cybersecurity measures in the release, exchange and use of healthcare data, both locally and nationally.</li>
</font>
</ul>
</div>
<div class ="container">
<div align="center">
<img src="images/Hackathon_2022_theme.png" alt style="width:100%; height: 100%">
</div>
</div>
</div>
<footer>
<p align="center"; style="margin-left:2em; margin-right:2em;">
<font color="black">Your challenge is to create an app, platform, and/or technology that can tie into the Healthcare theme using datasets provided via our special GitHub site.<br><br>
<!-- <b>How will you answer the questions and win the prizes?</b> -->
</font>
</p>
<!-- <a href="#theme" onclick='toggleModal("#modal_theme_public_health")' class="button alert" button style="background-color:darkred">Click here to see the challenging questions for this hackathon!</a> -->
</footer>
</article>
</div>
<!-- Themes end -->
<!-- Cost -->
<!--div class="wrapper style1" style="padding: 100px 30px">
<article id="cost">
<header>
<h1><font color="darkred">Cost</font></h1>
<p>
<p align="center"><font color="black">This Hackathon is <b>FREE</b>!
<br>Bring your ingenuity, creativity, imagination, a laptop and a charger! Anyone is welcome to participate.
<br>Students, engineers, developers, programmers, journalists, scientists, public officials, and community members are just a few people who may find this Big Data event of interest.
<br>Food and beverages will be provided as courtesy of our sponsors!</font>
<br><br><br>
</p>
<a href="#cost" onclick='toggleModal("#modal_sponsorship")' class="button alert" button style="background-color:darkred">Become a sponsor!</a>
</header>
</article>
</div-->
<!-- Volunteer -->
<!--div class="wrapper style2" style="padding: 100px 30px">
<article id="volunteer">
<header>
<h1><font color="darkred">Volunteer</font></h1>
<p>
<p align="center"><font color="black">If you are interested in helping the organization of this Big Data Hackathon event, please register your information as a volunteer!</font>
<br><br><br>
</p>
<div class='click'>
<a href="https://goo.gl/forms/qtwTWrzeAMGnzUPB2" class="button alert" button style="background-color:darkred" target='_blank'>Become a volunteer!</a>
</div>
</header>
</article>
</div-->
<!-- Prizes -->
<div class="wrapper style1" style="padding: 100px 30px">
<article id="prize">
<header>
<h1><font color="darkred">Prizes</font></h1>
<p><b><font color="black">Teams will have an opportunity to win awards for the best overall project.</b>
<br>Just create an app, platform and/or technology that can tie into the healthcare to win the prizes!
<br>
<br>
<b>Award Prizes are taxable incomes for the awardees.</b> The final checks will be issued to the individual team members<br>
(the award prize is for one group per award and each member will share the award money together).
<br>
</font>
</p>
</header>
<div style="font-size:2.2em; color:red">
<b>Total over $13K in Prizes</b>
<br>
</div>
<br>
<div class="container" >
<!--div align="center"-->
<div class="row">
<div class="col-lg-3 col-md-3 col-xs-6">
<section class="box style1">
<span class="icon featured fa-trophy"></span>
<h3>$3,000</h3>
<p>1st Prize</p>
</section>
</div>
<div class="col-lg-3 col-md-3 col-xs-6">
<section class="box style1">
<span class="icon featured fa-trophy"></span>
<h3>$2,000</h3>
<p>2nd Prize</p>
</section>
</div>
<div class="col-lg-3 col-md-3 col-xs-6">
<section class="box style1">
<span class="icon featured fa-trophy"></span>
<h3>$1,500</h3>
<p>3rd Prize</p>
</section>
</div>
<div class="col-lg-3 col-md-3 col-xs-6" >
<section class="box style1">
<span class="icon featured fa-trophy"></span>
<h3>$900</h3>
<p>4th Prize</p>
</section>
</div>
</div>
</div>
<footer>
<!--
<p>In addition to these top cash prizes, participants can win:
<br><b><font color="red">$100 </font></b> for <b>Most Innovative Proposal Ideas</b>,
<br><b><font color="red">$100 </font></b> for <b>Strongest Teamwork</b>
</p> ;--->
<div style="font-size:2.2em; color:red">
<!--
<b>Additional $2500 in Prizes</b>
<br> ;--->
</div>
<br>
<div class="container">
<!-- Special Prizes; --->
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">
<b>Special Prizes</b>
<!-- <br>Sponsored by *** -->
</div>
<!-- Table -->
<table class="table" style="text-align:left">
<tr>
<td>
<b>Most innovative Proposal Idea: $500</b><br>
</td>
</tr>
<tr>
<td>
<b>Strongest Teamwork: $500</b><br>
</td>
</tr>
<tr>
<td>
<b>Imperial Valley Student Participation: $500</b><br>
Qualified groups must have at least two students from the SDSU Imperial Valley Campus
</td>
</tr>
</table>
</div>
</div>
<div class="container">
<!-- NSF Prizes -->
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">
<b>Geocomputational Thinker Awards</b>
<br>Sponsored by NSF
</div>
<!-- Table -->
<table class="table" style="text-align:left">
<tr>
<td>
<!--a href="javascript:void(0)" onclick='toggleModal("#modal_prize_young")'>Geocomputational Thinker</a> -->
<b>Geocomputational Thinker - College Students <br>
- 1st place: $500<br>
- 2nd place: $250</b><br>
All team members must be college-level students (Grades 13-14).
One or two mentors are allowed if they are in a limited advisory role.
</td>
</tr>
<tr>
<td>
<b>Geocomputational Thinker - High School Students or younger <br>
- 1st place: $500 <br>
- 2nd place: $250</b><br>
All team members must be high-school students or younger (Grades K-12).
One or two mentors are allowed if they are in a limited advisory role.
</td>
</tr>
<tr>
<td>
<b>Geocomputational Thinker - Honorable Mention <br>
- $100 (Up to 5teams)</b><br>
Criteria: The team must apply geographical and computational thinking (geo-computational) skills to their solution.
</td>
</tr>
</table>
</div>
</div>
<div class="container">
<!-- Special Prizes; --->
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">
<b>ZIP Launchpad Awards</b>
<br>Sponsored by SDSU ZIP Launchpad
</div>
<!-- Table -->
<table class="table" style="text-align:left">
<tr>
<td>
<b>WSTEM Most Innovative Solution <br>
- 1st place: $1,000 <br>
- 2nd place: $500</b><br>
*requires at least one SDSU WSTEM(Women in STEM) major on the team
</td>
</tr>
<tr>
<td>
<b>Most Innovative Solution that solves a problem related to Aging Independently<br>
- 1st place: $1,000 <br>
- 2nd place: $500</b><br>
*requires at least one SDSU student on the team
</td>
</tr>
</table>
</div>
</div>
<br>
<div style="font-size:2em">
<b><a href='data/2022-Hackathon-Award-Procedures.html'>The Detailed Procedures for Receiving Hackathon Award Prizes</a></b>
</div>
</article>
<!--footer></footer-->
</div>
<!-- Prizes end-->
<!-- Teamwork -->
<!--div class="wrapper style2" style="padding: 100px 30px 80px"> -->
<div class="wrapper style3" style="padding: 150px 50px" font color="black">
<article id="teamwork">
<header>
<h1><font color="darkred"> Teamwork </font></h1>
<!--h2><font color="black"; font-family="Arial"> Tackling Real-world Challenges in Healthcare</font></h2>
<h3>(Subtitle: Addressing Real-world Problems in Healthcare using A.I. and Informatics)</h3>
<!--p><font color="black">The hackathon will focus on three themes:</font></p>-->
<p><font color="black">
No need to have all the skills—that’s what <b>TEAMWORK</b> is for!
<br>We will <u>help you</u> to find team members with the <u>skills you need.</u>
<br>Please join us if you have:
</font>
</p>
</header>
<div id='teamwork'>
<!--<h3>
Teamwork
</h3>-->
<ul style="padding-left:0; margin-left:25em; margin-right: 0em; list-style-type: disc; list-style-position: inside; text-align: left;">
<font color="black" >
<b>
<li>Journalistic, creative or innovative ideas</li>
<li>Business or marketing savvy</li>
<li>Data sense or math/statistics concepts</li>
<li>Domain Knowledge and Critical Thinking</li>
<li>Computational Linguistics or Digital Humanities skills</li>
<li>Mapping or programming skills</li>
</b>
</font>
</ul>
</div>
<br>
<b><u>About Recruiting Team Members for the Hackathon</u><br>
(Maximum Team Member Size: 8 people)<br>
All participants need to register to participate in the Hackathon by Sep 30.<b>
If you have a team, you will need to register yourself and all team members.<br>
If you don’t have a team yet, you will still register for the event. We will help place you into a team and you will get a chance <br>
to meet them on Oct 4 via live Zoom meeting. If you have a team but are missing someone with specific expertise, <br>
we will also help you to find a team member and you will also join the Oct 4 live Zoom meeting for a Team Meet n' Greet. <br>
At that Zoom meeting, you will learn more about your team, the team formation process and logistics for the Hackathon. </b>
</div>
<!-- Teamwork End -->
<!-- Dataset -->
<div class="wrapper style3" style="padding: 100px 30px; font color: black; ">
<article id="dataset">
<header>
<h1>
<font color="darkred">
Datasets
</font>
</h1>
<p>
<font color="black">
Lots of free and open San Diego datasets!<br>
Teams are welcome to use other datasets beyond the following data <br>
for your innovative team projects.
</font>
</p>
<br>
<!-- Description IN -->
</header>
<div class="container">
<!-- Main dataset subtheme; - -->
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">
<b>One of the major hackathon datasets recommended by Sharp HealthCare</b>
</div>
<!--div class="panel-body">
<b>Question 1:</b> tools for improve public health in San Diego?
<br>
<b>Question 2:</b> conditions be managed daily?
</div -->
<!-- Table -->
<table class="table" style="text-align:left">
<tr>
<td>
<a href="javascript:void(0)" onclick='toggleModal("#modal_cms")'>CMS synthetic data</a> <br>
<p><font color="black" >*CMS 2008-2010 Data Entrepreneurs’ Synthetic Public Use File (DE-SynPUF) is commonly used by entrepreneurs when looking for national data on
what healthcare services are billed for by the federal government. It contains synthesized data taken from a 5% random sample of
Medicare beneficiaries in 2008 and their claims from 2008 to 2010. The data includes over 2 million beneficiary records each year and can be summarized at the county level.
</font></p>
</td>
</tr>
</table>
</div>
<!-- Health subtheme; - -->
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">
<b>Health</b>
</div>
<!--div class="panel-body">
<b>Question 1:</b> How can we share useful public health information and web analytical tools for improve public health in San Diego?
<br>
<b>Question 2:</b> What chronic diseases affect San Diegans and how can these conditions be managed daily?
</div -->
<!-- Table -->
<table class="table" style="text-align:left">
<tr>
<td>
1. <a href="javascript:void(0)" onclick='toggleModal("#modal_ccral")'>California Cancer Registry</a>
</td>
</tr>
<tr>
<td>
2. <a href="javascript:void(0)" onclick='toggleModal("#modal_covid19ca")'>Tracking COVID-19 in California</a>
</td>
</tr>
<tr>
<td>
3. <a href="javascript:void(0)" onclick='toggleModal("#modal_askchisne")'>OHE AskCHIS NE Dashboard</a>
</td>
</tr>
<tr>
<td>
4. <a href="javascript:void(0)" onclick='toggleModal("#modal_calhhs")'>California HHS Data Portal</a>
</td>
</tr>
<tr>
<td>
5. <a href="javascript:void(0)" onclick='toggleModal("#modal_sdhhs")'>San Diego County HHS</a>
</td>
</tr>
<tr>
<td>
6. <a href="javascript:void(0)" onclick='toggleModal("#modal_chsu")'>Community Health Statistics Unit</a>
</td>
</tr>
<tr>
<td>
7. <a href="javascript:void(0)" onclick='toggleModal("#modal_ces")'>Consumer Expenditures Survey</a>
</td>
</tr>
<tr>
<td>
8. <a href="javascript:void(0)" onclick='toggleModal("#modal_fooddesert")'>Neighborhood GIS-Food Desert (SCALE SD)</a>
</td>
</tr>
</table>
</div>
<!-- City Subtheme; - -->
<div class="panel panel-default">
<div class="panel-heading">
<b>City</b>
</div>
<table class="table" style="text-align:left">
<tr>
<td>
1. <a href="javascript:void(0)" onclick='toggleModal("#modal_sdplan")'>San Diego Planning Database</a>
</td>
<td>
2. <a href="javascript:void(0)" onclick='toggleModal("#modal_healthyplaces")'>Healthy Places Index</a>
</td>
</tr>
<tr>
<td>
3. <a href="javascript:void(0)" onclick='toggleModal("#modal_sangis")'>SANGIS</a>
</td>
<td>
4. <a href="javascript:void(0)" onclick='toggleModal("#modal_sandag")'>SANDAG</a>
</td>
</tr>
<tr>
<td>
5. <a href="javascript:void(0)" onclick='toggleModal("#modal_datasd")'>DataSD</a>
</td>
<td>
6. <a href="javascript:void(0)" onclick='toggleModal("#modal_bike")'>Bike Route</a>
</td>
</tr>
<tr>
<td>
7. <a href="javascript:void(0)" onclick='toggleModal("#modal_districts")'>Districts</a>
</td>
<td>
8. <a href="javascript:void(0)" onclick='toggleModal("#modal_library")'>Library Locations</a>
</td>
</tr>
</table>
</div>
<!-- Environment subtheme; - -->
<div class="panel panel-default">
<div class="panel-heading">
<b>Environment</b>
</div>
<table class="table" style="text-align:left">
<tr>
<td>
1. <a href="javascript:void(0)" onclick='toggleModal("#modal_waterproject")'>Water project datasets</a>
</td>
<td>
2. <a href="javascript:void(0)" onclick='toggleModal("#modal_epaair")'>EPA Air Quality Data</a>
</td>
</tr>
<tr>
<td>
3. <a href="javascript:void(0)" onclick='toggleModal("#modal_ceden")'>California Environmental Data Exchange Network</a>
</td>
<td>
4. <a href="javascript:void(0)" onclick='toggleModal("#modal_calepa")'>CalEPA</a>
</td>
</tr>
<tr>
<td>
5. <a href="javascript:void(0)" onclick='toggleModal("#modal_weather")'>Weather</a>
</td>
<td>
6. <a href="javascript:void(0)" onclick='toggleModal("#modal_sangisecology")'>SANGIS</a>
</td>
</tr>
<tr>
<td>
7. <a href="javascript:void(0)" onclick='toggleModal("#modal_park")'>Park Location</a>
</td>
<td>
8. <a href="javascript:void(0)" onclick='toggleModal("#modal_street")'>Streetlight Location</a>
</td>
</tr>
<tr>
<td>
9. <a href="javascript:void(0)" onclick='toggleModal("#modal_historicalweatherI")'>Historical Weather I</a>
</td>
<td>
10. <a href="javascript:void(0)" onclick='toggleModal("#modal_historicalweatherII")'>Historical Weather II</a>
</td>
</tr>
</table>
</div>
<!-- Education subtheme; - -->
<div class="panel panel-default">
<div class="panel-heading">
<b>Education</b>
</div>
<table class="table" style="text-align:left">
<tr>
<td>
1. <a href="javascript:void(0)" onclick='toggleModal("#modal_schooldash")'>California School Dashboard</a>
</td>
<td>
2. <a href="javascript:void(0)" onclick='toggleModal("#modal_cde")'>California Department of Education</a>
</td>
</tr>
<tr>
<td>
3. <a href="javascript:void(0)" onclick='toggleModal("#modal_collegescorecard")'> College Scoreboard</a>
</td>
<td>
4. <a href="javascript:void(0)" onclick='toggleModal("#modal_comcol")'>CA Community Colleges Datamart</a>
</td>
</tr>
<tr>
<td>
5. <a href="javascript:void(0)" onclick='toggleModal("#modal_edstats")'>National Center for Educational Statistics</a>
</td>
</tr>
</table>
</div>
<!-- Transportation subtheme; -->
<div class="panel panel-default">
<div class="panel-heading">
<b>Transportation</b>
</div>
<table class="table" style="text-align:left">
<tr>
<td>
1. <a href="javascript:void(0)" onclick='toggleModal("#modal_SWITRS")'>Statewide Integrated Traffic Records System</a>
</td>
<td>
2. <a href="javascript:void(0)" onclick='toggleModal("#modal_TIMS")'>Transportation Injury Mapping System</a>
</td>
</tr>
<tr>
<td>
3. <a href="javascript:void(0)" onclick='toggleModal("#modal_trafficvolumes")'>Traffic Volumes</a>
</td>
<td>
4. <a href="javascript:void(0)" onclick='toggleModal("#modal_sdtrafficvolumes")'>San Diego Traffic Volumes</a>
</td>
</tr>
<tr>
<td>
5. <a href="javascript:void(0)" onclick='toggleModal("#modal_caltransgis")'>Caltrans GIS</a>
</td>
<td>
6. <a href="javascript:void(0)" onclick='toggleModal("#modal_chts")'>California Transportation Survey</a>
</td>
</tr>
<tr>
<td>
7. <a href="javascript:void(0)" onclick='toggleModal("#modal_historicaltraffic")'>Historical Traffic Volumes</a>
</td>
<td>
8. <a href="javascript:void(0)" onclick='toggleModal("#modal_neighborhoodgis")'>Neighborhood GIS</a>
</td>
</tr>
</table>
</div>
</article>
</div>
<!-- Dataset End -->
<!-- Tools -->
<div class="wrapper style3" style="padding: 100px 30px">
<article id="tools">
<header>
<h1>
<font color="darkred">Tools</font>
</h1>
<p>
<font color="black">We've compiled a list of resources, APIs, libraries, and ideas just for you.</font>
</p>
</header>
<div class="container">
<!--software development tool-->
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">
<b>Software Developement Tools</b>
</div>
<!--<div class="panel-body"></div>-->
<!-- Table -->
<table class="table" style='text-align:left'>
<tr>
<td>
1. <a href="javascript:void(0)" onclick='toggleModal("#modal_r")'>R Tutorial</a>
</td>
<td>
2. <a href="javascript:void(0)" onclick='toggleModal("#modal_python")'>Python Tutorial</a>
</td>
</tr>
<tr>
<td>
3. <a href="javascript:void(0)" onclick='toggleModal("#modal_javascript")'>JavaScript Tutorial</a>
</td>
<td>
4. <a href="javascript:void(0)" onclick='toggleModal("#modal_socialmedia")'>Social Media APIs</a>
</td>
</tr>
<tr>
<td>
5. <a href="javascript:void(0)" onclick='toggleModal("#modal_gis")'>GIS Mapping APIs</a>
</td>
<td>
6. <a href="javascript:void(0)" onclick='toggleModal("#modal_mobile")'>Mobile App Development Tools</a>
</td>
</tr>
<tr>
<td>
7. <a href="javascript:void(0)" onclick='toggleModal("#modal_webdev")'>Web Development</a>
</td>
<td>
8. <a href="javascript:void(0)" onclick='toggleModal("#modal_sap")'>SAP Business Analytics</a>
</td>
</tr>
</table>
</div>
<!--presentation-->
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">
<b>Presentation</b>
</div>
<!--<div class="panel-body"></div>-->
<!-- Table -->
<table class="table" style='text-align:left'>
<tr>
<td>
1. <a href="https://prezi.com/" target='_blank'>Prezi</a>
</td>
<td>
2. <a href="https://www.emaze.com/" target='_blank'>Emaze</a>
</td>
</tr>
<tr>
<td>
3. <a href="https://www.google.com/slides/about/" target='_blank'>Google Slides</a>
</td>
<td>
4. <a href="https://www.libreoffice.org/" target='_blank'>Libre Office</a>
</td>
</tr>
<tr>
<td>
5. <a href="https://www.google.com/docs/about/" target='_blank'>Google Docs</a>
</td>
<td></td>
</tr>
</table>
</div>
<!--hosting-->
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">
<b>Platforms</b>
</div>
<!--<div class="panel-body"></div>-->
<!-- Table -->
<table class="table" style='text-align:left'>
<tr>
<td>
1. <a href="javascript:void(0)" onclick='toggleModal("#modal_amazonEC2")'>Amazon EC2</a>
</td>
<td>
2. <a href="https://www.heroku.com/" target='_blank'>Heroku</a>
</td>
</tr>
<tr>
<td>
3. <a href="https://backendless.com/" target='_blank'>Backendless</a>
</td>
<td>
4. <a href="javascript:void(0)" onclick='toggleModal("#modal_parse")'>Parse</a>
</td>
</tr>
</table>
</div>
<!--file sharing-->
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">
<b>File Sharing & Cloud Stores</b>
</div>
<!--<div class="panel-body"></div>-->
<!-- Table -->
<table class="table" style='text-align:left'>
<tr>
<td>
1. <a href="javascript:void(0)" onclick='toggleModal("#modal_dropbox")'>Dropbox</a>
</td>
<td>
2. <a href="https://www.box.com/" target='_blank'>Box</a>
</td>
</tr>
<tr>
<td>
3. <a href="https://www.google.com/drive/" target='_blank'>Google Drive</a>
</td>
<td>
4. <a href="https://aws.amazon.com/s3/" target='_blank'>Amazon S3</a>
</td>
</tr>
<tr>
<td>
5. <a href="https://filezilla-project.org/" target='_blank'>FileZilla</a>
</td>
<td></td>
</tr>
</table>
</div>
<!--Project Management-->
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">
<b>Project Management</b>
</div>
<!--<div class="panel-body"></div>-->
<!-- Table -->
<table class="table" style='text-align:left'>
<tr>
<td>
1. <a href="javascript:void(0)" onclick='toggleModal("#modal_github")'>Github</a>
</td>
<td>
2. <a href="https://trello.com/" target='_blank'>Trello</a>
</td>
</tr>
<tr>
<td>
3. <a href="https://asana.com/" target='_blank'>ASANA</a>
</td>
<td>