-
Notifications
You must be signed in to change notification settings - Fork 9
/
raleigh2015G.html
2128 lines (1553 loc) · 95.5 KB
/
raleigh2015G.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 name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Code for the Kingdom" />
<meta name="keywords" content="" />
<title>Raleigh 2015 | Code for the Kingdom</title>
<!--[if lte IE 8]><script src="assets/css/ie/html5shiv.js"></script><![endif]-->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.dropotron.min.js"></script>
<script src="assets/js/simple-expand.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/skel-layers.min.js"></script>
<script src="assets/js/contact-form.js"></script>
<script src="assets/js/select2.min.js"></script>
<script src="assets/js/mentor-filter.js"></script>
<script src="assets/js/init.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<noscript>
<link rel="stylesheet" href="assets/css/skel.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/style-noscript.css" />
</noscript>
<link rel="stylesheet" href="assets/css/simple-expand.css" />
<link rel="stylesheet" href="assets/css/select2.css" />
<link rel="stylesheet" href="assets/css/c4tk.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie/v8.css" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie/v9.css" /><![endif]-->
<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-20022203-4', 'auto');
ga('send', 'pageview');
</script>
</head>
<body class="index loading">
<!--
-->
<!-- Header -->
<header id="header" class="alt">
<h1 id="logo"><a href="index.html">Code for the Kingdom</a></h1>
<nav id="nav">
<ul>
<li class="current"><a href="index.html">Home</a></li>
<li class="submenu">
<a href="">Menu</a>
<ul>
<li>
<a href="#about.md">About</a>
</li>
<li>
<a href="#organizers.md">Local Organizers</a>
</li>
<li>
<a href="#sponsors.md">Sponsors</a>
</li>
<li>
<a href="#schedule.md">Schedule</a>
</li>
<li>
<a href="#indigitous.md">Indigitous</a>
</li>
<li>
<a href="#challenges.md">Challenges</a>
</li>
<li>
<a href="#prizes.md">Awards</a>
</li>
<li>
<a href="#mentors.md">Mentors</a>
</li>
<li>
<a href="#apis.md">APIs</a>
</li>
<li>
<a href="#rules.md">Rules</a>
</li>
<li>
<a href="#faq.md">FAQ</a>
</li>
<li class="submenu"><a href="#">Events</a>
<ul>
</ul>
</li>
<li>
<a href="application.html">Be a hackathon organizer in your city</a>
</li>
<li>
<a href="leadership.html">Leadership</a>
</li>
<li>
<a href="contact.html">Contact Us</a>
</li>
</ul>
</li>
<li><a href="https://www.eventbrite.com/e/raleighs-global-hackathon-weekend-tickets-10210563069" class="button special">Sign Up</a></li>
</ul>
</nav>
</header>
<section id="banner">
<!--
".inner" is set up as an inline-block so it automatically expands
in both directions to fit whatever's inside it. This means it won't
automatically wrap lines, so be sure to use line breaks where
appropriate (<br />).
-->
<div class="inner">
<header>
<h2>Code for the Kingdom<br/> Raleigh 2015</h2>
</header>
<p>Oct 2 - 4, 2015</p>
<p>Invictus Office Center, Durham NC</p>
<p>A Leadership Network Hackathon</p>
<br> </br>
<p>IN COLLABORATION WITH</p>
<a href="https://indigitous.org/c4tk-project/" target="_blank">
<img style="max-width:100%" src="assets/images/sponsors/indigitous.png"/>
</a>
<p></p>
<footer>
<ul class="buttons">
<li><a href="#about.md" class="button fit scrolly">Tell Me More</a></li>
</ul>
</footer>
</div>
</section>
<div class="container" role="main">
<section class="wrapper container style4" id="about.md">
<div>
<h2 id="about">About</h2>
<hr>
<p><img src="assets/images/earth.jpg" style="float:right"/></p>
<p>Code for the Kingdom, a Leadership Network hackathon initiative, convenes bright entrepreneurs and technologists to use their gifts to affect global culture from a Christian perspective. It seeks to advance the Gospel through the creation of new technologies addressing significant issues confronting society, community, families, and spiritual life.</p>
<p>In 2015, we are expanding Code for the Kingdom to include a Global Hackathon Weekend where we are collaborating with Indigitous - a global community of people passionate about connecting people to Jesus using digital strategies - to host events in 13 locations simultaneously. </p>
<p>Together our vision is to provide more opportunities for communities around the world to participate and showcase innovation and entrepreneurship in their communities. We expect over 1,500 people to participate and address a number of challenges aimed at helping release the oppressed, teaching God’s Word, healing the sick, feeding the hungry, clothing the naked, and supporting the church and the body of Christ.</p>
<div>
<div style="display:inline-block">
<a class="button small special" href="https://www.eventbrite.com/e/raleighs-global-hackathon-weekend-tickets-10210563069" target="_blank">
<i class="icon icon-chevron-sign-right" style="content: '\f138'"></i>
REGISTER NOW
</a>
</div>
<div style="display:inline-block">
<a href="https://twitter.com/code4thekingdom" target="_new" class="icon circle fa-twitter small">
<span class="label">Twitter</span>
</a>
<a href="https://www.facebook.com/pages/Code-for-the-Kingdom/345488018911337" target="_new" class="icon circle fa-facebook small">
<span class="label">Facebook</span>
</a>
</div>
</div>
</div>
</section>
<section class="wrapper container style4" id="organizers.md">
<div>
</div>
</section>
<section class="wrapper container style4" id="sponsors.md">
<div>
<h2 id="-i-class-icon-fa-heart-i-sponsors"><i class="icon fa-heart"></i> Sponsors</h2>
<div class="row">
<div class="4u">
<a href="http://www.leadnet.org" class="sponsor-image">
<img src="assets/images/sponsors/leadnet-logo.jpg" alt="Leadership Network" title="Leadership Network">
</a>
</div>
<!-- section -->
<div class="4u">
<a href="http://www.indigitous.org/" class="sponsor-image">
<img src="assets/images/sponsors/indigitous.png" alt="Indigitous" title="Indigitous">
</a>
</div>
<!-- section -->
<div class="4u">
<a href="http://www.faithcomesbyhearing.com" class="sponsor-image">
<img src="assets/images/sponsors/FBCH.png" alt="Faith Comes By Hearing" title="Faith Comes By Hearing">
</a>
</div>
<!-- section -->
<div class="4u">
<a href="http://www.onehope.net" class="sponsor-image">
<img src="assets/images/sponsors/one-hope.png" alt="One Hope" title="One Hope">
</a>
</div>
<!-- section -->
<div class="4u">
<a href="http://www.worldvision.org/" class="sponsor-image">
<img src="assets/images/sponsors/wv2_vtagline_color.jpg" alt="World Vision" title="World Vision">
</a>
</div>
<!-- section -->
<div class="4u">
<a href="http://www.theotech.org/" class="sponsor-image">
<img src="assets/images/sponsors/theotech_logo_with_rings.png" alt="TheoTech - Technology Entrepreneurship for the Gospel" title="TheoTech - Technology Entrepreneurship for the Gospel">
</a>
</div>
<!-- section -->
<div class="4u">
<a href="http://oceanaccelerator.com" class="sponsor-image">
<img src="assets/images/sponsors/ocean.png" alt="Ocean Accelerator" title="Ocean Accelerator">
</a>
</div>
<!-- section -->
<div class="4u">
<a href="http://createdtocreate.com/" class="sponsor-image">
<img src="assets/images/sponsors/createdtocreate.jpg" alt="Created To Create" title="Created To Create">
</a>
</div>
<p></div></p>
<div>
<div style="display:inline-block">
<a class="button small special" href="https://www.eventbrite.com/e/raleighs-global-hackathon-weekend-tickets-10210563069" target="_blank">
<i class="icon icon-chevron-sign-right" style="content: '\f138'"></i>
REGISTER NOW
</a>
</div>
<div style="display:inline-block">
<a href="https://twitter.com/code4thekingdom" target="_new" class="icon circle fa-twitter small">
<span class="label">Twitter</span>
</a>
<a href="https://www.facebook.com/pages/Code-for-the-Kingdom/345488018911337" target="_new" class="icon circle fa-facebook small">
<span class="label">Facebook</span>
</a>
</div>
</div>
</div>
</section>
<section class="wrapper container style4" id="schedule.md">
<div>
<h2 id="-i-class-icon-fa-clock-o-i-schedule"><i class="icon fa-clock-o"></i> Schedule</h2>
<table class="default">
<thead>
<tr class="row-1 odd">
<th colspan="2" class="column-1"><div>Friday, October 2</div></th>
</tr>
</thead>
<tbody class="row-hover" role="alert" aria-live="polite" aria-relevant="all">
<tr class="row-2">
<td class="column-1"><strong>7:00 PM</strong></td><td class="column-2">Doors Open </td>
</tr>
<tr class="row-3">
<td class="column-1"><strong>7:00 PM - 8:00 PM</strong></td><td class="column-2">Dinner & Networking</td>
</tr>
<tr class="row-4">
<td class="column-1"><strong>8:00 PM - 8:25 PM</strong></td><td class="column-2">Welcome & Review Format </td>
</tr>
<tr class="row-5">
<td class="column-1"><strong>8:25 PM - 8:35 PM</strong></td><td class="column-2">API Presentations</td>
</tr>
<tr class="row-6">
<td class="column-1"><strong>8:35 PM - 8:50 PM</strong></td><td class="column-2">Review - Official Challenges </td>
</tr>
<tr class="row-7">
<td class="column-1"><strong>8:50 PM - 9:20 PM</strong></td><td class="column-2">Open Floor - pitch your own project</td>
</tr>
<tr class="row-11">
<td class="column-1"><strong>9:20 PM - 11:59 PM</strong></td><td class="column-2">Team Formation/Create Away</td>
</tr>
</tbody>
</table>
<table class="default">
<thead>
<tr class="row-1 odd">
<th colspan="2" class="column-1"><div>Saturday, October 3</div></th>
</tr>
</thead>
<tbody class="row-hover">
<tr class="row-2 even">
<td class="column-1"><strong>12:00 AM - 11:59 PM</strong></td><td class="column-2">Creating</td>
</tr>
<tr class="row-3 odd">
<td class="column-1"><strong>8:30 AM</strong></td><td class="column-2">Breakfast</td>
</tr>
<tr class="row-4 even">
<td class="column-1"><strong>9:00 AM</strong></td><td class="column-2">Schedule and logistics announcements, team rebalancing </td>
</tr>
<tr class="row-5 odd">
<td class="column-1"><strong>12:00 PM</strong></td><td class="column-2">Lunch</td>
</tr>
<tr class="row-6 even">
<td class="column-1"><strong>4:30 PM</strong></td><td class="column-2">Optional progress briefing, more developing </td>
</tr>
<tr class="row-7 odd">
<td class="column-1"><strong>6:00 PM</strong></td><td class="column-2">Dinner</td>
</tr>
<tr class="row-8 even">
<td class="column-1"><strong>9:00 AM - 5:00 PM</strong></td><td class="column-2">Meet with Mentors and Subject Matter Experts</td>
</tr>
</tbody>
</table>
<p><table class="default"></p>
<p><thead></p>
<p><tr class="row-1 odd">
<th colspan="2" class="column-1"><div>Sunday, October 4</div></th>
</tr>
</thead></p>
<p><tbody class="row-hover"></p>
<p><tr class="row-2 even">
<td class="column-1"><strong>12:00 AM - 2:15 PM</strong></td><td class="column-2">Creating</td></p>
<p><tr class="row-3 even">
<td class="column-1"><strong>8:30 AM</strong></td><td class="column-2">Breakfast</td>
</tr></p>
<p><tr class="row-4 odd">
<td class="column-1"><strong>10:30 AM - 12:00 PM</strong></td><td class="column-2">Option to join with Sunday Service</td>
</tr></p>
<p><tr class="row-5 even">
<td class="column-1"><strong>12:00 PM</strong></td><td class="column-2">Lunch</td>
</tr></p>
<p><tr class="row-6 odd">
<td class="column-1"><strong>1:00 PM</strong></td><td class="column-2">Presentation Walk-thru & Judges Make Rounds</td>
</tr></p>
<p><tr class="row-7 even">
<td class="column-1"><strong>2:30 PM</strong></td><td class="column-2">Submission deadline; Team Presentations Begin</td>
</tr></p>
<p><tr class="row-8 odd">
<td class="column-1"><strong>4:30 PM </strong></td><td class="column-2">Judges adjourn</td>
</tr></p>
<p><tr class="row-9 even">
<td class="column-1"><strong>4:50 PM</strong></td><td class="column-2">Call-back</td>
</tr></p>
<p><tr class="row-10 odd">
<td class="column-1"><strong>5:00 PM</strong></td><td class="column-2">Awards Ceremony</td>
</tr></p>
<p><tr class="row-11 even">
<td class="column-1"><strong>5:30 PM</strong></td><td class="column-2">Closing</td>
</tr>
</tbody>
</table></p>
<div>
<div style="display:inline-block">
<a class="button small special" href="https://www.eventbrite.com/e/raleighs-global-hackathon-weekend-tickets-10210563069" target="_blank">
<i class="icon icon-chevron-sign-right" style="content: '\f138'"></i>
REGISTER NOW
</a>
</div>
<div style="display:inline-block">
<a href="https://twitter.com/code4thekingdom" target="_new" class="icon circle fa-twitter small">
<span class="label">Twitter</span>
</a>
<a href="https://www.facebook.com/pages/Code-for-the-Kingdom/345488018911337" target="_new" class="icon circle fa-facebook small">
<span class="label">Facebook</span>
</a>
</div>
</div>
</div>
</section>
<section class="wrapper container style4" id="indigitous.md">
<div>
<h2 id="indigitious">Indigitious</h2>
<hr>
<p>We will be using <a href="https://indigitous.org/c4tk-project/">Indigitous.org</a> as the place for projects, community, and collaboration. Indigitous.org serves the Global Hackathon by providing a global online community site that connects all Code for the Kingdom participants and projects. Indigitous is a movement passionate about connecting people to Jesus using digital strategies. In addition to adding your project to Indigitous.org, the platform will also enable you to: </p>
<p><br>
Search for projects you might be interested in
<br>
Learn about projects others are working on
<br>
Join a project
<br>
Recruit others to join your project
<br>
Communicate with your project members
<br>
Submit your project for judging</p>
<div>
<div style="display:inline-block">
<a class="button special-alternate" href="https://indigitous.org/c4tk-project/" target="_blank">
LEARN MORE ABOUT INDIGITOUS
</a>
</div>
</div>
</section>
<section class="wrapper container style4" id="challenges.md">
<div>
<h2 id="-i-class-icon-fa-flag-i-challenges"><i class="icon fa-flag"></i> Challenges</h2>
<p>Here are the global challenges to get you started. Please remember that more challenges may be presented between now and the first day of the Hackathon.</p>
<p>In case you are already interested or working on a project, don’t change course. Make sure you submit your project on <a href="https://indigitous.org">Indigitous.org</a>, and check the projects others are submitting there. Keep in mind that your project must be aligned with the spirit of the Code for the Kingdom. Please come prepared to pitch your project at the Hackathon so that you can recruit teams to work on them.</p>
<h1 id="global-challenges">Global Challenges</h1>
<div class="row">
<div class="3u">
<h3>Gospel centered lives with wearable technology</h3>
</div>
<div class="9u challenge-description">
<div class="expander intro">
<span class="toggle-switch"></span>
What if you could create wearable technology to advance the gospel and help people live a Gospel centered life?
</div>
<div class="content">
<p>Wearable technology is the new frontier for the digital lifestyle. Whether it’s an Apple Watch, FitBit or Misfit, these new devices make us aware of our surroundings in subtle ways that are embedded in our lives more deeply than ever before.</p>
<p>What would it look like to pioneer wearable technology from a Christian perspective?</p>
<p>What could we create?</p>
<p>Could we use wearables to keep women and children safe from predators?</p>
<p>Could we detect people’s moods and notify loved ones to reach out with prayer, God's Word, and care when they are feeling down?</p>
<p>Could we use wearables to better connect us to the sick and lonely in order to serve them?</p>
<p>And of course, how can wearables help us stay connected with our spouses, parents, children, friends, and others for the sake of prayer and sharing the Gospel?</p>
<p>How does the hope of God's kingdom shape our use of wearables, enabling us to better love others?</p>
<h1 id="hashtags">Hashtags</h1>
<p>#wearables</p>
<h1 id="additional-resources">Additional resources</h1>
<p>Ideas & Info for inspiration
<a href="http://www.forbes.com/sites/parmyolson/2014/06/19/wearable-tech-health-insurance/"><a href="http://www.forbes.com/sites/parmyolson/2014/06/19/wearable-tech-health-insurance/">http://www.forbes.com/sites/parmyolson/2014/06/19/wearable-tech-health-insurance/</a></a> - “...Quantified Self movement: that they’ll help us learn more about ourselves…”
<a href="http://www.economist.com/news/business/21646225-smartwatches-and-other-wearable-devices-become-mainstream-products-will-take-more"><a href="http://www.economist.com/news/business/21646225-smartwatches-and-other-wearable-devices-become-mainstream-products-will-take-more">http://www.economist.com/news/business/21646225-smartwatches-and-other-wearable-devices-become-mainstream-products-will-take-more</a></a>
<a href="http://www.washingtonpost.com/sf/national/2015/05/09/the-revolution-will-be-digitized/"><a href="http://www.washingtonpost.com/sf/national/2015/05/09/the-revolution-will-be-digitized/">http://www.washingtonpost.com/sf/national/2015/05/09/the-revolution-will-be-digitized/</a></a>
<a href="http://www.wearabletechworld.com/listaill.aspx"><a href="http://www.wearabletechworld.com/listaill.aspx">http://www.wearabletechworld.com/listaill.aspx</a></a></p>
<h3>Champion</h3>
<a href="http://leadnet.org">
<img src="assets/images/sponsors/leadnet-logo.jpg" alt="Leadership Network"/></a>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Protecting marriages and cultivating pure hearts through technology</h3>
</div>
<div class="9u challenge-description">
<div class="expander intro">
<span class="toggle-switch"></span>
How can technology promote purity and faithfulness in singleness and marriage?
</div>
<div class="content">
<p>The recent Ashley Madison hack--a website that connects people in order to have an affair--devastated many families with revelations of hitherto hidden infidelities. And grievously, even the names of leaders from the Christian community appeared in the leak. But we don’t have to look that far to find abuses of technology to promote sinful practice. Online pornography has been an increasingly dangerous threat to purity and faithfulness, making it easier than ever for people to commit adultery in their hearts.</p>
<p>According to <a href="http://www.roadtograce.net/current-porn-statistics/">some statistics</a>, many boys and girls are viewing porn before they reach their teens. 58% of over 2000 men surveyed believed viewing porn was wrong, but 56% admitted they tried to stop and could not. Porn has been a factor in 56% of divorce cases in the US and one study showed that porn users were 4 times more likely to visit a prostitute. Inevitably, demand for pornography <a href="http://www.covenanteyes.com/2011/09/07/the-connections-between-pornography-and-sex-trafficking/">fuels demand for sex trafficking</a>.</p>
<p>Instead of abusing technology to promote impurity, immorality and injustice, how can we leverage it to advance purity, faithfulness and righteousness like never before? </p>
<p>How can technology help people enjoy the exceedingly superior promise of seeing God, which He reserves for the <a href="https://www.biblegateway.com/passage/?search=Matthew+5&version=ESV">pure in heart</a>?</p>
<p>What tools can we invent to help people experience genuine connection and love instead of dulling the emptiness and pain of life with porn?</p>
<p>What tools can we invent to increase marital intimacy and contentment in singleness?</p>
<p>How can technology help marriages flourish as reflections of the love of Christ for his Church and our joyful devotion to Him?</p>
<h1 id="hashtags">Hashtags</h1>
<p>#purity</p>
<h3>Champion</h3>
<a href="http://leadnet.org">
<img src="assets/images/sponsors/leadnet-logo.jpg" alt="Leadership Network"/></a>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Global Evangelism in a Dangerous World</h3>
</div>
<div class="9u challenge-description">
<div class="expander intro">
<span class="toggle-switch"></span>
How can we ensure everyone on earth can safely access the Bible in their own language, even in the most remote and hostile corners of the world?
</div>
<div class="content">
<p>As Christians we are called to bring the hope of the Gospel to every person on the planet and as Paul demonstrated in 1 Corinthians 9:19-23, we ought to present the Gospel to people in light of their technological needs and preferences. </p>
<p>How can we meet them where they are at with the technologies, media, and format that are relevant to them? How do we serve people in lower-technology settings, using different social platforms, dwelling in different cultures, and living in hostile situations?</p>
<p>How can we ensure the Scriptures are available in every medium from mobile & web apps, to social media and messaging platforms, to basic SMS, etc.? What new technology can you invent to make Scripture Engagement go viral?</p>
<p>How can we help people groups across the countries find the Bible in their heart language, the language their mothers spoke to them in, the language they pray in, across different platforms? Could you a create social awareness campaign for the Bible (leveraging the Digital Bible Platform API) to share the Good News in your country on the relevant social media platforms?</p>
<p>How can technology help ethnic minority Christians living in hostile environments reach their non-Christian neighbors? How can it empower & encourage them to make disciples? How can it help protect minorities from persecution while creating safe places for Muslims to engage with the Gospel?</p>
<p>How can technology help missional communities share the best resources that help them share Jesus with others in their community? Could you create a slack integration that enables people to share and review resources?</p>
<h1 id="hashtags">Hashtags</h1>
<p>#GreatCommission #ScriptureEngagement #DBP #Bible #MinorityChristians #IslamicWorld</p>
<h1 id="additional-resources">Additional resources</h1>
<p><a href="http://www.christiantoday.com/article/christianity.spreading.in.iran.via.multimedia/11248.htm"><a href="http://www.christiantoday.com/article/christianity.spreading.in.iran.via.multimedia/11248.htm">http://www.christiantoday.com/article/christianity.spreading.in.iran.via.multimedia/11248.htm</a></a>
<a href="http://leadnet.org/technology-and-the-gospel-reaching-every-living-person-on-earth/"><a href="http://leadnet.org/technology-and-the-gospel-reaching-every-living-person-on-earth/">http://leadnet.org/technology-and-the-gospel-reaching-every-living-person-on-earth/</a></a></p>
<h3>Champion</h3>
<a href="http://www.faithcomesbyhearing.com/">
<img src="assets/images/sponsors/FBCH.png" alt="Faith Comes By Hearing"/></a>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Games with a Kingdom Purpose</h3>
</div>
<div class="9u challenge-description">
<div class="expander intro">
<span class="toggle-switch"></span>
Can we invent games that will help future generations seek, desire, delight in, and know God?
</div>
<div class="content">
<p>A startling European study conducted by OneHope in 2014 showed that most youth were completely disinterested in God: discussing God, learning about God, reading material about God--everything was out of the question. </p>
<p>In such environments, it is nearly impossible for even a contextualized version of the Gospel to take root. Instead, we need to work at the intersections of faith and culture--everything from business to science to movies to music to gaming--to demonstrate the significance of the Gospel for all of life. </p>
<p>Games are notoriously fun, addictive, lucrative, pre-occupying and inviting. Oftentimes, these experiences are designed to leverage human psychology to keep people in an immersive state of “flow”, where they have a continual sense of challenge and accomplishment. This high engagement often translates into profit.</p>
<p>How can we instead leverage the best that game technology and psychology has to offer in order to help people engage with the Gospel of Jesus Christ?</p>
<p>Could you create a game that immerses people in a virtual world (e.g. Minecraft) that leads them to question their own presuppositions about the real world?</p>
<p>Could you craft a plotline that points characters and players to the only real hope for saving themselves and the world?</p>
<p>Could you design a fun casual game that helps people feed the hungry, engage with Scripture or serve their neighbor?</p>
<p>How do games fit in God’s Kingdom and how can we help players young and old experience a foretaste of that future today?</p>
<h1 id="hashtags">Hashtags</h1>
<p>#games #children </p>
<h1 id="additional-resources">Additional resources</h1>
<p>What are people saying
<a href="http://gamechurch.com/game-measure-games-usefulness/"><a href="http://gamechurch.com/game-measure-games-usefulness/">http://gamechurch.com/game-measure-games-usefulness/</a></a>
<a href="http://thinkchristian.reframemedia.com/cults-and-daggers-can-you-fit-god-in-the-machine"><a href="http://thinkchristian.reframemedia.com/cults-and-daggers-can-you-fit-god-in-the-machine">http://thinkchristian.reframemedia.com/cults-and-daggers-can-you-fit-god-in-the-machine</a></a>
Possible Resources/ideas to inspire
<a href="https://ccgaming.com/about/"><a href="https://ccgaming.com/about/">https://ccgaming.com/about/</a></a>
<a href="http://www.christianitytoday.com/ct/2013/april-web-only/let-gamers-say-amen.html?start=3"><a href="http://www.christianitytoday.com/ct/2013/april-web-only/let-gamers-say-amen.html?start=3">http://www.christianitytoday.com/ct/2013/april-web-only/let-gamers-say-amen.html?start=3</a></a>
<a href="http://christgaming.com/"><a href="http://christgaming.com/">http://christgaming.com/</a></a></p>
<h3>Champion</h3>
<a href="">
<img src="assets/images/sponsors/one-hope.png" alt="One Hope"/></a>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Tell Transformative Stories with Google Cardboard</h3>
</div>
<div class="9u challenge-description">
<div class="expander intro">
<span class="toggle-switch"></span>
How can we leverage inexpensive virtual reality technologies like Google Cardboard to create immersive experiences that motivate people to help solve global challenges like the Clean Water crisis?
</div>
<div class="content">
<p>Most people do not realize that an estimated 663 million people lack access to safe drinking water. Or that about every 90 seconds, a child under 5 dies as a result of diarrhea caused by contaminated water, poor sanitation, and unsafe hygiene practices. Let’s change that. </p>
<p>Your challenge is to bring awareness to the global water crisis through an immersive virtual reality experience. Leveraging Google Cardboard create a mobile experience that informs the public of the challenges associated with contaminated water and connect the public with opportunities to be part of the solution.</p>
<p>Check back in the weeks ahead for additional resources pertaining to this challenge.</p>
<p>Learn more about the global water crisis (<a href="http://www.worldvision.org/our-impact/clean-water"><a href="http://www.worldvision.org/our-impact/clean-water">http://www.worldvision.org/our-impact/clean-water</a></a>).
Learn more about Google Cardboard (<a href="https://www.google.com/get/cardboard/"><a href="https://www.google.com/get/cardboard/">https://www.google.com/get/cardboard/</a></a>).</p>
<h1 id="hashtags">Hashtags</h1>
<p>#GoogleCardboard #VirtualReality #WorldVision #cleanwater</p>
<h1 id="additional-resources">Additional resources</h1>
<p>Global Water Crisis</p>
<p>Examples of World Vision’s Response
Impact On Safe Drinking Water - <a href="http://www.worldvision.org/our-impact/clean-water"><a href="http://www.worldvision.org/our-impact/clean-water">http://www.worldvision.org/our-impact/clean-water</a></a>
Press Kit on Water, Sanitation and Hygiene - <a href="http://www.worldvision.org/about-us/media-center/water-sanitation-and-hygiene-wash-press-kit"><a href="http://www.worldvision.org/about-us/media-center/water-sanitation-and-hygiene-wash-press-kit">http://www.worldvision.org/about-us/media-center/water-sanitation-and-hygiene-wash-press-kit</a></a>
Fact Sheet - <a href="http://www.worldvision.org/about-us/media-center/water-sanitation-and-hygiene-wash-press-kit"><a href="http://www.worldvision.org/about-us/media-center/water-sanitation-and-hygiene-wash-press-kit">http://www.worldvision.org/about-us/media-center/water-sanitation-and-hygiene-wash-press-kit</a></a></p>
<p>Videos
11 Year Old Tyler Brunst raises $16K for clean water - <a href="https://youtu.be/w7oekO4AZ1s"><a href="https://youtu.be/w7oekO4AZ1s">https://youtu.be/w7oekO4AZ1s</a></a>
World Vision, P&G and the Clinton Foundation - <a href="https://youtu.be/4gyUrHzK3do"><a href="https://youtu.be/4gyUrHzK3do">https://youtu.be/4gyUrHzK3do</a></a>
WASH in schools - <a href="https://vimeo.com/129741499"><a href="https://vimeo.com/129741499">https://vimeo.com/129741499</a></a>
Water Empowers Women - <a href="https://vimeo.com/125941887"><a href="https://vimeo.com/125941887">https://vimeo.com/125941887</a></a>
The Zambia Project (Sequel) - <a href="https://vimeo.com/123043924"><a href="https://vimeo.com/123043924">https://vimeo.com/123043924</a></a></p>
<p>Opportunities to Partner with World Vision</p>
<p>Run/Walk for clean water - <a href="http://www.worldvision.org/get-involved/run-for-water"><a href="http://www.worldvision.org/get-involved/run-for-water">http://www.worldvision.org/get-involved/run-for-water</a></a>
Start Your Own Fundraiser - <a href="http://mycause.worldvision.org"><a href="http://mycause.worldvision.org">http://mycause.worldvision.org</a></a>
Give a donation - <a href="http://donate.worldvision.org/ways-to-give/by-category/clean-water"><a href="http://donate.worldvision.org/ways-to-give/by-category/clean-water">http://donate.worldvision.org/ways-to-give/by-category/clean-water</a></a></p>
<p>Background Information</p>
<p>United Nations, Global Issues, Water - <a href="http://www.un.org/en/globalissues/water/"><a href="http://www.un.org/en/globalissues/water/">http://www.un.org/en/globalissues/water/</a></a>
Un-Water, United Nations Inter-Agency - <a href="http://www.unwater.org/statistics/en/"><a href="http://www.unwater.org/statistics/en/">http://www.unwater.org/statistics/en/</a></a>
Troubled Water, How Clean Water Differs for Families Across The World - <a href="http://mashable.com/2015/08/23/water-scarcity-family-portraits/#grH1kHTqkkks"><a href="http://mashable.com/2015/08/23/water-scarcity-family-portraits/#grH1kHTqkkks">http://mashable.com/2015/08/23/water-scarcity-family-portraits/#grH1kHTqkkks</a></a>
AidWorks - <a href="http://www.worldvision.org/sites/default/files/InterAction2014_AidWorks_WASH.pdf"><a href="http://www.worldvision.org/sites/default/files/InterAction2014_AidWorks_WASH.pdf">http://www.worldvision.org/sites/default/files/InterAction2014_AidWorks_WASH.pdf</a></a>
World Water Day 2015 Learning Pack, Cap-Net - <a href="http://www.cap-net.org/world-water-day-2015-learning-pack"><a href="http://www.cap-net.org/world-water-day-2015-learning-pack">http://www.cap-net.org/world-water-day-2015-learning-pack</a></a>
One Water - <a href="http://www.onewater.org/"><a href="http://www.onewater.org/">http://www.onewater.org/</a></a></p>
<p>Google Cardboard</p>
<p>Designing for Google Cardboard - <a href="http://www.google.com/design/spec-vr/designing-for-google-cardboard/a-new-dimension.html"><a href="http://www.google.com/design/spec-vr/designing-for-google-cardboard/a-new-dimension.html">http://www.google.com/design/spec-vr/designing-for-google-cardboard/a-new-dimension.html</a></a>
Developer Overview - <a href="https://developers.google.com/cardboard/overview"><a href="https://developers.google.com/cardboard/overview">https://developers.google.com/cardboard/overview</a></a></p>
<h3>Champion</h3>
<a href="http://www.worldvision.org">
<img src="assets/images/sponsors/world_vision.jpg" alt="World Vision"/></a>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Activating a culture of Generosity</h3>
</div>
<div class="9u challenge-description">
<div class="expander intro">
<span class="toggle-switch"></span>
How can we use technology to enable and inspire people to be radically generous?
</div>
<div class="content">
<p>Jesus Christ said, “It is more blessed to give than to receive” <a href="https://www.biblegateway.com/passage/?search=acts+20%3A35&version=ESV">(Acts 20:35)</a>. Yet many times we find it hard to believe. Our view of giving is often limited to money such that we ignore what God truly desires--our hearts and everything that flows from it as described in <a href="https://www.biblegateway.com/passage/?search=isa+58%3A6-12&version=ESV">Isaiah 58:6-12</a>. God wants more than religious actions, he wants our fasting to result in freedom for and radical generosity towards the weak, the poor and the oppressed.</p>
<p>How can technology help people experience the joy of giving above and beyond their money? How can it unleash people to radical acts of generosity that spurs others on as well? How can you make generosity go viral?</p>
<p>With so many generosity apps focused on processing online giving, what new technology can you create to foster a more holistic and lasting generosity? Could you change the paradigm of online giving? </p>
<p>Can your creations inspire children to be generous with thoughts, time and resources? What if you created a simulation game to help children understand the consequences of stinginess in contrast to the blessings of generosity for their family, community and society?</p>
<p>Could you create an app or micro-social network that leverages social effects to motivate you and your friends to compete in showing generosity and kindness towards others?</p>
<h1 id="hashtags">Hashtags</h1>
<p>#generosity</p>
<h1 id="additional-resources">Additional resources</h1>
<p>Articles of Interest
<a href="https://www.gci.org/church/ministry/poverty"><a href="https://www.gci.org/church/ministry/poverty">https://www.gci.org/church/ministry/poverty</a></a>
<a href="http://www.summitrdu.com/all-in/generosity-ladder/"><a href="http://www.summitrdu.com/all-in/generosity-ladder/">http://www.summitrdu.com/all-in/generosity-ladder/</a></a>
<a href="http://www.lifeway.com/churchleaders/2015/05/28/plates-clicks-and-generosity-in-the-church/"><a href="http://www.lifeway.com/churchleaders/2015/05/28/plates-clicks-and-generosity-in-the-church/">http://www.lifeway.com/churchleaders/2015/05/28/plates-clicks-and-generosity-in-the-church/</a></a>
<a href="https://www.smartcrowdz.com/cultivating-generosity-using-technology-church/"><a href="https://www.smartcrowdz.com/cultivating-generosity-using-technology-church/">https://www.smartcrowdz.com/cultivating-generosity-using-technology-church/</a></a>
<a href="http://aspengroup.com/blog/7-patterns-churches-need-to-change-to-increase-millennial-generosity"><a href="http://aspengroup.com/blog/7-patterns-churches-need-to-change-to-increase-millennial-generosity">http://aspengroup.com/blog/7-patterns-churches-need-to-change-to-increase-millennial-generosity</a></a>
A pastor’s guide to accelerating generosity in churches</p>
<h3>Champion</h3>
<a href="http://leadnet.org">
<img src="assets/images/sponsors/leadnet-logo.jpg" alt="Leadership Network"/></a>
</div>
</div>
</div>
<h1 id="local-challenges">Local Challenges</h1>
<div>
<div style="display:inline-block">
<a class="button special-alternate" href="https://indigitous.org/c4tk-project/raleigh-nc/" target="_blank">
SEE MORE LOCAL CHALLENGES AND PROJECTS ON INDIGITOUS
</a>
</div>
<p><br/></p>
<div>
<div style="display:inline-block">
<a class="button small special" href="https://www.eventbrite.com/e/raleighs-global-hackathon-weekend-tickets-10210563069" target="_blank">
<i class="icon icon-chevron-sign-right" style="content: '\f138'"></i>
REGISTER NOW
</a>
</div>
<div style="display:inline-block">
<a href="https://twitter.com/code4thekingdom" target="_new" class="icon circle fa-twitter small">
<span class="label">Twitter</span>
</a>
<a href="https://www.facebook.com/pages/Code-for-the-Kingdom/345488018911337" target="_new" class="icon circle fa-facebook small">
<span class="label">Facebook</span>
</a>
</div>
</div>
</div>
</section>
<section class="wrapper container style4" id="prizes.md">
<div>
<h2 id="-i-class-icon-fa-trophy-i-awards"><i class="icon fa-trophy"></i> Awards</h2>
<p>Participants will compete for non-cash Recognition Awards in three categories:</p>
<ul>
<li><i class="icon fa-trophy"></i> Best Overall started at the hackathon</li>