-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathfirestore-data.json
More file actions
7001 lines (7000 loc) · 322 KB
/
firestore-data.json
File metadata and controls
7001 lines (7000 loc) · 322 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"blog": {
"devfestahm24-announced": {
"backgroundColor": "#2196F3",
"brief": "It is official. GDG DevFest Ahmedabad 2024 is going to take place in Ahmedabad, 24th November 2024.",
"content": "**GDG DevFest Ahmedabad 2024 – The Biggest Developer Gathering is Here!**</br></br>Get ready, Ahmedabad! GDG DevFest Ahmedabad 2024 is just around the corner, happening on **November 24th, 2024.** This year’s event is set to be our **biggest and best yet**, marking the **10th season** of [#DevFestAhm](https://twitter.com/search?q=DevFestAhm) from the **[Google Developer Group of Ahmedabad (GDG Ahmedabad)](http://www.gdgahmedabad.com/).** We couldn’t be more excited to bring together the local developer community for a day of learning, collaboration, and innovation. </br></br> DevFest is the annual gathering of tech enthusiasts, developers, entrepreneurs, and innovators hosted by **Google Developers Group Ahmedabad (GDG Ahmedabad).** It’s a place for everyone to explore the latest in technology, learn from industry experts, and connect with fellow developers. Whether you’re passionate about Android, Web, Cloud, or any of Google’s cutting-edge technologies, DevFest is for you.</br></br>DevFest is an annual event where developers, entrepreneurs, and tech enthusiasts come together to explore cutting-edge technologies and share knowledge. From **Android** and **Web development** to **Cloud** and **AI**, DevFest is designed to connect people with Google’s latest tech advancements.<h2>What to Expect at GDG DevFest Ahmedabad 2024</h2>GDG DevFest Ahmedabad 2024 is going to be bigger and better than ever before. Here’s what you can look forward to: <ul><li>**30+ expert-led sessions** covering the most in-demand topics, including **Generative AI, Vertex AI, Google Cloud, Web Technologies, Startup Ecosystem,** and much more.</li><li>An opportunity to network with **1,500+ developers, engineers, managers, and entrepreneurs** from diverse industries, offering unparalleled collaboration and learning opportunities.</li><li>**Hands-on workshops** to immerse yourself in the latest technologies, gain practical skills, and solve real-world problems.</li><li>Explore trending areas like **Flutter, Kotlin, Machine Learning, Blockchain**, and **ARCore** through **tech showcases** and demos.</li></ul></br>Whether you're looking to enhance your skills, get inspired by industry leaders, or simply connect with other tech enthusiasts, GDG DevFest Ahmedabad 2024 offers something for everyone. The event promises a vibrant atmosphere filled with opportunities to learn, grow, and share ideas.</br></br>Ahmedabad is fast emerging as a hub for technology in Gujarat, and DevFest plays a crucial role in fueling that momentum. It’s not just an event—it’s a community gathering that brings together the brightest tech minds in the region.<h2>Ticket Information</h2>Stay tuned for **ticket details**, which will be announced soon. Don't miss your chance to be part of this incredible event!. <div layout horizontal center-justified> <paper-button primary>Tickets - Declare soon</paper-button> </div> </br> We’re excited for what’s coming and we want to keep you in the loop! Be sure to **[join us on GDG Ahmedabad platform](https://gdg.community.dev/gdg-ahmedabad)** or follow us on **[Meetup](https://www.meetup.com/GDG-Ahmedabad)**, **[LinkedIn](https://www.linkedin.com/company/gdg-ahmedabad/), [X/Twitter](https://twitter.com/GDGAhmedabad/)**, and **[Instagram](https://www.instagram.com/gdg_ahmedabad)** to stay updated on all the latest news, speaker announcements, and event details. </br></br>Join us on **November 24th, 2024**, for a day packed with learning, collaboration, and fun! We can’t wait to see you at **[#DevFestAhm](https://twitter.com/search?q=DevFestAhm) 2024.**</br></br>- The GDG DevFest Ahmedabad Team",
"image": "/images/posts/devfestahm23-announced.jpg",
"published": "2024-10-05",
"title": "Announcing GDG DevFest Ahmedabad 2024"
},
"c4p": {
"backgroundColor" : "#3647a5",
"brief" : "GDG DevFest Ahmedabad was announced, for the tenth year in a row, the conference will bring together 1500+ developers, managers and...",
"content" : "**PLEASE READ THE GIVEN INSTRUCTIONS with Focus and Attention** </br></br> We are back to rock our 10th DevFest season. Yeah! you have heard it right, we hosted our very 1st DevFest event back in 2013. Before going ahead, we want you to check out the last offline DevFest Ahmedabad event, which would help you in realising the level of quality, knowledge and impact that we are expecting from each speaker. </br></br> <iframe width=\"100%\" height=\"500\" src=\"https://www.youtube.com/embed/OVoRoOPvnuY\" frameborder=\"0\" allowfullscreen></iframe> </br></br> GDG DevFest Ahmedabad 2024 has been announced! The 10th edition of the biggest conference about Google technologies in Ahmedabad will take place on **24th November 2024** in the Heritage city of India. </br></br> That means that it is time to open the Call For Speaker form. If you are passionate about your work and want to share your experience with the biggest tech audience in Ahmedabad, you knock on the right door. </br></br> Last year DevFest broke all expectations of the audience, speakers, and even our ones. With 95% of satisfied attendees, we can claim that GDG DevFest Ahmedabad 2022 was a great success. </br></br> To keep up this year, we decided to focus on the content. We’re looking for speakers like you, who are ready to rock the stage and deliver the best talk or workshop in the field. </br></br> ## Target Audience </br></br> The majority of our target audience will be IT professionals (Web/Mobile/Backend Developers / Designers / ML Engineers / Data Scientists / Entrepreneurs and Startup ecosystem enablers, etc.) from 0 to 20 years of experience. We would also welcome students and freshers, only if they have hands-on knowledge on technologies! </br></br> ## Session Format </br></br> - Session - 30 to 45 mins talk, detailed talk on any of the topics mentioned below. </br> - Lightening </br> - 10 to 15 mins talk, quick overview on any of the topics mentioned below. </br> - Keynote - 30 to 45 mins talk </br></br> ## Session Topics </br></br> We will accept talks for our planned tracks such as, </br></br> **Web / AI ML / Cloud** </br></br> - Web Development, topics not limited to </br> - Angular </br> - Firebase </br> - PWA </br> - Chrome Developer Tools </br> - Performance </br> - Accessibility </br> - TensorFlow JS </br> - JavaScript </br> - Modern Web App Capabilities </br> - UI / UX Trends </br> - Blockchain </br> - NFT </br> - Web3 development etc. </br> - AI ML, topics not limited to </br> - TensorFlow </br> - Vertex AI </br> - AutoML </br> - Dataflow </br> - Firebase </br> - ML Kit </br> - Cloud Natural Language etc. </br> - Cloud, topics not limited to </br> - Google Kubernetes Engine </br> - Compute Engine </br> - Cloud Storage </br> - Big Query </br> - Cloud Functions etc. </br></br> **Android / Flutter Development** </br></br> - Android/Flutter Development, topics not limited to: </br> - Flutter/Android scalable architecture best practices </br> - Kotlin Multiplatform and Flutter, Code for one and generate for multiple platforms </br> - Optimize your apps for Android Go edition </br> - Generating apps in no time using No-code or Pro-code platforms </br> - Adaptive layout and latest UI/UX design trends in Android and Flutter </br> - Start-up & Emerging Technologies </br>- Start-up and Emerging Technologies, topics not limited to: </br> - Preparing pitch deck for tech startups </br> - Raising funds for the technical products and tech startups </br> - Products demo showcasing technology implementation and how you have solved real-world problems and developed solutions </br> - Emerging Technologies like EV Charging, Blockchain, etc. </br> - Why Startups Fail </br> - Key Insights on building a startup </br></br> **MOST IMPORTANT Expectation from CFPs this year** </br></br> This year we are looking for the values and experienced based Talk proposals, wherein you have implemented some practices in your product(s) and you have achieved some users growth, revenue growth, code scalability achieved, generated funding, build MVP with solid principles and practices, etc. </br></br> This year we are not expecting talks on topics like Getting started with something or beginner level which one can do search over web and find out easily, like “Getting started with flutter development”, “How to implement in MVVM in Android”, “Getting started with JavaScript technologies”, etc. </br></br> **DOs of CFP** </br></br> - Please elaborate the topic in a proper way to help understand and review your talk. </br> - Please submit details about your past talk(s). </br> - Please include links of your past talk(s) presentations, videos etc. </br> - Please mention key takeaways of your talks and how it will benefit the developers. </br></br> **DON'T of CFP** </br></br> - Pitching and marketing of the product or company. Speaker can mention the company name but the focus of the talk should be technology. </br> - The talk should be the original idea of the speaker and should not be copied over from someone. </br> - The topic should be relevant for the audience and should not be in the practice in recent years. </br> - Avoid talks like getting started or hello world. </br></br> ## Why is it cool to be a speaker? </br></br> Well, do you know a better way to attend the conference? Here are our top 3 reasons to submit a proposal. </br></br> 1️⃣ It is good for your career. By being a speaker, you are proving your level of expertise to potential business partners or employers. </br> 2️⃣ It is good for the company you’re working for. Any presentation delivered by an employee adds credibility to a company’s public image. </br> 3️⃣ Unique networking. Being a speaker means you’ll have a unique chance to network with other speakers - the best experts in the industry. </br></br> ## Perks of being speaker at DevFestAhm </br></br> - Full day access to the conference </br> - Chance of networking with 1500+ developers in the conference </br></br> - Exposure to community members on official GDG Ahmedabad social media accounts </br></br> - Help from GDG Ahmedabad team members in talk preparation. </br></br> **Call for Speakers will stay open until October 31, 2024. Don’t miss out :)** </br></br> **Please note:** There is no guarantee that a submission will be put onto the conference agenda! The program committee picks the most interesting talk proposals and informs the selected submitters max by 31st October, 2024. </br></br> Any questions? Email any organisers at [pareshmayani@gmail.com](mailto:pareshmayani@gmail.com) OR [hdave10@gmail.com](mailto:hdave10@gmail.com) OR [jdpatel.android@gmail.com](mailto:jdpatel.android@gmail.com). </br></br> <div layout horizontal center-justified> <a href=\"https://sessionize.com/gdg-ahmedabad-devfest-2024/\" rel=\"noopener noreferrer\"> <paper-button primary>Submit a proposal</paper-button> </a> </div>",
"image" : "/images/posts/call-for-speaker.jpg",
"published" : "2024-10-19",
"source" : "/data/posts/2024-10-19-c4p.md",
"title" : "We're looking for speakers"
}
},
"gallery": [
"https://firebasestorage.googleapis.com/v0/b/devfestahm-develop.appspot.com/o/images%2Fgallery%2F2024%2Fdevfestahm24-dsc03299.JPG?alt=media&token=e0abd3ba-e975-4356-8a98-b5fcca4fd557",
"https://firebasestorage.googleapis.com/v0/b/devfestahm-develop.appspot.com/o/images%2Fgallery%2F2024%2Fdevfestahm24-rf_09914.JPG?alt=media&token=b8e4ada2-659a-4b4b-b60a-860f7b8c5288",
"https://firebasestorage.googleapis.com/v0/b/devfestahm-develop.appspot.com/o/images%2Fgallery%2F2024%2Fdevfestahm24-dsc03210.JPG?alt=media&token=ff77f829-6b3c-469f-b70e-75964be2bb00",
"https://firebasestorage.googleapis.com/v0/b/devfestahm-develop.appspot.com/o/images%2Fgallery%2F2024%2Fdevfestahm24-hdf03969.JPG?alt=media&token=ec6910ad-6a90-4f49-9123-fe51d8a641dd",
"https://firebasestorage.googleapis.com/v0/b/devfestahm-develop.appspot.com/o/images%2Fgallery%2F2024%2Fdevfestahm24-rf_00929.JPG?alt=media&token=e9238271-d8ed-44cc-bc36-333e93c69032",
"https://firebasestorage.googleapis.com/v0/b/devfestahm-develop.appspot.com/o/images%2Fgallery%2F2024%2Fdevfestahm24-dsc04004.JPG?alt=media&token=87225816-368f-4f13-9c8b-e7b1f14933a5",
"https://firebasestorage.googleapis.com/v0/b/devfestahm-develop.appspot.com/o/images%2Fgallery%2F2024%2Fdevfestahm24-hdf05084.JPG?alt=media&token=bb49b331-851b-45dc-a084-94b34f4e357e",
"https://firebasestorage.googleapis.com/v0/b/devfestahm-develop.appspot.com/o/images%2Fgallery%2F2024%2Fdevfestahm24-hdf05052.JPG?alt=media&token=dd88e7dc-9f58-41d0-ae4c-c7442443576d"
],
"config": {
"notifications": {
"icon": "/images/manifest/icon-192.png",
"timezone": "+05:30"
},
"rendertron": {
"server": ""
},
"site": {
"domain": ""
},
"schedule": {
"enabled": true
},
"mailchimp": {
"dc": "",
"listid": "",
"apikey": ""
}
},
"partners": [
{
"items": [
{
"order": 0,
"logoUrl": "../images/logos/google.svg",
"name": "Google",
"url": "https://www.google.com.ua/intl/en/about/"
},
{
"order": 1,
"logoUrl": "../images/logos/google-developers-group.png",
"name": "Google Developers Group",
"url": "https://developers.google.com/programs/community/gdg/"
}
],
"order": 0,
"title": "Title Sponsor"
},
{
"items": [
{
"order": 0,
"logoUrl": "../images/logos/dhiwise.png",
"name": "DhiWise",
"url": "https://www.dhiwise.com/"
}
],
"order": 1,
"title": "Platinum Sponsors"
},
{
"items": [
{
"order": 0,
"logoUrl": "../images/logos/flutterflow.png",
"name": "FlutterFlow",
"url": "https://www.flutterflow.io/"
},
{
"order": 1,
"logoUrl": "../images/logos/iqm-logo.png",
"name": "IQM",
"url": "https://iqm.com/"
},
{
"order": 2,
"logoUrl": "../images/logos/betterbug.png",
"name": "BetterBug",
"url": "https://www.betterbugs.io/"
}
],
"order": 2,
"title": "Gold Sponsors"
},
{
"items": [
{
"order": 0,
"logoUrl": "../images/logos/solguruz.png",
"name": "SolGuruz",
"url": "https://solguruz.com/"
},
{
"order": 1,
"logoUrl": "../images/logos/impero.png",
"name": "Impero IT Services Pvt Ltd",
"url": "https://imperoit.com/"
},
{
"order": 2,
"logoUrl": "../images/logos/akash-technolabs.png",
"name": "Akash Technolabs",
"url": "https://www.akashtechnolabs.com/"
},
{
"order": 3,
"logoUrl": "../images/logos/cirrops.png",
"name": "CirrOps",
"url": "https://cirrops.in/"
},
{
"order": 4,
"logoUrl": "../images/logos/prydan-logo.svg",
"name": "Prydan",
"url": "https://www.prydan.com/"
}
],
"order": 3,
"title": "Silver Sponsors"
},
{
"items": [
{
"order": 0,
"logoUrl": "../images/logos/sessionize.png",
"name": "Sessionize",
"url": "https://sessionize.com/"
}
],
"order": 4,
"title": "CFP Partners"
},
{
"items": [
{
"order": 0,
"logoUrl": "../images/logos/allevents.png",
"name": "AllEvents",
"url": "https://allevents.in/"
}
],
"order": 5,
"title": "Ticketing Partner"
}
],
"schedule": {
"2024-11-24": {
"date": "2024-11-24",
"dateReadable": "November 24",
"timeslots": [
{
"endTime": "09:30",
"sessions": [
{
"items": [
"151"
]
}
],
"startTime": "08:30"
},
{
"endTime": "09:45",
"sessions": [
{
"items": [
"155"
]
}
],
"startTime": "09:30"
},
{
"endTime": "10:00",
"sessions": [
{
"items": [
"101"
]
}
],
"startTime": "09:45"
},
{
"endTime": "10:20",
"sessions": [
{
"items": ["131"]
}
],
"startTime": "10:00"
},
{
"endTime": "10:30",
"sessions": [
{
"items": ["132"]
}
],
"startTime": "10:20"
},
{
"endTime": "11:00",
"sessions": [
{
"items": ["103"]
}
],
"startTime": "10:30"
},
{
"endTime": "11:15",
"sessions": [
{
"items": ["160"]
}
],
"startTime": "11:00"
},
{
"endTime": "12:00",
"sessions": [
{
"items": ["104"]
},
{
"items": ["102"]
},
{
"items": ["114"]
},
{
"items": ["110"]
},
{
"items": ["133"]
}
],
"startTime": "11:15"
},
{
"endTime": "12:45",
"sessions": [
{
"items": ["106"]
},
{
"items": ["121"]
},
{
"items": ["112"]
},
{
"items": ["126"]
},
{
"items": ["128"]
}
],
"startTime": "12:00"
},
{
"endTime": "13:30",
"sessions": [
{
"items": ["127"]
},
{
"items": ["122"]
},
{
"items": ["118"]
},
{
"items": ["108"]
},
{
"items": ["129"]
}
],
"startTime": "12:45"
},
{
"endTime": "14:45",
"sessions": [
{
"items": ["152"]
}
],
"startTime": "13:30"
},
{
"endTime": "15:30",
"sessions": [
{
"items": ["105"]
},
{
"items": ["123"]
},
{
"items": ["115"]
},
{
"items": ["109"]
},
{
"items": ["130"]
}
],
"startTime": "14:45"
},
{
"endTime": "15:55",
"sessions": [
{
"extend": 2,
"items": ["124"]
},
{
"extend": 2,
"items": ["120"]
},
{
"items": ["116"]
},
{
"extend": 2,
"items": ["111"]
}
],
"startTime": "15:30"
},
{
"endTime": "16:15",
"sessions": [
{
"items": []
},
{
"items": []
},
{
"items": ["113"]
},
{
"items": []
}
],
"startTime": "15:55"
},
{
"endTime": "17:00",
"sessions": [
{
"items": ["125"]
},
{
"items": ["119"]
},
{
"items": ["117"]
},
{
"items": ["107"]
}
],
"startTime": "16:15"
},
{
"endTime": "17:15",
"sessions": [
{
"items": [
"157"
]
}
],
"startTime": "17:00"
},
{
"endTime": "18:00",
"sessions": [
{
"items": [
"156"
]
}
],
"startTime": "17:15"
}
],
"tracks": [
{
"title": "Narmada"
},
{
"title": "Ganga"
},
{
"title": "Sabarmati"
},
{
"title": "Yamuna"
},
{
"title": "Tapi"
}
]
}
},
"sessions": {
"101": {
"complexity": "Intermediate",
"description": "- What, Why and Why Not of AI \n- Good, Bad and Ugly of AI \n- What if Your Future \n\n- Gen AI and Infinite Possibilities \n- What not to do with AI \n- What AI should do for Mankind \n\n- Let Me Predict the Future \n- There is life beyond AI",
"language": "English",
"presentation": "",
"speakers": [
"utpal_betai"
],
"tags": [
"Keynote"
],
"title": "Focus on Future Keynote",
"videoId": "ZcemA77lT9Q"
},
"102": {
"complexity": "Intermediate",
"description": "This session explores how Built-in Chrome AI leverages the Gemini Nano model to bring powerful AI features directly to your browser and how you can integrate these features into your web applications. \nWe'll demystify Chrome's AI APIs, including: \n* Prompt API \n* Summarizer API \n* Writer and Rewriter API \n* Translation API \n* Language Detection API \n\n Why this talk is important: \nThis session provides a foundational understanding of how AI is rapidly changing the web landscape. Chrome's built-in AI empowers developers to create intelligent, user-friendly experiences with enhanced privacy and performance. \nWhat participants will benefit: \n* Understand the core concepts of Chrome's built-in AI. \n* Learn to use Chrome's AI APIs effectively. \n* Understand benefits of local AI processing \n* Discover practical applications of AI in web development. \nTechnologies used: \n* Chrome Browser \n* JavaScript \n* Built-in Chrome AI APIs \nTarget audience: \nBeginner and intermediate web developers.",
"language": "English",
"presentation": "",
"speakers": [
"romin_irani"
],
"tags": [
"Web",
"AI/ML"
],
"title": "Chrome Built-in AI : Powerful AI features directly in your browser",
"videoId": "GAaIJvyTmAQ"
},
"103": {
"complexity": "Intermediate",
"description": "Step into the AI-powered development world, where intelligent agents redefine the development process, boosting efficiency, enabling smarter workflows, and unlocking new levels of productivity—highlighted by a live demo of DhiWise 3.0.",
"language": "English",
"presentation": "",
"speakers": [
"vishal_virani"
],
"tags": [
"Keynote",
"AI/ML"
],
"title": "The AI Catalyst - Transforming SDLC with Agent-driven Efficiency and Accuracy",
"videoId": "cF34cEFBKLw"
},
"104": {
"complexity": "Intermediate",
"description": "Deepfakes have taken the digital world by storm - exciting for tech enthusiasts, but alarming for those focused on digital authenticity. While ultra-lifelike cyber manipulations can be impressive, they raise ethical and legal issues as deepfakes are increasingly used to distort truth, spread misinformation, and even commit fraud. Google's significant contribution in releasing Deepfake dataset has spurred the innovation in this field. \n\nIn this session, we'll explore the latest advancements in deepfake detection algorithms, covering both theory and practical applications. Using accessible, open-source models, I'll demonstrate real-world deepfake detection, showcasing successes and limitations. This session will equip you with actionable knowledge and resources to navigate a world where AI is not only creating lifelike media but also defending truth in an increasingly synthetic landscape.",
"language": "English",
"presentation": "",
"speakers": [
"pooja_ranjan"
],
"tags": [
"AI/ML"
],
"title": "Deep into DeepFakes : Drawing a line between Real and Fake",
"videoId": "m18R5ZG2BKY"
},
"105": {
"complexity": "Introductory & Overview",
"description": "AI Agents are the hottest topic in the AI/ LLM world. In this session, we will discuss what AI Agents are, why they are gaining popularity, common misconceptions about them, AI agentic patterns, building multi-agent AI systems using Vertex AI, etc.",
"language": "English",
"presentation": "",
"speakers": [
"nikhilesh_tayal"
],
"tags": [
"AI/ML"
],
"title": "Building Multi AI Agent Systems",
"videoId": "Op6NQajZKxI"
},
"106": {
"complexity": "Introductory & Overview",
"description": "In today's cloud-driven world, security is a top priority, yet the complexity of modern cloud environments makes it challenging to safeguard against emerging threats. This session explores how AI and machine learning are revolutionizing cloud security by automating threat detection and response, enhancing protection across diverse infrastructures. \n\nUsing tools like TensorFlow and Google Cloud's Vertex AI, attendees will discover how to build intelligent security systems that identify anomalies in real-time, mitigate risks proactively, and respond to threats at scale. \n\nThrough real-world examples, this talk will demonstrate how organizations can implement AI for cloud security to improve scalability, minimize manual intervention, and accelerate incident response. Attendees will leave with actionable insights on deploying AI models to enhance their cloud security posture, detect evolving threats, and automate responses within their cloud architecture.",
"language": "English",
"presentation": "",
"speakers": [
"drijesh_patel"
],
"tags": [
"AI/ML"
],
"title": "AI for Cloud Security: Automating Threat Detection and Response with Google Cloud AI",
"videoId": "zhfVTGsHLNw"
},
"107": {
"complexity": "Intermediate",
"description": "Being a 10x engineer isn't about writing ten times the code—it's about delivering ten times the value. This session covers essential skills like emotional intelligence, client understanding, and strategic communication that help engineers build stronger client relationships and maximize impact.",
"language": "English",
"presentation": "",
"speakers": [
"raza_noorani"
],
"tags": [
"Mobile",
"Android",
"Flutter"
],
"title": "10x Engineer Formula",
"videoId": "gGtbYkahh3U"
},
"108": {
"complexity": "Intermediate",
"description": "How BookMatch uses Kotlin Multiplatform (KMP) to build a cross-platform app for Android and iOS with shared business logic and native UIs using jetpack compose and swift ui and to build API gateway with Ktor to secure OpenAI api keys used for the app. \n\nLittle bit about working of the app - \n\nThe integration of Generative AI to provide personalized book recommendations and backend services supabase for storing the data remotely. \n\n- Data flow between data layer and ui layer and code sharing, \n- Native interoperability bridging kotlin/swift \n- Use of Ktor to build REST API \n\nLearning outcomes: \n- Insights in KMP apps having native UIs \n- Techniques for prompting Generative AI to provide effective book recommendations. \n- Building REST API with Ktor \n\nTalk will be 70% KMP and 30% ktor \n\nCheckout our project mentioned in android weekly: https://www.androidweekly.net/issues/issue-636",
"language": "English",
"presentation": "",
"speakers": [
"dhananjay_navlani",
"priya_sindkar"
],
"tags": [
"Mobile",
"Android",
"Flutter"
],
"title": "KMP & Ktor in Action: Book Recommendation App with GenAI",
"videoId": "iTzKovyWY1M"
},
"109": {
"complexity": "Intermediate",
"description": "Imagine turning your apps into AI-powered gold - that's the magic of Genkit! In this captivating session, we'll unveil the secrets of integrating cutting-edge AI capabilities into your projects with unprecedented ease. Learn how to transform mundane features into intelligent, adaptive experiences that will leave users spellbound. From chat bots to computer vision, we'll explore how Genkit can elevate your app development skills to legendary status. Don't miss this chance to become the AI alchemist of the app world!",
"language": "English",
"presentation": "",
"speakers": [
"pawan_kumar"
],
"tags": [
"Mobile",
"Android",
"Flutter"
],
"title": "Genkit: The AI Alchemist Turning Your Apps into Gold",
"videoId": "rcUnV8ye-Us"
},
"110": {
"complexity": "Intermediate",
"description": "Developers can no longer identify as Syntax Engineers because it won't cut it. In this talk, I will cover the concepts of product engineering with experience composition at its core. We will learn to resolve a perspective, where technical problems are solved for the benefit of the user / the customer, keeping the business goals in mind.",
"language": "English",
"presentation": "",
"speakers": [
"ayush_shekhar"
],
"tags": [
"Mobile",
"Android",
"Flutter"
],
"title": "Product Engineering: A FlutterFlow Story",
"videoId": "8f26H9pCzjU"
},
"111": {
"complexity": "Intermediate",
"description": "As mobile applications grow from MVPs to robust products, building a scalable architecture becomes vital for sustainable expansion. This session provides a comprehensive guide to designing Flutter apps that not only handle increased user load and feature growth but are also primed for seamless AI integration. Attendees will learn strategies for modular, maintainable architectures that support rapid development and long-term scalability. I’ll cover performance optimisation techniques, effective state management, and testing strategies to maintain app stability as complexity increases. With practical insights, this talk equips developers to create AI-ready, future-proof Flutter applications that grow without requiring a complete rewrite.",
"language": "English",
"presentation": "",
"speakers": [
"dhrumil_shah"
],
"tags": [
"Mobile",
"Android",
"Flutter"
],
"title": "Scalable, AI-Ready Flutter Apps: Architecting for Growth",
"videoId": "BfhYYpE1O6k"
},
"112": {
"complexity": "Introductory & Overview",
"description": "In this session, we'll explore how AI can take over everyday business tasks, from data entry and scheduling to customer support and marketing, transforming your operations into a streamlined, efficient machine. \n\nI'll cover key AI-powered tools and methods to automate daily workflows, saving time and reducing human error. Learn how to implement chatbots for customer inquiries, automate marketing campaigns, set up intelligent data entry, and even streamline internal communications - all with accessible, user-friendly AI solutions. \n\nBy the end of this session, the audience will have a roadmap for shifting mundane tasks to intelligent systems, making their business more agile and productive.",
"language": "English",
"presentation": "",
"speakers": [
"rohan_shah"
],
"tags": [
"Startup"
],
"title": "From Mundane to Machine: Leveraging AI to Automate Everyday Business Tasks",
"videoId": "V_UrtfXUNas"
},
"113": {
"complexity": "Advanced",
"description": "Most of Indian Founders can create very good Technology Products, but when it come to GTM (Go to Market) strategy and Marketing, they struggle a lot. \n\nI being a Founder myself, have learned the nuances of content marketing by trial and error. And I want to share my knowledge with the community.",
"language": "English",
"presentation": "",
"speakers": [
"manoj_adwani"
],
"tags": [
"Startup"
],
"title": "Content Marketing for Startups",
"videoId": "flrAybpQW1c"
},
"114": {
"complexity": "Advanced",
"description": "Step into the future with a deep dive into how AI and emerging technologies are not just advancing industries but transforming economies and reshaping every facet of life. In this session, uncover groundbreaking opportunities and stay at the forefront of tech trends that are redefining the way we live, work, and innovate. Engage in forward-thinking discussions with industry pioneers shaping the next wave of technology-driven change. From revolutionizing everyday products to imagining new realms of luxury and human potential, this session is your gateway to the cutting edge of innovation, where startups are rewriting tomorrow's world.",
"language": "English",
"presentation": "",
"speakers": [
"rajul_shah"
],
"tags": [
"Startup"
],
"title": "Beyond the Obvious: Revolutionizing the Future with Startups & Emerging Tech",
"videoId": "5PibCy4EXfE"
},
"115": {
"complexity": "Introductory & Overview",
"description": "This talk focuses on realistic, practical strategies for startups to enter the market without extensive budgets or marketing infrastructure. \n\nWe'll look at simple yet effective Go-to-Market (GTM) approaches that can make a big impact with the help of AI, thought leadership, networks, and more. \n\nWe'll also discuss some real-life marketing mistakes and dos and don'ts for startups. \n\nThis talk is for you if — \n\n- You're working on a startup idea already\n- You have an idea but not sure whether you have the marketing budget\n- You already run a startup but are not sure of your marketing direction\n- Startup life excites you, and you just want to explore what marketing a startup looks like",
"language": "English",
"presentation": "",
"speakers": [
"himani_kankaria"
],
"tags": [
"Startup"
],
"title": "Start Smart—A Marketing Approach for Startups' Go-to-Market Success Today",
"videoId": "mSylXp1guoA"
},
"116": {
"complexity": "Advanced",
"description": "In this session, I will share actionable strategies on how startups can effectively use LinkedIn to build their brand, expand their network, and generate valuable leads. Drawing from my experience as a LinkedIn Top Voice, I'll guide you through practical tips and techniques that can help your startup stand out and succeed in today's competitive landscape. This session is designed to empower startup founders and teams to fully unlock LinkedIn's potential for business growth.",
"language": "English",
"presentation": "",
"speakers": [
"jaydip_parikh"
],
"tags": [
"Startup"
],
"title": "Unlock LinkedIn's Potential: A Masterclass for Startups",
"videoId": "2R33Rh8p8iI"
},
"117": {
"complexity": "Intermediate",
"description": "How to create your pitch deck\nWhat are the elements of a pitch deck\nStages of VC funding and how your pitch deck changes\nHow to identify which vcs to approach",
"language": "English",
"presentation": "",
"speakers": [
"shubham_pachori"
],
"tags": [
"Startup"
],
"title": "The Art of Pitching & Fund Raising",
"videoId": "JtuZ5afBewM"
},
"118": {
"complexity": "Intermediate",
"description": "In this session, we’ll explore how startups can harness the potential of open-source tools and communities to fuel rapid growth, drive innovation, and cut costs. You’ll learn about the benefits of building with open source, practical strategies for integrating open-source solutions, and real-world examples of startups that have scaled effectively through open-source adoption. Whether you're a founder or developer, this talk will provide actionable insights and resources to help you unlock the power of open source in your startup journey.",
"language": "English",
"presentation": "",
"speakers": [
"abhishek_mankuskar"
],
"tags": [
"Startup"
],
"title": "Leveraging Open Source for Startup Growth",
"videoId": "G5Je_6_iJ9U"
},
"119": {
"complexity": "Advanced",
"description": "The session deep dives into GKE Enterprise which is a premium subscription-based service built upon GKE Standard. I will start with an explanation then the pros, explain the cons and operational overhead, and then finally end with Verdict. I will not go through each functionality offered by GKE Enterprise rather, I will talk only about the major ones. I do hThe topic is purely based on my experience as I have implemented this service for my enterprise clients. \n\nThe main idea of this topic is to make people understand who this service is for because not every cloud service is meant to be used by individual startups or even enterprises. I would be talking as an individual engineer on the stage, not as a Google Champion Innovator or representing my company's point of view.",
"language": "English",
"presentation": "",
"speakers": [
"rohan_singh"
],
"tags": [
"Web"
],
"title": "GKE Enterprise: Do we need it or not?",
"videoId": "V_UrtfXUNas"
},
"120": {
"complexity": "Intermediate",
"description": "A designer's tale to Developers, Product Managers, and everyone who is enthusiastic about building digital products: \n\n\"Design Thinking for Product teams and beyond.\" \n\nThink of the Software Development Cycle and skip Design for a moment, how does that feel? \n\nWe will simplify the 'Design Thinking' exercise in this talk with relatable and interesting stories. \n\nThe session will include: \n-A Quick Intro to Design Thinking \n-Some interesting examples to showcase design thinking in the product-building journey \n-Understanding User Persona and ideating while designing an intuitive experience \n-A go-to template to follow design thinking as a collaborative and strategic tool with other stakeholders to build better digital products.",
"language": "English",
"presentation": "",
"speakers": [
"poonam_jha"
],
"tags": [
"Web"
],
"title": "Design Thinking for Product Teams and Beyond",
"videoId": "Lq4E1JKBhH8"
},
"121": {
"complexity": "Introductory & Overview",
"description": "This talk covers deploying Large and Small Language Models (LLMs and SLMs) on edge devices using WebAssembly. Attendees will learn how WebAssembly enables AI models to run efficiently, with minimal latency and enhanced privacy, directly on end-user devices. We'll explore practical strategies for adapting LLMs and SLMs to run at the edge, use cases across industries, and the technical steps needed to achieve lightweight, secure AI deployments across diverse environments.",
"language": "English",
"presentation": "",
"speakers": [
"varun_srinivas"
],
"tags": [
"Web"
],
"title": "LLMs and SLMs Everywhere",
"videoId": "ocRoyt1s06M"
},
"122": {
"complexity": "Advanced",
"description": "In today's complex web landscape, building high-performance frontend applications requires a deep understanding of system design principles and architectural patterns. This comprehensive session explores advanced concepts in frontend system design, focusing on creating scalable, efficient, and maintainable web applications. \n\nKey Takeaways: \n\n• System Design Foundation\n• Understand architectural patterns\n•Performance Deep Dive \n\nWho Should Attend: \n\n• Frontend engineers looking to advance their system design skills \n• Software architects focusing on frontend architecture \n• Developers working on large-scale web applications \n• Technical leads responsible for making architectural decisions",
"language": "English",
"presentation": "",
"speakers": [
"nishith_rajyaguru"
],
"tags": [
"Web"
],
"title": "Unlocking Frontend System Design: A Performance-First Architecture",
"videoId": "507rUr24owQ"
},
"123": {
"complexity": "Intermediate",
"description": "Despite Javascript's phenomenal interpretation capabilities, computationally expensive functions, or low-powered hardware can really affect your app's performance. Such computations freeze our apps' one and only thread, frustrating our users with a sluggish UI. \n\nIn this talk, I will dive deep into how Web Workers can absolutely supercharge your apps with true multithreading capabilities. We'll see how Web Workers allow you to offload heavy tasks to background threads, freeing up your main thread to make your applications responsive and smooth. \n\nKey Takeaways from the Talk: \n- Understanding the single-threaded nature of Javascript web apps and performance implications, with real-world scenarios \n- Fundamentals of Web Workers and how can you integrate them seamlessly into your apps \n- Best Practices of using Web Workers and how to avoid common pitfalls \n\nDon't let the performance bottleneck hold you back from delivering smooth and seamless web apps!",
"language": "English",
"presentation": "",
"speakers": [
"nida_shaikh"
],
"tags": [
"Web"
],
"title": "Off the Main Thread: How Web Workers Transform Web Performance",
"videoId": "vIrOGtsD9jo"
},
"124": {
"complexity": "Intermediate",
"description": "In this talk, I will be talking about how to build personalized travel experiences with autonomous agents. I will use Vertex AI models (Gemini) and 3rd party tools to build end-to-end travel agents which not only plan your itenaries but book flights and hotels as per client's preferences. \n\nI will demonstrate how the reasoning engine from VertexAI enables AI Agents to build and manage at scale. \n\nThis prototype would help to attendees to think about Agents in different approaches.",
"language": "English",
"presentation": "",
"speakers": [
"chetan_hirapara"
],
"tags": [
"AI/ML"
],
"title": "Redefine the travel experience with autonomous agents",
"videoId": "CdxtDoHHYWM"
},
"125": {
"complexity": "Intermediate",
"description": "We will dive into the following topics: \n\nExtending Vocabulary: Learn how to use the SentencePiece Tokenizer to expand the original vocabulary of a language model, enabling it to incorporate new tokens specific to Indic languages. \n\nPre-Training Techniques: Explore the process of running Pre-Training with the newly extended tokenizer, focusing on how Continuous Pre-training differs from traditional methods, and how it helps the model understand these tokens better. \n\nInstruction Fine-Tuning: Discover how Instruction Fine-Tuning is applied post-Pre-Training to enable the model to perform new tasks tailored to user requirements. \n\nBenchmarking and Evaluation: We will discuss various techniques to benchmark and evaluate the performance of the language models. \n\nChallenges and Future Directions: We will share the challenges we encountered during our experiments as well. \n\nOur experiments have been conducted with a specific focus on enhancing Gujarati language support in Google's Gemma family.",
"language": "English",
"presentation": "",
"speakers": [
"dixit_trivedi",
"khyat_anjaria"
],
"tags": [
"AI/ML"
],
"title": "Enhancing Gemma with Vernacular Language Support",
"videoId": "qhumv1m7FX0"
},
"126": {
"complexity": "Intermediate",
"description": "Join Yash Adulkar and Prashant Dalai as they reveal how Localization, Remote Config, and Vertex AI can transform Flutter apps into intelligent, user-centered experiences. Yash will discuss how Localization adapts apps to users' language and culture, enhancing accessibility, while Remote Config enables real-time control over app behavior for personalized content and A/B testing. Prashant will then demonstrate how Vertex AI empowers apps with custom ML models, delivering personalized recommendations and dynamic content. Learn to create adaptable, engaging applications with these essential tools!",
"language": "English",
"presentation": "",
"speakers": [
"yash_adulkar",
"prashant_dalai"
],
"tags": [
"Mobile",
"Android",
"Flutter"
],
"title": "Localization, Remote Config and Vertex AI with Flutter",
"videoId": "29iBHxFwFtQ"
},
"127": {
"complexity": "Intermediate",
"description": "In this session, we'll explore how Beckn (the Protocol behind ONDC, Namma Yatri, UEI & many more), as an open digital transaction protocol, is reshaping the landscape of decentralized digital ecosystems. This talk will cover Beckn's architecture, real-world use cases, and the pivotal role of AI in building adaptive, responsive, and intelligent digital interactions. Attendees will gain insights into leveraging Beckn to create scalable, AI-driven solutions that contribute to an inclusive digital economy and facilitate a frictionless exchange of goods, services, and ideas online.",
"language": "English",
"presentation": "",
"speakers": [
"harsh_shah",
"akash_shukla"
],
"tags": [
"AI/ML"
],
"title": "Beckn Unveiled: Architecting the Internet's Next Frontier with AI",
"videoId": "7kQp9LcZCxQ"
},
"128": {
"complexity": "Intermediate",
"description": "With over 20 years of experience in technology consulting and business transformation, Karan Chugh is a recognised expert in helping startups, SMEs, and enterprises scale effectively. Having guided businesses across diverse industries—including FinTech, AgriTech, aviation, and government organisations—Karan blends strategic insights with hands-on expertise to unlock growth opportunities. \nIn his session, \"The Art of Scaling Up,\" Karan will share proven strategies for navigating the complexities of growth. His talk is packed with actionable insights tailored for today's fast-evolving business landscape. \n\nWhether you're a startup founder, a technology enthusiast, or a seasoned executive, this session promises to inspire and equip you with the tools to transform challenges into milestones on your scaling journey. \n\nJoin Karan and discover the art of scaling up with clarity, confidence, and creativity!",
"language": "English",
"presentation": "",
"speakers": [
"karan_chugh"
],
"tags": [
"Startup"
],
"title": "The Art of Scaling up",
"videoId": ""
},
"129": {
"complexity": "Intermediate",
"description": "Breaking Boundaries: Empowering Women to Lead the Future of Tech is an inspiring roundtable discussion designed to address the unique challenges and opportunities for women in today's tech landscape. We'll explore how women can navigate rapid market changes, harness the potential of AI, and step into leadership roles that drive innovation. This conversation will also cover insights on building resilience, taking calculated risks, and embracing entrepreneurship to launch successful startups. Join us as we discuss strategies for overcoming barriers, competing in a dynamic market, and paving the way for women to lead the future of tech",
"language": "English",
"presentation": "",
"speakers": [
"khushbu_thakker",
"srishti_tibrewal"
],
"tags": [
"WTM"
],
"title": "Breaking Boundaries: Empowering Women to Lead the Future of Tech",
"videoId": ""
},
"130": {
"complexity": "Intermediate",
"description": "Join us for an exclusive CxO meetup as we deep-dive into DhiWise - an enterprise-grade platform where agentic AI transforms software development by thinking, planning, and creating like your best team members \n\nExperience the complete AI-First Automation Platform that: \n* Functions as your specialized AI employee mastering every role \n*Combines strategic thinking, analyst precision, and developer expertise \n* Delivers quality-first results with zero verbal dependencies \n* Accelerates your entire journey from concept to code",
"language": "English",
"presentation": "",
"speakers": [
"vishal_virani"
],
"tags": [
"Startup"
],
"title": "CxO Meet: Deep dive into AI-powered Business SDLC automation with DhiWise",
"videoId": ""
},
"131": {
"complexity": "Intermediate",
"description": "This session explores how Google AI can help you transform your ideas into impactful solutions. \n\nWe'll cover a range of tools and techniques, from ideation and research with Google Gemini, to development and prototyping with Colab and AI Studio, to deployment and scaling with Vertex AI and Cloud Functions. \n\nLearn how to leverage these powerful resources to accelerate your AI journey and create solutions that make a real-world difference.",
"language": "English",
"presentation": "",
"speakers": [
"harsh_dattani"
],
"tags": [
"Keynote",
"AI/ML"
],
"title": "From Ideas to Impact using Google AI tools",
"videoId": "r8kMv7ZNcZo"
},
"132": {
"complexity": "Introductory & Overview",
"description": "This program aims to support female developers who are actively working on Google products, already have technical skills to join the Google Developer Experts community. \nThe program will provide the candidates with basic knowledge about the Experts program, product-specific speaking engagements and opportunities (mentorships, training) and development in technical skills.",
"language": "English",
"presentation": "",
"speakers": [
"rajat_bhatia"
],
"tags": [
"Keynote"
],
"title": "Road to GDE",
"videoId": "r8kMv7ZNcZo"
},
"133": {
"complexity": "Intermediate",
"description": "Office hours for Tech Expo Gujarat",
"language": "English",
"presentation": "",
"speakers": [],
"tags": [],
"title": "Tech Expo Gujarat",
"videoId": ""
},
"151": {
"description": "Get your badge, coffee, enjoy talking with tech edicts around",
"icon": "registration",
"image": "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Fregistration.jpg?alt=media&token=27328646-d323-4cca-904c-75f021bc3ffe",
"title": "Registration & morning Coffee"
},
"152": {
"description": "Foooooooood!",
"icon": "lunch",
"image": "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Flunch.jpg?alt=media&token=bc82aaff-92cc-4dcc-a00e-2b6f30a40225",
"title": "Lunch"
},
"153": {
"description": "Coffeeeeeee!",
"icon": "coffee-break",
"image": "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Fcoffee-break.jpg?alt=media&token=7c2c929b-cb94-4be8-a05a-b3f678136cb7",
"title": "Coffee break"
},
"154": {
"description": "Coffeeeeeee!",
"icon": "coffee-break",
"image": "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Fmorning.jpg?alt=media&token=d0da3d64-fc63-48c6-9d41-1460451dca64",
"title": "Morning coffee"
},
"155": {
"description": "Official start of the conference. Greetings from the Paresh Mayani and Dhrumil Shah",
"icon": "opening",
"image": "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Fopening.jpg?alt=media&token=aa52dd45-50c9-4e36-9485-c1f9138ecd6b",
"language": "English",
"presentation": "",
"speakers": [
"paresh_mayani",
"dhrumil_shah"
],
"title": "GDG DevFest Ahmedabad 2024 Opening",
"videoId": "-VkANz16p5Y"
},
"156": {
"description": "Afterparty is a great time to have some fun and meet new people",
"icon": "party",
"image": "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Fparty.jpg?alt=media&token=8e413f01-373a-40bf-bb87-1dcf1d8e6af1",
"title": "Afterparty & Networking"
},
"157": {
"description": "Make sure you won't miss closing ceremony",
"icon": "party",
"image": "https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fbackgrounds%2Fclosing.jpg?alt=media&token=f02d014a-09ee-407e-88c7-b74093e00fed",
"language": "English",
"speakers": [
"jaldeep_asodariya",
"hiren_dave"
],
"title": "Conference closing",
"videoId": "U58XUdqw3qE"
},
"158": {
"description": "",
"language": "English",
"title": "Keynote"
},
"159": {
"description": "TBD",
"language": "English",
"title": "TBD"
},
"160": {
"description": "Networking and Separation Break for/from different tracks",
"language": "English",
"title": "Networking - Separation Break"
}
},
"speakers": {
"paresh_mayani": {
"badges": [
{
"description": "Google Developers Group Ahmedabad",
"link": "https://www.meetup.com/GDG-Ahmedabad/",
"name": "gdg"
}
],
"bio": "Paresh is a Co-Founder / CEO at SolGuruz, who has been exploring the horizon of the software industry for the 15+ years. - Worked with 20+ startups and mentored them. He is the founder / Organiser of Google Developers Group Ahmedabad. He is holding 120,000 reputation points over Stack Overflow. Known for community contribution, writing blogs, delivering talks across India and International, Mentoring and Working with Startups.",
"company": "SolGuruz",
"companyLogo": "",
"companyLogoUrl": "https://firebasestorage.googleapis.com/v0/b/devfestahm-develop.appspot.com/o/images%2Fpeople%2Fspeakers%2F2022%2Fcompany%2FsolGuruz.png?alt=media&token=72c0059b-7345-423e-9d8e-8296433ad65c",
"country": "Ahmedabad, Gujarat",
"featured": false,
"name": "Paresh Mayani",
"photo": "",
"photoUrl": "https://firebasestorage.googleapis.com/v0/b/devfestahm-develop.appspot.com/o/images%2Fpeople%2Fspeakers%2F2022%2Fparesh-mayani.jpg?alt=media&token=b350023f-f9cb-41ab-972a-8b0e401cf1a2",