-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1160 lines (1034 loc) · 44.6 KB
/
Copy pathindex.html
File metadata and controls
1160 lines (1034 loc) · 44.6 KB
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>
<!--[if IE]><![endif]-->
<!--[if lt IE 7 ]> <html lang="en" class="ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--><html lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="assets/ico/favicon.png">
<title>New Jersey Civic App Challenge</title>
<!-- Bootstrap core CSS -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="assets/css/main.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/Chart.js"></script>
<script src="assets/js/modernizr.custom.js"></script>
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway:400,300,700' rel='stylesheet' type='text/css'>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.js"></script>
<script src="assets/js/respond.min.js"></script>
<![endif]-->
<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript" src="http://s.sharethis.com/loader.js"></script>
<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-68279722-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body data-spy="scroll" data-offset="0" data-target="#theMenu">
<!-- Menu -->
<nav class="menu" id="theMenu">
<div class="menu-wrap">
<h1 class="logo"><a href="index.html#home">AT&T NJ</a></h1>
<i class="icon-remove menu-close"></i>
<a href="http://goo.gl/forms/AHkEr8YtCe" id="blue-text">Sign Up</a>
<a href="http://goo.gl/forms/9UE9xgUlnK" id="blue-text">Submit</a>
<a href="#about" class="smoothScroll">About</a>
<a href="#purpose" class="smoothScroll">Purpose</a>
<a href="#prizes" class="smoothScroll">Prizes</a>
<a href="#winners" class="smoothScroll">Winners</a>
<a href="#partners" class="smoothScroll">Partners</a>
<!-- <a href="#sponsors" class="smoothScroll" id="sponsor-nav">Sponsors</a> -->
<!-- <a href="#where" class="smoothScroll">Where</a> -->
<!-- <a href="#judges" class="smoothScroll">Judges</a> -->
<a href="#criteria" class="smoothScroll">Criteria</a>
<a href="faq.html#faqs" class="smoothScroll">FAQs</a>
<!-- <a href="#winners" class="smoothScroll">Winners</a> -->
<!--<a href="#prizes" class="smoothScroll">Prizes</a> -->
<!--<a href="#testimonials" class="smoothScroll">Testimonials</a> -->
<!--<a href="#demos" class="smoothScroll">Demos</a> -->
<a href="#contact" class="smoothScroll">Contact</a>
<!-- <a href="#"><i class="icon-facebook"></i></a> -->
<a href="http://twitter.com/hackupstate"><i class="icon-twitter"></i></a>
<a href="mailto:team@hackupstate.com,dl2380@att.com" target="_blank"><i class="icon-envelope"></i></a>
</div>
<!-- Menu button -->
<div id="menuToggle"><i class="icon-reorder"></i></div>
</nav>
<!-- ========== HEADER SECTION ========== -->
<section id="home" name="home"></section>
<div id="headerwrap">
<div class="container">
<br>
<div id="boom-header">
<div id="app-challenge-logo">
<img src="assets/img/att_nj_civic_app_lockup-v3.jpg"
style="max-width:1200px;" />
</div>
<h3><span id="blue-text">Powered by
AT&T</a></div></h3>
<div id ="date">
<h2><span id="blue-text">September 16th -
November 13th, 2015</span></h2>
</div>
<br />
<div id="top-buttons">
<a
href="http://goo.gl/forms/AHkEr8YtCe"
class="top-buttons">Sign Up for More</a>
<div id="top-space"></div>
<a href="http://goo.gl/forms/9UE9xgUlnK" title="Submit" class="top-buttons">Submit </a>
</div>
<h3><span id="blue-text"><i class="icon-twitter" target="_blank"></i>
<b>#NJAppChallenge</b><span></h3>
<div class="twitter-container">
<a
href="https://twitter.com/intent/tweet?button_hashtag=NJAppChallenge&text=Check%20out%20the%20ATT%20New%20Jersey%20Civic%20App%20Challenge"
class="twitter-hashtag-button" data-lang="en"
data-related="hackusptate"
>Tweet #NJATT</a>
</div>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
</script>
<!--<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://attroc.hackupstate.com" data-via="hackupstate" data-lang="en">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
</script></h3> -->
</div>
</div><!-- /container -->
</div><!-- /headerwrap -->
<!-- ========== ABOUT SECTION ========== -->
<section id="about" name="about"></section>
<div id="dg">
<div class="container">
<div class="row">
<h3>About Civic App Challenge - New Jersey</h3>
<div class="col-lg-6">
<h3><a href="http://publicpolicy.att.com"
id="blue-text-mission">AT&T</a>, in collaboration with the <a
href="http://njtc.org">New Jersey Technology Council</a>, several economic development, educational and
veterans resource organizations in New Jersey, will launch a civic
app challenge in New Jersey - a “virtual hackathon” in
which innovative thinkers, designers, artists, developers and entrepreneurs are encouraged to build and deliver apps and
services that serve community needs with a particular focus on veterans and their families; connect and engage citizens
with their governments; and demonstrate how mobile technologies can lead to the next generation of tech jobs and
investment.
</div>
<div class="col-lg-6">
<iframe width="560" height="315" src="https://www.youtube.com/embed/FuoZa_vpYrY" frameborder="0" allowfullscreen></iframe>
</div>
</div><!-- /row -->
</div><!-- /container -->
</div><!-- /w -->
<section id="purpose" name="purpose"></section>
<div id="portfoliowrap">
<div class="container">
<div class="row">
<h3 style="margin-top: 50px;">Purpose</h3>
<div class="col-lg-12">
<h3>The <span id="blue-text-mission">New Jersey Technology Council
(NJTC) </span> and <span id="blue-text-mission"> AT&T</span>, along with other organizations across the state, are
teaming on the “AT&T Civic App Challenge - New Jersey,” a “virtual hackathon” for
developers in New Jersey to leverage open data to build smartphone apps that serve community needs.
The goal of the challenge is to encourage local developers to build and
deliver apps and services that serve community
needs with a particular focus on veterans; connect and engage citizens with
their governments; and demonstrate how
mobile technologies can lead to the next generation of tech jobs and
investment.
Special consideration will be given to individuals or teams who develop apps
that serve the state’s military veterans and
their families.
</h3>
<h3>
AT&T's commitment to technology innovation in New Jersey grows out of the company’s deep roots in
the state and its multi-billion dollar nationwide investment in the mobile communications network of the future.
By encouraging students, technologists and innovators in New Jersey to explore smartphone software
development, we are spotlighting the enormous demand for developers and engineers needed to create the
software that will drive our mobile economy.
</h3>
</div>
</div>
</div><!-- /container -->
</div><!-- /portfoliowrap -->
<!-- ========== PRIZES SECTION ========== -->
<section id="prizes" name="prizes"></section>
<div id="f">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div id="prize-header">
<h1>$19,000 in prizes</h1>
</div>
</div>
</div>
<center>
<div id="prize-hr">
<hr>
</div>
</center>
<div class="row">
<div class="col-lg-12">
<div id="civic">
<h4>
A panel of judges will select one winner from each region (Northern, Central and
Southern); each regional winner will receive $3,000. The grand prize winner as selected by the judges will receive an
additional $10,000, plus the chance to work with a regional incubator that will provide business, leadership and other
guidance.
</h4>
</div>
</div>
</div>
</div> <!-- container -->
</div> <!-- f -->
<section id="winners" name="winners"></section>
<div id="w">
<div class="container">
<div class="row">
<div id="winner-header">
<h1>WINNERS</h1>
</div>
<div class="col-lg-4">
<div id="judging-criteria">
<h1>Northern New Jersey ($13,000 Grand Prize)</h1>
<h3><div id="blue-text"><a
href="https://www.youtube.com/watch?v=3k0k8bMjJC8&feature=youtu.be&noredirect=1">Military
Veterans Circle of Support</a></div></h3>
<h4>
The team from Northern New Jersey, led by Saurabh Kumar, submitted the Military Veterans Circle of Support (MVCOS) mobile app,
a complete ecosystem of support for military veterans, families, and the organizations and governments that
serve them. The platform consists of a native mobile app and services that the community needs.
</h4>
<br />
</div>
</div>
<div class="col-lg-4">
<h1>Central New Jersey ($3,000)</h1>
<h3><div id="blue-text"><a
href="https://www.youtube.com/watch?v=6GtjRZoGx7g">ColorsKit</a></div></h3>
<div id="judging-criteria">
<h4>
The Central New Jersey winner is a team led by Manish Patel, whose mobile app, ColorsKit, is a
comprehensive package of mobile apps designed to manage the complete range of cognitive development
phases in the lives of children and adults with autism.
</h4>
<br />
</div>
</div>
<div class="col-lg-4">
<div id="judging-criteria">
<h1>Southern New Jersey ($3,000)</h1>
<h3>
<div id="blue-text"><a
href"https://www.youtube.com/watch?v=pLMXwIx6R38&feature=youtu.be">Veteran
Route Assistance</a>
</div>
</h3>
<h4>
Led by Joseph Proleika, a team from Rowan University is the Southern New Jersey winner. Their mobile
app, Veteran Route Assistance, is a location-marking app geared towards military veterans with memory loss or
PTSD. The team will receive $3,000.
</h4>
<br />
</div>
</div>
</div> <!-- row -->
<h4>
<em>Additional Prize ($1,500): Upon reviewing the results of the
judging, a $1,500 award was carved out for Currant NEIGHBORHOOD,
a mobile application that connects the dots in times of crisis. Inspired by the events after Superstorm Sandy, the
app enables citizens to share critical information such as where to find gas, groceries, or shelter; residents can
communicate issues directly to local governments when electricity may not be
available, and first responders
can receive real-time field data from those impacted the most. The team, led by Denise Spell, was on hand for
the awards ceremony.</em>
</h4>
</div>
</div>
<div id="dg">
<div class="container">
<div class="row">
<!-- <div class="col-lg-6">
<h3><span id="prize-text">EXISTING CIVIC APPLICATIONS</span></h3>
<h4><span id="prize-text">Developers already working on a community service-themed app for the public can submit it for consideration.</span></h4>
<center>
<div id="prize-hr">
<hr/>
</div>
</center> --!>
<div id="prize-header" "prize-padding">
<h2>Grand Prize</h2>
<h2>$10,000</h2>
<h4>
<span id="blue-text-mission">Eligible to a winner of one of the
three regional prizes
</span>
</h4>
</div>
<center>
<div id="prize-hr">
<hr/>
</div>
</center>
<!-- <div id="prize-header">
<h3>Second</h3>
<h3>$2,000</h3>
</div>
<center>
<div id="prize-hr">
<hr/>
</div>
</center>
<div id="prize-header">
<h3>Third</h3>
<h3>$1,000</h3>
</div>
<center>
<div id="prize-hr">
<hr/>
</div>
</center> --!>
<div id="prize-header">
<h3>Northern NJ Regional Winner</h3>
<h3>$3,000</h3>
</div>
</div>
<center>
<div id="prize-hr">
<hr/>
</div>
</center>
<div id="prize-header">
<h3>Central NJ Regional Winner</h3>
<h3>$3,000</h3>
</div>
</div>
<center>
<div id="prize-hr">
<hr/>
</div>
</center>
<div id="prize-header">
<h3>Southern NJ Regional Winner</h3>
<h3>$3,000</h3>
</div>
</div>
<!-- <div class="col-lg-6=">
<h3><span id="prize-text">NEW CIVIC APPLICATIONS</span></h3>
<h4><span id="prize-text">Developers inspired to create a new civic application from scratch can submit it for consideration.</span></h4>
<center>
<div id="prize-hr">
<hr/>
</div>
</center>
<div id="prize-header">
<h2>Grand Prize</h2>
<h2>$5,000</h2>
</div>
<center>
<div id="prize-hr">
<hr/>
</div>
</center>
<div id="prize-header">
<h3>Second</h3>
<h3>$2,000</h3>
</div>
<center>
<div id="prize-hr">
<hr/>
</div>
</center>
<div id="prize-header">
<h3>Third</h3>
<h3>$1,000</h3>
</div>
<center>
<div id="prize-hr">
<hr/>
</div>
</center>
<div id="prize-header">
<h3>Two Honorable Mentions</h3>
<h3>$500 each</h3>
</div> --!>
</div>
</div> <!-- /row -->
</div><!-- /container -->
</div><!-- /dg-->
<!-- ========== PARTNERS SECTION ========== -->
<section id="partners" name="partners"></section>
<div id="w">
<div class="container">
<div class="row">
<h2>OUR PARTNERS</h2>
<!-- <h4>Our partners include:</h4> --!>
</div>
<br />
<br />
<div class="row">
<div id="resources">
<div class="col-lg-6">
<h3><strong>Current higher-education partners:</strong></h3>
<h3><a href="http://njcolleges.org/aicunj/about-aicunj">Association of Independent Colleges and Universities in New
Jersey</a></h3>
<h3><a href="http://njascu.org">New Jersey Association of State Colleges
and Universities</a></h3>
<h3><a href="http://njccc.org">New Jersey Council of County Colleges</a></h3>
<h3><a href="http://njit.edu">New Jersey Institute of Technology</a></h3>
<h3><a href="http://rowan.edu">Rowan University</a></h3>
<h3><a href="http://rutgers.edu">Rutgers University</a></h3>
<h3><a href="http://stevens.edu/sit/veterans">Stevens Institute of
Technology</a></h3>
<!-- <ul>
<li><a href="http://docs.opencivicdata.org/en/latest/api/index.html">Open Civic Data API</a></li>
<li><a href="http://sunlightfoundation.com/api/">The Sunlight Foundation</a></li>
</ul> --!>
</div>
<div class="col-lg-6">
<h3><strong>Other current partners include:</strong></h3>
<h3><a href="http://helmetstohardhats.org">Helmets to Hardhats</a></h3>
<h3><a href="http://heroestoheroes.org">Heroes to Heroes</a></h3>
<h3><a href="http://innovationnj.net">Innovation New Jersey</a></h3>
<h3><a href"http://operationchillout.org">Operation Chill Out New
Jersey</a></h3>
<h3><a href="http://scbp.org">Somerset County Business Partnership</a>
<h3><a href="http://snjdc.org">Southern New Jersey Economic Development
Council</a></h3>
<h3><span id="blue-text-mission">Veterans of AT&T, an employee
resource group</span></h3>
<h3><a href="http://vets4warriors.com">Vets4Warriors</a></h3>
</div>
<!-- <div class="col-lg-4">
<h3>Federal</h3>
<ul>
<li><a href="http://www.data.gov/">U.S. Government’s open data</a></li>
<li><a href="http://www.economicinclusion.gov/">Economic Inclusion</a></li>
</ul>
</div>
<div class="col-lg-4">
<h3>New York State</h3>
<ul>
<li><a href="http://openlegislation.readthedocs.org/en/latest/index.html">Open Legislation API</a></li>
<li><a href="http://seethroughny.net/">See Through NY</a></li>
<li><a href="http://sunlightny.com/NYOG/">NY Open Government</a></li>
<li><a href="https://data.ny.gov/">Open New York</a></li>
<li><a href="http://www.economicinclusion.gov/surveys/place-data.html?where=New_York&when=2011">Economic Inclusion NYS</a></li>
<li><a href="https://www.parole.ny.gov/">NYS Parole Board</a></li>
<li><a href="http://attroc.hackupstate.com/assets/resources/nys_parole_board.xls">NYS Parole Board Data Set</a></li>
</ul>
</div> --!>
</div> <!-- /resources -->
</div>
<!-- <div class="row">
<div id="resources">
<div class="col-lg-4">
<h3>City of Rochester</h3>
<ul>
<li><a href="http://www.cityofrochester.gov/neighborhooddatamap/">Neighborhood Data Map</a></li>
<li><a href="http://www.actrochester.org/">ACT Rochester</a></li>
</ul>
</div>
<div class="col-lg-4">
<h3>Hacks/Hackers ROC</h3>
<ul>
<li><a href="http://mcsafetyfeed.org/">Monroe County 911 Feed Collector</a></li>
<li><a href="http://monroeminutes.org/">Monroe Minutes</a></li>
</ul> --!>
</div>
</div> <!-- /resources -->
</div>
</div><!-- /container -->
</div><!-- /w -->
<!-- <div id="hide-sponsors"> -->
<!-- <!-- ========== SPONSORS - GREY SECTION ========== --> -->
<!-- <section id="sponsors" name="sponsors"></section> -->
<!-- <div id="g"> -->
<!-- <div class="container"> -->
<!-- <div class="row"> -->
<!-- <h3>SPONSORS</h3> -->
<!-- <br> -->
<!-- <br> -->
<!-- <br> -->
<!-- <div class="col-lg-4"> -->
<!-- <br> -->
<!-- <br> -->
<!-- <a href="http://www.rit.edu/" target="_blank"><img src="assets/img/sponsors/rit-logo.jpg" id="sponsor-logo"></a> -->
<!-- </div> -->
<!-- <div class="col-lg-4"> -->
<!-- <br /> -->
<!-- <br /> -->
<!-- <a href="http://digitalrochester.com/" target="_blank"><img src="assets/img/sponsors/dr-high-res.png" id="sponsor-logo"></a> -->
<!-- </div> -->
<!-- <div class="col-lg-4"> -->
<!-- <br /> -->
<!-- <br /> -->
<!-- <a href="http://htr.org/" target="_blank"><img src="assets/img/sponsors/htr-logo-2.png" id="sponsor-logo"></a> -->
<!-- </div> -->
<!-- </div> -->
<!-- -->
<!-- <div class="row"> -->
<!-- <div class="col-lg-4"> -->
<!-- <br> -->
<!-- <br> -->
<!-- <br> -->
<!-- <br> -->
<!-- <a href="http://magic.rit.edu/main/index.html" target="_blank"><img src="assets/img/sponsors/MAGIC-logo.png" id="sponsor-logo"></a> -->
<!-- </div> -->
<!-- <div class="col-lg-4"> -->
<!-- <br> -->
<!-- <br> -->
<!-- <br> -->
<!-- <a href="http://publicpolicy.att.com" target="_blank"><img src="assets/img/sponsors/att_new_logo.png" id="sponsor-logo"></a> -->
<!-- </div> -->
<!-- <div class="col-lg-4"> -->
<!-- <br> -->
<!-- <br> -->
<!-- <br> -->
<!-- <br> -->
<!-- <a href="http://hackupstate.com/" target="_blank"><img src="assets/img/sponsors/hack-upstate_logo_jan.png" id="sponsor-logo"></a> -->
<!-- </div> -->
<!-- </div> -->
<!-- -->
<!-- -->
<!-- </div> -->
<!-- </div><!-- /container --> -->
<!-- </div><!-- /g --> -->
<!-- </div> <!-- /hide-sponsors --> -->
<!-- -->
<!-- -->
<!-- <!-- ========== WHERE SECTION ========== --> -->
<!-- <section id="where" name="where"></section> -->
<!-- <div id="w"> -->
<!-- <div class="container"> -->
<!-- <div class="row"> -->
<!-- <h2>Where</h2> -->
<!-- <h4>RIT Center for MAGIC, located in Student Innovation Hall (<a href="assets/pdf/parking.pdf" target="_blank">labeled CSI in section D6 on the map</a>). Student Innovation Hall is a round glass structure near Global Village. On the windows to the building, you will see banners that have the MAGIC logo, as well as the Simone Center for Student Innovation and Entrepreneurship.</h4> -->
<!-- <div class="col-lg-4 port-space"> -->
<!-- <div id="address"> -->
<!-- <p>RIT MAGIC Center<br> -->
<!-- 159 Lomb Memorial Drive <br> -->
<!-- Rochester, NY, 14623<br> -->
<!-- <a href="https://www.google.com/maps?q=159+Lomb+Memorial+Dr,+Rochester+Institute+of+Technology,+Rochester,+Monroe,+New+York+14623&hl=en&sll=37.6,-95.665&sspn=62.370099,94.21875&geocode=FV-DkQIdecZe-w&hnear=159+Lomb+Memorial+Dr,+Rochester,+Monroe,+New+York+14623&t=m&z=17" title="Directions" class="btn btn-large">Get Directions</a></p> -->
<!-- </div> -->
<!-- </div> -->
<!-- <br> -->
<!-- <br> -->
<!-- <div class="col-lg-8"> -->
<!-- <img src="assets/img/d6.png" id="map"/> -->
<!-- </div> -->
<!-- </div> -->
<!-- -->
<!-- <br> -->
<!-- <br> -->
<!-- -->
<!-- <div class="row"> -->
<!-- <h2>Parking</h2> -->
<!-- <h4>Parking for the event is in S lot (<a href="assets/pdf/parking.pdf" target="_blank">see here</a>). Please enter the <a href="assets/pdf/campus.pdf" target="_blank">campus</a> using the main entrance off of Jefferson Rd and follow the signage (it will read Rochester Civic App Challenge Press Conference) that we have in place to direct you to the event location. Twenty spaces have been reserved for this event at the east end of the 5th set of double rows of the parking lot; please look for our Public Safety officers who will be on hand to assist you if necessary.</h4> -->
<!-- </div> -->
<!-- </div><!-- /container --> -->
<!-- </div><!-- /w --> -->
<!-- -->
<!-- -->
<!-- <!-- ========== JUDGES - GREY SECTION ========== --> -->
<!-- <section id="judges" name="judges"></section> -->
<!-- <div id="g unpad"> -->
<!-- <div class="container"> -->
<!-- <div class="row"> -->
<!-- <h3>JUDGES</h3> -->
<!-- <br> -->
<!-- <br> -->
<!-- -->
<!-- <div class="col-lg-4 team"> -->
<!-- <img class="img-circle" src="assets/img/judges/morelle.png" height="90" width="90"> -->
<!-- <div id="judge-name"> -->
<!-- <h2>Hon. Joseph D. Morelle</h2> -->
<!-- <h3>New York State Assembly Majority Leader (D-Irondequoit)</h3> -->
<!-- </div> -->
<!-- </div> -->
<!-- -->
<!-- <div class="col-lg-4 team"> -->
<!-- <img class="img-circle" src="assets/img/judges/gallivan_2.png" height="90" width="90"> -->
<!-- <div id="judge-name"> -->
<!-- <h2>Senator Patrick M. Gallivan (59th District)</h2> -->
<!-- <h4>Deputy Republican Conference Leader for Economic Development and Member of Senate Committee on Science, Technology, Incubation and Entrepreneurship</h4> -->
<!-- </div> -->
<!-- </div> -->
<!-- -->
<!-- <div class="col-lg-4 team"> -->
<!-- <img class="img-circle" src="assets/img/judges/Marissa_Shorenstein.jpg" height="90" width="90"> -->
<!-- <div id="judge-name"> -->
<!-- <h2>Marissa Shorenstein</h2> -->
<!-- <h3>AT&T New York President</h3> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- -->
<!-- <div class="row"> -->
<!-- <br /> -->
<!-- <br /> -->
<!-- <br /> -->
<!-- <div class="col-lg-4 team"> -->
<!-- <img class="img-circle" src="assets/img/judges/Lisa_Doerner.jpg" height="90" width="90"> -->
<!-- <div id="judge-name"> -->
<!-- <h2>Lisa Doerner</h2> -->
<!-- <h3>Executive Director, Digital Rochester</h3> -->
<!-- </div> -->
<!-- </div> -->
<!-- -->
<!-- <div class="col-lg-4 team"> -->
<!-- <img class="img-circle" src="assets/img/judges/stephen_jacobs_3.jpeg" height="90" width="90"> -->
<!-- <div id="judge-name"> -->
<!-- <h2>Dr. Stephen Jacobs</h2> -->
<!-- <h3>Professor, Associate Director of the MAGIC Center</h3> -->
<!-- </div> -->
<!-- </div> -->
<!-- -->
<!-- <div class="col-lg-4 team"> -->
<!-- <img class="img-circle" src="assets/img/judges/Mike_Riedlinger_square.jpg" height="90" width="90"> -->
<!-- <div id="judge-name"> -->
<!-- <h2>Mike Riedlinger</h2> -->
<!-- <h3>Program Manager of Technology Commercialization, High Tech Rochester</h3> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- -->
<!-- <div class="row"> -->
<!-- <br /> -->
<!-- <br /> -->
<!-- <br /> -->
<!-- -->
<!-- <div class="col-lg-4 team"> -->
<!-- <img class="img-circle" src="assets/img/judges/anthonyjefferson.jpg" height="90" width="90"> -->
<!-- <div id="judge-name"> -->
<!-- <h2>Anthony Jefferson</h2> -->
<!-- <h3>Senior Lecturer, RIT</h3> -->
<!-- </div> -->
<!-- </div> -->
<!-- -->
<!-- <div class="col-lg-4 team"> -->
<!-- <img class="img-circle" src="assets/img/judges/jeffs.png" height="90" width="90"> -->
<!-- <div id="judge-name"> -->
<!-- <h2>Jeff Sonstein</h2> -->
<!-- <h3>Associate Professor, RIT & Chief Architect, BlindSpotApp.com</h3> -->
<!-- </div> -->
<!-- </div> -->
<!-- -->
<!-- <div class="col-lg-4 team"> -->
<!-- <img class="img-circle" src="assets/img/judges/decausemaker.jpg" height="90" width="90"> -->
<!-- <div id="judge-name"> -->
<!-- <h2>Remy DeCausemaker</h2> -->
<!-- <h3>Assistant Director - Lab for Technological Literacy, RIT</h3> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- -->
<!-- <div class="row"> -->
<!-- <br /> -->
<!-- <br /> -->
<!-- <br /> -->
<!-- -->
<!-- <div class="col-lg-4 team"> -->
<!-- <img class="img-circle" src="assets/img/judges/todd.jpg" height="90" width="90"> -->
<!-- <div id="judge-name"> -->
<!-- <h2>Todd Bernhard</h2> -->
<!-- <h3>Founder & CTO, AllAccess.US</h3> -->
<!-- </div> -->
<!-- </div> -->
<!-- -->
<!-- <div class="col-lg-4 team"> -->
<!-- <img class="img-circle" src="assets/img/judges/ralphbean.jpg" height="90" width="90"> -->
<!-- <div id="judge-name"> -->
<!-- <h2>Ralph Bean</h2> -->
<!-- <h3>Software Engineer, Red Hat</h3> -->
<!-- </div> -->
<!-- -->
<!-- </div> -->
<!-- -->
<!-- <div class="col-lg-4 team"> -->
<!-- <img class="img-circle" src="assets/img/judges/paulsoft.jpg" height="90" width="90"> -->
<!-- <div id="judge-name"> -->
<!-- <h2>Paul Solt</h2> -->
<!-- <h3>iOS Developer & Instructor, RIT</h3> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div><!-- /row --> -->
<!-- -->
<!-- <div class="row"> -->
<!-- <br /> -->
<!-- <br /> -->
<!-- <br /> -->
<!-- -->
<!-- <div class="col-lg-4 team"> -->
<!-- <img class="img-circle" src="assets/img/judges/SteveMaier_2.png" height="90" width="90"> -->
<!-- <div id="judge-name"> -->
<!-- <h2>Steve Maier</h2> -->
<!-- <h3>Senior Technical Evangelist, Microsoft</h3> -->
<!-- </div> -->
<!-- </div> -->
<!-- -->
<!-- <div class="col-lg-4 team"> -->
<!-- <img class="img-circle" src="assets/img/judges/MichaelFisher.jpg" height="90" width="90"> -->
<!-- <div id="judge-name"> -->
<!-- <h2>Michael Fisher</h2> -->
<!-- <h3>Editorial Director,<a href="http://pocketnow.com/editor/michael-fisher">Pocketnow</a></h3> -->
<!-- </div> -->
<!-- </div> -->
<!-- -->
<!-- <div class="col-lg-4 team"> -->
<!-- <img class="img-circle" src="assets/img/judges/TimStevens.jpg" height="90" width="90"> -->
<!-- <div id="judge-name"> -->
<!-- <h2>Tim Stevens</h2> -->
<!-- <h3>Editor at Large,<a href="http://www.cnet.com/profiles/tim_stevens/">CNET</a></h3> -->
<!-- </div> -->
<!-- </div -->
<!-- -->
<!-- </div><!-- /row --> -->
<!-- </div><!-- /container --> -->
<!-- </div><!-- /g --> -->
<!-- -->
<!-- ========== CRITERIA SECTION ========== -->
<section id="criteria" name="criteria"></section>
<div id="w">
<div class="container">
<div class="row">
<br>
<h2>CRITERIA</h2>
<br>
<div class="col-lg-6">
<h3>Overview</h3>
<h4>
The AT&T Civic App Challenge - New Jersey is a two-month
virtual hackathon in which innovative thinkers, designers, artists,
developers, and entrepreneurs are encouraged to build and deliver
apps and services that serve community needs with a particular focus
on veterans and their families; connect and engage citizens with
their governments; and demonstrate how mobile technologies can lead
to the next generation of tech jobs and investment and showcase
innovation in the Garden State.
</h4><br />
<h4>
The challenge will kick-off with an event hosted by <a
href="http://juicetank.com">JuiceTank</a> on September 16, 2015 at 11 a.m. JuiceTank is located at
<a href="https://www.google.com/maps/place/220+Davidson+Ave,+Somerset,+NJ+08873/@40.5366254,-74.5228624,17z/data=!3m1!4b1!4m2!3m1!1s0x89c3c0be206cbd45:0xa1e9339e65c427c2?hl=en>220">
Davidson Ave, Franklin Township, NJ 08873</a>. The contest concludes Friday,
November 13, at 11:59 p.m.
</h4><br />
<h4>
Winners will be announced and apps will be demoed on December 4,
2015 at Rowan University. Regional prizes: 3 @ $3,000 each, and one
grand prize: $10,000.
</h4><br />
<h4>
<p class="reset">The three regions* are:</p>
<p class="reset"><strong>Northern Region:</strong> Bergen, Essex, Hudson, Morris,
Passaic, Sussex, and Warren counties</p>
<p class="reset"><strong>Central Region:</strong> Hunterdon, Mercer, Middlesex,
Monmouth, Ocean, Somerset, and Union counties
<p class="reset"><strong>Southern Region:</strong> Atlantic, Burlington, Camden,
Cape May, Cumberland, Gloucester, and Salem counties</p>
</h4>
<h5>
<i>
*Counties for each region were identified based upon a NJ
Department of Transportation <a
href="http://www.state.nj.us/transportation/gis/map.shtm">map</a>.
</i>
</h5>
</div>
<div class="col-lg-6">
<h3>Judging</h3>
<h4>
Apps submitted to the challenge will be judged on potential impact on
the New Jersey (30 percent), execution and user experience
(30 percent), impact on military veterans and/or their families
(20), and creativity/novelty (20 percent).
</h4><br />
<h4>
<strong>While this contest is open to everyone who meets the eligibility
criteria - from students to practicing engineers - the vision is to
select apps that were created specifically for this challenge.</strong>
</h4><br />
<h4>
A panel of judges made up of tech experts, elected officials and
community stakeholders will review apps pre-
screened by an expert facilitator to determine to what extent each
satisfies the submission criteria. Judges will
rank finalists and assign prizes for regional winners, followed a
selection of the overall winner. All potential
intellectual property belongs to the product teams or individual.
</h4><br />
<h4>
To make this challenge truly Jersey-centric, the challenge is open
to residents of New Jersey and/or postsecondary students currently
enrolled in a New Jersey college or university listed on the New
Jersey Office of the Secretary of Higher Education <a
href="http://nj.gov/highereducation/colleges/schools_alfa.shtml">website</a>.
For teams, at least 50 percent of the team members must be either
current residents of New Jersey or attend one of the <a
href="http://nj.gov/highereducation/colleges/schools_alfa.shtml">state's
colleges or universities</a>. AT&T employees and immediate family
members are not eligible.
</h4>
</div>
<!-- <div class="col-lg-3">
<div id="judging-criteria">
<h3>Civic Requirement</h3>
<h4>
Submissions must address challenges relevant to the city of Rochester, NY and its surrounding areas.
</h4>
<br />
</div>
</div>
<div class="col-lg-3">
<h3>Team Requirement</h3>
<div id="judging-criteria">
<h4>
Teams must have at least one individual on their team from the greater Rochester area (i.e., Livingston, Monroe, Ontario, Orleans, Wayne, Yates) or a student attending a Rochester school.
</h4>
<br />
</div>
</div>
<div class="col-lg-3">
<div id="judging-criteria">
<h3>Submissions</h3>
<h4>
Products must be submitted before 11:59pm April 23rd via the <a href="#">Hacker League ‘Project’ submissions page</a>. Source code must be made available online under licenses approved by the <a href="http://opensource.org/licenses/category" target="_blank">Open Source Initiative</a>.
</h4>
<br />
</div>
</div>
<div class="col-lg-3">
<h3>Judging Criteria</h3>
<div id="judging-criteria">
<ul>
<li>Potential Impact on Rochester <span id="blue-text-schedule"><b>(40%)</b></span></li>
<li>Execution <span id="blue-text-schedule"><b>(40%)</b></span></li>
<li>Creativity / Novelty <span id="blue-text-schedule"><b>(20%)</b></span></li>
</ul>
</div>
</div> --!>
</div>
<br />
<!-- <span id="product-ip"><b>Note:</b> All potential intellectual
property belongs to the product teams</span> -->
</div>
</div>
<!-- <h3>SCHEDULE</h3> -->
<!-- <br> -->
<!-- <br> -->
<!-- <div class="col-lg-3"> -->
<!-- <h2>Kickoff Event</h2> -->
<!-- <h4>Thursday February 20th</h4> -->
<!-- <ul> -->
<!-- <li><span id="blue-text-schedule">11:00am:</span> Open to the public</li> -->
<!-- </ul> -->
<!-- </div> -->
<!-- <div class="col-lg-3"> -->
<!-- <h2>Check-in Event</h2> -->
<!-- <h4>Wednesday March 5th</h4> -->
<!-- <ul> -->
<!-- <li><span id="blue-text-schedule">5:00pm:</span> Doors open / networking</li> -->
<!-- <li><span id="blue-text-schedule">5:15pm:</span> Informal gathering to connect and discuss progress</li> -->
<!-- </ul> -->
<!-- </div> -->
<!-- <div class="col-lg-3"> -->
<!-- <h2>Submissions Deadline</h2> -->
<!-- <h4>Wednesday April 23rd</h4> -->
<!-- <ul> -->
<!-- <li><span id="blue-text-schedule">11:59pm:</span> Deadline for online submissions via Hacker League</li> -->
<!-- </ul> -->
<!-- </div> -->
<!-- <div class="col-lg-3"> -->
<!-- <h2>Demos / Awards</h2> -->
<!-- <h4>Thursday May 8th</h4> -->
<!-- <ul> -->
<!-- <li><span id="blue-text-schedule">11:00am:</span> Open to the public</li> -->
<!-- </ul> -->
<!-- </div> -->
<!-- </div> -->
<!-- -->
<!-- <div class="row"> -->
<!-- <br> -->
<!-- <br> -->
<!-- <div class="col-lg-4"> -->
<!-- <h2>Kickoff Event</h2> -->
<!-- <h4>Thursday February 20th</h4> -->
<!-- <ul> -->
<!-- <li><span id="blue-text-schedule">11:00am:</span> Open to the public</li> -->
<!-- </ul> -->
<!-- </div> -->
<!-- <div class="col-lg-4"> -->
<!-- <h2>24 hr Kickoff Hackathon</h2> -->
<!-- <h4>Friday February 21st</h4> -->
<!-- <ul> -->
<!-- <li><span id="blue-text-schedule">Feb 21st 6:00pm:</span> Doors Open</li> -->
<!-- <li><span id="blue-text-schedule">Feb 22nd 6:00pm:</span> Demos begin</li> -->
<!-- <li><a href="assets/img/kickoff.png" target="_blank">More Info Here</a></li> -->
<!-- </ul> -->
<!-- </div> -->
<!-- <div class="col-lg-4"> -->
<!-- <h2>Check-in Event</h2> -->
<!-- <h4>Wednesday March 5th</h4> -->
<!-- <ul> -->