-
Notifications
You must be signed in to change notification settings - Fork 6
/
dk17.html
executable file
·1185 lines (1080 loc) · 74 KB
/
dk17.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>
<title>Faya:80</title>
<meta charset="utf-8" />
<meta name="theme-color" content="#87c042"/>
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<meta name="Description" content="FAYA:80 is a monthly technology hangout for technology enthusiasts by technology enthusiasts to break the ice, analyse and evaluate emerging trends in technology. Held on the first Wednesday of the month at the Floor of Madness (FAYA, Technopark, Thiruvananthapuram), the series stands for Free Knowledge Sharing and aims to provide an open platform for entrepreneurs, developers and technology professionals to keep at par with the latest tools and technologies">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link rel="canonical" href="/index.html">
<link rel="shortcut icon" href="../amp_favicon.ico">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="styles/common.css">
<link rel="stylesheet" type="text/css" href="styles/style-dk.css">
<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/list.js"> </script>
</head>
<body>
<div class="header-top-wrap">
<div class="container">
<ul class="social_icon-header">
<li><a href="https://www.facebook.com/fayaport80/" target="_blank"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="https://twitter.com/FayaPort80" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="https://www.youtube.com/fayausa" target="_blank"><i class="fa fa-youtube-play" aria-hidden="true"></i></a></li>
<li><a href="https://www.eventbrite.com/o/faya-3194888760" target="_blank"><img alt="eventbrite" src="images/eventbrite.png"></a></li>
<li class="meetup"><a href="https://www.meetup.com/FAYA-PORT-80/" target="_blank"><i class="fa fa-meetup" aria-hidden="true"></i></a></li>
<!-- <li class="meetup"><a href="https://www.meetup.com/FAYA-PORT-80/" target="_blank"><img alt="meetup" src="images/meetup.png"></a></li> -->
</ul>
</div>
</div>
<div id="main-wrapper">
<div class="uc-mobile-menu-pusher">
<div class="content-wrapper">
<header>
<a href="/index.html">
<img src="logo.png" class="logo" width="200" height="46"></img>
</a>
<ul class="main-nav">
<li>
<a href="latest.html">Latest Event</a>
</li>
<li>
<a href="dk17.html">Disrupt Kerala</a>
</li>
<li>
<a href="speakers.html">Speakers</a>
</li>
<li>
<a href="gallery.html">Gallery</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</header>
<div class="slide hero-slide">
<div class="carousel-inner" role="listbox">
<iframe width="100%" height="350px" src="https://www.youtube.com/embed/MB1xjwpaE88" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<section class="x-services pt-50" id="overview">
<div class="container">
<div class="row">
<div class="col-md-5">
<div class="thumbnail clearfix">
<div class="caption">
<h2 class="content-title">PREMISE</h2>
<div class="overview-content">
<p>Amidst building a Mobile First World happened the seismic shift towards building an AI First World. Google, Amazon, Facebook, Microsoft and Tesla are exploding the industry with their moon-shot AI products. Can the Indian Innovators think ahead of them?</p>
<p><span class="bold">Disrupt Kerala 2017</span> will focus on futuristic trends leading technology disruption. The event will push a diverse group of individuals <span class="bold">Break their echo chamber</span> and set a definitive direction for their future.</p>
<p>The summit will showcase advancing trends in AI, Machine Learning, Artificial Intelligence, Blockchain, Mixed Reality and Internet of Things, among others. Participants will imbibe ideas from leading innovators, influential technologists, data scientists and founders who now lead Global Technology Disruption.</p>
</div>
</div>
</div>
</div>
<div class="col-md-7">
<div class="thumbnail clearfix">
<img class="img-responsive" src="images/dk17/disruption-banner.png" alt="Are You Prepared for Disruption">
</div>
</div>
</div>
</div>
<!--container -->
</section>
<section class="x-services ptb-50 speakers-bg" id="speakers">
<div class="container">
<div class="row">
<div class="col-sm-12"><h2 class="main-head">SPEAKERS</h2></div>
<div class="col-sm-6">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/michael.jpg" alt="Michael Gord"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Michael Gord</div>
<div class="speaker-designation">Founder & CEO</div>
<div class="speaker-organisation">MLG Blockchain Consulting</div>
<div class="speaker-info">Michael is a blockchain developer at TD and the founder of Bitcoin Canada and the McGill Cryptocurrency Club....</div>
<a href="https://twitter.com/bitgord" title="Twitter" class="social-icons twitter" target="_blank"></a>
<a href="https://www.linkedin.com/in/mgord/" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<button type="button" class="btn more" data-toggle="modal" data-target="#michael">View more</button>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/venkat.jpg" alt="venkat"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Venkatramanan P.R</div>
<div class="speaker-designation">Data Scientist</div>
<div class="speaker-organisation">Thought Works</div>
<div class="speaker-info">Venkat is Lead Consultant and Data Scientist at ThoughtWorks. Over the last few years, he has helped build the data science capability...</div>
<a href="https://www.facebook.com/venkat.rpr" title="Facebook" class="social-icons fb" target="_blank"></a>
<a href="https://twitter.com/venkatramananpr" title="Twitter" class="social-icons twitter" target="_blank"></a>
<a href="https://www.linkedin.com/in/venkatramanan-p-r-a25b0321/?ppe=1" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<button type="button" class="btn more" data-toggle="modal" data-target="#venkatramanan">View more</button>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/satish-babu.jpg" alt="Satish Babu"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Satish Babu</div>
<div class="speaker-designation">Chair, APRALO </div>
<div class="speaker-organisation">ICANN</div>
<div class="speaker-info">Programmer, Development Professional and Internet Governance Practitioner, associated with ICANN, ISOC, IEEE and InApp....</div>
<a href="https://www.linkedin.com/in/sierrabravo/" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<a href="https://twitter.com/satish_babu" title="Twitter" class="social-icons twitter" target="_blank"></a>
<button type="button" class="btn more" data-toggle="modal" data-target="#satish-babu">View more</button>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/nandini.jpg" alt="nandini"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Prof. Nandini Vaidyanathan </div>
<div class="speaker-designation">Chairman and Managing Director</div>
<div class="speaker-organisation">CARMa Venture Services </div>
<div class="speaker-info">She’s a traveling teacher who specialises in entrepreneurship, in several Ivy League business schools around the world....</div>
<a href="https://www.facebook.com/nandini.vaidyanathan" title="Facebook" class="social-icons fb" target="_blank"></a>
<a href="https://in.linkedin.com/in/nandinivaidyanathan" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<button type="button" class="btn more" data-toggle="modal" data-target="#nandini">View more</button>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/rama-brahmam.jpg" alt="amrit"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Rama Brahmam Aleti</div>
<div class="speaker-designation">Co-Founder & UX Strategist </div>
<div class="speaker-info">As a Co-founder & Director - Experience Design, at Think Design Collaborative, Rama has been instrumental in developing...</div>
<a href="https://www.linkedin.com/in/aleti-rama-brahmam-127a835/" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<button type="button" class="btn more" data-toggle="modal" data-target="#rama-brahmam">View more</button>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/abhilash-ashok.jpg" alt="Abhilash Ashok"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Abhilash Ashok</div>
<div class="speaker-designation">Senior Lead, UX Development</div>
<div class="speaker-organisation">Valorem</div>
<div class="speaker-info">An Incorruptible Passionate Microsoft Technology Stack Enthusiast with rich 8+ years’ experience, well-versed with Windows ...</div>
<a href="https://www.facebook.com/abhilashca" title="Facebook" class="social-icons fb" target="_blank"></a>
<a href="https://twitter.com/abhilashca" title="Twitter" class="social-icons twitter" target="_blank"></a>
<a href="https://www.linkedin.com/in/abhilashca/" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<button type="button" class="btn more" data-toggle="modal" data-target="#abhilash-ashok">View more</button>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/sanju-mathew.jpg" alt="sanju-mathew"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Sanju Mathew</div>
<div class="speaker-designation">CEO </div>
<div class="speaker-organisation">Onbyz</div>
<div class="speaker-info">Sanju Mathew is an Mtech Electronics graduate (Signal Processing and Bionics), Entrepreneur, Intel IoT Innovator and a speaker at...</div>
<a href="https://www.facebook.com/sanjumathewk" title="Facebook" class="social-icons fb" target="_blank"></a>
<a href="https://twitter.com/sanjumathew?lang=en" title="Twitter" class="social-icons twitter" target="_blank"></a>
<a href="https://www.linkedin.com/in/sanjumathewk/" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<button type="button" class="btn more" data-toggle="modal" data-target="#Sanju">View more</button>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/anivar.jpg" alt="anivar"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Anivar Aravind</div>
<div class="speaker-designation">Founder Executive Director</div>
<div class="speaker-organisation">Indic Project</div>
<div class="speaker-info">Anivar A. Aravind is Founder Executive Director of Indic Project, a civic-tech non-profit initiative works on language engineering, technology...</div>
<a href="https://www.facebook.com/an1var/" title="Facebook" class="social-icons fb" target="_blank"></a>
<a href="https://twitter.com/anivar" title="Twitter" class="social-icons twitter" target="_blank"></a>
<a href="https://www.linkedin.com/in/anivar/" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<button type="button" class="btn more" data-toggle="modal" data-target="#anivar">View more</button>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/rafi.jpg" alt="MOHAMMED RAFI T.F."></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Mohammed Rafi T. F.</div>
<div class="speaker-designation">Behavioural Scientist</div>
<div class="speaker-organisation">Neuro Lingusitic Programme </div>
<div class="speaker-info">A Behavioural Scientist, Life Transformation Specialist and International Master Trainer in Neuro Lingusitic Programme... </div>
<a href="https://www.facebook.com/mohammed.rafi.71619" title="Facebook" class="social-icons fb" target="_blank"></a>
<button type="button" class="btn more" data-toggle="modal" data-target="#rafi">View more</button>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/manuyash-chaudhary.jpg" alt="manuyash-chaudhary"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Manuyash Chaudhary</div>
<div class="speaker-designation">AI & NLP Developer & Researcher</div>
<div class="speaker-organisation">Accubits</div>
<div class="speaker-info">AI & NLP Developer & Researcher, Accubits Technologies. An MS in Machine Learning & Artificial Intelligence from University...</div>
<!--<a href="#" title="Facebook" class="social-icons fb" target="_blank"></a>
<a href="#" title="Twitter" class="social-icons twitter" target="_blank"></a>
<a href="#" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a> -->
<button type="button" class="btn more" data-toggle="modal" data-target="#manuyash">View more</button>
</div>
</div>
</div>
</div>
</div>
<!-- .container -->
</section>
<section class="x-services ptb-50 speakers-bg" id="panel-discussion">
<div class="container">
<div class="row">
<div class="col-sm-12"><h2 class="main-head">Panellists</h2></div>
<div class="col-sm-6 col-md-3">
<div class="speakers-wrap">
<div class="discussion-photo-case">
<div class="speakers-photo"><img src="images/dk17/sivasankar.jpg" alt="Mr M Sivasankar IAS"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. M Sivasankar IAS</div>
<div class="panel-designation">IT Secretary</div>
<div class="panel-organisation">Government of Kerala</div>
<div class="speaker-info">Shri. M Sivasankar is presently the Secretary to Government, IT Department..</div>
<button type="button" class="btn more" data-toggle="modal" data-target="#sivasankar">View more</button>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="speakers-wrap">
<div class="discussion-photo-case">
<div class="speakers-photo"><img src="images/dk17/michael.jpg" alt="Michael Gord"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Michael Gord</div>
<div class="panel-designation">Founder & CEO</div>
<div class="panel-organisation">MLG Blockchain Consulting</div>
<div class="speaker-info">Michael is a blockchain developer at TD and the founder of Bitcoin Canada...</div>
<a href="https://twitter.com/bitgord" title="Twitter" class="social-icons twitter" target="_blank"></a>
<a href="https://www.linkedin.com/in/mgord/" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<button type="button" class="btn more" data-toggle="modal" data-target="#michael">View more</button>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="speakers-wrap">
<div class="discussion-photo-case">
<div class="speakers-photo"><img src="images/dk17/nandini.jpg" alt="nandini"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Prof. Nandini Vaidyanathan </div>
<div class="panel-designation">Founder and Mentor</div>
<div class="panel-organisation">CARMa Venture Services </div>
<div class="speaker-info">She’s a traveling teacher who specialises in entrepreneurship...</div>
<a href="https://www.facebook.com/nandini.vaidyanathan" title="Facebook" class="social-icons fb" target="_blank"></a>
<a href="https://in.linkedin.com/in/nandinivaidyanathan" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<button type="button" class="btn more" data-toggle="modal" data-target="#nandini-vaidyanathan">View more</button>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="speakers-wrap">
<div class="discussion-photo-case">
<div class="speakers-photo"><img src="images/dk17/ashraf.jpg" alt="Dr Ashraf"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Dr. Asharaf S.</div>
<div class="panel-designation">Associate Professor</div>
<div class="panel-organisation">IIITMK</div>
<div class="speaker-info">Asharaf S is an Associate Professor at Indian Institute of Information Technology...</div>
<a href="https://www.linkedin.com/in/asharafs/" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<a href="https://twitter.com/asharafs" title="Twitter" class="social-icons twitter" target="_blank"></a>
<button type="button" class="btn more" data-toggle="modal" data-target="#ashraf">View more</button>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="speakers-wrap">
<div class="discussion-photo-case">
<div class="speakers-photo"><img src="images/dk17/rahul.jpg" alt="Mr Rahul Alex Panicker"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Rahul Alex Panicker</div>
<div class="panel-designation">Co-founder and President </div>
<div class="panel-organisation">Embrace Innovations</div>
<div class="speaker-info">A technology product leader, Mr. Panicker loves building and...</div>
<a href="https://www.facebook.com/rahul.alex.panicker" title="Facebook" class="social-icons fb" target="_blank"></a>
<a href="https://twitter.com/rahulapanicker" title="Twitter" class="social-icons twitter" target="_blank"></a>
<a href="https://www.linkedin.com/in/rahulap/" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<button type="button" class="btn more" data-toggle="modal" data-target="#rahul">View more</button>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="speakers-wrap">
<div class="discussion-photo-case">
<div class="speakers-photo"><img src="images/dk17/aswin.jpg" alt="Aswin"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Aswin Kumar</div>
<div class="panel-designation">Program Manager</div>
<div class="panel-organisation">Frost Sullivan's Middle East</div>
<div class="speaker-info">Aswin Kumar is Program Manager with the Mobility (Automotive & Transportation)..</div>
<button type="button" class="btn more" data-toggle="modal" data-target="#aswin">View more</button>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="speakers-wrap">
<div class="discussion-photo-case">
<div class="speakers-photo"><img src="images/dk17/anoop.jpg" alt="Anoop Ambika"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Anoop Ambika</div>
<div class="panel-designation">Founder </div>
<div class="panel-organisation">CLAP Research</div>
<div class="speaker-info">Anoop P Ambika is a serial entrepreneur, organiser and a technology enthusiast...</div>
<a href="https://www.facebook.com/anoop.ambika" title="Facebook" class="social-icons fb" target="_blank"></a>
<a href="https://www.linkedin.com/in/anoopambika/?ppe=1" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<a href="https://twitter.com/anoopambika" title="Twitter" class="social-icons twitter" target="_blank"></a>
<button type="button" class="btn more" data-toggle="modal" data-target="#anoop">View more</button>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="x-services" id="schedule">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="event-schedule-wrap">
<div class="col-md-4">
<h3 class="event-hall travancore">Travancore Hall (Park Center)</h3>
<img src="./images/dk17/travancore-hall.png" alt="Travancore Hall">
</div>
<div class="col-md-8">
<ul class="event-schedule">
<li class="event-schedule-list"><div class="event-time">9:00AM</div> <div class="event-name">Registration</div></li>
<li class="event-schedule-list"><div class="event-time">9:30AM - 10:00AM </div><div class="event-name">Inauguration</div></li>
<li class="event-schedule-list"><div class="event-time">10:00AM - 11:00AM</div><div class="event-name"><strong>Keynote: Tech Disruption – Opportunities & Threats </strong>Mr. Michael Gord (Founder & CEO - MLG Blockchain Consulting)</div></li>
<li class="event-schedule-list"><div class="event-time">11:00AM - 11:15AM</div> <div class="event-name">Tea Break</div></li>
<li class="event-schedule-list"><div class="event-time">11:15AM - 12:00PM</div> <div class="event-name"><strong>FOSS - Role of communities</strong>Mr. Satish Babu (Chair, APRALO - ICANN)</div></li>
<li class="event-schedule-list"><div class="event-time">12:00PM - 1:00PM</div> <div class="event-name"> <strong>Designing Machine Learning Systems</strong>Mr. Venkatramanan P. R. (Data Scientist - Thoughtworks) </div></li>
<li class="event-schedule-list"><div class="event-time">1:00PM - 2:00PM</div> <div class="event-name">Networking Lunch</div></li>
<li class="event-schedule-list"><div class="event-time">2:00PM - 3:00PM</div> <div class="event-name"><strong>How to Grow Faster & Smarter in the Age of Disruption</strong> Prof. Nandini Vaidyanathan (Chairman and Managing Director - CARMa Venture Services)</div></li>
<li class="event-schedule-list"><div class="event-time">03:00PM - 3:40PM</div><div class="event-name"><strong>UX at the Age of Disruption </strong> Mr. Rama Brahmam Aleti (Co-Founder & UX Strategist)</div></li>
<li class="event-schedule-list"><div class="event-time">3:40PM - 4:40PM</div> <div class="event-name"><strong>Panel Discussion - Staying Relevant at the Age of Disruption</strong></div></li>
<li class="event-schedule-list"><div class="event-time">4:40PM - 5:00PM</div> <div class="event-name">Tea</div></li>
<li class="event-schedule-list"><div class="event-time">5:00PM - 6:00PM</div> <div class="event-name">Valedictory function - Official Launch of FAYA:80 Kochi & Kozhikode</div></li>
</ul>
</div>
</div>
</div>
<div class="col-sm-12">
<div class="event-schedule-wrap">
<div class="col-md-4">
<h3 class="event-hall travancore">Startup Mission Hall (Thejaswini)</h3>
<img src="./images/dk17/start-up.jpg" alt="Startup Mission Hall">
</div>
<div class="col-md-8">
<ul class="event-schedule">
<li class="event-schedule-list"><div class="event-time">11:15AM - 12:00PM</div> <div class="event-name"> <strong>Software & Hardware Breakthroughs in Bionics and IOT</strong>Mr. Sanju Mathew (CEO - Onbyz)</div></li>
<li class="event-schedule-list"><div class="event-time">12:00PM - 1:00PM</div><div class="event-name"><strong>VR, AR & MR: What’s Real, What’s Now, What’s to Come</strong>Mr. Abhilash Ashok (Senior Lead UX Development - Valorem)</div></li>
<li class="event-schedule-list"><div class="event-time">2:00PM - 4:30PM</div><div class="event-name"><strong>Get your ‘Hands-On’ Block Chain!</strong>Mr. Jikku Jose</div></li>
</ul>
</div>
</div>
</div>
<div class="col-sm-12">
<div class="event-schedule-wrap">
<div class="col-md-4">
<h3 class="event-hall travancore">Malabar Hall (Park)</h3>
<img src="./images/dk17/malabar-hall.png" alt="Malabar Hall">
</div>
<div class="col-md-8">
<ul class="event-schedule">
<li class="event-schedule-list"><div class="event-time">11:15AM - 12:00PM</div><div class="event-name"><strong>Fairness in Civic Technologies</strong>Mr. Anivar Aravind (Founder Executive Director, Indic Project) </strong></div></li>
<li class="event-schedule-list"><div class="event-time">12:00PM - 1:00PM</div><div class="event-name"><strong>Decoding Phantoms in the Brain Using Technology</strong>Mr. Mohammed Rafi T. F. (Behavioural Scientist)</div></li>
<li class="event-schedule-list"><div class="event-time">2:00PM - 4:00PM</div><div class="event-name"><strong>Build your First VR Mobile App with Unity</strong>Mr. Dileep P.G, Mr. Nithin Jose</div></li>
</ul>
</div>
</div>
</div>
<div class="col-sm-12">
<div class="event-schedule-wrap">
<div class="col-md-4">
<h3 class="event-hall travancore">Floor of Madness, FAYA (Thejaswini)</h3>
<img src="./images/dk17/faya.jpg" alt="Floor of Madness, FAYA">
</div>
<div class="col-md-8">
<ul class="event-schedule">
<li class="event-schedule-list"><div class="event-time">11:15AM - 1:00PM</div><div class="event-name"><strong> Soft Computing and Blockchain in Bioinformatics </strong> Mr. Manuyash Chaudhary, Mr. Rahul A. R. (Accubits Technologies)</div></li>
<li class="event-schedule-list"><div class="event-time">02:00PM - 4:00PM</div><div class="event-name"><strong>Intelligent Computing in Bio Systems </strong>Mr. Charush S. Nair, Mr. Jithin V. G. ( Accubits Technologies)
</div></li>
</ul>
</div>
</div>
</div>
<div class="col-sm-12">
<div class="event-schedule-wrap">
<div class="col-md-4">
<h3 class="event-hall travancore">Exhibition Hall, Park Centre</h3>
<img src="./images/dk17/park-centre.jpg" alt="Exhibition Hall, Park Centre">
</div>
<div class="col-md-8">
<ul class="event-schedule">
<li class="event-schedule-list"><div class="event-time">11:15AM - 1:00PM</div><div class="event-name"><strong> Speach Enabled Kinematics - Bionic Hand Demo</strong> (Onbyz Team)</div></li>
<li class="event-schedule-list"><div class="event-time">2:00PM - 4:00PM</div><div class="event-name"><strong>Experience VR, AR & MR, Live Demo </strong>(Valorem Team)
</div></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="x-services ptb-50 sponsers" id="sponsors">
<div class="container">
<div class="col-sm-6">
<div class="row">
<div class="col-sm-12"><h2 class="main-head">PARTNERS</h2></div>
<div class="col-sm-4">
<div class="partners-wrap">
<a href="http://icfoss.in/" target="_blank" title="icfoss"><img src="./images/dk17/sponsers-icfoss.png" alt="icfoss"></a>
</div>
</div>
<div class="col-sm-4">
<div class="partners-wrap">
<a href="https://startupmission.kerala.gov.in/" target="_blank" title="Startup Mission"><img src="./images/dk17/sponsers-startup-mission.png" alt="Startup Mission"></a>
</div>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="row">
<div class="col-sm-12"><h2 class="main-head align-right">Sponsors</h2></div>
<div class="col-sm-4 align-right">
<div class="sponsers-wrap">
<a href="http://www.apollodimora.com/" target="_blank" title="Apollo Ddimora"><img src="./images/dk17/sponsers-apollo-dimora.jpg" alt="Apollo Ddimora"></a>
</div>
<p class="sponsers-text">Hospitality Partner</p>
</div>
<div class="col-sm-4 align-right">
<div class="sponsers-wrap">
<a href="www.xoxoday.com" target="_blank" title="xoxoday"><img src="./images/dk17/xoxo.jpg" alt="xoxoday"></a>
</div>
<p class="sponsers-text">Rewards & Recognition Partner</p>
</div>
</div>
</div>
</div>
</section>
<section class="x-services gallery" id="look-back">
<div class="container">
<div class="col-sm-12">
<div class="col-sm-12"><h2 class="main-head">Look Back</h2></div>
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
<li data-target="#myCarousel" data-slide-to="4"></li>
<li data-target="#myCarousel" data-slide-to="5"></li>
<li data-target="#myCarousel" data-slide-to="6"></li>
</ol>
<div class="carousel-inner">
<div class="item active">
<img src="images/dk17/slider/PORT80-TIMELINE1.jpg" alt="slider" style="width:100%;">
</div>
<div class="item">
<img src="images/dk17/slider/PORT80-TIMELINE2.jpg" alt="slider" style="width:100%;">
</div>
<div class="item">
<img src="images/dk17/slider/PORT80-TIMELINE3.jpg" alt="slider" style="width:100%;">
</div>
<div class="item">
<img src="images/dk17/slider/PORT80-TIMELINE4.jpg" alt="slider" style="width:100%;">
</div>
<div class="item">
<img src="images/dk17/slider/PORT80-TIMELINE5.jpg" alt="slider" style="width:100%;">
</div>
<div class="item">
<img src="images/dk17/slider/PORT80-TIMELINE6.jpg" alt="slider" style="width:100%;">
</div>
<div class="item">
<img src="images/dk17/slider/PORT80-TIMELINE7.jpg" alt="slider" style="width:100%;">
</div>
</div>
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</section>
<div>
<footer>
<div class="container">
<div class="footer-widget" id="contactus">
<h5>Contact Us </h5>
<span>FAYA Corporation</span><br>
<span>Email on <a href="mailto:[email protected]">[email protected]</a></span><br>
<span>call - 866-686-5988</span>
</div>
<p class="copy-right-footer">Copyright ©
<a href="http://fayausa.com">FAYA Corporation</a> 2018.<br> Thejaswini, Technopark Campus, Thiruvananthapuram, Kerala, India
</p>
<ul class="social_icon">
<li><a href="https://www.facebook.com/fayaport80/" target="_blank"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="https://twitter.com/FayaPort80" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="https://www.youtube.com/fayausa" target="_blank"><i class="fa fa-youtube-play" aria-hidden="true"></i></a></li>
<li><a href="https://www.eventbrite.com/o/faya-3194888760" target="_blank"><img alt="eventbrite" src="images/eventbrite.png"></a></li>
<li class="meetup"><a href="https://www.meetup.com/FAYA-PORT-80/" target="_blank"><i class="fa fa-meetup" aria-hidden="true"></i></a></li>
<!-- <li class="meetup"><a href="https://www.meetup.com/FAYA-PORT-80/" target="_blank"><img alt="meetup" src="images/meetup.png"></a></li> -->
</ul>
</div>
</footer>
</div>
</div>
</div>
<!-- #main-wrapper -->
<div id="Sanju" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Mr. Sanju Mathew</h4>
</div>
<div class="modal-body">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/sanju-mathew.jpg" alt="Sanju Mathew"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Sanju Mathew</div>
<div class="speaker-designation">CEO </div>
<div class="speaker-organisation">Onbyz</div>
<div class="speaker-info">Sanju Mathew is an Mtech Electronics graduate (Signal Processing and Bionics), Entrepreneur, Intel IoT Innovator and a speaker at National and International conferences on Bionics and IoT. He is an Electronics Hardware Engineer, System Architect and UI/UX designer by choice with over 7 years of experience in these fields. His work includes a Predictive Maintenance AI for Airports (Australia), Water Supply Automation system for star hotels (USA) and Laser Calibration unit for Spectroscopy units (USA).
His team built a Low Cost Bionic Hand for the disabled that focuses on modularity of sensors, custom designed feedback systems, powerful and low footprint microprocessor unit and a software architecture that makes use of Marketplace and community driven app development.
Projects realized by his team was selected twice as top 10 in the world by Intel and was invited to present it at Intel Developer Forum 2015 and 2016 at San Francisco, USA. His team was awarded the runners-up prize for Mastermind competition by Dr. A P J Abdul Kalam and was one of the winners for National Level Intel IoT Hackathon 2015.</div>
<a href="https://www.facebook.com/sanjumathewk" title="Facebook" class="social-icons fb" target="_blank"></a>
<a href="https://twitter.com/sanjumathew?lang=en" title="Twitter" class="social-icons twitter" target="_blank"></a>
<a href="https://www.linkedin.com/in/sanjumathewk/" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<!-- Modal -->
</div>
</div>
</div>
</div>
</div>
</div>
<div id="anivar" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Mr. Anivar Aravind</h4>
</div>
<div class="modal-body">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/anivar.jpg" alt="Anivar Aravind"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name"> Anivar Aravind</div>
<div class="speaker-designation">Founder Executive Director</div>
<div class="speaker-organisation">Indic Project</div>
<div class="speaker-info">Anivar A. Aravind is Founder Executive Director of Indic Project, a civic-tech non-profit initiative works on language engineering, technology standards and digital rights.</div>
<a href="https://www.facebook.com/an1var/" title="Facebook" class="social-icons fb" target="_blank"></a>
<a href="https://twitter.com/anivar" title="Twitter" class="social-icons twitter" target="_blank"></a>
<a href="https://www.linkedin.com/in/anivar/" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<!-- Modal -->
</div>
</div>
</div>
</div>
</div>
</div>
<div id="venkatramanan" class="modal fade" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Mr. Venkatramanan PR</h4>
</div>
<div class="modal-body">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/venkat.jpg" alt="Venkatramanan PR"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Venkatramanan P.R</div>
<div class="speaker-designation">Data Scientist</div>
<div class="speaker-organisation">Thought Works</div>
<div class="speaker-info">Venkat is Lead Consultant and Data Scientist at ThoughtWorks. Over the last few years, he has helped build the data science capability within ThoughtWorks India, and worked with clients across several industries to deliver data science solutions. Before this, he used to work as a Physicist, working primarily in the field of phase transitions in Soft Condensed Matter systems.</div>
<a href="https://www.facebook.com/venkat.rpr" title="Facebook" class="social-icons fb" target="_blank"></a>
<a href="https://twitter.com/venkatramananpr" title="Twitter" class="social-icons twitter" target="_blank"></a>
<a href="https://www.linkedin.com/in/venkatramanan-p-r-a25b0321/?ppe=1" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="satish-babu" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Mr. Satish Babu</h4>
</div>
<div class="modal-body">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/satish-babu.jpg" alt="Dr. Srikanth Sundararajan"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Satish Babu</div>
<div class="speaker-designation">Chair, APRALO </div>
<div class="speaker-organisation">ICANN</div>
<div class="speaker-info">Programmer, Development Professional and Internet Governance Practitioner, associated with ICANN, ISOC, IEEE and InApp. Fellow and former President of Computer Society of India. Chair, APRALO, ICANN and Member, 2017 HAC, IEEE.</div>
<a href="https://www.linkedin.com/in/sierrabravo/" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<a href="https://twitter.com/satish_babu" title="Twitter" class="social-icons twitter" target="_blank"></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="nandini" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Professor Nandini Vaidyanathan</h4>
</div>
<div class="modal-body">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/nandini.jpg" alt="Nandini Vaidyanathan"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Professor Nandini Vaidyanathan</div>
<div class="speaker-designation">Chairman and Managing Director</div>
<div class="speaker-organisation">CARMa Venture Services</div>
<div class="speaker-info">She’s a traveling teacher who specialises in entrepreneurship, in several Ivy League business schools around the world. <br>
After 20 years in the corporate sector, working in MNC-s in all inhabited continents, she returned to India in 2005 and began teaching entrepreneurship. Realizing that the only way she could bring real time experience to her classroom was if she became an entrepreneur herself, she founded CARMa (Creating Access to Resources & Markets; www.carmaconnect.in) with a lofty ambition: to offer professional mentoring to entrepreneurs as a risk mitigating strategy. CARMa mentors start-ups, mature enterprises and family businesses. As on date, CARMa has mentored over 2000 entrepreneurs. CARMa has also been involved in mentoring women to scale from livelihood enterprises to opportunity-based and profitable organizations in Afghanistan, South and East Africa and India. Till date over 10,000 women have been mentored to build scalable and profitable enterprises. <br>
A prolific writer for mainstream newspapers, portals and blogs, her first book Entrepedia: A Step by Step Guide to Becoming an Entrepreneur in India, has been a best-seller since its launch in 2011. Its second edition, updated and contemporized, came out in 2015 and has become the Bible of the start-up community. Her second book, Start up, Stand up, was published in 2016. While Entrepedia was all about how to take an idea from your head to the marketplace, Start up, Stand up is about how to grow your business from your first paying customer to an evangelical user community. <br>
A TED speaker and regular jury member of television shows on business channels and entrepreneurship events across the world, she was named Business Woman of the Year by Business Goa in 2014. <br>
Passionate about cooking and entertaining people, her versatility extends to the Carnatic form of music in which she is a trained singer. She currently lives in Goa.<br>
</div>
<a href="https://www.facebook.com/nandini.vaidyanathan" title="Facebook" class="social-icons fb" target="_blank"></a>
<!-- <a href="#" title="Twitter" class="social-icons twitter" target="_blank"></a> -->
<a href="https://in.linkedin.com/in/nandinivaidyanathan" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<!-- Modal -->
</div>
</div>
</div>
</div>
</div>
</div>
<div id="abhilash-ashok" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Mr. Abhilash Ashok</h4>
</div>
<div class="modal-body">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/abhilash-ashok.jpg" alt="Abhilash Ashok"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Abhilash Ashok</div>
<div class="speaker-designation">Senior Lead, UX Development</div>
<div class="speaker-organisation">Valorem</div>
<div class="speaker-info">An Incorruptible Passionate Microsoft Technology Stack Enthusiast with rich 8+ years’ experience, well-versed with Windows 10/UWP, Xamarin, WPF, HoloLens, Windows Phone/ Store/RT, Kinect for Windows, Xbox, Unity 3D, and legacy technologies like ASP.NET, Silverlight, ExtJS, WinForms, etc. He’s a prominent speaker in Microsoft Technology Community mainly K-MUG.<br/>
He completed graduation in Computer Engineering from Mahatma Gandhi University in 2007. He’s working as Technical Team Lead at Identitymine – a UX Strategy expert company, working close with Microsoft, where he’s responsible for developing premium apps and services with cutting edge technologies. Besides development, he loves mentoring & building enthusiastic team. He finds himself lucky enough to work close with MVPs and Microsoft Regional Directors.<br/>
He also has solid experience in airline domain, telecom domain, software and services; combined with proven experience in product life cycle, product quality, envisioning features, development and implementation. He had received various awards and laurels for his proven performance.
<br/>
He writes about “Nerds False Positive” in his blog – CameTooFar (http://cametoofar.com/) and tweets at https://twitter.com/abhilashca.
</div>
<a href="https://www.facebook.com/abhilashca" title="Facebook" class="social-icons fb" target="_blank"></a>
<a href="https://twitter.com/abhilashca" title="Twitter" class="social-icons twitter" target="_blank"></a>
<a href="https://www.linkedin.com/in/abhilashca/" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="michael" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Mr. Michael Gord</h4>
</div>
<div class="modal-body">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/michael.jpg" alt="Michael Gord"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Michael Gord</div>
<div class="speaker-designation">Founder & CEO</div>
<div class="speaker-organisation">MLG Blockchain Consulting</div>
<div class="speaker-info">Michael is a blockchain developer at TD and the founder of Bitcoin Canada and the McGill Cryptocurrency Club. While at McGill, Michael organized the Bitcoin Airdrop events where he gave hundreds of students their first bitcoin..</div>
<a href="https://twitter.com/bitgord" title="Twitter" class="social-icons twitter" target="_blank"></a>
<a href="https://www.linkedin.com/in/mgord/" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="rama-brahmam" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Mr. Rama Brahmam Aleti </h4>
</div>
<div class="modal-body">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/rama-brahmam.jpg" alt="Rama Brahmam Aleti"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Rama Brahmam Aleti</div>
<div class="speaker-designation">Co-Founder & UX Strategist</div>
<div class="speaker-organisation">Think Design Collaborative</div>
<div class="speaker-info">
As a Co-founder & Director - Experience Design, at Think Design Collaborative, Rama has been instrumental in developing the company into a leading, world-class UX Design and Innovation Consultancy. As part of the core team, Rama helps in driving the company's strategy, business and mentor its overall growth.
<br>
He heads a team of over 90 Designers and has implemented 200+ UX projects in multiple domains such as - Finance, Education, Healthcare, Telecom, E-Commerce, and Entertainment. The companies include several Fortune companies, MNCs and startups.
<br>
In addition to leading the practice at Think Design, Rama also conducts workshops on Design Thinking, Experience Design & Innovation. Rama is a regular speaker for Product Conclave at NASSCOM Events; a warm association that has seen him conducts six such workshops. He has also been invited by IIM-A, Indian School of Business (ISB), Unicom and conducted numerous Design workshops within India, North America and South America.
<br>
Rama recommends initiating Design through workshop/s by inviting all stakeholders who can participate and hence collaborate in the solutioning process. He believes ‘Design Driven Innovation’ is the future and is certain that most of the businesses in this connected world will use it as a tool to stay ahead in business and innovation.
<br>
Rama is a Post Graduate from the prestigious National Institute of Design (NID) after doing his Graduation in Applied Arts from Jawaharlal Nehru Technological University (JNTU). An ardent Design background is what enables Rama to extend his expertise to Strategic Design, Experience Design and Design Thinking.
<br>
On a personal front, he loves his South Indian delicacies, is an avid movie enthusiast, a great fan of Indian films, especially his regional Telugu movies. Even whilst pursuing his geeky inclinations, he loves spending time with his family, particularly, playing with his daughter and watching her grow up.
</div>
<a href="https://www.linkedin.com/in/aleti-rama-brahmam-127a835/" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="rafi" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Mr. Mohammed Rafi T. F.</h4>
</div>
<div class="modal-body">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/rafi.jpg" alt="MOHAMMED RAFI T.F"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. Mohammed Rafi T.F.</div>
<div class="speaker-designation">Behavioural Scientist, Life Transformation Specialist and International Master Trainer</div>
<div class="speaker-organisation">Neuro Lingusitic Programme </div>
<div class="speaker-info">A Behavioural Scientist, Life Transformation Specialist and International Master Trainer in Neuro Lingusitic Programme with more than 13 years of experience in various streams ranging from Information Technology to Education to Retail and Insurance.
<br>
Have heart fully trained more than 100 thousand people ranging from CEO’s to Celebrities to Billion Dollar Entrepreneurs. Was instrumental in coaching and mentoring senior managers and CEO’s of Corporate, Government, Private Sector and NGO’s to bring out the best in them and achieve excellence in their respective fields. A creative professional who applies his heart and soul into any assignment that he takes, and transforms the lives of those he comes across in his training programs and one to one coaching sessions.
<br>
He is one of the only two trainers from Asia to be directly mentored by NLP Co-Creator Dr.John Grinder. He is also the Peak performance coach for Indian Junior Girls Gymnastics team and he is the personal NLP Coach for the National Award Winning Malayalam Actor Jayasurya. Some of Rafi’s esteemed clients include Organizations like Coca Cola, Lupin Pharma, Allianz Group, Reliance Industries, E&Y, LIC and many more. Currently he is pursuing research in Behavioural Neuropsychology, NLP, Micro Expression Patterns and Provocative Coaching.
<br><br>
<strong>Educational Competency:</strong> <br>
• Master in Human Resource Management <br>
• Researcher in Behavioural Neuropsychology Certified International NLP Master Trainer. <br>
• Certified Peak Performance and Behavioural Trainer. <br>
• Certified Fire Walk Trainer.<br>
• Sales Mastery Expert.<br>
• Certified Provocative Therapy Practitioner.<br>
• Integral Eye Movement Therapy Advanced Practitioner. <br>
• 1 year Management development program from School of Communication and Management Studies
</div>
<a href="https://www.facebook.com/mohammed.rafi.71619" title="Facebook" class="social-icons fb" target="_blank"></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="sivasankar" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Mr. M Sivasankar IAS</h4>
</div>
<div class="modal-body">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/sivasankar.jpg" alt="Mr M Sivasankar IAS"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Mr. M Sivasankar IAS</div>
<div class="panel-designation">IT Secretary</div>
<div class="speaker-organisation">Government of Kerala</div>
<div class="speaker-info">Shri. M Sivasankar is presently the Secretary to Government, IT Department since June, 2016. He is also holding the charge of Officer on Special Duty to the Chief Minister of Kerala.<br>
Sivasankar an Engineering Graduate and a Master of Business Administration (MBA) started his career as an officer in the Reserve Bank of India. He was subsequently appointed as Deputy Collector to the Government. While in service he was selected to the Indian Administrative Service (IAS) in 1995 which is the highest bureaucratic position in administrative service of India. <br>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="nandini-vaidyanathan" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Professor Nandini Vaidyanathan</h4>
</div>
<div class="modal-body">
<div class="speakers-wrap">
<div class="speakers-photo-case">
<div class="speakers-photo"><img src="images/dk17/nandini.jpg" alt="Nandini Vaidyanathan"></div>
</div>
<div class="speakers-detail">
<div class="speaker-name">Professor Nandini Vaidyanathan</div>
<div class="speaker-designation">Chairman and Managing Director</div>
<div class="speaker-organisation">CARMa Venture Services</div>
<div class="speaker-info">She’s a traveling teacher who specialises in entrepreneurship, in several Ivy League business schools around the world. <br>
After 20 years in the corporate sector, working in MNC-s in all inhabited continents, she returned to India in 2005 and began teaching entrepreneurship. Realizing that the only way she could bring real time experience to her classroom was if she became an entrepreneur herself, she founded CARMa (Creating Access to Resources & Markets; www.carmaconnect.in) with a lofty ambition: to offer professional mentoring to entrepreneurs as a risk mitigating strategy. CARMa mentors start-ups, mature enterprises and family businesses. As on date, CARMa has mentored over 2000 entrepreneurs. CARMa has also been involved in mentoring women to scale from livelihood enterprises to opportunity-based and profitable organizations in Afghanistan, South and East Africa and India. Till date over 10,000 women have been mentored to build scalable and profitable enterprises.
</div>
<a href="https://www.facebook.com/nandini.vaidyanathan" title="Facebook" class="social-icons fb" target="_blank"></a>
<!-- <a href="#" title="Twitter" class="social-icons twitter" target="_blank"></a> -->
<a href="https://in.linkedin.com/in/nandinivaidyanathan" title="LinkedIn" class="social-icons linkedIn" target="_blank"></a>
<!-- Modal -->
</div>
</div>
</div>
</div>
</div>
</div>