-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
777 lines (669 loc) · 38.1 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
<!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">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-46442307-4', 'auto');
ga('send', 'pageview');
</script>
<meta name="description" content="National Day of Civic Hacking 2015">
<meta name="author" content="Code for Jersey City">
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
<title>National Day of Civic Hacking 2015</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">CodeForJC</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 = "https://www.flickr.com/groups/2747899@N20/" target="_blank">Gallery</a></li> -->
<li><a href = "#speakers">Speakers</a></li>
<li><a href = "#sessions">Sessions</a></li>
<li><a href = "#data">Data</a></li>
<li><a href = "#tools">Tools</a></li>
<li><a href = "#program">Program</a></li>
<li><a href = "#eventcoordinators">Event Coordinators</a></li>
<li><a href = "#sponsors">Sponsors</a></li>
<li><a href = "#aftermath">Aftermath</a></li>
</ul>
</div><!--/.navbar-collapse -->
</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>June 6th, 2015</h2>
<h1>National Day of Civic Hacking 2015</h1>
<h2>Jersey City, City Hall</h2>
<h5>Jersey City, NJ, USA</h5>
</p>
<!--<p><a class="btn btn-lg btn-success" href="https://pathdatajam.eventbrite.com" role="button">Register today!</a></p> -->
<!--<p><a class="btn btn-lg btn-success" href="#winners" role="button">See the Winners!</a></p> -->
<!-- <div class="col-md-4">
<center>
<p class="lead"><a href="http://www.codeforamerica.org/events/codeacross-2015/"><img class="image-responsive" src="img/CodeAcross2015_Banner.jpg" alt="CodeAcross2015" height=100></a></p><br>
</center>
</div> -->
<!-- <div class="col-md-4">
<center>
<p class="lead"><a href="http://www.panynj.gov/path/"><img class="image-responsive" src="img/path.jpg" alt="PATH" height=100></a></p><br>
</center>
</div> -->
</div>
</div>
</div>
</section>
<div class="container">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-3">
<h2>The Aftermath</h2>
<p>Take a look at the videos of the event, and download the presentations of the day.</p>
<p><a class="btn btn-default" href="#aftermath" role="button">View details »</a></p>
</div>
<div class="col-md-3">
<h2>Join us!</h2>
<p>Code for JC has put together a special day just for you. 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="#whatisdatajam" role="button">View details »</a></p>
</div>
<div class="col-md-3">
<h2>The Day's Agenda.</h2>
<p>Your "Civic Hacking Day" begins at 10 am with complimentary refreshments in <a href="https://www.google.com/maps/place/Jersey+City:+City+Clerk/@40.7178475,-74.0432154,19z/data=!4m2!3m1!1s0x89c250b1bd22f869:0xfd18148966863fc1">JC City Hall's</a> main room. Morning presentations will prepare you for the afternoon workshop. The event closes with participant presentations. </p>
<p><a class="btn btn-default" href="#program" role="button">View details »</a></p>
</div>
<div class="col-md-3">
<h2>What you'll learn about.</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="#data2understand" role="button">View details »</a></p>
</div>
</div>
<div class="container" id="whatisdatajam">
<hr class="featurette-divider">
<div class="row featurette">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/lrJN2pLWSXc"></iframe>
</div>
<div class="col-md">
<h2 class="featurette-heading">Jersey City celebrates National Day of Civic Hacking.</h2>
<p class="lead">On the first Saturday in June, thousands of people from across America will come together to celebrate National Day of Civic Hacking, a collaborative event that brings together residents, community groups, and government to benefit local communities through technology.</p>
<p class="lead">After breakfast comes informative presentations on the fast-growing number of data resources available via Jersey City's new open data portal. Next, you'll learn how the data can give you insights into how JC runs and how these insights can be leveraged to make local "quality of life" improvements. You'll see also see examples of the ways that the municipal data can help you better understand the how JC works.
</p>
<p class="lead">The main part of the event is a digital workshop. The workshop begins with you joining one of the work teams, based upon your interests and skill set. Each team will then receive a hypothetical civic issue that it must work together on to solve, using a one or more data resources from the JC portal.
</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="data2understand" class="lead">Whether you're a tech newbie, a seasoned developer, an urbanist, a civic hacker, a government staffer, a designer, 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>
<h2 class="featurette-heading">Data to understand your evolving neighboorhood.</h2>
<p class="lead"><a href="http://www.cityofjerseycity.com/data/">The Jersey City website</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 <a href="http://www.cityofjerseycity.com/data/">the JC data portal's</a> links and you'll find all the data that you never knew you needed!
</p>
<!-- <div class="embed-responsive embed-responsive-16by9"> -->
<!-- <iframe class="embed-responsive-item" src="//www.youtube.com/embed/nKIu9yen5nc"></iframe> -->
</div>
</div>
</div>
</div>
<div class="container" id="aftermath">
<hr class="featurette-divider">
<div class="row featurette">
<h2 class="featurette-heading">The Aftermath</h2>
<div class="col-md">
<h3 >Code for JC Success Stories</h3>
<h4>Making a Valuable Connection</h4>
<p class="lead">We were able to connect war veteran Emmanuel Baynosa to technology expert Steven Dworkin. Mr. Baynosa found out about our event through The Jersey Journal. Mr. Baynosa has been looking to learn about data and increase his technology skills for job opportunities. Mr. Dworkin happens to work for a non-profit with a mission to teach veterans technology skills. Mr. Baynosa couldn't believe that our organization has existed. He asked "Why hasn't the City of Jersey City let seniors and veterans know more about Code for JC?" He professed to spread the word amongst his neighbors and other veterans in his network. A memorable comment made by Mr. Baynosa, "This was better than any council meeting!"</p>
<h4>Public safety data expert and public safety advocate</h4>
<p class="lead">Open JC's "Jersey City Public Safety Alert System" Lead of Technology & Engineering, Sharad Hegde, spoke to a community leader, Luz Guzman, about public safety data and how she can advocate for initiates better. Ms. Guzman's community focus has been public safety.</p>
<h4>Diversity in Civic Tech</h4>
<p class="lead">We were able to bring diversity to our event. Almost every ethnicity, age range, economic range, skill specialty and skill level attended. This group combined data experts with data newbies.</p>
<h4>Live Stream Part 1</h4>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/Kw0pLZ5pDug"></iframe>
</div>
<h4>Live Stream Part </h4>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/7bk1GzX6n8Y"></iframe>
</div>
<!-- <div class="embed-responsive embed-responsive-16by9"> -->
<!-- <iframe class="embed-responsive-item" src="//www.youtube.com/embed/nKIu9yen5nc"></iframe> -->
</div>
<table class="table">
<thead>
<tr>
<th>Speakers</th>
<th>Descripton</th>
</tr>
</thead>
<tbody>
<tr>
<td>Emmanuel A. Simon</td>
<td>Using the City’s Data (<a href="https://drive.google.com/file/d/0B09htwje5_x1NjcyYkF1M1d2ejA/view">link</a>)</td>
</tr>
<tr>
<td>Yi Wang</td>
<td>Open Data, What Data? (<a href="https://drive.google.com/file/d/0B09htwje5_x1TkVXZDNPcEVFWU0/view">link</a>)</td>
</tr>
<tr>
<td>Sharad Hegde & Roberto Martin</td>
<td>Cleaning the data (<a href="https://drive.google.com/file/d/0B09htwje5_x1TkVXZDNPcEVFWU0/view">link</a>)</td>
</tr>
<tr>
<td>Sharad Hegde, Yiqun "Yi" Wang, Tom Bruning</td>
<td>Make something cool with the data (<a href="https://drive.google.com/file/d/0B09htwje5_x1TkVXZDNPcEVFWU0/view">link</a> and <a href="./tompresentation/jc.html">example using R</a>)</td>
</tr>
<tr>
<td>Tom Bruning</td>
<td>Tell a story with/from the data (<a href="./tompresentation/index.html">link</a>)</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="container" id="tedVideo">
<hr class="featurette-divider">
<div class="row featurette">
<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="gallery">
<hr class="featurette-divider">
<div class="row featurette">
<h2 class="featurette-heading">Gallery</h2>
<div class="embed-responsive embed-responsive-16by9">
<object width="400" height="300"> <param name="flashvars" value="offsite=true&lang=en-us&page_show_url=%2Fphotos%2F132970350%40N05%2Fsets%2F72157653766868789%2Fshow%2F&page_show_back_url=%2Fphotos%2F132970350%40N05%2Fsets%2F72157653766868789%2F&set_id=72157653766868789&jump_to="></param> <param name="movie" value="https://www.flickr.com/apps/slideshow/show.swf?v=1811922554"></param> <param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="https://www.flickr.com/apps/slideshow/show.swf?v=1811922554" allowFullScreen="true" flashvars="offsite=true&lang=en-us&page_show_url=%2Fphotos%2F132970350%40N05%2Fsets%2F72157653766868789%2Fshow%2F&page_show_back_url=%2Fphotos%2F132970350%40N05%2Fsets%2F72157653766868789%2F&set_id=72157653766868789&jump_to=" width="400" height="300"></embed></object>
</div>
<p><br><a class="btn btn-lg btn-success" href="https://www.flickr.com/groups/2796390@N25/" role="button" target="_blank">See all photos</a></p>
<p>Send us pictures of the event to <a href="mailto:[email protected]" role="button" target="_blank">[email protected]</a></p>
</div>
</div>
<div class="container" id="speakers">
<hr class="featurette-divider">
<div class="row featurette">
<!-- <div class="col-md-7"> -->
<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/EmmanuelASimon.jpg" alt="Emmanuel A Simon">
<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/BrianPlatt.jpg" alt="Brian Platt" style="width:170px;">
<div class="caption">
<h3 class="speaker-name">Brian Platt</h3>
<p>Director at Innovation-Team, City of Jersey City </p>
<p><a href="https://twitter.com/briandavidplatt">@briandavidplatt</a></p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="img/zoe-blumenfeld.jpg" alt="Zoe Blumenfeld" style="width:170px;">
<div class="caption">
<h3 class="speaker-name">Zoe Blumenfeld</h3>
<p>Marketing Manager, Code For America </p>
<p><a href="https://twitter.com/zoeblumenfeld">@zoeblumenfeld</a></p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="img/sharad_pic.jpg" alt="Sharad Hegde" style="width:170px;">
<div class="caption">
<h3 class="speaker-name">Sharad Hegde</h3>
<p>Co-founder, Futuriste</p>
<p><a href="https://twitter.com/shegde">@shegde</a></p>
</div>
</div>
</div>
<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/tom.jpg" alt="Tom Bruning" style="width:170px;">
<div class="caption">
<h3 class="speaker-name">Tom Bruning</h3>
<p>Adjunct Instructor, New Jersey City University</p>
<p><a href="https://twitter.com/tgb">@tgb</a></p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="img/yi.jpeg" alt="Yi Wang" style="width:170px;">
<div class="caption">
<h3 class="speaker-name">Yiqun "Yi" Wang</h3>
<p>Director of Analytics, Real Capital Analytics</p>
<p><a href="https://twitter.com/equnwang">@equnwang</a></p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="img/bob.jpg" alt="Roberto Martin" style="width:170px;">
<div class="caption">
<h3 class="speaker-name">Roberto Martin</h3>
<p>Software Developer, Time And Date AS</p>
<p><a href="https://twitter.com/bobstring">@bobstring</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container" id="sessions">
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">Sessions</h2>
<p class="lead"></p>
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>Title</th>
<th>Speakers</th>
</tr>
</thead>
<tbody>
<tr>
<td>The Meaning and Benefit of (Open) Data.</td>
<td>Brian Platt, Zoe Blumenfeld</td>
</tr>
<tr>
<td>Step 1: Get some Data</td>
<td>Yiqun "Yi" Wang</td>
</tr>
<tr>
<td>Step 2: Cleaning the data</td>
<td>Roberto Martin, Sharad Hegde</td>
</tr>
<tr>
<td>Step 3: Make something cool with the data</td>
<td> Sharad Hegde, Yiqun "Yi" Wang, Tom Bruning</td>
</tr>
<tr>
<td>Step 4: Tell a story with/from the data</td>
<td>Tom Bruning</td>
</tr>
</tbody>
</table>
</div>
<!-- <div class="embed-responsive embed-responsive-16by9"> -->
<!-- <iframe class="embed-responsive-item" src="//www.youtube.com/embed/nKIu9yen5nc"></iframe> -->
</div>
</div>
</div>
</div>
<div class="container" id="data">
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-5 pull-left">
<a href="#"><img class="featurette-image image-responsive" src="img/data.jpg" alt="Data"></a><br>
</div>
<div class="col-md-7">
<h2 class="featurette-heading">Data</h2>
<p class="lead">All the datasets available are located in the <a href="http://www.cityofjerseycity.com/data/">the JC data portal.</a></p>
<!-- <div class="embed-responsive embed-responsive-16by9"> -->
<!-- <iframe class="embed-responsive-item" src="//www.youtube.com/embed/nKIu9yen5nc"></iframe> -->
</div>
</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;">
<a href="#"><img class="featurette-image image-responsive" src="img/toolbox-29058_640.png" alt="Tools"></a><br>
</div>
<div class="col-md-7">
<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 herf="http://www.tableau.com/public/">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 herf="http://www.tableau.com/public/">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>
<th scope="row">12</th>
<td>Presentation</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">13</th>
<td>Mapping</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">14</th>
<td>Mapping</td>
<td><a href="http://codeforjc.org/Transportation-Hackathon-2014/#tools">See list from 2014 Hackathon</a></td>
<td>List of mapping tools</td>
</tr>
<tr>
<th scope="row">15</th>
<td>Analysis</td>
<td><a href="http://bigquery.cloud.google.com/">Google Big Query</a></td>
<td>An easy to use database with free quota and web based sql interface.</td>
</tr>
</tbody>
</table>
</div>
<!-- <p class="lead">Analysis: <a href="https://www.python.org/">Python</a>, <a herf="http://www.tableau.com/public/">Tableau Public</a>, <a href="http://openrefine.org/">OpenRefine</a>, <a href="http://www.rstudio.com/">R Studio</a></p>
<p class="lead">Visualization: <a herf="http://www.tableau.com/public/">Tableau Public</a>, <a href="http://d3js.org/">D3,js</a></p>
<p class="lead">Presentation: <a href="http://prezi.com/">Prezi</a>, <a href="http://www.google.com/docs/about/">Google Slides</a>, <a href="https://www.apple.com/ios/keynote/">Apple Keynote</a>, <a href="https://office.com/start/default.aspx?WT.mc_id=Office_Products_site">MSFT Office</a>, <a href="http://www.rstudio.com/">R Studio</a></p>
<p class="lead">Mapping: <a href="http://codeforjc.org/Transportation-Hackathon-2014/#tools">See list from 2014 Hackathon</a></p> -->
</div>
</div>
</div>
</div>
<div class="container" id="program">
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">Program</h2>
<p class="lead">We will provide data, speakers, wifi and food. Participants need to bring their laptops</p>
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>Time</th>
<th>Descripton</th>
</tr>
</thead>
<tbody>
<tr>
<td>10:00-11:30am</td>
<td>Welcome, Speakers, Overview Sessions</td>
</tr>
<tr>
<td>11:30-2:00pm</td>
<td>Hands-on workshops begin (lunch available at noon)</td>
</tr>
<tr>
<td>2:00-3:30pm</td>
<td> Celebration and presentations by participants</td>
</tr>
</tbody>
</table>
</div>
<!-- <div class="embed-responsive embed-responsive-16by9"> -->
<!-- <iframe class="embed-responsive-item" src="//www.youtube.com/embed/nKIu9yen5nc"></iframe> -->
</div>
</div>
</div>
</div>
<div class="container" id="eventcoordinators">
<hr class="featurette-divider">
<div class="row featurette">
<!-- <div class="col-md-7"> -->
<center>
<h2 class="featurette-heading">Event Coordinators</h2>
</center>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="img/EmmanuelASimon.jpg" alt="Emmanuel A Simon">
<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/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>
<center>
<h3 class="featurette-heading">Volunteer Coordinators</h3>
</center>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="img/sharad_pic.jpg" alt="Sharad Hegde" style="width:170px;">
<div class="caption">
<h3 class="speaker-name">Sharad Hegde</h3>
<p>Co-founder, Futuriste</p>
<p><a href="https://twitter.com/shegde">@shegde</a></p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="img/yi.jpeg" alt="Yi Wang" style="width:170px;">
<div class="caption">
<h3 class="speaker-name">Yiqun "Yi" Wang</h3>
<p>Director of Analytics, Real Capital Analytics</p>
<p><a href="https://twitter.com/equnwang">@equnwang</a></p>
</div>
</div>
</div>
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="img/tom.jpg" alt="Tom Bruning" style="width:170px;">
<div class="caption">
<h3 class="speaker-name">Tom Bruning</h3>
<p>Adjunct Instructor, New Jersey City University</p>
<p><a href="https://twitter.com/tgb">@tgb</a></p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="img/bob.jpg" alt="Roberto Martin" style="width:170px;">
<div class="caption">
<h3 class="speaker-name">Roberto Martin</h3>
<p>Software Developer, Time And Date AS</p>
<p><a href="https://twitter.com/bobstring">@bobstring</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container" id="sponsors">
<hr class="featurette-divider">
<div class="row featurette">
<center>
<h2 class="featurette-heading">Sponsors</h2>
<div class="container">
<center>
<div class="row">
<div class="col-md-2 sponsor">
</div>
<div class="col-md-2 sponsor">
<img class="image-responsive sponsor-image" src="img/Jersey_city_seal.png" alt="City of Jersey City">
</div>
<div class="col-md-2 sponsor">
<img class="image-responsive sponsor-image" src="img/cfa.png" alt="CFA">
</div>
<div class="col-md-2 sponsor">
<img class="image-responsive sponsor-image" src="img/codeforjc.png" alt="Code for JC">
</div>
</div>
</center>
</div>
</center>
</div>
</div>
<hr>
<div class = "navbar navbar-default navbar-fixed-bottom">
<div class = "container">
<p class = "navbar-text pull-left">Site Built By CodeForJC</p>
<a href="https://twitter.com/share" class="twitter-share-button pull-right" data-url="http://codeforjc.org/NDoCH2015" data-text="Join National Day of Civic Hacking 2015!" data-via="CodeForJC" data-hashtags="opendata,Hackforchange">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<a href="https://twitter.com/intent/tweet?button_hashtag=Hackforchange" class="twitter-hashtag-button pull-right" data-related="CodeForJC">Tweet #HackForChange</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="js/ie10-viewport-bug-workaround.js"></script>
<script>
$(document).ready(function(){
// cache the window object
$window = $(window);
$('section[data-type="background"]').each(function(){
// declare the variable to affect the defined data-type
var $scroll = $(this);
$(window).scroll(function() {
// HTML5 proves useful for helping with creating JS functions!
// also, negative value because we're scrolling upwards
var yPos = -($window.scrollTop() / $scroll.data('speed'));
// background position
var coords = '50% '+ yPos + 'px';
// move the background
$scroll.css({ backgroundPosition: coords });
}); // end window scroll
}); // end section function
}); // close out script
</script>
</body>
</html>