-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1385 lines (1262 loc) · 93.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
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="zxx">
<head>
<!-- Required meta tags always come first -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="Description" content="At Hackference we are aiming to provide a hacking and networking platform by bringing people from a multitude of organisations,educational backgrounds ,belonging to different stratas of society for a whole new arena of excitement,coding and sheer brilliance. And at what cost, Zero. Zip. Zilch. Nada. Nothing!">
<meta name="Keywords" content="hackathon, developer, relations, advocate, conference, hiring, fair, bengaluru, bangalore, karnataka, open, source, development, india">
<title>Hackference India 2018</title>
<link rel="icon" type="image/png" href="assets/images/favicon.png" />
<link href="https://fonts.googleapis.com/css?family=Cabin" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400" rel="stylesheet">
<!--Core CSS -->
<link rel="stylesheet" href="assets/css/bulma.css">
<link rel="stylesheet" href="assets/css/core.css">
<!--Libraries-->
<link rel="stylesheet" href="assets/fonts/cryptofont/css/cryptofont.min.css">
<link rel="stylesheet" href="assets/js/modalvideo/modal-video.min.css">
<link rel="stylesheet" href="assets/js/aos/aos.css">
</head>
<body>
<!-- Pageloader -->
<div class="pageloader is-theme"></div>
<div class="infraloader is-active"></div>
<div class="dark-wrapper">
<!-- Landing page Hero -->
<section class="hero is-fullheight is-transparent">
<div class="hero-head">
<!-- Cloned navbar -->
<!-- Cloned navbar that comes in on scroll -->
<nav id="navbar-clone" class="navbar is-fixed is-dark">
<div class="container">
<!-- Brand -->
<div class="navbar-brand">
<a href="./index" class="navbar-item">
<img src="assets/images/logo.svg" alt="">
<span class="brand-name">HACKFERENCE</span>
</a>
<!-- Responsive toggle -->
<span class="navbar-burger burger" data-target="cloneNavbarMenu">
<span></span>
<span></span>
<span></span>
</span>
</div>
<!-- Menu -->
<div id="cloneNavbarMenu" class="navbar-menu">
<div class="navbar-end">
<!-- Menu item -->
<div class="navbar-item is-nav-link">
<a class="is-centered-responsive" href="./about">About</a>
</div>
<!-- Menu item -->
<div class="navbar-item is-nav-link">
<a class="is-centered-responsive" href="./timeline">Event Timeline</a>
</div>
<!-- Menu item -->
<div class="navbar-item is-nav-link">
<a class="is-centered-responsive" href="./blog">Blog</a>
</div>
<!-- Menu item -->
<div class="navbar-item is-nav-link">
<a class="is-centered-responsive" href="#sponsors">Sponsors</a>
</div>
<!-- Menu item -->
<div class="navbar-item is-nav-link">
<a class="is-centered-responsive" href="./Women-Safety-Guidelines-HACKFERENCE-INDIA-2018.pdf" target="_blank">Women Safety Guidelines</a>
</div>
<!-- Sign up -->
</div>
</div>
</div>
</nav>
<!-- /Cloned navbar -->
<!-- Static navbar -->
<!-- Static navbar -->
<nav class="navbar is-light">
<div class="container">
<!-- Brand -->
<div class="navbar-brand">
<a href="./index" class="navbar-item">
<img src="assets/images/logo.svg" alt="">
<span class="brand-name">HACKFERENCE</span>
</a>
<!-- Responsive toggle -->
<span class="navbar-burger burger" data-target="navbarMenu">
<span></span>
<span></span>
<span></span>
</span>
</div>
<!-- Menu -->
<div id="navbarMenu" class="navbar-menu light-menu">
<div class="navbar-end">
<!-- Menu item -->
<div class="navbar-item is-nav-link">
<a class="is-centered-responsive" href="./about">About</a>
</div>
<!-- Menu item -->
<div class="navbar-item is-nav-link">
<a class="is-centered-responsive" href="./timeline">Event Timeline</a>
</div>
<!-- Menu item -->
<div class="navbar-item is-nav-link">
<a class="is-centered-responsive" href="./blog">Blog</a>
</div>
<!-- Menu item -->
<div class="navbar-item is-nav-link">
<a class="is-centered-responsive" href="#sponsors">Sponsors</a>
</div>
<!-- Menu item -->
<div class="navbar-item is-nav-link">
<a class="is-centered-responsive" href="./Women-Safety-Guidelines-HACKFERENCE-INDIA-2018.pdf" target="_blank">Women Safety Guidelines</a>
</div>
<!-- Sign up -->
</div>
</div>
</div>
</nav>
<!-- /Static navbar -->
</div>
<!-- Animated particles -->
<div id="particles-js"></div>
<!-- Hero Image and Title -->
<div class="hero-body">
<div class="container">
<div class="columns is-vcentered">
<!-- Landing page Title -->
<div class="column is-5 landing-caption">
<h1 class="title is-1 is-light is-semibold is-spaced main-title">Join India's Biggest Ever Open Source Event</h1>
<h2 class="subtitle is-6 is-light is-thin" >
15-16 December 2018; <a href="https://goo.gl/maps/RwaKdsVXKo32" target="_blank" class="venue-link">Kstart Capital</a>, Whitefield, Bengaluru, INDIA
</h2>
<h2 class="subtitle is-6 is-light is-thin" >
Registraions Closed for Hackference India 2018. See you in the next edition!
</h2>
<!-- CTA -->
<p>
<a href="http://bit.ly/2QzIyEM" class="button k-button k-primary raised has-gradient is-fat is-bold">
<span class="text">Hackference Hackathon 2018 - Selected Teams</span>
<span class="front-gradient"></span>
</a>
</p>
</div>
<!-- Hero image -->
<div class="column is-7">
<figure class="image">
<img src="assets/images/illustrations/home.svg" alt="">
</figure>
</div>
</div>
</div>
</div>
<!-- Hero footer -->
<!--<div class="hero-foot">
<div class="container">
<div class="tabs is-centered">
<ul>
<li><a><img class="hero-logo" src="assets/images/sponsors/withlovefromgithub.svg" alt=""></a></li>
</ul>
</div>
</div>
</div>-->
</section>
<!-- /Landing page Hero -->
<!-- Icon Features section -->
<section id="start" class="section is-transparent is-relative">
<!-- Container -->
<div class="container">
<!-- Divider -->
<div class="divider is-centered"></div>
<!-- Title & subtitle -->
<h2 class="title is-light is-semibold has-text-centered is-spaced">About Hackference</h2>
<h4 class="subtitle is-6 is-light has-text-centered">At Hackference we are aiming to provide a hacking and networking platform by bringing people from a multitude of organisations,educational backgrounds ,belonging to different stratas of society for a whole new arena of excitement,coding and sheer brilliance. And at what cost, Zero. Zip. Zilch. Nada. Nothing! Its a deliquescent combination of Hackathon, DevRelCon and Hiring Fair, that serves to every kind of aspirations. Admission to Hackference is completely free, thanks to our sponsors! We'll provide you with a weekend's worth of schwag, meals, drinks, snacks and a place to crash when you need a break from coding.</h4>
<!-- Content wrapper -->
<div class="content-wrapper is-medium">
<div class="columns is-vcentered">
<!-- Feature -->
<div class="column is-4">
<div class="feature">
<img src="assets/images/icons/conference.svg" alt="" data-aos="fade-up" data-aos-delay="100" data-aos-offset="200" data-aos-easing="ease-out-quart">
<h4 class="title is-6 is-tight is-light" style="margin-top:20px">DevRelConf</h4>
<p>An event aiming at the assimilation of developers advocates of multiple organisations, sharing their knowledge and experiences.</p>
</div>
</div>
<!-- Feature -->
<div class="column is-4">
<div class="feature">
<img src="assets/images/icons/hackathon.svg" alt="" data-aos="fade-up" data-aos-delay="300" data-aos-offset="200" data-aos-easing="ease-out-quart">
<h4 class="title is-6 is-tight is-light" style="margin-top:20px">Hackathon</h4>
<p>An event, typically lasting several days, in which a large number of people meet to engage in collaborative computer programming.</p>
</div>
</div>
<!-- Feature -->
<div class="column is-4">
<div class="feature">
<img src="assets/images/icons/hiring.svg" alt="" data-aos="fade-up" data-aos-delay="500" data-aos-offset="200" data-aos-easing="ease-out-quart">
<h4 class="title is-6 is-tight is-light" style="margin-top:20px">Hiring Fair</h4>
<p>A venue where the employer will witness the work of the foreseeable employees, and the attendees will be able to choose the track and companies they see fit.</p>
</div>
</div>
</div>
<!-- Play video button -->
<!--<div class="cta-wrapper has-text-centered">
<div class="video-button levitate js-modal-btn" data-video-id="6WG7D47tGb0">
<img src="assets/images/icons/play.svg" alt="">
</div>
</div>-->
</div>
<!-- Content wrapper -->
</div>
<!-- /Container -->
</section>
<!-- /Icon Features section -->
<!-- Roadmap section -->
<section class="section is-medium is-dark" style="background: #0f0330;">
<!-- Container -->
<div class="container">
<!-- Divider -->
<div class="divider is-centered"></div>
<!-- Title & subtitle -->
<h2 class="title is-light is-semibold has-text-centered is-spaced">Hackference India 2018 Roadmap</h2>
<h4 class="subtitle is-6 is-light has-text-centered is-compact">Hackference is here for you! Kindly check the <a href="./timeline" class="venue-link">event timeline</a> to know about the event futhermore</h4>
<!-- Content wrapper -->
<div class="content-wrapper">
<!-- Timeline -->
<div class="hackference-timeline">
<div class="timeline">
<!-- Events wrapper -->
<div class="events-wrapper">
<!-- Events list -->
<div class="events">
<ol>
<!-- Event -->
<li>
<a href="#5" data-date="28/11/2018" class="older-event">
<span>SEP</span>
<span>15</span>
</a>
</li>
<!-- Event -->
<li>
<a href="#1" data-date="01/12/2018" class="older-event">
<span>OCT</span>
<span>26</span>
</a>
</li>
<!-- Event -->
<li>
<a href="#2" data-date="04/12/2018" class="older-event">
<span>OCT</span>
<span>28</span>
</a>
</li>
<!-- Event -->
<li>
<a href="#3" data-date="07/12/2018" class="older-event">
<span>NOV</span>
<span>20</span>
</a>
</li>
<!-- Event -->
<li>
<a href="#4" data-date="08/12/2018" class="older-event">
<span>NOV</span>
<span>21</span>
</a>
</li>
<!-- Event -->
<li>
<a href="#0" data-date="10/12/2018" class="selected">
<span>NOV</span>
<span>26</span>
</a>
</li>
<!-- Event -->
<li>
<a href="#6" data-date="12/12/2018">
<span>DEC</span>
<span>05</span>
</a>
</li>
<!-- Event -->
<li>
<a href="#7" data-date="15/12/2018">
<span>DEC</span>
<span>15</span>
</a>
</li>
<!-- Event -->
<li>
<a href="#8" data-date="16/12/2018">
<span>DEC</span>
<span>16</span>
</a>
</li>
</ol>
<!-- Track line -->
<span class="filling-line" aria-hidden="true"></span>
</div>
<!-- Events list -->
</div>
<!-- Events wrapper -->
<ul class="timeline-navigation">
<li><a href="#0" class="prev inactive">Prev</a></li>
<li><a href="#0" class="next">Next</a></li>
</ul> <!-- .cd-timeline-navigation -->
</div> <!-- .timeline -->
<!-- Main events content -->
<div class="events-content">
<ol>
<!-- Event -->
<li class="older-event" data-date="28/11/2018">
<!-- Inner -->
<div class="inner-wrapper">
<div class="title-wrapper">
<span class="event-title">The Beginning Point
<small>September 15th, 2018</small></span>
</div>
</div>
</li>
<!-- Event -->
<li class="older-event" data-date="01/12/2018">
<div class="inner-wrapper">
<div class="title-wrapper">
<span class="event-title">Registrations Open!
<small>October 26th, 2018</small></span>
</div>
</li>
<!-- Event -->
<li class="older-event" data-date="04/12/2018">
<div class="inner-wrapper">
<div class="title-wrapper">
<span class="event-title">Mentor Registrations Open
<small>October 28th, 2018</small></span>
</div>
</div>
</li>
<!-- Event -->
<li class="older-event" data-date="07/12/2018">
<div class="inner-wrapper">
<div class="title-wrapper">
<span class="event-title">Last day to Register for Stage 1 (Hackathon)
<small>November 20th, 2018 - 11:55 PM</small></span>
</div>
</div>
</li>
<!-- Event -->
<li class="older-event" data-date="08/12/2018">
<div class="inner-wrapper">
<div class="title-wrapper">
<span class="event-title">Stage 2 (Hackathon) Commencement
<small>November 21st, 2018</small></span>
</div>
</div>
</li>
<!-- Event -->
<li class="selected" data-date="10/12/2018">
<div class="inner-wrapper">
<div class="title-wrapper">
<span class="event-title">Stage 2 Submission (Hackathon) & DevRel Conf Registration Deadline
<small>November 26th, 2018 - 11:55 PM</small></span>
</div>
</div>
</li>
<!-- Event -->
<li data-date="12/12/2018">
<div class="inner-wrapper">
<div class="title-wrapper">
<span class="event-title">Last day to confirm presence at Hackference India 2018
<small>December 5th, 2018</small></span>
</div>
</div>
</li>
<!-- Event -->
<li data-date="15/12/2018">
<div class="inner-wrapper">
<div class="title-wrapper">
<span class="event-title">HACKFERENCE - Day 1
<small>December 15th, 2018</small></span>
</div>
</div>
</li>
<!-- Event -->
<li data-date="16/12/2018">
<div class="inner-wrapper">
<div class="title-wrapper">
<span class="event-title">HACKFERENCE - Day 2
<small>December 16th, 2018</small></span>
</div>
</div>
</li>
</ol>
</div> <!-- .events-content -->
</div>
<!-- Timeline -->
</div>
</div>
<!-- /Container -->
</section>
<!-- /Roadmap section -->
<!-- Speaker section -->
<section class="section is-medium has-big-dark-gradient">
<div class="container">
<div class="divider is-centered"></div>
<h2 class="title is-light is-semibold has-text-centered is-spaced">DevRel Conf Speakers</h2>
<div class="content-wrapper is-large">
<div class="columns is-vcentered">
<div class="column is-hidden-mobile"></div>
<div class="column is-3">
<div class="team-member-container">
<div class="dark-card">
<a href="https://www.linkedin.com/in/yulialund/" target="_blank">
<div class="avatar">
<svg class="circle-chart" viewbox="0 0 33.83098862 33.83098862" width="140" height="140" xmlns="http://www.w3.org/2000/svg">
<circle class="circle-chart-background" stroke-width="1" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
<circle class="circle-chart-circle" stroke-width="1" stroke-dasharray="33,100" stroke-linecap="round" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
</svg>
<img class="is-sketch" src="assets/images/speakers/julia.jpg" alt="">
<img class="is-real" src="assets/images/speakers/julia.jpg" alt="">
</div>
</a>
<div class="member-info">
<h4 class="title is-light is-6 is-tight">Julia Aslamova</h4>
<div class="position">SEMrush<br /><br /></div>
<p class="description">The Power of Developer Community</p>
<div class="position">KEYNOTE</div>
</div>
</div>
</div>
</div>
<div class="column is-3">
<div class="team-member-container">
<div class="dark-card">
<a href="http://www.linkedin.com/in/karthikp" target="_blank">
<div class="avatar" >
<svg class="circle-chart" viewbox="0 0 33.83098862 33.83098862" width="140" height="140" xmlns="http://www.w3.org/2000/svg">
<circle class="circle-chart-background" stroke-width="1" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
<circle class="circle-chart-circle" stroke-width="1" stroke-dasharray="33,100" stroke-linecap="round" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
</svg>
<img class="is-sketch" src="assets/images/speakers/karthikp.jpg" alt="">
<img class="is-real" src="assets/images/speakers/karthikp.jpg" alt="">
</div>
</a>
<div class="member-info">
<h4 class="title is-light is-6 is-tight">Karthik Padmanabhan</h4>
<div class="position">Google<br />DevRel Lead - India & MENA-T</div>
<p class="description">Why a Brand needs a Developer Advocate</p>
</div>
</div>
</div>
</div>
<div class="column is-3">
<div class="team-member-container">
<div class="dark-card">
<a href="https://www.linkedin.com/in/mvkaran/" target="_blank">
<div class="avatar">
<svg class="circle-chart" viewbox="0 0 33.83098862 33.83098862" width="140" height="140" xmlns="http://www.w3.org/2000/svg">
<circle class="circle-chart-background" stroke-width="1" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
<circle class="circle-chart-circle" stroke-width="1" stroke-dasharray="33,100" stroke-linecap="round" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
</svg>
<img class="is-sketch" src="assets/images/speakers/karanmv.jpg" alt="">
<img class="is-real" src="assets/images/speakers/karanmv.jpg" alt="">
</div>
</a>
<div class="member-info">
<h4 class="title is-light is-6 is-tight">Karan M.V.</h4>
<div class="position">DigitalOcean<br />India Outreach Manager</div>
<p class="description">Building strategy around Developer Communities</p>
</div>
</div>
</div>
</div>
<div class="column is-3">
<div class="team-member-container">
<div class="dark-card">
<a href="https://www.linkedin.com/in/felipearagao/" target="_blank">
<div class="avatar">
<svg class="circle-chart" viewbox="0 0 33.83098862 33.83098862" width="140" height="140" xmlns="http://www.w3.org/2000/svg">
<circle class="circle-chart-background" stroke-width="1" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
<circle class="circle-chart-circle" stroke-width="1" stroke-dasharray="33,100" stroke-linecap="round" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
</svg>
<img class="is-sketch" src="assets/images/speakers/felipe.jpg" alt="">
<img class="is-real" src="assets/images/speakers/felipe.jpg" alt="">
</div>
</a>
<div class="member-info">
<h4 class="title is-light is-6 is-tight">Felipe Aragao</h4>
<div class="position">AbinBev<br />Global VP - Analytics</div>
<p class="description">Fireside Chat with AbinBev</p>
</div>
</div>
</div>
</div>
<div class="column is-hidden-mobile"></div>
</div>
<div class="columns is-vcentered">
<div class="column is-hidden-mobile"></div>
<div class="column is-3">
<div class="team-member-container">
<div class="dark-card">
<a href="https://www.linkedin.com/in/atul-khekade-9076b36/" target="_blank">
<div class="avatar">
<svg class="circle-chart" viewbox="0 0 33.83098862 33.83098862" width="140" height="140" xmlns="http://www.w3.org/2000/svg">
<circle class="circle-chart-background" stroke-width="1" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
<circle class="circle-chart-circle" stroke-width="1" stroke-dasharray="33,100" stroke-linecap="round" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
</svg>
<img class="is-sketch" src="assets/images/speakers/atul.jpg" alt="">
<img class="is-real" src="assets/images/speakers/atul.jpg" alt="">
</div>
</a>
<div class="member-info">
<h4 class="title is-light is-6 is-tight">Atul Khekade</h4>
<div class="position">XinFin<br />Co-Founder & Head of Ecosystem Development</div>
<p class="description">Blockchain Ecosystem in India</p>
</div>
</div>
</div>
</div>
<div class="column is-3">
<div class="team-member-container">
<div class="dark-card">
<a href="https://www.linkedin.com/in/skipiit/" target="_blank">
<div class="avatar">
<svg class="circle-chart" viewbox="0 0 33.83098862 33.83098862" width="140" height="140" xmlns="http://www.w3.org/2000/svg">
<circle class="circle-chart-background" stroke-width="1" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
<circle class="circle-chart-circle" stroke-width="1" stroke-dasharray="33,100" stroke-linecap="round" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
</svg>
<img class="is-sketch" src="assets/images/speakers/shubhendu.jpg" alt="">
<img class="is-real" src="assets/images/speakers/shubhendu.jpg" alt="">
</div>
</a>
<div class="member-info">
<h4 class="title is-light is-6 is-tight">Subhendu Panigrahi</h4>
<div class="position">Skillenza<br />Co-Founder and CEO</div>
<p class="description">The UX of Developer Experience</p>
</div>
</div>
</div>
</div>
<div class="column is-3">
<div class="team-member-container">
<div class="dark-card">
<a href="https://www.linkedin.com/in/aravindputrevu/" target="_blank">
<div class="avatar">
<svg class="circle-chart" viewbox="0 0 33.83098862 33.83098862" width="140" height="140" xmlns="http://www.w3.org/2000/svg">
<circle class="circle-chart-background" stroke-width="1" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
<circle class="circle-chart-circle" stroke-width="1" stroke-dasharray="33,100" stroke-linecap="round" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
</svg>
<img class="is-sketch" src="assets/images/speakers/aravind.jpg" alt="">
<img class="is-real" src="assets/images/speakers/aravind.jpg" alt="">
</div>
</a>
<div class="member-info">
<h4 class="title is-light is-6 is-tight">Aravind Putrevu</h4>
<div class="position">Elastic<br />Developer Advocate</div>
<p class="description">Successful Open Source Community Story</p>
</div>
</div>
</div>
</div>
<div class="column is-hidden-mobile"></div>
</div>
</div>
<div class="container">
<div class="divider is-centered"></div>
<h2 class="title is-light is-semibold has-text-centered is-spaced">Hackathon Speakers</h2>
<div class="content-wrapper is-large">
<div class="columns is-vcentered">
<div class="column is-hidden-mobile"></div>
<div class="column is-3">
<div class="team-member-container">
<div class="dark-card">
<a href="https://www.linkedin.com/in/ronan-gaeti-a9360324/" target="_blank">
<div class="avatar">
<svg class="circle-chart" viewbox="0 0 33.83098862 33.83098862" width="140" height="140" xmlns="http://www.w3.org/2000/svg">
<circle class="circle-chart-background" stroke-width="1" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
<circle class="circle-chart-circle" stroke-width="1" stroke-dasharray="33,100" stroke-linecap="round" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
</svg>
<img class="is-sketch" src="assets/images/speakers/ronan.jpg" alt="">
<img class="is-real" src="assets/images/speakers/ronan.jpg" alt="">
</div>
</a>
<div class="member-info">
<h4 class="title is-light is-6 is-tight">Ronan Gaeti</h4>
<div class="position">AB inBev<br />Global Director - GCC</div>
</div>
</div>
</div>
</div>
<div class="column is-3">
<div class="team-member-container">
<div class="dark-card">
<a href="https://www.linkedin.com/in/mathurutsav/" target="_blank">
<div class="avatar">
<svg class="circle-chart" viewbox="0 0 33.83098862 33.83098862" width="140" height="140" xmlns="http://www.w3.org/2000/svg">
<circle class="circle-chart-background" stroke-width="1" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
<circle class="circle-chart-circle" stroke-width="1" stroke-dasharray="33,100" stroke-linecap="round" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
</svg>
<img class="is-sketch" src="assets/images/speakers/utsav.jpg" alt="">
<img class="is-real" src="assets/images/speakers/utsav.jpg" alt="">
</div>
</a>
<div class="member-info">
<h4 class="title is-light is-6 is-tight">Utsav Mathur</h4>
<div class="position">Gmetri<br />Founder & CEO</div>
</div>
</div>
</div>
</div>
<div class="column is-3">
<div class="team-member-container">
<div class="dark-card">
<a href="https://www.linkedin.com/in/rabimba/" target="_blank">
<div class="avatar">
<svg class="circle-chart" viewbox="0 0 33.83098862 33.83098862" width="140" height="140" xmlns="http://www.w3.org/2000/svg">
<circle class="circle-chart-background" stroke-width="1" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
<circle class="circle-chart-circle" stroke-width="1" stroke-dasharray="33,100" stroke-linecap="round" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
</svg>
<img class="is-sketch" src="assets/images/speakers/rabimba.jpg" alt="">
<img class="is-real" src="assets/images/speakers/rabimba.jpg" alt="">
</div>
</a>
<div class="member-info">
<h4 class="title is-light is-6 is-tight">Rabimba Karanjai</h4>
<div class="position">Mozilla<br />Tech Speaker</div>
</div>
</div>
</div>
</div>
<div class="column is-3">
<div class="team-member-container">
<div class="dark-card">
<a href="https://www.linkedin.com/in/rowdymehul/" target="_blank">
<div class="avatar">
<svg class="circle-chart" viewbox="0 0 33.83098862 33.83098862" width="140" height="140" xmlns="http://www.w3.org/2000/svg">
<circle class="circle-chart-background" stroke-width="1" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
<circle class="circle-chart-circle" stroke-width="1" stroke-dasharray="33,100" stroke-linecap="round" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
</svg>
<img class="is-sketch" src="assets/images/speakers/mehul.jpg" alt="">
<img class="is-real" src="assets/images/speakers/mehul.jpg" alt="">
</div>
</a>
<div class="member-info">
<h4 class="title is-light is-6 is-tight">Mehul Patel</h4>
<div class="position">Mozilla<br />Tech Speaker</div>
</div>
</div>
</div>
</div>
<div class="column is-hidden-mobile"></div>
</div>
<div class="columns is-vcentered">
<div class="column is-hidden-mobile"></div>
<div class="column is-3" ></div>
<div class="column is-3">
<div class="team-member-container">
<div class="dark-card">
<a href="http://linkedin.com/in/ronak-gothi-15351215b" target="_blank">
<div class="avatar" >
<svg class="circle-chart" viewbox="0 0 33.83098862 33.83098862" width="140" height="140" xmlns="http://www.w3.org/2000/svg">
<circle class="circle-chart-background" stroke-width="1" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
<circle class="circle-chart-circle" stroke-width="1" stroke-dasharray="33,100" stroke-linecap="round" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
</svg>
<img class="is-sketch" src="assets/images/speakers/ronak.jpg" alt="">
<img class="is-real" src="assets/images/speakers/ronak.jpg" alt="">
</div>
</a>
<div class="member-info">
<h4 class="title is-light is-6 is-tight">Ronak Gothi</h4>
<div class="position">XinFin<br />Blockchain Engineer</div>
</div>
</div>
</div>
</div>
<div class="column is-3">
<div class="team-member-container">
<div class="dark-card">
<a href="http://linkedin.com/in/akshay-pilankar" target="_blank">
<div class="avatar">
<svg class="circle-chart" viewbox="0 0 33.83098862 33.83098862" width="140" height="140" xmlns="http://www.w3.org/2000/svg">
<circle class="circle-chart-background" stroke-width="1" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
<circle class="circle-chart-circle" stroke-width="1" stroke-dasharray="33,100" stroke-linecap="round" fill="none" cx="16.91549431" cy="16.91549431" r="15.91549431" />
</svg>
<img class="is-sketch" src="assets/images/speakers/akshay.jpg" alt="">
<img class="is-real" src="assets/images/speakers/akshay.jpg" alt="">
</div>
</a>
<div class="member-info">
<h4 class="title is-light is-6 is-tight">Akshay Pilankar</h4>
<div class="position">XinFin<br />Software Engineer</div>
</div>
</div>
</div>
</div>
<div class="column is-3" ></div>
<div class="column is-hidden-mobile"></div>
</div>
</div>
<!-- /Content wrapper -->
<!-- Spaced divider -->
<div class="divider is-centered is-spacer" id="FAQ"></div>
<!-- Title & subtitle -->
<h2 class="title is-light is-semibold has-text-centered is-spaced">FAQ</h2>
<h4 class="subtitle is-6 is-light has-text-centered is-compact">Asking questions is your right, and answering them our duty!</h4>
<!-- Content wrapper -->
<div class="content-wrapper is-large">
<div class="columns">
<div class="column is-5 is-offset-1">
<!-- Accordion -->
<div class="accordion">
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle1" class="accordion-toggle" />
<label class="accordion-title" for="toggle1">
Who should attend Hackference India 2018?
</label>
<div class="accordion-content">
<p>Whether you are new to the open source world or an experienced contributor, you will learn something new at Hackference. The DevRel Conference is designed in the form to help developers build communities and build strategies to strengthen their whole ecosystem. Being a DevRel Conference, top developer advocates from prominent organisations will be present bringing to you a great chance to interact and build connections alongside. This whole event is designed to educate new developers about the Open Source world and help existing contributors strengthen their outreach and explore more deeply into open source development.</p>
</div>
</div>
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle2" class="accordion-toggle" />
<label class="accordion-title" for="toggle2">
What is there in the DevRel Conf?
</label>
<div class="accordion-content">
<p>The DevRel Conf features a keynote address projecting the power of a developer community. You will learn the need of Developer Advocate, the strategies around building a developer community, the state of the developer ecosystem, blockchain ecosystems, and more. You will also have opportunities to interact with the top developer advocates of prominent organisations from all over the world.</p>
</div>
</div>
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle3" class="accordion-toggle" />
<label class="accordion-title" for="toggle3">
What is included in DevRel Conf registration?
</label>
<div class="accordion-content">
<p>DelRel Conf registration gives you a chance to get selected to attend the developer relations conference of Hackference India 2018. After the registrations close, the selected participants will be informed through email, and would be given access to the Keynote, DevRel Conf Talks, as well as the Breakout Sessions. There will be lunch and refreshments provided.</p>
</div>
</div>
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle4" class="accordion-toggle" />
<label class="accordion-title" for="toggle4">
What is included in the Hackathon registration?
</label>
<div class="accordion-content">
<p>Hackathon registration gives you a chance to get selected to attend the Hackathon and Hiring Fair held within Hackference India 2018. After the registrations close, the selected participants will be informed through email highlighting the further steps. There will be lunch and refreshments provided.</p>
</div>
</div>
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle5" class="accordion-toggle" />
<label class="accordion-title" for="toggle5">
Can I get a confirmation of my Hackference registration?
</label>
<div class="accordion-content">
<p>Upon completing the online registration process, if you're selected, you will be emailed a confirmation email with details from Hackference. If you have already selected (as on the portal) and can’t see this email, please check your junk mail folder.</p>
</div>
</div>
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle6" class="accordion-toggle" />
<label class="accordion-title" for="toggle6">
Can I sign up for sessions I want to attend?
</label>
<div class="accordion-content">
<p>You are not locked into the session and free to change and attend on the day depending on room capacity. Please note, registration does not guarantee a seat; we will be selecting the best participants to attend different events within Hackference.</p>
</div>
</div>
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle7" class="accordion-toggle" />
<label class="accordion-title" for="toggle7">
Will I need to register myself for each breakout session?
</label>
<div class="accordion-content">
<p>Breakout sessions will be filled on a first come first seated basis. There is no need to pre-register.</p>
</div>
</div>
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle8" class="accordion-toggle" />
<label class="accordion-title" for="toggle8">
Will the slides be shared after the event?
</label>
<div class="accordion-content">
<p>Yes they will be made available on https://hackference.in and communicated to you in the ‘Thank You’ email after the event. Please note that the slides will only be provided with the discretion of the presenting organisations.</p>
</div>
</div>
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle18" class="accordion-toggle" />
<label class="accordion-title" for="toggle18">
How should I behave at Hackference?
</label>
<div class="accordion-content">
<p>Be respectful and considerate of your fellow hackers. We're all here to learn and have a good time. Everyone deserves the chance to hack free of the fear of being harrased. See the Women Safety Guidelines for more details.</p>
</div>
</div>
</div>
<!-- /Accordion -->
</div>
<div class="column is-5">
<!-- Accordion -->
<div class="accordion">
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle9" class="accordion-toggle" />
<label class="accordion-title" for="toggle9">
Will there be prizes?
</label>
<div class="accordion-content">
<p>Of course there will be prizes although it isn’t all about winning but what you learn and build during those 24 hours. But don’t worry there will be a panel of judges that will select the three best hacks based on creativity, technical difficulty, design, and usefulness. Prizes for first, second and third place TBA. Sponsors also offer prizes for specific criteria, which they judge themselves. Also we are not giving any prize in the form of money. The best of the best will get hired and the projects will be given incubation support!</p>
</div>
</div>
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle10" class="accordion-toggle" />
<label class="accordion-title" for="toggle10">
How can I apply?
</label>
<div class="accordion-content">
<p>You can go to our skillenza portal where all the information is available about the application procedure.</p>
</div>
</div>
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle11" class="accordion-toggle" />
<label class="accordion-title" for="toggle11">
When will the application open?
</label>
<div class="accordion-content">
<p>Applications open at 26th October 2018, 21:00 IST</p>
</div>
</div>
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle12" class="accordion-toggle" />
<label class="accordion-title" for="toggle12">
When will the application close?
</label>
<div class="accordion-content">
<p>Applications close at 21st November 2018, 23:55 IST</p>
</div>
</div>
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle13" class="accordion-toggle" />
<label class="accordion-title" for="toggle13">
What should I bring to Hackference?
</label>
<div class="accordion-content">
<p>Please bring a valid ID (any Photo ID), your hackathon ticket, a computer (preferably a laptop), chargers, and any hardware you will use for your hack. You can also bring a sleeping bag, pillow, toiletries, and a couple changes of clothes. Food will be provided at the event. No firearms, weapons, alcohol, or illegal drugs are allowed on event.</p>
</div>
</div>
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle14" class="accordion-toggle" />
<label class="accordion-title" for="toggle14">
What size are the teams? What happens if I don’t have a team?
</label>
<div class="accordion-content">
<p>The teams are a maximum of 3 people. You can start off the event already with a team or you can meet with people at the event who also don’t have a team, don’t worry.</p>
</div>
</div>
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle15" class="accordion-toggle" />
<label class="accordion-title" for="toggle15">
Will there be travel reimbursements?
</label>
<div class="accordion-content">
<p class="chaltahai">There will be some travel reimbursements for sure, we will communicate the details with the selected attendees. The details for the same will be communited through email.</p>
</div>
</div>
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle16" class="accordion-toggle" />
<label class="accordion-title" for="toggle16">
How much does it cost?
</label>
<div class="accordion-content">
<p>It's absolutely free! There is no entry fee, Hackference will provide you with plenty of food, snacks, swag, and prizes throughout the 24 hours.</p>
</div>
</div>
<!-- Option -->
<div class="accordion-option">
<input type="checkbox" id="toggle17" class="accordion-toggle" />
<label class="accordion-title" for="toggle17">
Any other questions?
</label>
<div class="accordion-content">
<p>If there is something that is still not clear or we didn’t cover please contact us at [email protected] or at twitter or facebook.</p>
</div>
</div>
</div>
<!-- /Accordion -->
</div>
</div>
</div>
<!-- /Content wrapper -->