-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
1257 lines (1227 loc) · 54.3 KB
/
index.html
File metadata and controls
1257 lines (1227 loc) · 54.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>JSChannel Conference - July 28-29th 2017 - Bangalore, India</title>
<meta name="keywords" content="javascript,jschannel,javascript conference, Bengaluru,community,conference,NCR,jsconference,angularJS,nodeJS,angularjs,emberjs,ecmascript,iojs,hapijs,expressjs">
<meta name="author" content="JSChannel Team">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#FFD527">
<meta name="msapplication-navbutton-color" content="#FFD527">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="description" content="JSChannel Conference brings together JavaScript Enthusiasts from across the world.This July (28-29th), join us for a 2-day conference in Bengaluru">
<meta property="og:title" content="JSChannel Conference 2017">
<meta property="og:url" content="http://2017.jschannel.com">
<meta property="og:type" content="website">
<meta property="og:description" content="JSChannel Conference brings together JavaScript Enthusiasts from across the world.This July (28-29th), join us for a 2-day conference in Bengaluru">
<meta property="og:image" content="https://pbs.twimg.com/profile_images/822154908711292928/SRRFsZPO.jpg">
<meta property="og:twitter" content="@js_channel">
<meta property="og:site" content="@js_channel">
<meta property="og:author" content="JSChannel">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="icon" href="./fav-icon.png">
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
<!-- Custom styles for this template -->
<link href="styles/custom.css" rel="stylesheet">
<link href="styles/description.css" rel="stylesheet">
<link href="styles/schedule.css" rel="stylesheet">
<link href="styles/contactus.css" rel="stylesheet">
<link href="styles/venue.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href="https://fonts.googleapis.com/css?family=Fjalla+One|Open+Sans|Roboto+Mono" rel="stylesheet">
</head>
<body>
<div class="live-section">
In case you missed it, watch <a href="https://www.youtube.com/watch?v=3Rmjqsz-txM" target="_blank">Day 1</a> and <a href="https://www.youtube.com/watch?v=PM38nnInUOI" target="_blank">Day 2</a> <i class="fa fa-youtube-play" aria-hidden="true"></i> <img src="./images/youtube.png" width="40px"/>
</div>
<nav class="navbar navbar-default navbar-static-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false"
aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div id="navbar" class="navbar-collapse collapse navbar-right">
<ul class="nav navbar-nav">
<li><a class="hidden" href="">SPEAKERS</a></li>
<li><a class="hidden" href="">SCHEDULE</a></li>
<li><a href="#venue">VENUE</a></li>
<li><a class="hidden" href="">SPONSORS</a></li>
<li><a href="#gallery">GALLERY</a></li>
<li><a href="#tickets" class="btn button-buy-ticket"><span>BUY TICKETS</span></a></li>
</ul>
</div>
</div>
</nav>
<!-- Main jumbotron -->
<div class="jumbotron">
<div class="container link-container">
<div class="row">
<div class="col-md-3 col-xs-8">
<img class="jschannel-logo" src="assets/jschannel-logo.jpg" />
</div>
</div>
<!-- Jschannel details - desktop view -->
<div class="row details hidden-xs hidden-sm">
<div class="col-md-6 row">
<div class="col-md-3 details-image icon-calender" /></div>
<div class="col-md-9 block">
<div class="title">Date</div>
<div>July 28-29, 2017</div>
</div>
</div>
</div>
<div class="row details hidden-xs hidden-sm">
<div class="col-md-6 row">
<div class="col-md-3 details-image icon-location" /></div>
<div class="col-md-9 block">
<div class="title">Location</div>
<div>JW Marriott Hotel, Bengaluru, India</div>
</div>
</div>
</div>
<!-- details row for mobile view -->
<div class="details-phone hidden-md hidden-lg">
<div class="row details-phone-row">
<div class="col-sm-2 col-xs-3 phone-ico text-center">
<img src="assets/ico-date-phone.png" />
</div>
<div class="col-sm-10 col-xs-9 detail-row">
<div class="block">
<div class="title">Date</div>
<div>July 28-29, 2017</div>
</div>
</div>
</div>
<div class="row details-phone-row">
<div class="col-sm-2 col-xs-3 phone-ico text-center">
<img src="assets/ico-location-phone.png" />
</div>
<div class="col-sm-10 col-xs-9 detail-row">
<div class="block">
<div class="title">Location</div>
<div>JW Marriott Hotel, Bengaluru, India</div>
</div>
</div>
</div>
</div>
<!-- submit row -->
<div class="row links">
<div class="col-md-offset-0 col-md-6 col-sm-offset-1 col-sm-10 col-xs-12">
<div class="cfp disabled">
<a href="" target="_blank">
<span class="text">
CFP Closed on 5th June
</span>
</a>
</div>
</div>
<!-- recap row -->
<!-- <div class="col-md-offset-0 col-md-6 col-sm-offset-1 col-sm-10 col-xs-12">
<div class="cfp">
<span class="text">Recap 2016</span>
</div>
</div> -->
<!-- sponsor row -->
<div class="col-md-offset-0 col-md-6 col-sm-offset-1 col-sm-10 col-xs-12">
<div class="cfp">
<a href="assets/sponsorship-flyer.pdf" target="_blank" class="text">Become A Sponsor</a>
</div>
</div>
</div>
</div>
</div>
<div id="tickets" class="container-fluid tickets">
<div class="container">
<div class="row">
<div class="col-md-12 buy-tickets-col">
<span class="buy-tickets">BUY TICKETS</span>
</div>
</div>
<div class="row">
<div class="col-md-4 tickets-types-col">
<div class="text">SUPER EARLY BIRD</div>
<div class="price-box">
<span class="price-text disabled">₹</span>
<span class="price-text disabled">3000</span>
</div>
<div class="btn price-btn disabled">
<span>SOLD OUT</span>
</div>
</div>
<div class="col-md-4 tickets-types-col">
<div class="text">EARLY BIRD</div>
<div class="price-box">
<span class="price-text disabled">₹</span>
<span class="price-text disabled">4500</span>
</div>
<div class="btn price-btn disabled">
<span>SOLD OUT</span>
</div>
</div>
<div class="col-md-4 tickets-types-col">
<div class="text">JS ENTHUSIAST</div>
<div class="price-box">
<span class="price-text disabled">₹</span>
<span class="price-text disabled">6000</span>
</div>
<a>
<div class="btn price-btn disabled">
<span>SOLD OUT</span>
</div>
</a>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<!--<span class="few-seats">*Only few seats left. Closing on 20 Jan</span>-->
</div>
</div>
</div>
</div>
<div class="container hackathon hidden">
<div class="row">
<div class="col-md-12 text-center title-gutter">
<span class="title">Hackathon</span>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center sponsored-gutter">
<span class="sponsored">Sponsored by</span>
</div>
</div>
<div class="row">
<div class="col-md-offset-4 col-md-4 text-center logo-gutter">
<img src="assets/log-angelhack.png" class="img-responsive" />
</div>
</div>
</div>
<div class="container-fluid speakers">
<div class="row">
<div class="col-md-12 text-center title-gutter">
<span class="title">Meet Our Speakers</span>
</div>
<div class="subtitle white-text">More awesome speakers to be anounced soon...</div>
</div>
<div class="container-margin-top"></div>
<div class="row">
<div class="speaker col-xs-12 col-md-4 col-sm-4">
<div class="col-md-6 col-md-offset-0 col-xs-offset-3 col-xs-6">
<img src="assets/preethi.jpeg" class="img-circle img-responsive">
</div>
<div class="bio col-md-6 col-xs-12">
<h3>Preethi Kasireddy</h3>
<p>Software Eng hacking on bots. Previously <a href="https://twitter.com/a16z">@a16z</a> and <a href="https://twitter.com/GoldmanSachs">@GoldmanSachs</a>.
I'm passionate about JS, FP, physical training, learning excessively, writing and reading.</p>
</div>
<div class="social-icons col-xs-12 col-md-12">
<a href="https://www.linkedin.com/in/preethi-kasireddy-41383528/" target="_blank">
<span class="icon linkedin"></span>
</a>
<a href="https://twitter.com/iam_preethi" target="_blank">
<span class="icon twitter"></span>
</a>
<a href="https://github.com/iam-peekay" target="_blank">
<span class="icon github"></span>
</a>
</div>
</div>
<div class="speaker col-xs-12 col-md-4 col-sm-4">
<div class="col-md-6 col-md-offset-0 col-xs-offset-3 col-xs-6">
<img src="assets/sarah.jpg" class="img-circle img-responsive">
</div>
<div class="bio col-md-6 col-xs-12">
<h3>Sarah Drasner</h3>
<p>Award-winning speaker. Consultant. Writer <a href="https://twitter.com/Real_CSS_Tricks">@Real_CSS_Tricks</a>. Cofounder,
<a href="https://webanimationworkshops.com/" target="_blank">https://webanimationworkshops.com/</a> , formerly
<a href="https://twitter.com/trulia" target="_blank">@trulia</a> (Zillow).
<a href="http://codepen.io/sdras/"
target="_blank">http://codepen.io/sdras/</a>
</p>
</div>
<div class="social-icons col-xs-12 col-md-12">
<a href="https://www.linkedin.com/in/sarahdrasner/" target="_blank">
<span class="icon linkedin"></span>
</a>
<a target="_blank" href="https://twitter.com/sarah_edo" target="_blank">
<span class="icon twitter"></span>
</a>
<a href="https://github.com/sdras" target="_blank">
<span class="icon github"></span>
</a>
</div>
</div>
<div class="speaker col-xs-12 col-md-4 col-sm-4">
<div class="col-md-6 col-md-offset-0 col-xs-6 col-xs-offset-3">
<img src="assets/andrew.jpg" class="img-circle img-responsive">
</div>
<div class="bio col-md-6 col-sm-12 col-xs-12">
<h3>Andrew Clark</h3>
<p>Front-end engineer. <a href="https://twitter.com/reactjs">@reactjs</a> core team at Facebook. Co-creator of Redux.
Creator of Recompose. Hi!</p>
</div>
<div class="social-icons col-xs-12 col-md-12">
<a href="https://twitter.com/acdlite" target="_blank">
<span class="icon twitter"></span>
</a>
<a href="https://github.com/acdlite" target="_blank">
<span class="icon github"></span>
</a>
</div>
</div>
</div>
<div class="row">
<div class="speaker col-xs-12 col-md-4 col-sm-4">
<div class="col-md-6 col-md-offset-0 col-xs-offset-3 col-xs-6">
<img src="assets/franziska.jpg" class="img-circle img-responsive">
</div>
<div class="bio col-md-6 col-xs-12">
<h3>Franziska Hinkelmann</h3>
<p>Ph.D software engineer working on Chrome V8. Love JavaScript. Node.js collaborator.</p>
</div>
<div class="social-icons col-xs-12 col-md-12">
<a href="https://www.linkedin.com/in/fhinkel/" target="_blank">
<span class="icon linkedin"></span>
</a>
<a target="_blank" href="https://twitter.com/fhinkel" target="_blank">
<span class="icon twitter"></span>
</a>
<a href="https://github.com/fhinkel" target="_blank">
<span class="icon github"></span>
</a>
</div>
</div>
<div class="speaker col-xs-12 col-md-4 col-sm-4">
<div class="col-md-6 col-md-offset-0 col-xs-offset-3 col-xs-6">
<img src="assets/parshuram.jpeg" class="img-circle img-responsive">
</div>
<div class="bio col-md-6 col-xs-12">
<h3>Parashuram N</h3>
<p>Developer, Serial Hacker, Midnight Dog walker</p>
</div>
<div class="social-icons col-xs-12 col-md-12">
<a href="https://www.linkedin.com/in/axemclion/" target="_blank">
<span class="icon linkedin"></span>
</a>
<a target="_blank" href="https://twitter.com/nparashuram" target="_blank">
<span class="icon twitter"></span>
</a>
<a href="https://github.com/axemclion" target="_blank">
<span class="icon github"></span>
</a>
</div>
</div>
<div class="speaker col-xs-12 col-md-4 col-sm-4">
<div class="col-md-6 col-md-offset-0 col-xs-offset-3 col-xs-6">
<img src="assets/max.jpg" class="img-circle img-responsive">
</div>
<div class="bio col-md-6 col-xs-12">
<h3>Max Stoiber</h3>
<p>Makes styled-components, react-boilerplate, <a href="https://twitter.com/KeystoneJS">@KeystoneJS</a> and CarteBlanche.
Open source developer <a href="https://twitter.com/thethinkmill">@thethinkmill</a>.Speciality coffee geek, skier,
traveller.</p>
</div>
<div class="social-icons col-xs-12 col-md-12">
<a href="https://www.linkedin.com/in/max-stoiber-46698678/" target="_blank">
<span class="icon linkedin"></span>
</a>
<a href="https://twitter.com/mxstbr" target="_blank">
<span class="icon twitter"></span>
</a>
<a href="https://github.com/mxstbr" target="_blank">
<span class="icon github"></span>
</a>
</div>
</div>
</div>
<div class="row">
<div class="speaker col-xs-12 col-md-4 col-sm-4">
<div class="col-md-6 col-md-offset-0 col-xs-offset-3 col-xs-6">
<img src="assets/farhad.jpg" class="img-circle img-responsive">
</div>
<div class="bio col-md-6 col-xs-12">
<h3>Farhad Ghayour</h3>
<p>Consultant <a href="https://twitter.com/McKinsey" target="_blank">@McKinsey</a>. Formerly @ Famous as a core contributor to their 3D rendering engine. Loves philosophy, art, math, and code.</p>
</div>
<div class="social-icons col-xs-12 col-md-12">
<!-- <a href="https://www.linkedin.com/in/fhinkel/" target="_blank">
<span class="icon linkedin"></span>
</a> -->
<a target="_blank" href="https://twitter.com/farhadg_com" target="_blank">
<span class="icon twitter"></span>
</a>
<!-- <a href="https://github.com/fhinkel" target="_blank">
<span class="icon github"></span>
</a> -->
</div>
</div>
<div class="speaker col-xs-12 col-md-4 col-sm-4">
<div class="col-md-6 col-md-offset-0 col-xs-offset-3 col-xs-6">
<img src="assets/rahul.jpg" class="img-circle img-responsive">
</div>
<div class="bio col-md-6 col-xs-12">
<h3>Rahul Rout</h3>
<p>Senior Developer at Walmart, data visualization enthusiast with the Analytics team in Bangalore, collaborated with various enthusiasts to create youtube web series on Electron</p>
</div>
<div class="social-icons col-xs-12 col-md-12">
<!-- <a href="https://www.linkedin.com/in/axemclion/" target="_blank">
<span class="icon linkedin"></span>
</a> -->
<a target="_blank" href="https://twitter.com/routbuzz" target="_blank">
<span class="icon twitter"></span>
</a>
<!-- <a href="https://github.com/axemclion" target="_blank">
<span class="icon github"></span>
</a> -->
</div>
</div>
<div class="speaker col-xs-12 col-md-4 col-sm-4">
<div class="col-md-6 col-md-offset-0 col-xs-offset-3 col-xs-6">
<img src="assets/VarshaSaha.jpg" class="img-circle img-responsive">
</div>
<div class="bio col-md-6 col-xs-12">
<h3>Varsha Saha</h3>
<p>Front End engineer @Flipkart. JS enthusiast, tea addict and a shopoholic!</p>
</div>
<div class="social-icons col-xs-12 col-md-12">
<!-- <a href="https://www.linkedin.com/in/fhinkel/" target="_blank">
<span class="icon linkedin"></span>
</a> -->
<a target="_blank" href="https://twitter.com/saha_varsha" target="_blank">
<span class="icon twitter"></span>
</a>
<!-- <a href="https://github.com/fhinkel" target="_blank">
<span class="icon github"></span>
</a> -->
</div>
</div>
</div>
<div class="row">
<div class="speaker col-xs-12 col-md-4 col-sm-4">
<div class="col-md-6 col-md-offset-0 col-xs-offset-3 col-xs-6">
<img src="assets/Siddharth.jpg" class="img-circle img-responsive">
</div>
<div class="bio col-md-6 col-xs-12">
<h3>Siddharth Kshetrapal</h3>
<p>Physics graduate,♥️ interfaces, javascript & web performance . javascript architect @practo, noob surfer</p>
</div>
<div class="social-icons col-xs-12 col-md-12">
<!-- <a href="https://www.linkedin.com/in/fhinkel/" target="_blank">
<span class="icon linkedin"></span>
</a> -->
<a target="_blank" href="https://twitter.com/siddharthkp" target="_blank">
<span class="icon twitter"></span>
</a>
<!-- <a href="https://github.com/fhinkel" target="_blank">
<span class="icon github"></span>
</a> -->
</div>
</div>
<div class="speaker col-xs-12 col-md-4 col-sm-4">
<div class="col-md-6 col-md-offset-0 col-xs-offset-3 col-xs-6">
<img src="assets/JaiSanthosh.png" class="img-circle img-responsive">
</div>
<div class="bio col-md-6 col-xs-12">
<h3>Jai Santhosh</h3>
<p>Lead Engineer at ClearTax, helping build a bunch of Finance Tech software with innovative solutions around GST, Income Tax, etc.</p>
</div>
<div class="social-icons col-xs-12 col-md-12">
<!-- <a href="https://www.linkedin.com/in/axemclion/" target="_blank">
<span class="icon linkedin"></span>
</a> -->
<a target="_blank" href="https://twitter.com/jaisanth" target="_blank">
<span class="icon twitter"></span>
</a>
<!-- <a href="https://github.com/axemclion" target="_blank">
<span class="icon github"></span>
</a> -->
</div>
</div>
<div class="speaker col-xs-12 col-md-4 col-sm-4">
<div class="col-md-6 col-md-offset-0 col-xs-offset-3 col-xs-6">
<img src="assets/sanketsahu.jpg" class="img-circle img-responsive">
</div>
<div class="bio col-md-6 col-xs-12">
<h3>Sanket Sahu</h3>
<p>Co-author of @NativeBaseIO, Co-founded @GeekyAnts. OSS for life!</p>
</div>
<div class="social-icons col-xs-12 col-md-12">
<!-- <a href="https://www.linkedin.com/in/max-stoiber-46698678/" target="_blank">
<span class="icon linkedin"></span>
</a> -->
<a href="https://twitter.com/sanketsahu" target="_blank">
<span class="icon twitter"></span>
</a>
<!-- <a href="https://github.com/mxstbr" target="_blank">
<span class="icon github"></span>
</a> -->
</div>
</div>
</div>
<div class="row">
<div class="speaker col-xs-12 col-md-4 col-sm-4">
<div class="col-md-6 col-md-offset-0 col-xs-offset-3 col-xs-6">
<img src="assets/vincirufus.jpg" class="img-circle img-responsive">
</div>
<div class="bio col-md-6 col-xs-12">
<h3>Vinci Rufus</h3>
<p>Sr. Director SapientRazorfish and a Google Developer Expert</p>
</div>
<div class="social-icons col-xs-12 col-md-12">
<!-- <a href="https://www.linkedin.com/in/max-stoiber-46698678/" target="_blank">
<span class="icon linkedin"></span>
</a> -->
<a href="https://twitter.com/areai51" target="_blank">
<span class="icon twitter"></span>
</a>
<!-- <a href="https://github.com/mxstbr" target="_blank">
<span class="icon github"></span>
</a> -->
</div>
</div>
<div class="speaker col-xs-12 col-md-4 col-sm-4">
<div class="col-md-6 col-md-offset-0 col-xs-offset-3 col-xs-6">
<img src="assets/MukulJain.jpg" class="img-circle img-responsive">
</div>
<div class="bio col-md-6 col-xs-12">
<h3>Mukul Jain</h3>
<p>Technology specialist #nodejs #meteor #angularjs #d3js and Blogger @nodexperts. Speaker at MeteorNoida and JSFusion community. A movie Geek.</p>
</div>
<div class="social-icons col-xs-12 col-md-12">
<!-- <a href="https://www.linkedin.com/in/axemclion/" target="_blank">
<span class="icon linkedin"></span>
</a> -->
<a target="_blank" href="https://twitter.com/mukul1904" target="_blank">
<span class="icon twitter"></span>
</a>
<!-- <a href="https://github.com/axemclion" target="_blank">
<span class="icon github"></span>
</a> -->
</div>
</div>
</div>
<div class="container-margin-bottom"></div>
</div>
<div class="container description">
<div class="row">
<div class="col-md-12">
<h2 class="heading">Two Days of Learning!</h2>
</div>
<div class="col-md-12">
<p class="subtitle">Join us for an opportuity to learn and hear from the best brains in the industry </p>
</div>
</div>
<div class="row description_box">
<div class="col-md-2 col-xs-12 text-center description_content">
<img class="description_box_icon" src="assets/shape-1.png" alt="speakerphone">
<h2 class="description_box_title"> Date </h2>
<p class="description_box_subtitle"> 28 - 29th July </p>
</div>
<div class="col-md-2 col-xs-12 text-center description_content">
<img class="description_box_icon" src="assets/ico-talks.png" alt="speakerphone">
<h2 class="description_box_title">Talks</h2>
<p class="description_box_subtitle"> Opportunity to learn from the stalwarts of the js Commmunity. A Platform to Learn share and Connect.</p>
</div>
<div class="col-md-2 col-xs-12 text-center description_content">
<img class="description_box_icon" src="assets/ico-workshops.png" alt="speakerphone">
<h2 class="description_box_title">Workshops</h2>
<p class="description_box_subtitle">Join us to learn and interact with professional js trainers and experience live coding sessions.</p>
</div>
<div class="col-md-2 col-xs-12 text-center description_content">
<img class="description_box_icon" src="assets/ico-food.png" alt="speakerphone">
<h2 class="description_box_title">Fabulous Food</h2>
<p class="description_box_subtitle"> Enjoy sumptuous cuisine prepared by one of the best restaurants in Bengaluru </p>
</div>
<div class="col-md-2 col-xs-12 text-center description_content">
<img class="description_box_icon" src="assets/ico-tshirt.png" alt="speakerphone">
<h2 class="description_box_title">JSChannel Tshirt</h2>
<p class="description_box_subtitle">Get beautifully designed tshirt and wear the JS experience</p>
</div>
<div class="col-md-2 col-xs-12 text-center description_content">
<img class="description_box_icon" src="assets/ico-venue.png" alt="speakerphone">
<h2 class="description_box_title">Venue</h2>
<p class="description_box_subtitle">JW Marriott Hotel, Bengaluru, India</p>
</div>
</div>
</div>
<div class="container sponsors hidden">
<div class="row">
<div class="col-md-12 text-center title-gutter">
<span class="title">Our Sponsors</span>
</div>
</div>
<div class="row logo-gutter">
<div class="col-md-4 text-center">
<img src="assets/logo-digital-m-k.png" />
</div>
<div class="col-md-4 text-center">
<img src="assets/logo.png" />
</div>
<div class="col-md-4 text-center">
<img src="assets/logo-t-c-s.png" />
</div>
</div>
<div class="row">
<div class="col-md-12 text-center hr-gutter">
<hr/>
</div>
</div>
</div>
<div class="container partners hidden">
<div class="row">
<div class="col-md-12 text-center title-gutter">
<span class="title">Our Partners</span>
</div>
</div>
<div class="row logo-gutter">
<div class="col-md-6 text-center">
<img src="assets/logo-townscript.png" />
</div>
<div class="col-md-6 text-center">
<img src="assets/logo-j-s.png" />
</div>
</div>
</div>
<div class="container-fluid schedule">
<div class="row">
<div class="col-md-12 text-center title-gutter">
<span class="title">Schedule</span>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center subtitle-gutter">
<span class="subtitle">Join us for an opportuity to learn and hear from the best brains in the industry</span>
</div>
</div>
<div class="row tab-gutter">
<div class="col-md-3 text-center">
<div class="tab active" onclick="toggleSchedule(1)" id="button-day1">
<div class="date">July 28</div>
<div class="day">Day 1</div>
</div>
</div>
<div class="col-md-3 text-center">
<div class="tab" onclick="toggleSchedule(2)" id="button-day2">
<div class="date">July 29</div>
<div class="day">Day 2</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-10">
<div id="schedule-day1" class="schedule-content">
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">8:00 AM</span>
</div>
<div class="title"> Registration</div>
<!-- <div class="speaker-name">JS Channel</div> -->
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">9:15 AM</span>
</div>
<div class="title"> Keynote</div>
<div class="speaker-name">Preethi Kasireddy</div>
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">10:15 AM</span>
</div>
<div class="title"> State maintenance with Redux in a multi layered Javascript Application</div>
<div class="speaker-name">Varsha Saha</div>
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">10:45 AM</span>
</div>
<div class="title"> Service Worker and The Role they Play in Modern-day Web Apps</div>
<div class="speaker-name">Mukul Jain</div>
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">11:15 AM</span>
</div>
<div class="title"> Tea Break</div>
<!-- <div class="speaker-name">JS Channel</div> -->
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">11:30 AM</span>
</div>
<div class="title"> Building Cross Platform Desktop Applications Using Electron</div>
<div class="speaker-name">Rahul Rout</div>
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">12:00 PM</span>
</div>
<div class="title"> Building applications for the next billion users</div>
<div class="speaker-name">Siddharth Kshetrapal</div>
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">12:30 PM</span>
</div>
<div class="title"> Lunch</div>
<!-- <div class="speaker-name">Rahul Rout</div> -->
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">2:00 PM</span>
</div>
<div class="title"> Workshop</div>
<div class="speaker-name">Max Stoiber</div>
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">4:00 PM</span>
</div>
<div class="title"> Tea Break</div>
<!-- <div class="speaker-name">Rahul Rout</div> -->
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">4:15 PM</span>
</div>
<div class="title"> Demand Driven Applications with GraphQL</div>
<div class="speaker-name">Vinci Rufus</div>
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">4:45 PM</span>
</div>
<div class="title"> Keynote: Animating Vue</div>
<div class="speaker-name">Sarah Drasner</div>
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">5:45 PM</span>
</div>
<div class="title"> Flash talk</div>
<!-- <div class="speaker-name">Rahul Rout</div> -->
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
</div>
<div id="schedule-day2" class="schedule-content hidden">
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">9:30 AM</span>
</div>
<div class="title"> JavaScript engines - how do they even?</div>
<div class="speaker-name">Franziska Hinkelmann</div>
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">10:30 AM</span>
</div>
<div class="title"> Dealing with Data Offline in Web Apps</div>
<div class="speaker-name">Jai Santosh</div>
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">11:00 AM</span>
</div>
<div class="title"> Building beautiful interfaces in React Native</div>
<div class="speaker-name">Sanket Sahu</div>
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">11:30 AM</span>
</div>
<div class="title"> Tea Break</div>
<!-- <div class="speaker-name">Mukul Jain</div> -->
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">11:45 AM</span>
</div>
<div class="title"> Super-charged Developer Tools for React Native</div>
<div class="speaker-name">Parashuram N</div>
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">12:30 PM</span>
</div>
<div class="title"> Lunch</div>
<!-- <div class="speaker-name">Siddharth Kshetrapal</div> -->
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">2:00 PM</span>
</div>
<div class="title"> U&I with React - UI components for you and I.</div>
<div class="speaker-name">Farhad Ghayour</div>
<!-- <div class="speaker-bio">In this talk I will demonstrate In this talk I will demonstrate In this talk I will demonstrate In this talk
I will demonstrate In this talk I will demonstrate</div> -->
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-1 schedule-item-icon">
<img src="assets/ico-schedule.png" alt="icon">
</div>
<div class="schedule-item-text-holder col-md-9">
<div class="time-box">
<span class="time-icon">
<img src="assets/clock.png" />
</span>
<span class="time">4:00 PM</span>