forked from xriley/DevConf-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reference.txt
2211 lines (2155 loc) · 102 KB
/
reference.txt
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
// SPEAKERs section -----------------------------------------------
<section id="speakers-section" class="speakers-section section">
<div class="container">
<h3 class="section-heading text-center mb-3">Speakers</h3>
<div class="section-intro text-center single-col-max mx-auto mb-5">Here is the list of our Expert Speakers
of the Event</div>
<div class="speakers-container row mx-auto">
<!-- DEV_REF DEV_REF_SPEAKERS paste speakers below (detele siblings to this comments before adding new data)-->
<!-- DEV_REF Start -->
<!-- Prof. (Dr.) Naveen Kumar Chaudhary START -->
<div class="col-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a target="_blank" href="#modal-speaker-17" data-bs-toggle="modal"
data-bs-target="#modal-speaker-17"><img src="assets/images/speakers/speaker-17.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Prof. (Dr.) Naveen Kumar Chaudhary</h5>
<div class="card-text mb-3">
<div class="meta">Campus Director, NFSU Goa Campus, served as director of Ministry of
External Affairs, Gov of India</div>
<div class="meta"></div>
</div>
<a target="_blank" href="#modal-speaker-17" data-bs-toggle="modal"
data-bs-target="#modal-speaker-17">Read
more →</a>
</div>
<div class="card-footer text-muted">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a target="_blank"
href="https://www.linkedin.com/in/naveen-chaudhary-3b626a232/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-17" id="modal-speaker-17" tabindex="-1" role="dialog"
aria-labelledby="speaker-17-ModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="btn-close" data-bs-dismiss="modal"
aria-hidden="true">×</button>
<h4 id="speaker-13-ModalLabel" class="modal-title sr-only">Prof. (Dr.) Naveen Kumar
Chaudhary</h4>
</div>
<div class="modal-body p-0">
<div class="theme-bg-light p-5">
<div class="row">
<div class="col-12 col-md-auto text-center">
<img class="profile-image mb-3 mb-md-0 me-md-4 rounded-circle mx-auto"
src="assets/images/speakers/speaker-17.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Prof. (Dr.) Naveen Kumar Chaudhary</h2>
<div class="meta">Campus Director, NFSU Goa Campus, served as director
of Ministry of External Affairs, Gov of India</div>
<div class="meta mb-2">Campus Director, NFSU Goa Campus, served as
director of Ministry of
External Affairs, Gov of India</div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/naveen-chaudhary-3b626a232/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p></p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Prof. (Dr.) Naveen Kumar Chaudhary END -->
<!-- Cherish Santoshi START -->
<div class="col-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a target="_blank" href="#modal-speaker-20" data-bs-toggle="modal"
data-bs-target="#modal-speaker-20"><img src="assets/images/speakers/speaker-20.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Cherish Santoshi</h5>
<div class="card-text mb-3">
<div class="meta">Cherish Santoshi is an award-winning Developer Relations leader
focused on how developers build distributed applications.</div>
</div>
<a target="_blank" href="#modal-speaker-20" data-bs-toggle="modal"
data-bs-target="#modal-speaker-20">Read
more →</a>
</div>
<div class="card-footer text-muted">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/CherishSantoshi"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href="https://www.linkedin.com/in/cherishsantoshi"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-20" id="modal-speaker-20" tabindex="-1" role="dialog"
aria-labelledby="speaker-20-ModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="btn-close" data-bs-dismiss="modal"
aria-hidden="true">×</button>
<h4 id="speaker-20-ModalLabel" class="modal-title sr-only">Cherish Santoshi</h4>
</div>
<div class="modal-body p-0">
<div class="theme-bg-light p-5">
<div class="row">
<div class="col-12 col-md-auto text-center">
<img class="profile-image mb-3 mb-md-0 me-md-4 rounded-circle mx-auto"
src="assets/images/speakers/speaker-20.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Cherish Santoshi</h2>
<div class="meta">Cherish Santoshi is an award-winning Developer
Relations leader focused on how developers build distributed
applications. In his career of 9 years, he led programs for Google,
Amazon, HackerEarth, and many early-stage startups. After building a
community of 5 million developers across the globe, Cherish
continues to share his experiences and strives to improve developers
experience and awareness.</div>
<div class="meta mb-2"></div>
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a
href="https://twitter.com/CherishSantoshi"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/cherishsantoshi"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p></p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Cherish Santoshi END -->
<!-- Ankit Sharma START -->
<div class="col-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a target="_blank" href="#modal-speaker-1" data-bs-toggle="modal"
data-bs-target="#modal-speaker-1"><img src="assets/images/speakers/speaker-1.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Ankit Sharma</h5>
<div class="card-text mb-3">
<div class="meta">SDE III at Cisco, GDE at Angular</div>
<div class="meta"></div>
</div>
<a target="_blank" href="#modal-speaker-1" data-bs-toggle="modal"
data-bs-target="#modal-speaker-1">Read
more →</a>
</div>
<div class="card-footer text-muted">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/ankitsharma_007/"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href="https://www.linkedin.com/in/ankitsharma-007/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-1" id="modal-speaker-1" tabindex="-1" role="dialog"
aria-labelledby="speaker-1-ModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="btn-close" data-bs-dismiss="modal"
aria-hidden="true">×</button>
<h4 id="speaker-1-ModalLabel" class="modal-title sr-only">Ankit Sharma</h4>
</div>
<div class="modal-body p-0">
<div class="theme-bg-light p-5">
<div class="row">
<div class="col-12 col-md-auto text-center">
<img class="profile-image mb-3 mb-md-0 me-md-4 rounded-circle mx-auto"
src="assets/images/speakers/speaker-1.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Ankit Sharma</h2>
<div class="meta">SDE III at Cisco, GDE at Angular</div>
<div class="meta mb-2"></div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a
href="https://twitter.com/ankitsharma_007/"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/ankitsharma-007/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>Ankit Sharma is a Software Engineer, working with Cisco Systems and staying
with his family at Samastipur, Bihar, India. He has over 8 years of
extensive experience in Microsoft technologies including C#, ASP.NET, SQL
Server, and UI technologies such as JQuery, Angular, and Blazor. Ankit is a
technical author and speaker and loves to contribute to the open-source
community. He writes articles for multiple platforms, which include
c-sharpcorner, Dzone, Medium, and freeCodeCamp. For his dedicated
contribution to the developer’s community, he has been recognized as the
Google Developer Expert for Angular and a Microsoft MVP for Developer
Technologies. He is the author of Blazor Quick Start Guide and Learn C#
Programming.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Ankit Sharma END -->
<!-- Nitin Prakash START -->
<div class="col-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a target="_blank" href="#modal-speaker-2" data-bs-toggle="modal"
data-bs-target="#modal-speaker-2"><img src="assets/images/speakers/speaker-2.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Nitin Prakash</h5>
<div class="card-text mb-3">
<div class="meta">SDE III at Trell, GDE for Android; Ex-SSE for Android at BYJUS</div>
<div class="meta"></div>
</div>
<a target="_blank" href="#modal-speaker-2" data-bs-toggle="modal"
data-bs-target="#modal-speaker-2">Read
more →</a>
</div>
<div class="card-footer text-muted">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/NitinDroid/"><i class="fab fa-twitter fa-fw"></i></a>
</li>
<li class="list-inline-item"><a target="_blank"
href="https://www.linkedin.com/in/nitin-prakash9911/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-1" id="modal-speaker-2" tabindex="-1" role="dialog"
aria-labelledby="speaker-2-ModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="btn-close" data-bs-dismiss="modal"
aria-hidden="true">×</button>
<h4 id="speaker-2-ModalLabel" class="modal-title sr-only">Nitin Prakash</h4>
</div>
<div class="modal-body p-0">
<div class="theme-bg-light p-5">
<div class="row">
<div class="col-12 col-md-auto text-center">
<img class="profile-image mb-3 mb-md-0 me-md-4 rounded-circle mx-auto"
src="assets/images/speakers/speaker-2.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Nitin Prakash</h2>
<div class="meta">SDE III at Trell, GDE for Android; Ex-SSE for Android
at BYJUS</div>
<div class="meta mb-2"></div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a
href="https://twitter.com/NitinDroid/"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/nitin-prakash9911/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>Nitin Prakash is an Android Engineer, currently working with Trell, Ex-Byjus.
Nitin has completed his graduation in Electronics and Communication from
Maharishi Dayanand University, Haryana, and live in New Delhi. After
completing his graduation Nitin had worked in the telecom industry for more
than 2.5 years and but he also learned java and android while doing his
telecom job. He got his first break in the IT industry in Dec-2017 where he
worked as an individual contributor to the whole android app SDLC and he
developed 9 apps successfully. In Byjus were he handling the Snap-Camera
feature and also handling architecture optimization. He always focuses on
making the app more decoupled, testable, scalable, and extendable and he
also focuses on the smooth UX for the end-users. His passion is to develop
more robust android apps and learning every day into small pieces. His fun
fact, he is very loquacious if anybody talks about android dev.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Nitin Prakash END -->
<!-- Bhavna Thacker START -->
<div class="col-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a target="_blank" href="#modal-speaker-3" data-bs-toggle="modal"
data-bs-target="#modal-speaker-3"><img src="assets/images/speakers/speaker-3.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Bhavna Thacker</h5>
<div class="card-text mb-3">
<div class="meta">Senior Software Engineer at MEGA; GDE Android</div>
<div class="meta"></div>
</div>
<a target="_blank" href="#modal-speaker-3" data-bs-toggle="modal"
data-bs-target="#modal-speaker-3">Read
more →</a>
</div>
<div class="card-footer text-muted">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/bhavnathacker14"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/bhavna-thacker-64956985/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-1" id="modal-speaker-3" tabindex="-1" role="dialog"
aria-labelledby="speaker-3-ModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="btn-close" data-bs-dismiss="modal"
aria-hidden="true">×</button>
<h4 id="speaker-3-ModalLabel" class="modal-title sr-only">Bhavna Thacker</h4>
</div>
<div class="modal-body p-0">
<div class="theme-bg-light p-5">
<div class="row">
<div class="col-12 col-md-auto text-center">
<img class="profile-image mb-3 mb-md-0 me-md-4 rounded-circle mx-auto"
src="assets/images/speakers/speaker-3.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Bhavna Thacker</h2>
<div class="meta">Senior Software Engineer at MEGA; GDE Android</div>
<div class="meta mb-2"></div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a
href="https://twitter.com/bhavnathacker14"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/bhavna-thacker-64956985/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>Bhavna is a Google Developer Expert for Android and Senior Software Engineer
at MEGA. She is also a WTM member and Final Pass Editor @raywenderlich. She
likes to share her learnings via YouTube channel - LearnAndroid. When she is
not at work, you can find her in the kitchen listening to music and
experimenting new dishes.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Bhavna Thacker END -->
<!-- Rivu Chakraborty START -->
<div class="col-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a target="_blank" href="#modal-speaker-4" data-bs-toggle="modal"
data-bs-target="#modal-speaker-4"><img src="assets/images/speakers/speaker-4.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Rivu Chakraborty</h5>
<div class="card-text mb-3">
<div class="meta">Lead Android Engineer at Meesho; GDE Kotlin </div>
<div class="meta"></div>
</div>
<a target="_blank" href="#modal-speaker-4" data-bs-toggle="modal"
data-bs-target="#modal-speaker-4">Read
more →</a>
</div>
<div class="card-footer text-muted">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/rivuchakraborty/"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href="https://www.linkedin.com/in/rivuchk/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-1" id="modal-speaker-4" tabindex="-1" role="dialog"
aria-labelledby="speaker-4-ModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="btn-close" data-bs-dismiss="modal"
aria-hidden="true">×</button>
<h4 id="speaker-4-ModalLabel" class="modal-title sr-only">Rivu Chakraborty</h4>
</div>
<div class="modal-body p-0">
<div class="theme-bg-light p-5">
<div class="row">
<div class="col-12 col-md-auto text-center">
<img class="profile-image mb-3 mb-md-0 me-md-4 rounded-circle mx-auto"
src="assets/images/speakers/speaker-4.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Rivu Chakraborty</h2>
<div class="meta">Lead Android Engineer at Meesho; GDE Kotlin </div>
<div class="meta mb-2"></div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a
href="https://twitter.com/rivuchakraborty/"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/rivuchk/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>Rivu Chakraborty is a Kotlin GDE, an Android developer, a community person, &
one of the early adopters of Kotlin. With overall ~10 years of experience,
he's presently working at Meesho as a Lead Android Engineer. He previously
used to work at Gojek, Paytm (India's biggest Fintech startup) and Byju's
(India's biggest Edtech startup). He has contributed to multiple Kotlin and
Android Development books including authoring Reactive Programming in
Kotlin, co-authoring Functional Kotlin the first-ever book to help Kotlin
developers learn Functional Programming and use Arrow-kt in their projects,
and co-authoring Hands-On Data Structures and Algorithms with Kotlin. He has
been using Kotlin since December 2015. Rivu formed KotlinKolkata User Group,
the first active Kotlin User Group in India. Before he had to move out of
Kolkata, he was organizing meetups and events for both KotlinKolkata and GDG
Kolkata. Along with organizing community & events, he also speaks at
events/conferences and local meetups.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Rivu Chakraborty END -->
<!-- Praveen Thirumurugan START -->
<div class="col-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a target="_blank" href="#modal-speaker-5" data-bs-toggle="modal"
data-bs-target="#modal-speaker-5"><img src="assets/images/speakers/speaker-5.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Praveen Thirumurugan</h5>
<div class="card-text mb-3">
<div class="meta">Software Engineer at Plum</div>
<div class="meta"></div>
</div>
<a target="_blank" href="#modal-speaker-5" data-bs-toggle="modal"
data-bs-target="#modal-speaker-5">Read
more →</a>
</div>
<div class="card-footer text-muted">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/PraveenTcom/"><i class="fab fa-twitter fa-fw"></i></a>
</li>
<li class="list-inline-item"><a target="_blank"
href="https://www.linkedin.com/in/praveentcom/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-1" id="modal-speaker-5" tabindex="-1" role="dialog"
aria-labelledby="speaker-5-ModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="btn-close" data-bs-dismiss="modal"
aria-hidden="true">×</button>
<h4 id="speaker-5-ModalLabel" class="modal-title sr-only">Praveen Thirumurugan</h4>
</div>
<div class="modal-body p-0">
<div class="theme-bg-light p-5">
<div class="row">
<div class="col-12 col-md-auto text-center">
<img class="profile-image mb-3 mb-md-0 me-md-4 rounded-circle mx-auto"
src="assets/images/speakers/speaker-5.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Praveen Thirumurugan</h2>
<div class="meta">Software Engineer at Plum</div>
<div class="meta mb-2"></div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a
href="https://twitter.com/PraveenTcom/"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/praveentcom/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>Praveen is currently in Bangalore, where he works as a Software Engineer at
Plum. During his early professional life, he contributed a lot to open
source and has been the head of the Cloud Coimbatore community for several
years. He has 5+ years of experience with various tech domains, focusing on
UI Frameworks and Cloud Services. Praveen enjoys working in Aviation,
Photography and Travel in his spare time.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Praveen Thirumurugan END -->
<!-- Shree Bhagwat START -->
<div class="col-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a target="_blank" href="#modal-speaker-6" data-bs-toggle="modal"
data-bs-target="#modal-speaker-6"><img src="assets/images/speakers/speaker-6.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Shree Bhagwat</h5>
<div class="card-text mb-3">
<div class="meta">Founder of Codeaamy; Flutter Pune Organiser; YouTuber; Blogger</div>
<div class="meta"></div>
</div>
<a target="_blank" href="#modal-speaker-6" data-bs-toggle="modal"
data-bs-target="#modal-speaker-6">Read
more →</a>
</div>
<div class="card-footer text-muted">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/shreebhagwat94/"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href="https://www.linkedin.com/in/shrihriday/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-1" id="modal-speaker-6" tabindex="-1" role="dialog"
aria-labelledby="speaker-6-ModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="btn-close" data-bs-dismiss="modal"
aria-hidden="true">×</button>
<h4 id="speaker-6-ModalLabel" class="modal-title sr-only">Shree Bhagwat</h4>
</div>
<div class="modal-body p-0">
<div class="theme-bg-light p-5">
<div class="row">
<div class="col-12 col-md-auto text-center">
<img class="profile-image mb-3 mb-md-0 me-md-4 rounded-circle mx-auto"
src="assets/images/speakers/speaker-6.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Shree Bhagwat</h2>
<div class="meta">Founder of Codeaamy; Flutter Pune Organiser; YouTuber;
Blogger</div>
<div class="meta mb-2"></div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a
href="https://twitter.com/shreebhagwat94/"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/shrihriday/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>Founder of Codeaamy, Flutter Pune Organiser Flutter Tech Editor, Video Course
Creator and lead mentor at Raywenderlich.com. Corporate Trainer For Flutter,
Youtuber and blogger.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Shree Bhagwat END -->
<!-- Amey Nerkar START -->
<div class="col-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a target="_blank" href="#modal-speaker-7" data-bs-toggle="modal"
data-bs-target="#modal-speaker-7"><img src="assets/images/speakers/speaker-7.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Amey Nerkar</h5>
<div class="card-text mb-3">
<div class="meta">Technical Product Manager, Bajaj Finserv Health; Google Certified
Engineer</div>
<div class="meta"></div>
</div>
<a target="_blank" href="#modal-speaker-7" data-bs-toggle="modal"
data-bs-target="#modal-speaker-7">Read
more →</a>
</div>
<div class="card-footer text-muted">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/ameyinvent/"><i class="fab fa-twitter fa-fw"></i></a>
</li>
<li class="list-inline-item"><a target="_blank"
href="https://www.linkedin.com/in/ameyinvent/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-1" id="modal-speaker-7" tabindex="-1" role="dialog"
aria-labelledby="speaker-7-ModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="btn-close" data-bs-dismiss="modal"
aria-hidden="true">×</button>
<h4 id="speaker-7-ModalLabel" class="modal-title sr-only">Amey Nerkar</h4>
</div>
<div class="modal-body p-0">
<div class="theme-bg-light p-5">
<div class="row">
<div class="col-12 col-md-auto text-center">
<img class="profile-image mb-3 mb-md-0 me-md-4 rounded-circle mx-auto"
src="assets/images/speakers/speaker-7.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Amey Nerkar</h2>
<div class="meta">Technical Product Manager, Bajaj Finserv Health;
Google Certified Engineer</div>
<div class="meta mb-2"></div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a
href="https://twitter.com/ameyinvent/"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/ameyinvent/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>Amey is a social innovator and changemaker who enjoys building things that
impact the community. He develops exceptional products and deploys those in
the community around him. He is featured by Google for the impact he is
creating using the technology! Amey is currently working as a Technical
Product Manager and is experienced in developing and managing the technical
side of the products. He is a Google Cloud Certified Engineer and
Facebook-certified community manager. He is a full-time Technical Product
Manager and loves spending weekends over Music + Code!</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Amey Nerkar END -->
<!-- Akansha Jain START -->
<div class="col-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a target="_blank" href="#modal-speaker-9" data-bs-toggle="modal"
data-bs-target="#modal-speaker-9"><img src="assets/images/speakers/speaker-9.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Akansha Jain</h5>
<div class="card-text mb-3">
<div class="meta">SW Engineer Intern (Flutter) at A.P. Moller Maersk; Gold Microsoft
Learn Student Ambassador</div>
<div class="meta"></div>
</div>
<a target="_blank" href="#modal-speaker-9" data-bs-toggle="modal"
data-bs-target="#modal-speaker-9">Read
more →</a>
</div>
<div class="card-footer text-muted">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/Akansha2001/"><i class="fab fa-twitter fa-fw"></i></a>
</li>
<li class="list-inline-item"><a target="_blank"
href="https://www.linkedin.com/in/akansha-jain-2001/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-1" id="modal-speaker-9" tabindex="-1" role="dialog"
aria-labelledby="speaker-9-ModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="btn-close" data-bs-dismiss="modal"
aria-hidden="true">×</button>
<h4 id="speaker-9-ModalLabel" class="modal-title sr-only">Akansha Jain</h4>
</div>
<div class="modal-body p-0">
<div class="theme-bg-light p-5">
<div class="row">
<div class="col-12 col-md-auto text-center">
<img class="profile-image mb-3 mb-md-0 me-md-4 rounded-circle mx-auto"
src="assets/images/speakers/speaker-9.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Akansha Jain</h2>
<div class="meta">SW Engineer Intern (Flutter) at A.P. Moller Maersk;
Gold Microsoft Learn Student Ambassador</div>
<div class="meta mb-2"></div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a
href="https://twitter.com/Akansha2001/"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/akansha-jain-2001/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>I am currently working as an SW Engineer Intern at A.P. Moller Maersk. I was
a Google Developer Student Clubs Lead for the session 2021-22 and a Gold
Microsoft Learn Student Ambassador. I completed my B. Sc. Hons. in Computer
Science Degree from Shaheed Rajguru College of Applied Sciences for Women,
University of Delhi. I also completed Diploma in German Language from
University of Delhi only. My interest lies in Application Development and I
love contributing to open source. I am also passionate about UI/UX
Designing.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Akansha Jain END -->
<!-- Abhishek Doshi START -->
<div class="col-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a target="_blank" href="#modal-speaker-10" data-bs-toggle="modal"
data-bs-target="#modal-speaker-10"><img src="assets/images/speakers/speaker-10.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Abhishek Doshi</h5>
<div class="card-text mb-3">
<div class="meta">Sr. Flutter Engineer at Somnio Software; Google Developer Expert (GDE)
for Dart, Flutter & Firebase</div>
<div class="meta"></div>
</div>
<a target="_blank" href="#modal-speaker-10" data-bs-toggle="modal"
data-bs-target="#modal-speaker-10">Read
more →</a>
</div>
<div class="card-footer text-muted">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/AbhishekDoshi26/"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href="https://linkedin.com/in/abhishekdoshi26/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-1" id="modal-speaker-10" tabindex="-1" role="dialog"
aria-labelledby="speaker-10-ModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="btn-close" data-bs-dismiss="modal"
aria-hidden="true">×</button>
<h4 id="speaker-10-ModalLabel" class="modal-title sr-only">Abhishek Doshi</h4>
</div>
<div class="modal-body p-0">
<div class="theme-bg-light p-5">
<div class="row">
<div class="col-12 col-md-auto text-center">
<img class="profile-image mb-3 mb-md-0 me-md-4 rounded-circle mx-auto"
src="assets/images/speakers/speaker-10.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Abhishek Doshi</h2>
<div class="meta">Sr. Flutter Engineer at Somnio Software; Google
Developer Expert (GDE) for Dart, Flutter & Firebase</div>
<div class="meta mb-2"></div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a
href="https://twitter.com/AbhishekDoshi26/"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a
href="https://linkedin.com/in/abhishekdoshi26/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>I am a Google Developer Expert (GDE) for Dart, Flutter & Firebase. I am the
youngest GDE in the world. I am also a Google Mentor, thereby mentoring
individuals and companies who wish to start with Flutter. Apart from that, I
am the Organiser of Flutter Valsad and Co-Organiser of Flutter India. I am
also an Internation Tech Speaker and Tech Content Writer. Currently, I work
at Somnio Software as Sr. Flutter Engineer and my main responsibilities
include advising the team, reviewing their code, taking critical decisions,
coding, solving major critical issues, etc.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Abhishek Doshi END -->
<!-- Elio Jordan Lopes START -->
<div class="col-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a target="_blank" href="#modal-speaker-11" data-bs-toggle="modal"
data-bs-target="#modal-speaker-11"><img src="assets/images/speakers/speaker-11.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Elio Jordan Lopes</h5>
<div class="card-text mb-3">
<div class="meta">Co-Founder CEO, IntoTheVerse Inc.</div>
<div class="meta"></div>
</div>
<a target="_blank" href="#modal-speaker-11" data-bs-toggle="modal"
data-bs-target="#modal-speaker-11">Read
more →</a>
</div>
<div class="card-footer text-muted">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/ElioOnCelo/"><i class="fab fa-twitter fa-fw"></i></a>
</li>
<li class="list-inline-item"><a target="_blank"
href="https://www.linkedin.com/in/lopeselio/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-1" id="modal-speaker-11" tabindex="-1" role="dialog"
aria-labelledby="speaker-11-ModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="btn-close" data-bs-dismiss="modal"
aria-hidden="true">×</button>
<h4 id="speaker-11-ModalLabel" class="modal-title sr-only">Elio Jordan Lopes</h4>
</div>
<div class="modal-body p-0">
<div class="theme-bg-light p-5">
<div class="row">
<div class="col-12 col-md-auto text-center">
<img class="profile-image mb-3 mb-md-0 me-md-4 rounded-circle mx-auto"
src="assets/images/speakers/speaker-11.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Elio Jordan Lopes</h2>
<div class="meta">Co-Founder CEO, IntoTheVerse Inc.</div>
<div class="meta mb-2"></div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a
href="https://twitter.com/ElioOnCelo/"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/lopeselio/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>Elio Jordan Lopes Co-Founder CEO, IntoTheVerse Inc. Building IntoTheVerse
Inc., sustainable games and gaming economies for good, powered by Blockchain
and Web3. </p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Elio Jordan Lopes END -->
<!-- Yashwant Choudhary START -->
<div class="col-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a target="_blank" href="#modal-speaker-12" data-bs-toggle="modal"
data-bs-target="#modal-speaker-12"><img src="assets/images/speakers/speaker-12.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Yashwant Choudhary</h5>
<div class="card-text mb-3">
<div class="meta">Research Analyst, Decademia</div>
<div class="meta"></div>
</div>
<a target="_blank" href="#modal-speaker-12" data-bs-toggle="modal"
data-bs-target="#modal-speaker-12">Read
more →</a>
</div>
<div class="card-footer text-muted">
<ul class="social-list list-inline mb-0">
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/Yashwant_eth/"><i
class="fab fa-twitter fa-fw"></i></a></li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-1" id="modal-speaker-12" tabindex="-1" role="dialog"
aria-labelledby="speaker-12-ModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="btn-close" data-bs-dismiss="modal"
aria-hidden="true">×</button>
<h4 id="speaker-12-ModalLabel" class="modal-title sr-only">Yashwant Choudhary</h4>
</div>
<div class="modal-body p-0">
<div class="theme-bg-light p-5">
<div class="row">
<div class="col-12 col-md-auto text-center">
<img class="profile-image mb-3 mb-md-0 me-md-4 rounded-circle mx-auto"
src="assets/images/speakers/speaker-12.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Yashwant Choudhary</h2>
<div class="meta">Research Analyst, Decademia</div>
<div class="meta mb-2"></div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a
href="https://twitter.com/Yashwant_eth/"><i
class="fab fa-twitter fa-fw"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>Decademia - Research Analyst</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Yashwant Choudhary END -->
<!-- Vishakha Chavan START -->
<div class="col-6 col-lg-3 mb-4">
<div class="card rounded-0">
<a target="_blank" href="#modal-speaker-13" data-bs-toggle="modal"
data-bs-target="#modal-speaker-13"><img src="assets/images/speakers/speaker-13.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Vishakha Chavan</h5>
<div class="card-text mb-3">
<div class="meta">Chief Data Scientist, Abjayon Inc; WomenTechmakers Community Leader;
AI Researcher</div>
<div class="meta"></div>
</div>
<a target="_blank" href="#modal-speaker-13" data-bs-toggle="modal"
data-bs-target="#modal-speaker-13">Read
more →</a>
</div>