-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathaustin2014.html
2142 lines (1582 loc) · 91.7 KB
/
austin2014.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>Austin 2014 | 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="#winners.md">Winners</a>
</li>
<li>
<a href="#schedule.md">Schedule</a>
</li>
<li>
<a href="#prayer.md">prayer</a>
</li>
<li>
<a href="#challenges.md">Challenge</a>
</li>
<li>
<a href="#prizes.md">Prizes</a>
</li>
<li>
<a href="#mentors.md">Mentors</a>
</li>
<li>
<a href="#organizers.md">Organizers</a>
</li>
<li>
<a href="#apis.md">APIs</a>
</li>
<li>
<a href="#sponsors.md">Sponsors</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="http://c4tkaustin2014.eventbrite.com" 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>Create for the Kingdom<br/> Austin 2014</h2>
</header>
<img style="max-width:100%" src="assets/images/banners/C4TKAUSTIN.png"/>
<p>Tangoe Inc. 2420 Ridgepoint Drive, Austin, TX 78754</p>
<p>September 12th-14, 2014</p>
<p>A Leadership Network Hackathon</p>
<footer>
<ul class="buttons">
<li><a href="#about.md" class="button fit scrolly">Tell Me More</a></li>
<li><div>
<div style="display:inline-block">
<a class="button small special" href="http://c4tkaustin2014.eventbrite.com" 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>
</li>
</ul>
</footer>
</div>
</section>
<div class="container" role="main">
<section class="wrapper container style4" id="about.md">
<div>
<h2 id="-i-class-icon-fa-book-i-about"><i class="icon fa-book"></i> About</h2>
<hr>
<p><img src="assets/images/child.png" style="float:right"/>
Create for the Kingdom is a special Code for the Kingdom event in Austin, TX. It expands the weekend to include Filmmakers and Game Developers along with the traditional Hackathon-ers. During this weekend there will be a Game Jam, Film Challenge and Hackathon, each with prizes (check them out below). We encourage collaboration between all of the disciplines for the purposes of building a long-term ecosystem where global issues are tackled from a Creative Christian perspective, while welcoming the participations of individuals from all worldviews and faiths.</p>
<p>“How can all Creatives help alleviate and eradicate injustice, teach God’s unconditional love and build a healthier and stronger society?” That is the question we will answer at Create for the Kingdom.</p>
<p>Join us this September, to foster visionary creatives to create new mediums to transform lives through a holistic Christian approach that combats social injustice, creates a culture of generosity, facilitates spiritual justice and unleashes the fullest capacity of each individual.</p>
<p>The weekend event will focus the passion, purpose, and creativity of our entrepreneurial and creative community, connecting incredible innovators with organizations, and initiatives that need their talent.</p>
<p>Join us at Austin,TX as we battle the challenges confronting our communities, our society, our families, and our spiritual lives.</p>
<div class="video-container"><iframe width="560" height="315" src="//www.youtube.com/embed/c3-wNBgVmnQ?rel=0" frameborder="0" allowfullscreen></iframe></div>
<p><br></p>
<div>
<div style="display:inline-block">
<a class="button small special" href="http://c4tkaustin2014.eventbrite.com" 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>
<p><hr/></p>
<h2 id="event-theme">Event Theme</h2>
<div class="smaller-paragraphs">
<div class="row">
<div class="6u">
<section>
<header>
<h3>Social Justice</h3>
</header>
<p>How will you knock off a little corner of darkness in the world? What creative works can you make that will alleviate the social maladies that oppress so many? Work with non-profits to help rescue victims of human trafficking, combat poverty, lift the fatherless, release the oppressed, heal the sick and feed the hungry. Use your skills to create a brighter world and lift up your community.
</div>
<div class="6u">
<section>
<header>
<h3>Spiritual Justice</h3>
</header>
<p>Every person has the right to receive God’s Word and discover His unconditional love. Join creative and coding forces to develop films, games and technologies to reduce spiritual poverty. Create ways for children to learn the Word of God, bury it in their hearts and share it with their friends. Create works for prayer, evangelism, mentorship and other innovative means to spiritual formation. .
</section>
</div>
</div>
<div class="row">
<div class="6u">
<section><br> <header>
<h3>Help Create a culture of Generosity</h3>
</header>
<p>The Follower of Christ is called to a life of generous sacrifice extending beyond simple financial generosity, to include generosity of our mind, time and possessions. If the Kingdom of God is to truly to be advanced by us, we need to answer the call of radical generosity. It is only when we live out this radical generosity that the Church will be unleashed in thoughtfulness, action, and resources to advance the Kingdom of God in the world. Create technology, films, and games to encourage individuals and families to become generous in every aspect of their lives.
</section>
</div>
<div class="6u">
<section><br> <header>
<h3>Engaging and Releasing Our best</h3>
</header>
<p>Every person has something unique to contribute to the community, society, and church. Yet, most of us do not understand how we can leverage our skills and ideas to improve the lives of others.
What if we could discover how to use our unique gifts for God’s Kingdom? Use technology, films, or games to mobilize and equip every member of your community, church and family. Empower them to release their skills as well as to accelerate great ideas and initiatives that could transform the lives of the child or adult down your street.
</section>
</div>
</div>
</div>
<p>Register now to join us in Austin, TX as we work to transform lives. Work closely and build new relationships with some of the most effective global ministries, technologists, entrepreneurs, investors, hi-tech accelerators, church leaders and creatives from every discipline.
</p>
<div>
<div style="display:inline-block">
<a class="button small special" href="http://c4tkaustin2014.eventbrite.com" 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="winners.md">
<div>
<h2 id="-i-class-icon-fa-flag-i-winners"><i class="icon fa-flag"></i> WINNERS</h2>
<p>Here are the winners.</p>
<div class="row">
<div class="3u">
<h3>People's Choice</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
Art of Neighboring
</div>
<div class="content">
<p>A short film bringing awareness of the need to better know, love, and serve our neighbors (meeting the challenge by Christ Together Greater Austin). </p>
<p><a href="http://youtu.be/c7ws0LMRvUM"><a href="http://youtu.be/c7ws0LMRvUM">http://youtu.be/c7ws0LMRvUM</a></a></p>
<p>Team Members: Troy Wong, Andrea Christian, Kelli Royse, and Scott Yamamura</p>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Best of New Code</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
10 Minute Give
</div>
<div class="content">
<p>Movement providing millennials with quick and guided pathways for discovering their skills and abilities and how best to apply them for kingdom, community, and world impact in 10 minutes per week.</p>
<p><a href="http://www.10minutegive.com/"><a href="http://www.10minutegive.com/">http://www.10minutegive.com/</a></a></p>
<p>Team Members: Aaron Leong, Frank Leong, Daniel Hagen,Joel Schopp, Tony Mai, Eddy Silva, Dan Fey,Hanna Kahl, Jeffrey Sylvester, and Jeff Dyck</p>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Runner-up of New Code</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
FosteredCare
</div>
<div class="content">
<p>Connecting parents and caregivers so families can thrive.</p>
<p><a href="http://fosteredcare.schober.org/"><a href="http://fosteredcare.schober.org/">http://fosteredcare.schober.org/</a></a></p>
<p>Team Members: Jeff Griswold, Doug Phillips, Sherry Chau, Tim Davidson, David French, Eddie McHam, Daniel Sargeant, Joe Quigley, Jon Schober, Joseph Simmons, and Matthew Watts</p>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Best of Existing Code</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
GospelFunder
</div>
<div class="content">
<p>A crowd-advocacy platform for helping Christian projects build momentum, advocacy and funding</p>
<p>Team Members: Seth Davis, Ricki Frank, and Mark S</p>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Runner-up of Existing Code</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
Evant
</div>
<div class="content">
<p>Event gamification and analytics platform involving iOS & Android app.
Helps event coordinators build unique event APIs.</p>
<p>Team Members: Calvin Bench, and Michael Crowther</p>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Best of New Films</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
Art of Neighboring
</div>
<div class="content">
<p>A short film bringing awareness of the need to better know, love, and serve our neighbors (meeting the challenge by Christ Together Greater Austin). </p>
<p><a href="http://youtu.be/c7ws0LMRvUM"><a href="http://youtu.be/c7ws0LMRvUM">http://youtu.be/c7ws0LMRvUM</a></a></p>
<p>Team Members: Troy Wong, Andrea Christian, Kelli Royse, and Scott Yamamura</p>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Runner-up of New Film</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
Grace Has a Home
</div>
<div class="content">
<p>A purely visual retelling of the prodigal son created as a Gospel resource for the unreached deaf community.</p>
<p>Team Members: Hawk McCrary, Adrian Patenaude, Lauren Quigley, and Brandon Reich</p>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Best of Existing Film</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
Prayer Labyrinth short film
</div>
<div class="content">
<p>A multi-sensory, interactive, prayer experience</p>
<p><a href="http://vimeo.com/106111531"><a href="http://vimeo.com/106111531">http://vimeo.com/106111531</a></a></p>
<p>Team Members: Vince Marotte, David Atkins, RC Johnson,Luke Zimbelman, Bret Staudt Willet, Justin Girdler, and Sarah Al-Emoush</p>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Best of New Games</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
Virtual Prayer Walk
</div>
<div class="content">
<p>3D VR Prayer Walk</p>
<p>Team Members: Blake Freeburg,Jeff Author, Dan Bryant, Marcell Himawan, and David Schultz</p>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Runner-up of New Code</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
SpitFire
</div>
<div class="content">
<p>A Game to learn abusive communication. How to recognize, counter and avoid.</p>
<p>Team Members: Royce Heflin and Caleb Smith</p>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Best Use of Digital Bible Platform</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
Our Daily Bread*
</div>
<div class="content">
<p>Pushing the Word to your fingertips every day, and inviting you to respond to it in community.</p>
<p>Team Members: Andrew Olson</p>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Best Use of Digital Bible Platform</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
Memoryize!
</div>
<div class="content">
<p>Web Application using the Digital Bible Platform API to aid in scripture memory</p>
<p><a href="http://memoryize.herokuapp.com/"><a href="http://memoryize.herokuapp.com/">http://memoryize.herokuapp.com/</a></a></p>
<p>Team Members: Teri Muhr and Nola Stowe </p>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Seat at Tech Ranch’s Venture Forth 8 week boot camp for startup entrepreneurs</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
Jeff Dyck
</div>
<div class="content">
<p>Jeff led the 10 minute give team. </p>
<p><a href="https://www.linkedin.com/in/dyckjd"><a href="https://www.linkedin.com/in/dyckjd">https://www.linkedin.com/in/dyckjd</a></a></p>
</div>
</div>
</div>
<p><br/></p>
<div>
<div style="display:inline-block">
<a class="button small special" href="http://c4tkaustin2014.eventbrite.com" 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 Sep 12th, 2014</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>
<p style="text-align: justify;">This venue will remain open around the clock. Participants are encouraged to utilize the facility and take advantage of the meals and healthy hacker activities day and night, if desired.</p>
<p><table class="default"></p>
<p><thead></p>
<p><tr class="row-1 odd">
<th colspan="2" class="column-1"><div>Saturday Sep 13th, 2014</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 - 11:59 PM</strong></td><td class="column-2">Creating</td>
</tr></p>
<p><tr class="row-3 odd">
<td class="column-1"><strong>8:30 AM</strong></td><td class="column-2">Breakfast</td>
</tr></p>
<p><tr class="row-4 even">
<td class="column-1"><strong>12:00 PM</strong></td><td class="column-2">Lunch</td>
</tr></p>
<p><tr class="row-5 odd">
<td class="column-1"><strong>6:00 PM</strong></td><td class="column-2">Dinner</td>
</tr></p>
<p><tr class="row-6 even">
<td class="column-1"><strong>9:00 AM - 5:00 PM</strong></td><td class="column-2">Meet the Mentors</td>
</tr>
</tbody>
</table></p>
<p style="text-align: justify;">Meet with Mentors is a great opportunity to connect with industry experts who can guide you and your concepts. The organizers will help you connect with mentors of your choice on Friday/Saturday.</p>
<p style="text-align: justify;">This venue will remain open around the clock. Participants are encouraged to utilize the facility and take advantage of the meals and healthy hacker activities day and night, if desired.</p>
<p><table class="default"></p>
<p><thead></p>
<p><tr class="row-1 odd">
<th colspan="2" class="column-1"><div>Sunday Sep 14th, 2014</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 - 11:10 AM</strong></td><td class="column-2">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">Team Presentations Begin (Films: 5 mins. Tech and Games: 3 min max presentation, 2 min max Q&A)</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="http://c4tkaustin2014.eventbrite.com" 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="prayer.md">
<div>
<h2 id="-i-class-icon-fa-male-i-47-hour-prayer-room"><i class="icon fa-male"></i> 47 HOUR PRAYER ROOM</h2>
<p>Our skills are not sufficient to tackle the challenges our society faces. We know the first step must be prayer. As David took down Goliath with the power of God, so we need this same guidance. Thus, for every hour of this event we're asking people from across the Austin area, and the participants to take some time out, and join us in prayer in a 47 hour prayer room onsite at the event venue.<br><br/></p>
<div>
<div style="display:inline-block">
<a class="button special-alternate" href="http://bit.ly/CFTKprayer" target="_blank">
SIGN-UP TO PRAY
</a>
</div>
<p></div></p>
</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 challenges to get you started. Please remember that more challenges may be presented between now and the first day of the event. If you would like to discuss with potential team members, or even with the champions of these challenges, please join and leverage our Google Plus community.</p>
<p>In case you are already interested or working on a project, don’t change course. But please keep in mind that your project must be aligned with the Transforming Lives Theme of the event. Please come prepared to pitch your project at the event so that you can recruit teams to work on them.</p>
<p>If you have an idea, whether it is in response to one of the challenges below, or your own Transforming Lives project, submit it on our "Challenge Post" project page. On our project page you can display your ideas, connect with others and form teams, and get other's feedback on your solutions. </p>
<p> <a class="button special-alternate" href="http://createatx.challengepost.com/" target="_blank">
<i class="icon" style="content: '\f138'"></i>
SUBMIT YOUR PROJECT IDEA
</a></p>
<div class="row">
<div class="3u">
<h3>Know and Love your neighbor</h3>
</div>
<div class="9u challenge-description">
<div class="expander intro">
<span class="toggle-switch"></span>
How can we leverage technology, films, or games to cultivate and strengthen one of society's most foundational relationships - neighbors, and ultimately build a healthier and stronger community?
</div>
<div class="content">
<p>Jesus commands us to love our neighbor as ourselves. But how many of your actual neighbors do you know? How can we expect our communities to flourish when we don’t even know the people living within a few hundred yards from us? How can you love someone if you don’t understand who they are, what they value, their strengths, and the challenges they face? It is easy to be unaware of the needs of others, when we don’t know them. But what a difference could we make in our community if we were intentional at loving our actual neighbors. How much safer, how much healthier would the environment in which children grow be if neighbors knew and loved each other?</p>
<p>How can geo-mapping technology be used in apps/sites to encourage, organize, and promote neighborhood activities led by Christians in the community, fostering a neighborhood movement? How can such technology make us aware of our neighbors’ needs and mobilize our neighborhood to meet those needs? How can technology help us know and love each other?</p>
<p>How can films change the paradigm of what being a neighbor means, inspiring us to know and love our neighbor?</p>
<p>How can games teach children and young people why being a good neighbor is important, how to go from tolerance to grace, the skills for conflict resolution, the value of granting and receiving forgiveness, and how to live a life committed to making things better? <div class="video-container"><iframe width="560" height="315" src="//www.youtube.com/embed/dWqIcZIL6dA?rel=0" frameborder="0" allowfullscreen></iframe></div></p>
<h3>Champions</h3>
<a href="http://www.christtogethergreateraustin.com/">
<img src="assets/images/sponsors/christ_together.jpg" alt="Christ Together Greater Austin"/></a>
</div>
</div>
</div>