forked from c4tk/c4tk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbangalore2014.html
1520 lines (1243 loc) · 60.8 KB
/
bangalore2014.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 hackathon" />
<meta name="keywords" content="" />
<title>Bangalore 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/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/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="">Event 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="#challenges.md">Challenges</a>
</li>
<li>
<a href="#prizes.md">Prizes</a>
</li>
<li>
<a href="#apis.md">APIs</a>
</li>
<li>
<a href="#mentors.md">Mentors</a>
</li>
<li>
<a href="#organizers.md">Organizers</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>
<li>
<a href="bangalore2014.html">Bangalore 2014</a>
</li>
<li>
<a href="austin2013.html">Austin 2013</a>
</li>
<li>
<a href="austin2014.html">Austin 2014</a>
</li>
<li>
<a href="bayarea2013.html">Bay Area 2013</a>
</li>
<li>
<a href="bayarea2014.html">Bay Area 2014</a>
</li>
<li>
<a href="dfw2015.html">Dallas/Fort Worth 2015</a>
</li>
<li>
<a href="global2015.html">Global Event 2015</a>
</li>
<li>
<a href="orlando2015.html">Orlando 2015</a>
</li>
<li>
<a href="seattle2014.html">Seattle 2014</a>
</li>
</ul>
</li>
<li>
<a href="contact.html">Contact Us</a>
</li>
</ul>
</li>
<li><a href="http://c4tk.doattend.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>Code for the Kingdom<br/> Bangalore 2014</h2>
</header>
<p>Oct 31 - Nov 2, 2014</p>
<p>Chancery Pavilion, Bangalore</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://c4tk.doattend.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/c4tkIndia" 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"/>
Are you an entrepreneur, technologist or innovator? Have you ever wanted to impact your cities, circles and communities and solve problems that you see around you? If yes, don’t miss out on India’s first mission-based weekend Hackathon that kicks off on Oct 31, 2014!</p>
<p>Code for the Kingdom is a weekend Hackathon series and ongoing ecosystem where global issues are tackled from a Christian perspective. The movement hosts weekend gatherings in different cities where developers, designers, ideators and others collaborate to advance common good and serve God’s Kingdom.</p>
<p>Code for the Kingdom hosted its first-of-a-kind mission based weekend Hackathon in San Francisco last year. In the span of a year, the weekend event gathered momentum and members with weekend gatherings across Austin, Seattle and the San Francisco Bay Area. Now, for the first time, Code for the Kingdom is expanding beyond American shores and what better destination to connect technologists than Bangalore, India?</p>
<p>Join the top 100 leaders in the country as they collaborate with innovative non-profits and churches to write code and create technology to help release the oppressed, teach God’s word, heal the sick, feed the hungry, clothe the naked and support the church and the body of Christ. </p>
<p>This 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.
Join us in Bangalore, India 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/qj3bxB4UJS0?rel=0" frameborder="0" allowfullscreen></iframe></div>
<p><br></p>
<div>
<div style="display:inline-block">
<a class="button small special" href="http://c4tk.doattend.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/c4tkIndia" 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 / Spiritual Formation</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 technologies to reduce spiritual poverty. Create technology to help believers transform their characters to be more like Christ, and their actions to conform to God’s will. Create works for prayer, evangelism, mentorship and other innovative means to spiritual formation.</p>
</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 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 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 Bangalore, India 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://c4tk.doattend.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/c4tkIndia" 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>
Bible Blitz
</div>
<div class="content">
<p>A multisensory app that makes learning Bible verses fun.</p>
<p>Team Members: Evans Thomas, Rahul Jethwani, Rachel Stuckey, Joanne George, Vinay George, Philvee Varughese, Derick Mathew</p>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Best Overall App or Site started at the event</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
Biblang
</div>
<div class="content">
<p>Learn a new language with bible</p>
<p><a href="https://murmuring-sea-8883.herokuapp.com"><a href="https://murmuring-sea-8883.herokuapp.com">https://murmuring-sea-8883.herokuapp.com</a></a> - please use chrome to use this website</p>
<p>Team Members: Salil Panikkaveettil, Suvodhoy Sinha, Akash Sinha</p>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Runner-up Overall App or Site started at the event</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
Bible Blitz
</div>
<div class="content">
<p>A multisensory app that makes learning Bible verses fun.</p>
<p>Team Members: Evans Thomas, Rahul Jethwani, Rachel Stuckey, Joanne George, Vinay George, Philvee Varughese, Derick Mathew</p>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Best Overall App or Site started prior to the event</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
Jesus Gives All
</div>
<div class="content">
<p>Start a campaign to help a friend in need in Jesus name. A Social crowdfunding technology platform for individuals, NGOs, Christian organizations, churches and more.</p>
<p><a href="http://www.jesusgivesall.com/"><a href="http://www.jesusgivesall.com/">http://www.jesusgivesall.com/</a></a></p>
<p>Team Members: John Jim, Rachel Jim, Vijetha Jillella, Mrs Usha,Suresh Babu, Joseph Vardhan</p>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Runner-up Overall App or Site started prior to the event</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
Try Forgiveness
</div>
<div class="content">
<p>Try forgiveness and reclaim your freedom.</p>
<p><a href="http://www.tryforgiving.com/#"><a href="http://www.tryforgiving.com/#">http://www.tryforgiving.com/#</a></a></p>
<p>Team Members: Melvin Immanuel, Ashish Jadhav</p>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Winner of the One Hope official challenge</h3>
</div>
<div class="9u winner-description">
<div class="expander intro">
<span class="toggle-switch"></span>
Will You Be My Voice?
</div>
<div class="content">
<p>A mobile app designed to help stop violence against women and children, by allowing a woman to send a silent distress signal using her phone to people in her group of family and friends, and others she might chose to designate, and activate them in real-time to stop an act of violence.</p>
<p>“Speak up for those who cannot speak for themselves; ensure justice for those being crushed” -Proverbs 31:8</p>
<p>Team members: Paul Victor Sr, Shirish Hirekodi, Prithviraj Galinkala, Immanuel David Raj, M Raju, Sabir Ali, Vijay M, Roger R Amanna</p>
</div>
</div>
</div>
<p><br/></p>
<div>
<div style="display:inline-block">
<a class="button small special" href="http://c4tk.doattend.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://plus.google.com/u/0/communities/112803271040533425213" target="_new" class="icon circle fa-google-plus small">
<span class="label">Google Plus</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 Oct 31st, 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 - 7:30 PM</strong></td><td class="column-2">Welcome & Format Review</td>
</tr>
<tr class="row-4">
<td class="column-1"><strong>7:30 PM - 8:00 PM</strong></td><td class="column-2">Introductions & Opening Keynote </td>
</tr>
<tr class="row-5">
<td class="column-1"><strong>8:00 PM - 8:20 PM</strong></td><td class="column-2">Official Challenges</td>
</tr>
<tr class="row-6">
<td class="column-1"><strong>8:20 PM - 9:00 PM</strong></td><td class="column-2">Open Floor - Pitch your own Project</td>
</tr>
<tr class="row-7">
<td class="column-1"><strong>9:00 PM - 10:00 PM</strong></td><td class="column-2">Dinner & Networking</td>
</tr>
<tr class="row-11">
<td class="column-1"><strong>10:00 PM - 11:59 PM</strong></td><td class="column-2">Team Formation/Coding Kickoff!</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 Nov 1st, 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">Code like Crazy</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:30 PM</strong></td><td class="column-2">Lunch</td>
</tr></p>
<p><tr class="row-5 odd">
<td class="column-1"><strong>8:00 PM</strong></td><td class="column-2">Poolside Dinner</td>
</tr></p>
<p><tr class="row-6 even">
<td class="column-1"><strong>10:00 AM - 6:00 PM</strong></td><td class="column-2">Meet the Mentors/Breakout Sessions</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 Nov 2nd, 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:00 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:00 AM - 11:00 AM</strong></td><td class="column-2">Sunday Service</td>
</tr></p>
<p><tr class="row-5 even">
<td class="column-1"><strong>12:30 AM - 1:30 AM PM</strong></td><td class="column-2">Lunch</td>
</tr></p>
<p><tr class="row-6 odd">
<td class="column-1"><strong>2:00 PM</strong></td><td class="column-2">Presentation Walk-through</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</td>
</tr></p>
<p><tr class="row-8 odd">
<td class="column-1"><strong>4:00 PM </strong></td><td class="column-2">Judges Adjourn</td>
</tr></p>
<p><tr class="row-9 even">
<td class="column-1"><strong>4:15 PM</strong></td><td class="column-2">Awards Ceremony</td>
</tr></p>
<p><tr class="row-10 odd">
<td class="column-1"><strong>4:30 PM</strong></td><td class="column-2">Networking & Closing</td>
</tr></p>
<p><tr class="row-11 even">
<td class="column-1"><strong>5:00 PM</strong></td><td class="column-2">Doors Closed</td>
</tr>
</tbody>
</table></p>
<div>
<div style="display:inline-block">
<a class="button small special" href="http://c4tk.doattend.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/c4tkIndia" target="_new" class="icon circle fa-facebook small">
<span class="label">Facebook</span>
</a>
</div>
</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 challenges to get you started. Please remember that more challenges may be presented on the first day of the Hackathon. If you would like to discuss with potential team members, or even with the champions of these challenges, please join and leverage the Code for the Kingdom India Facebook page <a href="https://www.facebook.com/c4tkIndia">https://www.facebook.com/c4tkIndia</a>.</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 spirit of the Hackathon. Please come prepared to pitch your project at the Hackathon so that you can recruit teams to work on them.</p>
<div class="row">
<div class="3u">
<h3>Stop violence against women and girls</h3>
</div>
<div class="9u challenge-description">
<div class="expander intro">
<span class="toggle-switch"></span>
How can technology help women and girls be safe and change the culture of violence?
</div>
<div class="content">
<p>According to UNICEF, 51% of men in India believe wife beating can be justified. And, incredibly enough 54.4% of women in India also believe in justified wife beatings. When violence justification is such a cultural belief, it is not a surprise that most women in India do not feel safe in public spaces. One rape happens every 30 minutes in India, according to the Commonwealth Human Rights Initiative. </p>
<p>There is no doubt that regardless of social-economic advances, stopping violence against women and girls requires spiritual and cultural transformation that only Jesus can bring. Jesus commands us to love our neighbor as ourselves. He said that is the second most important commandment, and it is that love that will stop the violence. </p>
<p>How can we help leverage technological advances so that all women and children in India can live freely without fear of crimes or atrocities against them? How can technology help alert, connect and protect God's precious people before any chance of crime can befall them? How can technology encourage men in India to stand against the violence towards women? How can technology help change a culture where neighbors commit acts of violence, condemnation, or indifference towards women, into a culture where neighbors love neighbors and protect the woman and girl down the street?</p>
<h3>Champions</h3>
<img src="assets/images/sponsors/" alt=""/>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Resourcing people with disabilities</h3>
</div>
<div class="9u challenge-description">
<div class="expander intro">
<span class="toggle-switch"></span>
What if a person with disabilities could be aware of all resources, programs, facilities, and assistance which is available to them across all of India? How would that impact their lives and the lives of their families?
</div>
<div class="content">
<h3>Champions</h3>
<img src="assets/images/sponsors/provision.png" alt="proVISION ASIA"/>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Games</h3>
</div>
<div class="9u challenge-description">
<div class="expander intro">
<span class="toggle-switch"></span>
How can technology bring the word of God to the mobile first generation of children?
</div>
<div class="content">
<p>Did you know that more than 80% of Christians choose Christ between the ages of 4-14? Children are the biggest mission field, and they have impressionable young minds that are fertile ground for the Word of God.</p>
<p>Build a mobile application to help children learn the word of God, bury it in their hearts and share it with their friends in a fun, interactive, and engaging way, using the platforms they're already using while making the Bible more "awesome" and "cool" than Angry Birds, Temple Run, and Candy Crush.</p>
<h3>Champions</h3>
<img src="assets/images/sponsors/one-hope.png" alt="One Hope"/>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>Mentoring</h3>
</div>
<div class="9u challenge-description">
<div class="expander intro">
<span class="toggle-switch"></span>
How can technology help create a new culture of mentoring that fosters stronger and deeper relationships and helps people find spiritual support where and when they need it?
</div>
<div class="content">
<h3>Champions</h3>
<img src="assets/images/sponsors/cru.png" alt="CRU"/>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="3u">
<h3>The 12 - Your Personal Board of Directors</h3>
</div>
<div class="9u challenge-description">
<div class="expander intro">
<span class="toggle-switch"></span>
How can technology help every person build a team of trusted advisors to help them live a healthy life?
</div>
<div class="content">
<h3>Champions</h3>
<img src="assets/images/sponsors/Yesheis.jpg" alt="yesHEis"/>
</div>
</div>
</div>
<p><br/></p>
<div>
<div style="display:inline-block">
<a class="button small special" href="http://c4tk.doattend.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/c4tkIndia" 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-prizes"><i class="icon fa-trophy"></i> Prizes</h2>
<p>This is not just a weekend where we code for the Kingdom. It's also a weekend where we celebrate the Kingdom.
So register now for this amazing weekend where your ideas can win these awesome cash prizes and more!</p>
<p><h3>CATEGORIES</h3></p>
<ul>
<li><i class="icon fa-money money"></i> Rs. 50,000 for the Best Overall App or Site started at the event</li>
<li><i class="icon fa-money money"></i> Rs. 50,000 for the Best Overall App or Site started prior to the event</li>
<li><i class="icon fa-money money"></i> Rs. 25,000 for the Runner-up Overall App or Site started at the event</li>
<li><i class="icon fa-money money"></i> Rs. 25,000 for the Runner-up Overall App or Site started prior to the event</li>
</ul>
<p><h3>AND EVEN MORE...</h3></p>
<ul>
<li><i class="icon fa-money money"></i> Rs. 50,000 for the People's choice (voted by all participants across all submitted projects)</li>
<li><i class="icon fa-money money"></i> Rs. 50,000 for the winner of the One Hope official challenge</li>
<li><i class="icon fa-money money"></i> Rs. 50,000 for the winner of the Christian Vision official challenge</li>
</ul>
<p>After the event, your creations will be featured in a Leadership Network Advance edition reaching over 50,000 church leaders worldwide. </p>
<div>
<div style="display:inline-block">
<a class="button small special" href="http://c4tk.doattend.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/c4tkIndia" target="_new" class="icon circle fa-facebook small">
<span class="label">Facebook</span>
</a>
</div>
</div>
</div>
</section>
<section class="wrapper container style4" id="apis.md">
<div>
<h2 id="-i-class-icon-fa-sitemap-i-api"><i class="icon fa-sitemap"></i> API</h2>
<p>At Code For The Kingdom, we value your precious time and don’t want you to reinvent the wheel. That’s why our sponsors have come forward to offer their API, in order to enable you to build better and faster. That said, please note that there is no compulsion that these API must be used or any other restrictions on technologies that you may use at the event,</p>
<p>We believe that these platforms may assist you as you create effective solutions to today’s problems. We have also instituted prizes for the best usage of the APIs our sponsors have provided. So leverage these API and the best resources around so that together, we can create something that matters.</p>
<div class="row">
<div class="4u">
<a href="http://www.digitalbibleplatform.com" class="api-image">
<img src="assets/images/apis/digital_bible_platform.png" alt="Digital Bible Platform" title="Digital Bible Platform"><br> </a>
</div>
<div class="8u api-description" style="vertical-align:baseline">
<span class="expander headline"><span class="toggle-switch"></span>Access digital Bible content in hundreds of languages. Free.</span>
<div class="content">
<p>Easy access to Bible text, audio, and videos with simple API calls to the Digital Bible Platform.
Become one of the few developers to provide Deaf Bible videos in your app. </p>
<p>Help Faith Comes By Hearing enhance the Digital Bible Platform for the developer community. Provide your feedback and in turn support enhancements for your apps.</p>
<p>During the event, this username and key will be active so developers can immediately use the API. If you want to continue using the API after the event you can sign up for your own key.</p>
<ul>
<li>Username: [email protected]</li>
<li>Password: aN@UKkglWHFi</li>
<li>Login URL: <a href="https://www.digitalbibleplatform.com/site/wp-login.php"><a href="https://www.digitalbibleplatform.com/site/wp-login.php">https://www.digitalbibleplatform.com/site/wp-login.php</a></a></li>
<li>DBT Key: 37cd57f793b2ee221c1146f12df057e8</li>
</ul>
</div>
</div>
</div>
<!-- section -->
<div class="row">
<div class="4u">
<a href="https://www.logos.com/" class="api-image">
<img src="assets/images/apis/logos.jpg" alt="Biblia.com and Faithlife.com API" title="Biblia.com and Faithlife.com API"><br> </a>
</div>
<div class="8u api-description" style="vertical-align:baseline">
<span class="expander headline"><span class="toggle-switch"></span>Biblia.com and Faithlife.com API.</span>
<div class="content">
<h1 id="biblia-com-api">Biblia.com API</h1>
<p><a href="http://api.biblia.com/docs/"><a href="http://api.biblia.com/docs/">http://api.biblia.com/docs/</a></a></p>
<p>The Biblia.com API provides access to information about available Bibles (Find, Image), access to text in those Bibles (Content), and the ability to find content within those Bibles (Search). Additional services support validating Bible references (Parse), comparing Bible references (Compare), and finding Bible references in text and HTML (Scan, Tag).</p>
<h1 id="faithlife-com-api">Faithlife.com API</h1>
<p><a href="https://developer.faithlife.com/"><a href="https://developer.faithlife.com/">https://developer.faithlife.com/</a></a></p>
<p>The Faithlife API provides Community and Accounts functionality. The Accounts API encompasses user and group data, such as a user’s role in a group or what groups a user is a member of, while the Community API encompasses all social interaction between accounts, such as messaging and commenting.</p>
<ul>
<li>If you plan to use both APIs, you’ll have to register with each independently.</li>
</ul>
</div>
</div>
</div>
<p><br/></p>
<div>
<div style="display:inline-block">
<a class="button small special" href="http://c4tk.doattend.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/c4tkIndia" target="_new" class="icon circle fa-facebook small">
<span class="label">Facebook</span>
</a>
</div>
</div>
</div>
</section>
<section class="wrapper container style4" id="mentors.md">
<div>
<h2 id="-i-class-icon-fa-group-i-mentors"><i class="icon fa-group"></i> Mentors</h2>
<p>Meet with Mentors is a great opportunity to connect with industry experts who can guide you and your concepts. Schedule your sessions with mentors of your choice on Friday/Saturday and get connected.</p>
<div class="row">
<div class="6u">
<div class="mentor-card expander">
<span class="mentor-picture">
<img src="assets/images/mentors/alwin_daniel.jpg" alt="Alwin Daniel" title="Alwin Daniel"><br> </span>
<p class="mentor-titles">
Alwin Daniel<br/>
Development Manager, Christian Vision, India
</p>
</div>
<div class="6u content mentor-description">
Alwin Daniel has significant experience in design and developed of Software Solutions for the Web and Mobile devices. With over 15 years of experience in IT, Alwin believes that ‘Together we can!’. Alwin holds Master’s Degree in Software Systems from BITS Pilani, Rajasthan and currently works with Cisco Systems, India.
</div>
</div>
<!-- section -->
<div class="6u">
<div class="mentor-card expander">
<span class="mentor-picture">
<img src="assets/images/mentors/chip_kingery.jpg" alt="Chip Kingery" title="Chip Kingery"><br> </span>
<p class="mentor-titles">
Chip Kingery<br/>
Founder Director at proVISION ASIA
</p>
</div>
<div class="6u content mentor-description">
Rev. Dr. Chip Kingery hails from the U.S.— an American by birth, but Indian by choice! He has lived in Asia for over 30 years; 25 of those in Bangalore— where he directed programs for World Hunger Relief. In 1986, Chip and Jean began proVISION ASIA, an NGO focused on all aspects of disability ministry: education, referrals for operations, provision of mobility aids, family and individual counseling, job-placement, physiotherapy and government advocacy. proVISION ASIA runs a school, Mithra Special School; and has created a wheelchair refurbishment unit in the Bangalore Central Prison— and will soon operate the first mobile diabetes clinic in south India. Their passion, along with 16 staff members here in Bangalore, is to give a hand up— not a hand out, to people with disabilities; and to provide Abundant Life for these friends
</div>
</div>
<!-- section -->
<div class="6u">
<div class="mentor-card expander">
<span class="mentor-picture">
<img src="assets/images/mentors/derek_leavitt.jpg" alt="Derek Leavitt" title="Derek Leavitt"><br> </span>
<p class="mentor-titles">
Derek Leavitt<br/>
Founder & CEO, Rhythmsy
</p>
</div>
<div class="6u content mentor-description">
Derek Leavitt is an Oxford MBA has been starting companies his entire life. He successfully sold his first company, Computer Essentials, when he was 24. His digital passions include crowdsourcing, design, and social media.
</div>
</div>
<!-- section -->
<div class="6u">
<div class="mentor-card expander">
<span class="mentor-picture">
<img src="assets/images/mentors/kurian_babykutty.jpg" alt="Kurian Babykutty" title="Kurian Babykutty"><br> </span>
<p class="mentor-titles">
Kurian Babykutty<br/>
Director of Innovation, One Hope
</p>
</div>
<div class="6u content mentor-description">
Kurian Babykutty tells stories for a living, really. He helps Christian ministries and ventures tell their stories better and develop meaningful relationships with a loyal target audience.
With almost a decade of online marketing experience around the world, Kurian currently serves as one hope�s director of innovation. He is a software engineer with an MBA degree in marketing from Babson college, Boston.
</div>
</div>
<!-- section -->
<div class="6u">
<div class="mentor-card expander">
<span class="mentor-picture">
<img src="assets/images/mentors/phil_smith.jpg" alt="Phil Smith" title="Phil Smith"><br> </span>
<p class="mentor-titles">
Phil Smith<br/>
Development Manager, CV, Australia
</p>
</div>
<div class="6u content mentor-description">
Phil Smith is passionate about helping people achieve goals for their online products. With 10 years of Business Analyst and Development experience in London and Australia, Phil believes strongly in the principles behind agile project methodologies. Phil has been educated through the University of Sydney and is Development Manager for Christian Vision in Australia.
</div>
</div>
<!-- section -->
<div class="6u">
<div class="mentor-card expander">
<span class="mentor-picture">
<img src="assets/images/mentors/rachel_stuckey.jpg" alt="Rachel Stuckey" title="Rachel Stuckey"><br> </span>
<p class="mentor-titles">
Rachel Stuckey<br/>
Program Design Director, OneHope
</p>
</div>
<div class="6u content mentor-description">
Rachel Stuckey is a designer with 10 years experience in international nonprofit organizations. Living and working in North America, Europe, Africa, and East and South Asia, she especially enjoys the problem-solving process, cross-cultural exchange and design in the nonprofit world. She has a Masters of Design from the University of Cincinnati and currently lives and works in India.
</div>
</div>
<!-- section -->
<div class="6u">
<div class="mentor-card expander">
<span class="mentor-picture">
<img src="assets/images/mentors/rajiv_khatri.jpg" alt="Rajiv Khatr" title="Rajiv Khatr"><br> </span>
<p class="mentor-titles">
Rajiv Khatr<br/>
Co-founder and CEO, LeadGrab
</p>
</div>
<div class="6u content mentor-description">
Rajiv has been a serial entrepreneur for the past 10 years with a focus on consumer internet, lead generation, and data analytics. After his second year of college, his passion for entrepreneurship led him to pursue his first start up opportunity. His introduction to entrepreneurship began in varied industries, including construction management (led business development team and achieved in excess of $30M in sales revenue per year), network security software, and consumer internet. Rajiv is Co-founder and CEO of LeadGrab, a lead generation and data analytics technology company.
</div>
</div>
<!-- section -->
<div class="6u">
<div class="mentor-card expander">
<span class="mentor-picture">
<img src="assets/images/mentors/siji_george.jpg" alt="Siji George" title="Siji George"><br> </span>
<p class="mentor-titles">
Siji George<br/>
Senior Member of Technical Staff, VMWare