forked from xriley/DevConf-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
3802 lines (3652 loc) · 168 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Primary Meta Tags -->
<title>GDG DevFest Goa</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="title" content="GDG DevFest Goa">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Developers Conference - GDG Goa">
<meta name="author" content="Atharva Parkhe and Madem Greeshma">
<!-- <link rel="shortcut icon" href="favicon.ico"> -->
<link rel="icon" type="image/x-icon" href="favicon.ico">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://gdggoa.com">
<meta property="og:title" content="GDG DevFest Goa">
<meta property="og:description" content="Developers Conference - GDG Goa">
<meta property="og:image" content="favicon.ico">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://gdggoa.com">
<meta property="twitter:title" content="GDG DevFest Goa">
<meta property="twitter:description" content="Developers Conference - GDG Goa">
<meta property="twitter:image" content="favicon.ico">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:600,700,800|Roboto:300,400,700&display=swap"
rel="stylesheet">
<!-- FontAwesome JS-->
<script defer src="assets/fontawesome/js/all.min.js"></script>
<!-- Theme CSS -->
<link id="theme-style" rel="stylesheet" href="assets/css/theme.css">
<!-- Inline S tyles for some fixtures -->
<style>
@media screen and (min-width: 992px) {
.volunteer-grid {
max-width: 100%;
}
.show,
.collapsing {
box-shadow: 0 1px 4px 0 rgb(0 0 0 / 10%);
background: transparent;
}
}
.hero-carousel .carousel-item-1 {
background: url("./assets/images/banner-2023.png") no-repeat center center;
background-size: cover;
background-position: top;
filter: blur(0.7px);
}
@media screen and (min-width: 768px) {
#speakerCarousel {
width: 60%;
}
}
.show,
.collapsing {
box-shadow: 0 1px 4px 0 rgb(0 0 0 / 10%);
background: #141c25;
;
}
</style>
</head>
<body>
<!-- header-->
<header id="header" class="header fixed-top">
<div class="branding">
<div class="container-fluid">
<nav class="main-nav navbar navbar-expand-lg">
<div class="site-logo"><a target="_blank" class="scrollto" href="#hero-section"
style="color: white; text-decoration:none;"><img class="logo-icon"
src="assets/images/logo.png" alt="devfest logo"> Dev Fest 2024 </a>
</div>
<div class="navbar-btn order-lg-2"><a target="_blank" class="btn btn-secondary"
href="#" target="_blank">Tickets available soon</a></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navigation"
aria-controls="navigation" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div id="navigation" class="navbar-collapse collapse justify-content-lg-end me-lg-3">
<ul class="nav navbar-nav">
<li class="nav-item"><a class="nav-link scrollto" href="#about-section">About</a></li>
<li class="nav-item"><a class="nav-link scrollto" href="#speakers-section">Speakers</a></li>
<li class="nav-item"><a class="nav-link scrollto" href="#schedule-section">Schedule</a></li>
<li class="nav-item"><a class="nav-link scrollto" href="#tickets-section">Tickets</a></li>
<li class="nav-item"><a class="nav-link scrollto" href="#venue-section">Venue</a></li>
<li class="nav-item"><a class="nav-link scrollto" href="#sponsors-section">Sponsors,
Partners & Startup Expo</a></li>
<li class="nav-item"><a class="nav-link scrollto" href="#Organiser-section">Team</a>
<li class="nav-item"><a class="nav-link" href="./profile-badge-generator/index.html"
target="_blank">Attendee Badge</a>
</li>
</ul>
<!--//nav-->
</div>
<!--//navabr-collapse-->
</nav>
<!--//main-nav-->
</div>
<!--//container-->
</div>
<!--//branding-->
</header>
<!-- END header-->
<!--HERO SECTION-->
<section id="hero-section">
<div id="hero-block" class="hero-block">
<div id="hero-carousel" class="hero-carousel carousel slide carousel-fade" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item-1 carousel-item active">
<!-- <img class="w-100 h-100" src="./assets/images/header-img-svg.svg" alt=""> -->
</div>
</div>
</div>
<!-- <div class="hero-block-mask"></div> -->
<div class="container">
<div class="hero-text-block">
<h1 class="hero-heading mb-2">DevFest 2024</h1>
<div class="hero-meta mb-5" style="color: rgb(236, 207, 45);"><i class="far fa-calendar-alt me-2"
style="color: #fff;"></i>19 Oct<i class="fas fa-map-marker-alt mx-2"
style="color: #fff;"></i><a target="_blank" href="https://maps.app.goo.gl/hRnk4ZB9eDuk7NAw6"
target="_blank" style="text-decoration: none; color: rgb(236, 207, 45);">Panjim Convention
Center, Panjim,
Goa</a></div>
<div class="hero-intro mb-4">GDG DevFest Goa brings together the world class experts in Mobile, Web,
AI,
ML and Cloud technologies to Goa for a day full of sessions, workshops and showcases.<br></div>
<div class="hero-cta"><a target="_blank" class="btn btn-secondary btn-lg"
href="#" rel="noopener noreferrer">Tickets available soon</a></div>
</div>
<!--//hero-text-block-->
</div>
<!--//container-->
</div>
<!--//hero-block-->
<div class="stats-block theme-bg-primary text-white py-4 text-center m-auto">
<div class="container m-auto">
<div class="row m-auto">
<div class="col-6 m-auto col-md-3">
<div class="item">
<div class="number">400+</div>
<div class="unit">Attendees</div>
</div>
<!--//item-->
</div>
<!--//col-->
<div class="col-6 m-auto col-md-3">
<div class="item">
<div class="number">10+</div>
<div class="unit">Expert Talks</div>
</div>
<!--//item-->
</div>
<div class="col-6 m-auto col-md-3">
<div class="item">
<div class="number">100%</div>
<div class="unit">Fun & Learning</div>
</div>
<!--//item-->
</div>
<!--//col-->
</div>
</div>
<!--//container-->
</div>
<!--//stats-block-->
<!-- https://www.townscript.com/e/devfest-goa-2023 -->
</section>
<!-- END HERO SECTION-->
<!--ABOUT SECTION-->
<section id="about-section" class="about-section section theme-bg-light">
<div class="container">
<h3 class="section-heading text-center mb-3">About DevFest</h3>
<div class="section-intro single-col-max mx-auto mb-4">An annual event hosted by the Google Developers Group
across the world to bring technology closer to the developers. It is a All-Day developer conference
where we aim to focus on multiple technologies through lightning talks, sessions, etc.</div>
<div class="section-intro single-col-max mx-auto mb-4">2024 will be the 13th year 🎉 of DevFest which marks
the beginning of the second decade of the GDG community.</div>
<div class="benefits-list single-col-max mx-auto text-center mb-3">
<h4 class="text-center mb-4">Why Join Us</h4>
<ul class="list-unstyled text-start d-inline-block">
<li><i class="fas fa-check-circle me-2"></i><strong> Technical content: </strong>Events hosted by
the Google Developer Groups community, featuring leading experts on Google technologies in areas
like Android, Firebase and so much more!</li>
<li><i class="fas fa-check-circle me-2"></i><strong> Roadmaps: </strong>Want to become a developer?
Join us to get all the answers.</li>
<li><i class="fas fa-check-circle me-2"></i><strong> Panel Discussions: </strong>Learn from the
interaction of an expert group of panelists.</li>
<li><i class="fas fa-check-circle me-2"></i><strong> Networking Sessions: </strong>Connect with
fellow attendees, speakers and community leaders.</li>
<li><i class="fas fa-check-circle me-2"></i><strong> Job Opportunities: </strong>Connect with
recruiters whose requirements match your skills.</li>
<li><i class="fas fa-check-circle me-2"></i><strong> Startup Opportunities: </strong>Explore the
latest trends, connect with potential investors, and collaborators, and learn how to take your
startup to the next level.</li>
<li><i class="fas fa-check-circle me-2"></i><strong> Swags and Goodies: </strong>Amazing spot prizes
for contests during the event</li>
<li><i class="fas fa-check-circle me-2"></i><strong> Ice Breaker Activities: </strong>Get refreshed
by participating in icebreaker activities.</li>
</ul>
</div>
<!--//benefits-list-->
<div class="event-countdown text-center mb-3">
<h4 class="countdown-intro mb-2 text-center mb-3">Event Starts In:</h4>
<div id="countdown-box" class="countdown-box"></div>
</div>
<!--//event-countdown-->
<div class="about-cta text-center mb-5"><a target="_blank" class="btn btn-secondary btn-lg mb-5"
href="#" target="_blank">Available soon</a></div>
</div>
<!--//container-->
<div class="media-block theme-bg-primary py-5">
<div class="container">
<h4 class="text-white text-center mb-3">Previously</h4>
<div class="section-intro text-center single-col-max mx-auto text-white mb-5">Here are some images from
previous DevFests.</div>
<div class="row gx-md-5">
<div id="speakerCarousel" class="carousel slide mx-auto" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active" data-bs-interval="2000">
<img src="./assets/images/slideshow/devfest-11.jpg" class="img-fluid w-100" alt="...">
</div>
<div class="carousel-item" data-bs-interval="2000">
<img src="./assets/images/slideshow/devfest-10.jpg" class="img-fluid w-100" alt="...">
</div>
<div class="carousel-item" data-bs-interval="2000">
<img src="./assets/images/slideshow/devfest-3.jpg" class="img-fluid w-100" alt="...">
</div>
<div class="carousel-item" data-bs-interval="2000">
<img src="./assets/images/slideshow/devfest-16.jpg" class="img-fluid w-100" alt="...">
</div>
<div class="carousel-item" data-bs-interval="2000">
<img src="./assets/images/slideshow/devfest-5.jpg" class="img-fluid w-100" alt="...">
</div>
<div class="carousel-item" data-bs-interval="2000">
<img src="./assets/images/slideshow/devfest-15.jpg" class="img-fluid w-100" alt="...">
</div>
<div class="carousel-item" data-bs-interval="2000">
<img src="./assets/images/slideshow/devfest-7.jpg" class="img-fluid w-100" alt="...">
</div>
<div class="carousel-item" data-bs-interval="2000">
<img src="./assets/images/slideshow/devfest-6.jpg" class="img-fluid w-100" alt="...">
</div>
<div class="carousel-item" data-bs-interval="2000">
<img src="./assets/images/slideshow/devfest-19.jpg" class="img-fluid w-100" alt="...">
</div>
<div class="carousel-item" data-bs-interval="2000">
<img src="./assets/images/slideshow/devfest-17.jpg" class="img-fluid w-100" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#speakerCarousel"
data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#speakerCarousel"
data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<!--//row-->
</div>
<!--//container-->
</div>
<!--//media-block-->
</section>
<!-- END ABOUT SECTION-->
<!-- SPEAKER's 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 -->
<!-- Aditya Thakur 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/2024/aditya-thakur.png"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Aditya Thakur</h5>
<div class="card-text mb-3">
<div class="meta">Google Developer Expert Flutter & Dart and a passionate developer who advocates for live audio/video SDK by 100ms</div><br>
<div class="meta mb-2">Topic: Dart on Cloud Run for Flutter developers to go full-stack!</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://www.linkedin.com/in/varunrajm/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank" href="https://twitter.com/zathvarun/"><i
class="fab fa-twitter 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">Aditya Thakur</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/2024/aditya-thakur.png" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Aditya Thakur</h2>
<div class="meta">Google Developer Expert Flutter & Dart and a passionate developer who advocates for live audio/video SDK by 100mss</div>
<div class="meta mb-2">Topic: Dart on Cloud Run for Flutter developers to go full-stack!</div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a target="_blank"
href="https://www.linkedin.com/in/varunrajm/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/zathvarun/"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href="https://www.facebook.com/zathvarun/"><i
class="fab fa-facebook fa-fw"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>
He engages with the developer community through various channels, such as YouTube, Discord, Medium, and GitHub. He has over 10K subscribers on YouTube and a 2000+ member community on Discord, where he shares his knowledge and experience on Flutter, open source, and profile building. He has contributed to the Flutter repository, the Flutter Community Plus Plugins, FlutterFire, and other projects, and has been a speaker at several Flutter events across India and abroad.
<br><br>
Aditya's goal is to empower and inspire developers and learners to create impactful and innovative solutions using technology. He is always open to new opportunities, collaborations, and challenges that can help him grow and make a difference.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Aditya Thakur END -->
<!-- Adit Lal 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/2024/adit-lal.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Adit Lal</h5>
<div class="card-text mb-3">
<div class="meta">Senior Android Manager/ Architect, currently working for Viacom18</div><br>
<div class="meta mb-2">Topic: A guide on making Android apps safe and secured</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=""><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href=""><i class="fab fa-twitter fa-fw"></i></a>
</li>
<li class="list-inline-item"><a target="_blank"
href=""><i
class="fab fa-instagram fa-fw"></i></a>
</li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-2" 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">Adit Lal</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/2024/adit-lal.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Adit Lal</h2>
<div class="meta">Senior Android Manager/ Architect, currently working for Viacom18</div>
<div class="meta mb-2">Topic: A guide on making Android apps safe and secured</div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a target="_blank"
href=""><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href=""><i
class="fab fa-twitter fa-fw"></i></a>
</li>
<li class="list-inline-item"><a target="_blank"
href=""><i
class="fab fa-instagram fa-fw"></i></a>
</li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>This talk would help you learn about best practices on encryption, integrity, and overall app security lifecycle. We would also discuss best practices for reducing the attack surface through strong control mechanisms by building efficient attack detection mechanisms from tools like - frida, traffic interception, and many more.
<br>
<br>
Adit is a Senior Android Manager/ Architect, currently working for Viacom18. He has been working in the industry for close to about 11+ years primarily helping build android mobile products and scaling them up. Some of his hobbies are Stargazing, Travel, and Landscape Photography.
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Adit Lal END -->
<!-- Varun Raj 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/2023/speaker-1.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Varun Raj</h5>
<div class="card-text mb-3">
<div class="meta">CIO at Skcript. GDE, Firebase</div><br>
<div class="meta mb-2">Topic: Text Embeddings and Semantic Search</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://www.linkedin.com/in/varunrajm/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank" href="https://twitter.com/zathvarun/"><i
class="fab fa-twitter 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">Varun Raj</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/2023/speaker-1.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Varun Raj</h2>
<div class="meta">CIO at Skcript. GDE, Firebase</div>
<div class="meta mb-2">Text Embeddings and Semantic Search</div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a target="_blank"
href="https://www.linkedin.com/in/varunrajm/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/zathvarun/"><i
class="fab fa-twitter fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href="https://www.facebook.com/zathvarun/"><i
class="fab fa-facebook fa-fw"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>
Varun Raj, hailing from Chennai, India. Varun
wears multiple hats, holding the prestigious position of CIO at
Skcript and serving as a GDE Firebase. His expertise spans a wide
spectrum, encompassing Enterprise Blockchain Architecture, Business
Analysis, Corporate Blockchain Training, RPA Consultation.
<br><br>
With over six years in Software Development and extensive Project
Management experience in both Agile and Waterfall methodologies,
Varun has successfully overseen the deployment of five or more
blockchain applications in the enterprise sector. His proficiency
extends to various technologies, including Enterprise Blockchain,
Data Visualization, Robotic Process Automation, Frontend
Engineering, and Hybrid Mobile Application Development.
</p>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!-- Varun Raj END -->
<!-- Siddhant Agarwal 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/2023/speaker-2.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Siddhant Agarwal</h5>
<div class="card-text mb-3">
<div class="meta">Developer Relations APAC, Neo4J</div><br>
<div class="meta mb-2">Topic: Graph-Powered NLP with Google PaLM 2, Neo4j and
Python</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://www.linkedin.com/in/sidagarwal04/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/sidagarwal04"><i class="fab fa-twitter fa-fw"></i></a>
</li>
<li class="list-inline-item"><a target="_blank"
href="https://instagram.com/sidagarwal04"><i
class="fab fa-instagram fa-fw"></i></a>
</li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-2" 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">Siddhant Agarwal</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/2023/speaker-2.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Siddhant Agarwal</h2>
<div class="meta">Developer Relations APAC, Neo4J</div>
<div class="meta mb-2">Graph-Powered NLP with Google PaLM 2, Neo4j and
Python</div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a target="_blank"
href="https://www.linkedin.com/in/sidagarwal04/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/sidagarwal04"><i
class="fab fa-twitter fa-fw"></i></a>
</li>
<li class="list-inline-item"><a target="_blank"
href="https://instagram.com/sidagarwal04"><i
class="fab fa-instagram fa-fw"></i></a>
</li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>I am currently leading Developer Communities
for APAC @ Neo4j. Previously I have worked with Open Financial
Technologies as ""Developer Relations Lead '' where I built India's
first developer community around Fintech/Embedded Finance. Prior to
that I had worked with the Google Developer Relations team and had
led the Developer Student Clubs program, TensorFlow User Groups,
Google Developer Groups, and Google Developer Experts program in
India. I have also designed and executed the initiative “Build for
Digital India” in 2019 launched in collaboration with the Ministry
of Electronics & Information Technology, Govt. of India which
witnessed 7K+ students participating and building solutions that
“Solve for India”. A design thinker at heart, he loves working with
startups and helping them scale in UX and improve their designs. I
am one of ACM’s Distinguished Speakers among 200+ speakers worldwide
and 20+ in India.
With over 8 years of industry experience, I have literally spent my
entire career in building, scaling and growing communities in India
and have found my passion in launching ed-tech initiatives, design
innovation, growing startup ecosystem and building for the next
billion users. For my contributions in community building, I was
also nominated as one of the finalists of CMX Community Industry
Awards 2021 for ""Community Professional of the Year for a Developer
Relations Community"" and ""Community Professional of the Year""
categories. Being an avid public speaker, I have spoken at 1K+
national and international forums impacting 300K
students/developers/individuals.</p>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!-- Siddhant Agarwal END -->
<!-- Ashok Vishwakarma 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/2023/speaker-3.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Ashok Vishwakarma</h5>
<div class="card-text mb-3">
<div class="meta">CTO, Impulsive Web.<br>
GDE Web Technologies and Angular<br>
Ex - Adobe, Ex- PayTM, Ex- Naukri</div><br>
<div class="meta mb-2">Topic: The Evolution of JavaScript Bundlers</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://www.linkedin.com/in/avishwakarmadev/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/avishwakarmadev"><i
class="fab fa-twitter fa-fw"></i></a>
</li>
<li class="list-inline-item"><a target="_blank"
href="https://www.instagram.com/avishwakarmadev/"><i
class="fab fa-instagram fa-fw"></i></a>
</li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-3" 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">Ashok Vishwakarma</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/2023/speaker-3.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Ashok Vishwakarma</h2>
<div class="meta">CTO, Impulsive Web.<br>
GDE Web Technologies and Angular<br>
Ex - Adobe, Ex- PayTM, Ex- Naukri</div>
<div class="meta mb-2">The Evolution of JavaScript Bundlers</div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a target="_blank"
href="https://www.linkedin.com/in/avishwakarmadev/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/avishwakarmadev"><i
class="fab fa-twitter fa-fw"></i></a>
</li>
<li class="list-inline-item"><a target="_blank"
href="https://www.instagram.com/avishwakarmadev/"><i
class="fab fa-instagram fa-fw"></i></a>
</li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>Ashok Vishwakarma, a distinguished speaker and tech enthusiast, boasts a
remarkable career trajectory that includes prestigious stints at renowned
organizations such as Adobe, PayTM, and Naukri. He is GDE Web Technologies
and Angular. As an accomplished entrepreneur, he is constantly at the
forefront of technology, specializing in Web Technologies, System Design,
Performance, Database, Cloud, and Tools. His expertise in these areas has
contributed to the creation of products that are cherished by millions
worldwide. Ashok's commitment to knowledge sharing is evident through his
engaging speeches at tech conferences, thought-provoking blog posts, and
active contributions to the Open Source community.</p>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!-- Ashok Vishwakarma END -->
<!-- Nirav Kothari 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/2023/speaker-4.jpg"
class="card-img-top rounded-0" alt=""></a>
<div class="card-body">
<h5 class="card-title mb-2">Nirav Kothari</h5>
<div class="card-text mb-3">
<div class="meta">Engineering head of Data & Analytics on GCP @ Quantiphi Analytics Pvt
Ltd | Google Developer Expert - Cloud platform</div><br>
<div class="meta mb-2">Topic: Start your Data & Analytics journey with BigQuery
</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://linkedin.com/in/iniravkothari"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/iNiravKothari"><i
class="fab fa-twitter fa-fw"></i></a>
</li>
<li class="list-inline-item"><a target="_blank"
href="https://medium.com/@iNiravKothari"><i class="fab fa-medium fa-fw"></i></a>
</li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-4" 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">Nirav Kothari</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/2023/speaker-4.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Nirav Kothari</h2>
<div class="meta">Engineering head of Data & Analytics on GCP @
Quantiphi Analytics Pvt
Ltd | Google Developer Expert - Cloud platform</div>
<div class="meta mb-2">Start your Data & Analytics journey with BigQuery
</div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a target="_blank"
href="https://linkedin.com/in/iniravkothari"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href="https://twitter.com/iNiravKothari"><i
class="fab fa-twitter fa-fw"></i></a>
</li>
<li class="list-inline-item"><a target="_blank"
href="https://medium.com/@iNiravKothari"><i
class="fab fa-medium fa-fw"></i></a>
</li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>Working as Solution Architect,Nirav Kothari has 16+ years of experience in
the areas of data science, IoT, RPA, Integration tools etc.<br>
Nirav's talk will take the audience through some usecases of why analytics
is important, what are the prerequisites to build it, how do you build a
data storage platform, how do you manage your data and then finally details
about types of analytics and what tools are available in Google Cloud to
build Analytics</p>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!-- Nirav Kothari END -->
<!-- Abhishek Doshi 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/2023/speaker-5.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">Google Developer Expert (GDE) for Dart, Flutter & Firebase</div><br>
<div class="meta mb-2">Topic: Make your apps safe and dynamic with Firebase
Analytics, Crashlytics, and Remote Config</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://linkedin.com/in/abhishekdoshi26/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
<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://instagram.com/abhishekdoshi26"><i
class="fab fa-instagram fa-fw"></i></a>
</li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-5" 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">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/2023/speaker-5.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Abhishek Doshi</h2>
<div class="meta">Google Developer Expert (GDE) for Dart, Flutter &
Firebase</div>
<div class="meta mb-2">Make your apps safe and dynamic with Firebase
Analytics, Crashlytics, and Remote Config</div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<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>
<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://instagram.com/abhishekdoshi26"><i
class="fab fa-instagram fa-fw"></i></a>
</li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>Abhishek Doshi is a Google Developer Expert for Dart, Flutter & Firebase. He
is also the Organizer of India’s Largest Flutter Conference, Flutter Conf
India. With over 5+ years of experience in Flutter & Firebase, he is
currently helping clients make their apps awesome!</p>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!-- Abhishek Doshi END -->
<!-- Amey Nerkar START -->
<!--
<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/2023/speaker-6.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">Social Innovator | Technical Product Manager
</div><br>
<div class="meta mb-2">Topic: Dark Side of Digital Payments
</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 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a target="_blank"
href="http://linkedin.com/in/ameyinvent/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href="http://instagram.com/amey.invent"><i
class="fab fa-instagram fa-fw"></i></a>
</li>
<li class="list-inline-item"><a target="_blank" href="http://ameyinvent.in"><i
class="fa-solid fa-blog"></i></a>
</li>
</ul>
</div>
</div>
<div class="modal modal-speaker modal-speaker-6" 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">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/2023/speaker-6.jpg" alt="" />
</div>
<div class="col text-center text-md-start mx-auto">
<h2 class="name mb-2">Amey Nerkar</h2>
<div class="meta">Social Innovator | Technical Product Manager
</div>
<div class="meta mb-2">Dark Side of Digital Payments
</div>
<ul
class="social-list list-inline mb-0 d-flex flex-row justify-content-end">
<li class="list-inline-item"><a target="_blank"
href="http://linkedin.com/in/ameyinvent/"><i
class="fab fa-linkedin-in fa-fw"></i></a></li>
<li class="list-inline-item"><a target="_blank"
href="http://instagram.com/amey.invent"><i
class="fab fa-instagram fa-fw"></i></a>
</li>
<li class="list-inline-item"><a target="_blank"
href="http://ameyinvent.in"><i
class="fa-solid fa-blog"></i></a>
</li>
</ul>
</div>
</div>
</div>
<div class="desc p-4 p-lg-5">
<p>Topic Details:<br>Digital payments bring many benefits to the ecosystem and
to the country. But there is a dark side to digital payments… The systems
which are built for betterment can also be used by bad actors to cheat
others. (When I say bad actors… don’t think about movie actors — Just bad
people and companies)<br>
And yes, you are right… We will talk about these bad actors and what
can be done to stop them.</p>
<p>Speaker Profile:<br>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!<br>
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