-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1471 lines (1033 loc) · 41.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="CodeAcross 2016 Hackathon in Jersey City">
<meta name="author" content="Code for Jersey City">
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
<title>CodeAcross 2016 Hackathon in Jersey City - the #SiliconBackyard</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/jumbotron.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<script src="js/ie-emulation-modes-warning.js"></script>
<!-- Other custom CSS -->
<link href="css/styles.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<a href = "http://codeforjc.org" class = "navbar-brand">
Code for JC
</a>
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">
Toggle navigation
</span>
<span class="icon-bar">
</span>
<span class="icon-bar">
</span>
<span class="icon-bar">
</span>
</button>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class = "nav navbar-nav navbar-right">
<li>
<a href = "#agenda">
Agenda
</a>
</li>
<li>
<a href = "#theme">
Theme
</a>
</li>
<li>
<a href = "#speakers">
Speakers
</a>
</li>
<li>
<a href = "#data">
Data
</a>
</li>
<li>
<a href = "#tools">
Tools
</a>
</li>
<li>
<a href = "#eventcoordinators">
Event coordinators
</a>
</li>
<li>
<a href = "#sponsors">
Sponsors
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Main jumbotron for a primary marketing message or call to action -->
<section id="main" data-speed="6" data-type="background">
<div class="jumbotron" style="background-color: transparent;" >
<div class="container">
<div class="jumbotron-caption">
<p class="lead">
<h2>
March 19, 2016
</h2>
<h1>
CodeAcross 2016 in Jersey City - the #SiliconBackyard
</h1>
<h2>
<a href="https://www.google.com/maps/place/Boys+%26+Girls+Clubs+of+Hudson+County,+225+Morris+Blvd,+Jersey+City,+NJ+07302/@40.7146443,-74.0426196,17z/data=!4m5!1m2!2m1!1sboys+%26+girls+club+near+Jersey+City,+NJ!3m1!1s0x89c250b07f62bf6b:0x328bcf18a5d1c0c4">
Boys and Girls Club of Hudson County
<br>
(Teen Tech Center @ 225 Morris Boulevard)
</a>
</h2>
<h5>
Jersey City, NJ, USA
</h5>
</p>
<p>
<a class="btn btn-lg btn-success" href="http://attendance.codeforjc.org/" role="button">
Sign in!
</a>
</p>
</div>
</div>
</div>
</section>
<div class="container">
<div class="row">
<div class="col-md-3">
<h2>
Join Us!
</h2>
<p>
Code for JC has put together a special day just for you. Bring your computer and have fun exploring the many data resources available via Jersey City's web portal and how you can use them to get answers, uncover local trends, and resolve a variety of issues that impact you and your neighbors
</p>
<p>
<a class="btn btn-default" href="#hackathon" role="button">
Details »
</a>
</p>
</div>
<div class="col-md-3">
<h2>
Agenda
</h2>
<p>
The hackathon begins in the morning with complimentary refreshments. Morning presentations will prepare you for the afternoon workshop. The event closes with participant presentations.
</p>
<p>
<a class="btn btn-default" href="#agenda" role="button">
Details »
</a>
</p>
</div>
<div class="col-md-3">
<h2>
Learn
</h2>
<p>
From operations to budgeting, redevelopment to demographics, the Jersey City website offers a wealth of statistical data that you can freely access and use to better understand what's happening in your community.
</p>
<p>
<a class="btn btn-default" href="#learn" role="button">
Details »
</a>
</p>
</div>
<div class="col-md-3">
<h2>
CodeAcross 2015 Recap
</h2>
<p>
See the winners of last year's PATH Data Jam, using Port Authority data!
</p>
<p>
<a class="btn btn-default" href="http://codeforjc.org/PATHDataJam/" role="button">
Details »
</a>
</p>
</div>
</div>
<div class="container" id="hackathon">
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md">
<h2 class="featurette-heading">
Jersey City celebrates CodeAcross 2016
</h2>
<p class="lead">
CodeAcross is a national weekend of simultaneous events in the Code for America network of more than 40,000 volunteers and more than 130+ brigades throughout the US.
</p>
<p class="lead">
As part of this event, Code for JC will host its annual CodeAcross hackathon on Saturday, March 19 at the Hudson County Boys & Girls Club. The goal of our CodeAcross event is to activate the local civic technology network and collaborate with neighbors to develop innovative solutions that help identify and solve real city challenges.
</p>
<p class="lead">
Open to all students and professionals, CodeAcross gives everyone the opportunity to grow and learn – no matter their background or skill. Urbanists, civic hackers, government staff, developers, designers, students, community organizers and civic advocates all participate. CodeAcross isn’t just a chance to build websites, visualizations, and other hacks; it’s also an opportunity to build relationships within the community. Jersey City’s CodeAcross collaborative environment allows teams of all kinds to push the boundaries of innovation and take creative risks for a chance to make a significant impact.
</p>
<p class="lead">
In the final hour, each team gets to shine, giving a concise presentation showing how you solved your particular civic challenge.
</p>
<p id="learn" class="lead">
Whether you're a tech newbie, a seasoned developer, an urbanist, a civic hacker, a government staffer, a designer, or a community organizer, if you care about Jersey City, you're virtually guaranteed to have a great time, make lots of new friends, and learn a whole lot of neat stuff.
</p>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/lrJN2pLWSXc">
</iframe>
</div>
</div>
<div class="container" id="agenda">
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">
Agenda
</h2>
<p class="lead">
This hackathon will begin with an overview of the event and event’s theme, followed by inviting the participants to suggest ideas and congregate into teams based on their individual interests and skills. The main work begins and lasts a number of hours. This all culminates with each team demonstrating their project or prototype, as well as presenting on their collaborative process (and usually having to incorporate some fun non-traditional component like summarizing what they did in the form of a haiku).
</p>
<p class="lead">
Hackathons are fun, a great way to meet others with similar interests and skills that may not have the opportunity to interact otherwise, and a great way to showcase amazing technology and civic minded talent that exists right here in our community.
</p>
<p class="lead">
We will provide data, speakers, wifi and food. Participants need to bring their own laptops.
</p>
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>
Time
</th>
<th>
Descripton
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
8:30 AM
</td>
<td>
Doors Open
</td>
</tr>
<tr>
<td>
9:00 AM
</td>
<td>
Breakfast
</td>
</tr>
<tr>
<td>
9:30 AM
</td>
<td>
Welcome and Introductions
</td>
</tr>
<tr>
<td>
10:00 AM
</td>
<td>
Speaker Presentations & Open Data Discussion
</td>
</tr>
<tr>
<td>
10:30 AM
</td>
<td>
Q & A
</td>
</tr>
<tr>
<td>
11:00 AM
</td>
<td>
Form into teams and hack!
</td>
</tr>
<tr>
<td>
11:45 AM
</td>
<td>
Initial Team and Project check-in [Link COMING SOON]
</td>
</tr>
<tr>
<td>
12:00 PM
</td>
<td>
Lunch
</td>
</tr>
<tr>
<td>
3:30 PM
</td>
<td>
Final Team and Project Check-in [Link COMNIG SOON]
</td>
</tr>
<tr>
<td>
4:00 PM
</td>
<td>
Presentations
</td>
</tr>
<tr>
<td>
5:00 PM
</td>
<td>
Judging
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="container" id="theme">
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">
Theme: Public Safety (Health & Security)
</h2>
<p class="lead">
With the support of the relevant departments within the City of Jersey City, we will have access to Open Data for participants to use for their projects and presentations. Representatives from the city will also be present during the day to work with the teams, share insights, and also experience first hand the collaborative power of the community working in their areas of focus.
</p>
<p class="lead">
Some of the civic problems we plan to solve are:
<ul>
<li>
What intersections have the highest propensity for traffic accidents, and at what days of the week and times of day?
</li>
<li>
What impact does weather have on overall police activity?
</li>
<li>
Where should we stage police resources to create the shortest response times and distances?
</li>
<li>
Is there a relationship between drug sale/use and/or violent crimes and vacant properties?
</li>
</ul>
</p>
</div>
</div>
</div>
<div class="container" id="speakers">
<hr class="featurette-divider">
<div class="row featurette">
<center>
<h2 class="featurette-heading">
Speakers
</h2>
</center>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="img/stacey.jpg" alt="Stacey Lea Flanagan" style="width:170px;">
<div class="caption">
<h3 class="speaker-name">
Stacey Lea Flanagan
</h3>
<p>
Director at Health & Human Services, City of Jersey City
</p>
<p>
<a href="https://twitter.com/flannyfun">
@flannyfun
</a>
</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="img/rob.jpg" alt="Robert Luckritz" style="width:170px;">
<div class="caption">
<h3 class="speaker-name">
Robert Luckritz
</h3>
<p>
Director of Emergency Medical Services, JC Medical Center
</p>
<!-- <p>
<a href="https://twitter.com/flannyfun">
@flannyfun
</a>
</p> -->
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="img/akisia.png" alt="Akisia Grigsby" style="width:170px;">
<div class="caption">
<h3 class="speaker-name">
Akisia Grigsby
</h3>
<p>
Co-Executive Director, OpenJC
</p>
<p>
<a href="https://twitter.com/akzascreator">
@AkzasCreator
</a>
</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="img/EmmanuelASimon.jpg" alt="Emmanuel A Simon" style="width:170px;">
<div class="caption">
<h3 class="speaker-name">
Emmanuel A Simon
</h3>
<p>
Co-Executive Director, OpenJC
</p>
<p>
<a href="https://twitter.com/uelsimon">
@uelsimon
</a>
</p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="img/alex.jpg" alt="Alex Reynolds" style="width:170px;">
<div class="caption">
<h3 class="speaker-name">
Alex Reynolds
</h3>
<p>
Data Enthusiast
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container" id="data">
<hr class="featurette-divider">
<div class="row featurette">
<h2 class="featurette-heading">
Data to understand your evolving neighboorhood.
</h2>
<p class="lead">
<a href="http://data.jerseycitynj.gov/">The Jersey City Open Data Portal</a> offers an wealth of statistical data that you (or anyone) can download to better understand what's happening in your neighborhood and city. Available general categories include Operational Data, Budget Visualization, Redevelopment Plans, City Planning Studies, Demographic Data, Maps, Presentations, and Affordable Housing.
</p>
<p class="lead">
Available operational statistics include "dashboard files" for the Housing and Parking Authorities and the Police and Fire Departments. Files are also available on Municipal Utilities, Tax Abatements, Building Inspections, Vacant Buildings and Lots and Building Permit Status.
</p>
<p class="lead">
Interested in the Jersey City of Tomorrow? Under Redevelopment Plans, there are files on over 50 redevelopment projects around Jersey City. Other sections offer City Planning Studies, Demographic data, Maps and a presentation on Affordable Housing.
</p>
<p class="lead">
A few minutes of perusing the JC data portal's links and you'll find all the data that you never knew you needed!
</p>
<div class="container" id="tedVideo">
<hr class="featurette-divider">
<h2 class="featurette-heading">
The power of open data
</h2>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/6BTg8OXhEZk">
</iframe>
</div>
</div>
</div>
<div class="container" id="tools">
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-5 pull-right" style="margin-top: 100px;">
<img class="featurette-image image-responsive" src="img/toolbox-29058_640.png" alt="Tools">
</div>
<div class="col-md-7">
<h2 class="featurette-heading">
Data
</h2>
<p class="lead">
A special look at the Jersey City Medical Center's EMS Data for the years 2013-2016 March YTD is available <a href="https://github.com/CodeForJerseyCity/CodeAcross2016/tree/gh-pages/data">here</a>.
</p>
<p class="lead">
Jersey City Police Department's Call-for-Service Data for the years 2014-2016 January YTD is available <a href="https://github.com/CodeForJerseyCity/CodeAcross2016/tree/gh-pages/data">here</a>.
</p>
<p class="lead">
Additional datasets available are located in the <a href="http://data.jerseycitynj.gov./">JC Open Data Portal.</a>
</p>
<p class="lead">
Code for America also provides a lot of <a href="http://www.codeforamerica.org/brigade/tools/">donated and free services.</a>
</p>
<br>
<h2 class="featurette-heading">
Tools
</h2>
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>
#
</th>
<th>
Category
</th>
<th>
Link
</th>
<th>
Description
</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">
1
</th>
<td>
Analysis
</td>
<td>
<a href="https://www.python.org/">
Python
</a>
</td>
<td>
Widely used general-purpose, high-level programming language
</td>
</tr>
<tr>
<th scope="row">
2
</th>
<td>
Analysis
</td>
<td>
<a href="https://public.tableau.com/s/">
Tableau Public
</a>
</td>
<td>
Tool to explore and visualize data
</td>
</tr>
<tr>
<th scope="row">
3
</th>
<td>
Analysis
</td>
<td>
<a href="http://openrefine.org/">
OpenRefine
</a>
</td>
<td>
For working with messy data: cleaning it and transforming it from one format into another
</td>
</tr>
<tr>
<th scope="row">
4
</th>
<td>
Analysis
</td>
<td>
<a href="http://www.rstudio.com/">
R Studio
</a>
</td>
<td>
Programming language for statistical computing and graphics
</td>
</tr>
<tr>
<th scope="row">
5
</th>
<td>
Visualization
</td>
<td>
<a href="https://public.tableau.com/s/">
Tableau Public
</a>
</td>
<td>
Is a free service to explore and visualize data
</td>
</tr>
<tr>
<th scope="row">
6
</th>
<td>
Visualization
</td>
<td>
<a href="http://d3js.org/">
D3.js
</a>
</td>
<td>
JavaScript library used to create interactive graphical forms for web browsers
</td>
</tr>
<tr>
<th scope="row">
7
</th>
<td>
Visualization
</td>
<td>
<a href="https://support.google.com/fusiontables/answer/2571232">
Fusion Tables
</a>
</td>
<td>
Fusion Tables from Google is an experimental data visualization web application to gather, visualize, and share data tables.
</td>
</tr>
<tr>
<th scope="row">
8
</th>
<td>
Presentation
</td>
<td>
<a href="http://prezi.com/">
Prezi
</a>
</td>
<td>
Cloud-based presentation software and storytelling tool for presenting ideas
</td>
</tr>
<tr>
<th scope="row">
9
</th>
<td>
Presentation
</td>
<td>
<a href="http://www.google.com/docs/about/">
Google Slides
</a>
</td>
<td>
An online collaborative presentations application that lets you create, edit, and deliver presentations
</td>
</tr>
<tr>
<th scope="row">
10
</th>
<td>
Presentation
</td>
<td>
<a href="https://www.apple.com/ios/keynote/">
Apple Keynote
</a>
</td>
<td>
Makes it simple to create and deliver beautiful presentations on mac
</td>
</tr>
<tr>
<th scope="row">
11
</th>
<td>
Presentation
</td>
<td>
<a href="https://office.com/start/default.aspx?WT.mc_id=Office_Products_site">
MSFT Office
</a>
</td>
<td>
Makes it simple to create and deliver beautiful presentations on MS Windows
</td>
</tr>
<tr>