forked from Rakesh9100/Eventica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.json
1091 lines (1091 loc) · 71.9 KB
/
events.json
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
[
{
"title": "ClickHouse Bangalore Meetup",
"date": "08-02-2025",
"time": "10:30 AM - 1:30 PM",
"location": "WeWork Prestige Tech Park, 4th Floor, Kadubeesanahalli, Bengaluru, Karnataka 560103, India",
"description": "Kick off 2025 with our very first Bangalore meetup of the year! We have a great lineup of speakers.",
"image": "https://secure.meetupstatic.com/photos/event/1/b/9/0/600_525607056.webp?w=384",
"website": "https://www.meetup.com/clickhouse-bangalore-user-group/events/305497951"
},
{
"title": "Reshaping Healthcare in 2025 with Next-Gen Tech",
"date": "08-02-2025",
"time": "10:00 AM - 2:00 PM",
"location": "Microsoft Reactor Bengaluru, Lavelle Rd, Bengaluru, Karnataka 560001, India",
"description": "Hello, Healthcare Enthusiasts! Let's push the boundaries of healthcare, shape the future, and create an unforgettable experience.",
"image": "https://secure.meetupstatic.com/photos/event/b/4/e/4/600_525646308.webp?w=384",
"website": "https://www.meetup.com/geekyants-events-meetup-group/events/305551783"
},
{
"title": "Cloud-Native DevTools Day",
"date": "01-02-2025",
"time": "1:00 PM - 5:00 PM",
"location": "Cloudera, 3rd Floor, Koramangala, Bengaluru, Karnataka 560034, India",
"description": "Join Us for the 'Cloud-Native DevTools Day' Meetup in Bangalore! This action-packed event features top speakers, thought-provoking talks, and opportunities for networking.",
"image": "https://secure.meetupstatic.com/photos/event/3/a/4/4/600_525134916.webp?w=384",
"website": "https://www.meetup.com/docker-bangalore/events/304556104"
},
{
"title": "Extract Summit Local-Chapter India",
"date": "31-01-2025",
"time": "5:00 PM - 8:00 PM",
"location": "Microsoft Reactor Bengaluru, Lavelle Rd, Bengaluru, Karnataka 560001, India",
"description": "Join us for an engaging evening of learning and networking at the Extract Summit Local Chapter in India, which is an unique opportunity.",
"image": "https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F926024123%2F308014268092%2F1%2Foriginal.20250102-065340?w=940&auto=format%2Ccompress&q=75&sharp=10&rect=0%2C47%2C1482%2C741&s=8cd0b2cf843c6289beca09d6cc54cb3b",
"website": "https://www.eventbrite.ie/e/extract-summit-local-chapter-india-tickets-1130225517949"
},
{
"title": "Kubernetes Bangalore Meetup January 2025",
"date": "25-01-2025",
"time": "1:00 PM - 5:00 PM",
"location": "Bangalore India, Tara Apartments, Shivaji Nagar, Bengaluru, Karnataka 560001, India",
"description": "Join Kubernetes Bangalore (K8sBLR) for an insightful event focused on Cloud Native Platforms discussing their impact on Cloud Computing.",
"image": "https://secure.meetupstatic.com/photos/event/9/9/b/3/600_522159347.webp?w=384",
"website": "https://www.meetup.com/kubernetes-india-meetup/events/305496181"
},
{
"title": "Bangalore SRE Meetup",
"date": "25-01-2025",
"time": "10:00 AM - 1:00 PM",
"location": "Sattva Knowledge Court, EPIP Zone, Brookefield, Bengaluru, Karnataka 560048, India",
"description": "We are back with a new edition of Bangalore SRE Meetup in year 2025. Please join us for our very first event of the year this January.",
"image": "https://secure.meetupstatic.com/photos/event/d/d/d/1/600_515396785.webp?w=384",
"website": "https://www.meetup.com/sre-bangalore/events/305432177"
},
{
"title": "AWS re:Invent 2024 Recap",
"date": "25-01-2025",
"time": "9:30 AM - 12:30 PM",
"location": "Fair Isaac India Software Private Limited (FICO), Kodihalli, Bengaluru, Karnataka 560017, India",
"description": "AWS re:Invent 2024 was packed with exciting announcements, innovative services, and impactful updates hosted by AWS User Group Bengaluru.",
"image": "https://secure.meetupstatic.com/photos/event/a/9/3/d/600_525463325.webp?w=384",
"website": "https://www.meetup.com/awsugblr/events/305093315"
},
{
"title": "AI x Finance",
"date": "24-01-2025",
"time": "1:00 PM - 4:00 PM",
"location": "Intuit Campus 8, EcoSpace, Bellandur, Bengaluru, Karnataka 560103, India",
"description": "Join the city's brightest minds and innovators for an exclusive dive into the future of AI and finance. Register now before it's too late and join for an exciting day.",
"image": "https://secure.meetupstatic.com/photos/event/a/d/a/3/600_525524451.webp?w=384",
"website": "https://www.meetup.com/futuregpt/events/305413860"
},
{
"title": "DeCODE DevSecOps",
"date": "19-01-2025",
"time": "10:30 AM - 1:00 PM",
"location": "COWRKS Residency Road, Ashok Nagar, Bengaluru, Karnataka 560025, India",
"description": "Join us at the DeCODE DevSecOps - Bangalore Meetup by VivaOps for an exciting meetup for developers, DevOps enthusiasts, and tech professionals.",
"image": "https://img.evbuc.com/https%3A%2F%2Fcdn.evbuc.com%2Fimages%2F929379023%2F2303382243543%2F1%2Foriginal.20250107-093329?crop=focalpoint&fit=crop&w=940&auto=format%2Ccompress&q=75&sharp=10&fp-x=0.005&fp-y=0.005&s=b3e6742c03b821cfc8e77426117b97bc",
"website": "https://www.eventbrite.com/e/decode-devsecops-bangalore-tech-meetup-by-vivaops-tickets-1040690803207"
},
{
"title": "IN PERSON! Apache Kafka® Meetup Bangalore",
"date": "18-01-2025",
"time": "10:00 AM - 1:00 PM",
"location": "Microsoft Reactor Bengaluru, Lavelle Rd, Bengaluru, Karnataka 560001, India",
"description": "Hello everyone! Join us for an IN PERSON Apache Kafka® meetup on Jan 18th from 10:00AM, hosted by Microsoft Reactor in Bangalore!",
"image": "https://secure.meetupstatic.com/photos/event/7/2/1/c/clean_522809212.webp",
"website": "https://www.meetup.com/bangalore-kafka-data-streams/events/305111821"
},
{
"title": ".NET Conf 2024 @ Bengaluru",
"date": "18-01-2025",
"time": "10:00 AM - 1:00 PM",
"location": "Microsoft Luxor North Tower, Mahadevapura, Bengaluru, Karnataka 560048, India",
"description": "This year, we're taking the .NET Conf experience to the next level by hosting an in-person event to celebrate our 14th anniversary.",
"image": "https://secure.meetupstatic.com/photos/event/b/8/c/1/600_465047297.webp?w=384",
"website": "https://www.meetup.com/BDotNetUG/events/305148413"
},
{
"title": "DevTools Day, Bengaluru",
"date": "18-01-2025",
"time": "10:00 AM - 3:00 PM",
"location": "Nokia Solutions and Networks Pvt Ltd L5 Building, Manayata Tech Park, Bengaluru, Karnataka 560045, India",
"description": "Join us for the 5th edition of DevTools Day Bengaluru, a community-driven event dedicated to exploring cutting-edge developer tools.",
"image": "https://secure.meetupstatic.com/photos/event/2/3/2/8/600_525069000.webp?w=384",
"website": "https://www.meetup.com/collabnix/events/304968647"
},
{
"title": "Build w/AI Demo Day Bangalore",
"date": "12-01-2025",
"time": "2:30 PM - 6:30 PM",
"location": "WeWork Vaishnavi Signature, Bellandur, Varthur, Bengaluru, Karnataka 560103, India",
"description": "Get ready for an unforgettable afternoon at the Build w/AI Demo Day in Bangalore.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/om/4aba23b4-e0f7-42fd-8f79-e5926dfde641",
"website": "https://lu.ma/9uc34wiw"
},
{
"title": "ReactPlay Bangalore Meetup",
"date": "11-01-2025",
"time": "9:30 AM - 2:00 PM",
"location": "Microsoft Reactor Bengaluru, Lavelle Rd, Bengaluru, Karnataka 560001, India",
"description": "In this meetup, we will explore the talks on the latest features and technologies in tech. This meetup is open to all experience levels.",
"image": "https://secure.meetupstatic.com/photos/event/5/5/e/1/600_525321985.webp?w=384",
"website": "https://www.meetup.com/reactplay-bengaluru/events/305195721"
},
{
"title": "AI Community Day",
"date": "08-01-2025",
"time": "9:00 AM - 6:00 PM",
"location": "Microsoft Reactor Bengaluru, Lavelle Rd, Bengaluru, Karnataka 560001, India",
"description": "Welcome to AI Community Day! A day where AI enthusiasts, developers, and innovators come together to geek out, connect, and share knowledge around artificial intelligence!",
"image": "https://secure.meetupstatic.com/photos/event/9/7/c/2/600_525278850.webp?w=384",
"website": "https://www.meetup.com/microsoft-reactor-bengaluru/events/305142778"
},
{
"title": "Microsoft AI Tour",
"date": "07-01-2025",
"time": "8:00 AM - 5:00 PM",
"location": "Bangalore International Exhibition Centre, Madanayakahalli, Bengaluru, Karnataka 562162, India",
"description": "Microsoft AI Tour in Bengaluru. Learn from industry experts and Microsoft engineering teams with hands-on technical workshops.",
"image": "https://media.licdn.com/dms/image/sync/v2/D5627AQHMHdzD9IFYHg/articleshare-shrink_800/articleshare-shrink_800/0/1733810952528?e=2147483647&v=beta&t=Gei_Ds62Wpo10DehqEVWT4N6KVQ4JhKIZzgXek8ZyOs",
"website": "https://aitour.microsoft.com/en-US/Bengaluru"
},
{
"title": "JS Meetup: Mastering web applications",
"date": "04-01-2025",
"time": "10:30 AM - 12:30 PM",
"location": "Microsoft Reactor Bengaluru, Lavelle Rd, Bengaluru, Karnataka 560001, India",
"description": "Join the FREE meetup to learn and network. Talks are by experts in field of web application development, so come and join us.",
"image": "https://secure.meetupstatic.com/photos/event/9/8/2/7/clean_497138951.webp",
"website": "https://www.meetup.com/javascriptmeetup/events/305080451"
},
{
"title": "Azure Developer Day",
"date": "28-12-2024",
"time": "11:00 AM - 2:00 PM",
"location": "Microsoft Luxor North Tower, Mahadevapura, Bengaluru, Karnataka 560048, India",
"description": "Dive into the future of cloud development at Azure Developer Day! This event is specially crafted for developers and professionals.",
"image": "https://bit.ly/4gu1m1d",
"website": "https://reskilll.com/event/devdayblr"
},
{
"title": "TSOW x greytHR x SpringVerify HR Meetup",
"date": "21-12-2024",
"time": "4:00 PM - 7:00 PM",
"location": "Bloom Hotel, Sector 6, HSR Layout, Bengaluru, Karnataka 560102, India",
"description": "🎉 Hello Bangalore! 🎉 Are you ready for an exciting event of networking and growth? TSOW is thrilled to partner with greytHR and SpringVerify.",
"image": "https://bit.ly/3PkWkYB",
"website": "https://lu.ma/2kn4xmhz"
},
{
"title": "DevFest Bangalore Ext",
"date": "21-12-2024",
"time": "10:00 AM - 1:30 PM",
"location": "AQUERALABS INDIA, 2nd Floor, Whitefield, Bengaluru, Karnataka 560066, India",
"description": "Closing out an incredible year, DevFest Bangalore Ext 2024 is here to bring the tech community together before we say Good Bye to 2024! Join us for exciting day.",
"image": "https://res.cloudinary.com/startup-grind/image/upload/c_scale,w_2560/c_crop,h_640,w_2560,y_0.0_mul_h_sub_0.0_mul_640/c_crop,h_640,w_2560/c_fill,dpr_2.0,f_auto,g_center,q_auto:good/v1/gcs/platform-data-goog/event_banners/Banner_pxJs8fI.png",
"website": "https://gdg.community.dev/events/details/google-gdg-bangalore-presents-devfest-bangalore-ext-2024/"
},
{
"title": "Beyond the Resume",
"date": "20-12-2024",
"time": "6:00 PM - 8:00 PM",
"location": "Microsoft Reactor Bengaluru, Lavelle Rd, Bengaluru, Karnataka 560001, India",
"description": "Embark on a transformative journey as I share my personal experiences and strategies that turned me from a newbie to a seasoned professional, come and join us.",
"image": "https://secure.meetupstatic.com/photos/event/c/b/8/c/600_525052108.webp?w=384",
"website": "https://www.meetup.com/microsoft-reactor-bengaluru/events/304949579"
},
{
"title": "MagicBall - AI Hacks: Decoding AI in Action",
"date": "16-12-2024",
"time": "6:00 PM - 8:00 PM",
"location": "Hasura Bangalore, Koramangala, Bengaluru, Karnataka 560034, India",
"description": "AI Engineers of Bangalore, Presenting: MagicBall - AI Hacks: Decoding AI in Action hosted by Grayscale Ventures in partnership with MagicBall.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/ra/c0b60711-5aa2-4a9f-aabe-61c038feb79a",
"website": "https://lu.ma/afmcfm5g"
},
{
"title": "38th Scrum Meetup Bangalore",
"date": "14-12-2024",
"time": "10:30am - 4:00pm",
"location": "DevOn Software, Devarabisanahalli, Bengaluru, Karnataka 560087, India",
"description": "We are very much delighted to announce our upcoming 38th Scrum Bangalore Meetup happening in our Devon Software.",
"image": "https://secure.meetupstatic.com/photos/event/d/9/f/0/highres_524995792.webp",
"website": "https://www.meetup.com/scrumdevon/events/304686055"
},
{
"title": "OpsVerse Social",
"date": "13-12-2024",
"time": "6:30pm - 9:30pm",
"location": "BLR Brewing Co, 450, 1st Floor, 17th Cross Rd, HSR Layout, Bengaluru, Karnataka 560102, India",
"description": "Join us at OpsVerse Social: Bengaluru for an evening of great conversations, networking, and fun at The Bangalore Brewing Co.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=1,background=white,quality=75,width=400,height=400/event-covers/bm/f3ee6377-66e9-4624-8ad8-b8372e483e62",
"website": "https://lu.ma/2j96ehjo"
},
{
"title": "Save The Date: Team on Tour Recap",
"date": "7-12-2024",
"time": "9:30am - 4:30pm",
"location": "Radisson Blu Outer Ring Road, Marathahalli, Bengaluru, Karnataka 560037, India",
"description": "Save the date for the amazing Atlassian Team on Tour Recap event with an exciting line-up of sessions.",
"image": "https://res.cloudinary.com/startup-grind/image/upload/c_scale,w_2560/c_crop,h_640,w_2560,y_0.63_mul_h_sub_0.63_mul_640/c_crop,h_640,w_2560/c_fill,dpr_2.0,f_auto,g_center,q_auto:good/v1/gcs/platform-data-atlassian/event_banners/MCP01512_7eGZptm.jpg",
"website": "https://ace.atlassian.com/events/details/atlassian-bangalore-presents-team-on-tour-recap-atlassian-community-bangalore/"
},
{
"title": "SAP Inside Track Bengaluru 2024",
"date": "7-12-2024",
"time": "8:00am - 5:00pm",
"location": "SAP Labs India, Whitefield, Bengaluru, Karnataka 560066, India",
"description": "SAP Inside Track is a community-driven event where SAP professionals, developers, architects, and leaders come together.",
"image": "https://media.konfhub.com/event_poster/2024/October/27/1730029985747-9831cb39-df96-4991-b61e-7d537d23c54c.png",
"website": "https://konfhub.com/sap-inside-track-bengaluru-december-2024-business-ai-edition"
},
{
"title": "The Gen AI Meetup, by DevRelSquad",
"date": "6-12-2024",
"time": "4:00pm - 8:00pm",
"location": "Microsoft Reactor Bengaluru, Lavelle Rd, Bengaluru, Karnataka 560001, India",
"description": "Join us for an engaging evening filled with discussions, networking, and insights into the cutting-edge world of Generative Al.",
"image": "https://media.konfhub.com/event_poster/2024/November/21/1732187670969-0e68b5d3-d965-4b79-8824-8eab3f35d80b.png",
"website": "https://konfhub.com/the-gen-ai-meetup-by-singlestore-x-devrelsquad"
},
{
"title": "Azure SQL Bangalore User Group Meetup",
"date": "30-11-2024",
"time": "9:00am - 4:00pm",
"location": "Microsoft, Prestige Ferns Galaxy, Bellandur, Bengaluru, Karnataka 560103, India",
"description": "We're thrilled to announce the next meetup, promised to bring together our community once every three months.",
"image": "https://secure.meetupstatic.com/photos/event/6/b/9/3/600_513087539.webp?w=384",
"website": "https://www.meetup.com/azure-sql-bangalore-user-group-meetup/events/304432321"
},
{
"title": "IoT Security Foundation Bangalore Meetup",
"date": "23-11-2024",
"time": "10:00am - 2:30pm",
"location": "LTIMindtree S2 Hebbal, 274, Byatarayanapura, Bengaluru, Karnataka 560092, India",
"description": "The adoption of IoT in healthcare has transformed patient care, but it also exposes the sector.",
"image": "https://secure.meetupstatic.com/photos/event/7/e/d/6/clean_512612470.webp",
"website": "https://www.tickettailor.com/events/iotsfbangalorechapter/1461786"
},
{
"title": "Getting started with Azure Developer CLI",
"date": "22-11-2024",
"time": "5:30pm - 8:00pm",
"location": "Microsoft Reactor Bengaluru, Lavelle Rd, Bengaluru, Karnataka 560001, India",
"description": "The Azure Developer CLI (azd) is an open-source tool that accelerates provisioning and deploying app resources on Azure.",
"image": "https://secure.meetupstatic.com/photos/event/c/b/6/e/600_524692078.webp?w=384",
"website": "https://www.meetup.com/microsoft-reactor-bengaluru/events/304558092"
},
{
"title": "Thoughtworks XConf 2024",
"date": "22-11-2024",
"time": "8:00am - 4:00pm",
"location": "Bengaluru Marriott Hotel, Whitefield, Bengaluru, Karnataka 560066, India",
"description": "For over a decade, Thoughtworks XConf has been our flagship event—created by technologists for those passionate about technology and its impact on the world.",
"image": "https://www.thoughtworks.com/content/dam/thoughtworks/images/photography/banner-image/about-us/events/ev_banner_xconf_2024_desktop.jpg",
"website": "https://www.thoughtworks.com/en-in/about-us/events/xconf/2024/India"
},
{
"title": "Elevation Kickstarter",
"date": "20-11-2024",
"time": "7:00pm - 10:30pm",
"location": "The Leela Palace Bengaluru, Kodihalli, Bengaluru, Karnataka 560008, India",
"description": "At Elevation, we've been at the forefront of this transformation, having partnered with companies that are rewriting the monetization playbook.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/jv/4e580c83-5dbb-4db5-b3b5-084ee96068e1",
"website": "https://lu.ma/MonetizationKickstarter"
},
{
"title": "Getting started with UiPath Apps",
"date": "16-11-2024",
"time": "10:00am - 1:00pm",
"location": "UiPath Robotic Process Automation, Sampangi Rama Nagar, Bengaluru, Karnataka 560001, India",
"description": "UiPath Apps lets you to create elegant automation-powered apps in a low-code environment.",
"image": "https://res.cloudinary.com/startup-grind/image/upload/c_scale,w_2560/c_crop,h_640,w_2560,y_0.0_mul_h_sub_0.0_mul_640/c_crop,h_640,w_2560/c_fill,dpr_2.0,f_auto,g_center,q_auto:good/v1/gcs/platform-data-uipath/event_banners/Bengaluru_pSLBUEh.png",
"website": "https://community.uipath.com/events/details/uipath-bengaluru-presents-getting-started-with-uipath-apps-and-autopilot/"
},
{
"title": "GenAI Convergence: RAGs, Graphs, and LLMs",
"date": "16-11-2024",
"time": "10:00am - 2:00pm",
"location": "Microsoft Reactor Bengaluru, Lavelle Rd, Bengaluru, Karnataka 560001, India",
"description": "Join us for an exciting session on the intersection of Generative AI, Retrieval-Augmented Generation (RAGs), Graph Databases, and LLMs.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/26/966e4be1-0d28-4634-b857-d382d57a70d6",
"website": "https://lu.ma/69unkg9g"
},
{
"title": "Plane Community Meetup",
"date": "13-11-2024",
"time": "7:00pm - 9:00pm",
"location": "IndiQube Garden, Koramangala, Bengaluru, Karnataka 560095, India",
"description": "Join us in the vibrant city of Bengaluru. Hosted by Plane, this event is a fantastic opportunity for community members to connect and share insights.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/rw/9ec1edd0-a887-4748-883d-fb953f6837b1",
"website": "https://lu.ma/4d71e3x6"
},
{
"title": "MagicBall - AI Week - Product Demos",
"date": "30-9-2024",
"time": "1:00pm - 8:00pm",
"location": "Bangalore International Centre, Domlur, Bengaluru, Karnataka 560071, India",
"description": "Welcome to MagicBall - AI Week - Product Demos, brought to you by Google, DigitalOcean, and more in partnership with MagicBall.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/hs/7f16dec1-c545-4fb1-b0a9-89d28f33eb7e",
"website": "https://lu.ma/3ce0qjhd"
},
{
"title": "DevInfra Guru Days",
"date": "28-9-2024",
"time": "10:30am - 4:30pm",
"location": "Radisson Blu Bengaluru Outer Ring Road, Marathahalli, Bengaluru, Karnataka 560037, India",
"description": "Ready to revolutionize your development skills and take your application deployment to the next level? Join us at DevInfra Days.",
"image": "https://secure.meetupstatic.com/photos/event/6/2/c/600_523561580.webp?w=384",
"website": "https://www.meetup.com/devinfra-days-bengaluru/events/303483520"
},
{
"title": "Elevate by Razorpay: Amazon Edition",
"date": "26-9-2024",
"time": "6:30pm - 9:30pm",
"location": "Amazon Development Center, Aquila, Doddanekkundi, Bengaluru, Karnataka 560048, India",
"description": "Elevate, an initiative by Razorpay, continues its mission to celebrate and empower women in tech.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/m1/7a1537ee-935b-4245-9e4b-a7bee4e8a437",
"website": "https://lu.ma/os54e7ty"
},
{
"title": "ElasticON Bengaluru",
"date": "25-9-2024",
"time": "7:30am - 6:30pm",
"location": "Conrad Bengaluru, Kensington Rd, Halasuru, Bengaluru, Karnataka 560008, India",
"description": "When the precision of search meets the intelligence of AI, anything is possible. Spend the day with your local Elastic community.",
"image": "https://itknowledgezone.com/wp-content/uploads/2024/09/ElasticON-Tour-Bengaluru.jpg",
"website": "https://www.elastic.co/events/elasticon/bengaluru"
},
{
"title": "Build w/AI Demo Day In Bangalore",
"date": "22-9-2024",
"time": "1:30pm - 5:30pm",
"location": "Hotel Royal Orchid, Domlur, Bengaluru, Karnataka 560008, India",
"description": "We're thrilled to invite you to Build w/AI Demo Day to witness learners from around the world—who've mastered AI without writing code.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/ly/773720e3-54e7-4021-861a-f6d2581df952",
"website": "https://lu.ma/x6cpbgvm"
},
{
"title": "RAG: Building LLM Powered apps using Elastic",
"date": "21-9-2024",
"time": "12:00pm - 3:00pm",
"location": "Google Office, Kyoto West Bagmane, Doddanekkundi, Bengaluru, Karnataka 560048, India",
"description": "Join us for the meetup at the Google office, Bengaluru. Hosted by Google for Developers and Elastic.",
"image": "https://secure.meetupstatic.com/photos/event/a/4/1/c/600_523542012.webp?w=384",
"website": "https://www.meetup.com/elasticsearch-explorers/events/303257578"
},
{
"title": "Advanced Threat Detection and Investigation",
"date": "21-9-2024",
"time": "10:30am - 12:30pm",
"location": "HOTEL THE SHACK, Ramamurthy, Bengaluru, Karnataka 560016, India",
"description": "Hello Atlassian Community, Join us for an insightful community event focused on Atlassian Guard Detect and the advanced threat detection.",
"image": "https://res.cloudinary.com/startup-grind/image/upload/c_scale,w_2560/c_crop,h_640,w_2560,y_0.0_mul_h_sub_0.0_mul_640/c_crop,h_640,w_2560/c_fill,dpr_2.0,f_auto,g_center,q_auto:good/v1/gcs/platform-data-atlassian/event_banners/CSD-1081_Com_BevyBanner_General_1.jpg",
"website": "https://ace.atlassian.com/events/details/atlassian-bangalore-presents-advanced-threat-detection-and-investigation-in-atlassian-guard/"
},
{
"title": "Snowflake NorthStar Conference Bangalore",
"date": "21-9-2024",
"time": "8:00am - 6:00pm",
"location": "Sheraton Grand Hotel, Whitefield, Bengaluru, Karnataka 560048, India",
"description": "Join Snowflake's first Northstar Conference to expand your skills, explore new tools through hands-on workshops.",
"image": "https://secure.meetupstatic.com/photos/event/5/8/7/0/600_521962640.webp?w=384",
"website": "https://www.snowflake.com/northstar-conference-bengaluru/"
},
{
"title": "Prompt Engineering with OpenAI",
"date": "20-9-2024",
"time": "5:00pm - 7:30pm",
"location": "Microsoft Reactor Bengaluru, Lavelle Rd, Bengaluru, Karnataka 560001, India",
"description": "Prompt engineering in OpenAI is a technique that involves designing prompts for natural language processing models.",
"image": "https://secure.meetupstatic.com/photos/event/5/6/2/2/600_523162050.webp?w=384",
"website": "https://www.meetup.com/microsoft-reactor-bengaluru/events/303070603"
},
{
"title": "Meetup Zero : Gen AI by DevRelSquad",
"date": "20-9-2024",
"time": "3:30pm - 6:30pm",
"location": "Google Bangalore, Old Madras Rd, Bennigana Halli, Bengaluru, Karnataka 560016, India",
"description": "Join us for an insightful day filled with discussions, networking, and learning about the latest advancements.",
"image": "https://media.licdn.com/dms/image/v2/D5622AQGoJMaDNIuPkw/feedshare-shrink_2048_1536/feedshare-shrink_2048_1536/0/1725691316077?e=2147483647&v=beta&t=SS1ZPWbYe8wYr16RF6NSn_ZeXlpMaTSYUXVjx1C_iT4",
"website": "https://www.commudle.com/communities/devrelsquad/events/meetup-zero-gen-ai-by-devrelsquad-and-google-for-developers"
},
{
"title": "Snowflake World Tour in Bangalore",
"date": "19-9-2024",
"time": "8:00am - 5:30pm",
"location": "Sheraton Grand Hotel, Whitefield, Bengaluru, Karnataka 560048, India",
"description": "The Snowflake World Tour is making 23 stops around the globe, so you can learn about the latest innovations in the AI Data Cloud.",
"image": "https://www.snowflake.com/wp-content/uploads/2024/06/SWT_24_Bangalore_Yoast.png",
"website": "https://www.snowflake.com/events/snowflake-world-tour-bangalore/"
},
{
"title": "Design Meetup",
"date": "14-9-2024",
"time": "3:00pm - 5:30pm",
"location": "GeekyAnts, Bannerghatta Main Road, BTM Layout, Bengaluru, Karnataka 560076, India",
"description": "Hello, Design Lovers ! We are excited to announce the Design Meet-up around the theme \"Product Design and Market Fit\".",
"image": "https://secure.meetupstatic.com/photos/event/d/3/e/2/600_523194242.webp?w=384",
"website": "https://www.meetup.com/bangalore-design-meetup-group/events/302956621"
},
{
"title": "Elastic + AWS UG Bengaluru Meetup",
"date": "14-9-2024",
"time": "10:00am - 1:00pm",
"location": "Elastic Technologies (India) Private Limited, Domlur, Bengaluru, Karnataka 560071, India",
"description": "AWS and Elastic Meetup in Bengaluru is a collaborative event with the AWS User Group Bengaluru.",
"image": "https://secure.meetupstatic.com/photos/event/4/2/c/7/clean_524777095.webp",
"website": "https://www.meetup.com/elasticsearch-explorers/events/302982038"
},
{
"title": "MongoDB.local Bengaluru",
"date": "10-9-2024",
"time": "8:00am - 5:00pm",
"location": "Sheraton Grand Hotel, Whitefield, Bengaluru, Karnataka 560048, India",
"description": "At MongoDB.local Bengaluru event, you'll learn technologies, tools, and best practices that make it easy to build data-driven applications without distraction.",
"image": "https://s3.amazonaws.com/info-mongodb-com/_com_assets/cms/lvwow06v1ld58ng8r-1200x627%20-%20Landscape%20(4).png?auto=format%252Ccompress",
"website": "https://www.mongodb.com/events/mongodb-local/bengaluru"
},
{
"title": "Platform Engineering in the world of AI",
"date": "7-9-2024",
"time": "11:00am - 2:00pm",
"location": "Shadowfax Technologies Pvt. Ltd., 93/A, Koramangala, Bengaluru, Karnataka 560095, India",
"description": "The JAZZ of AI is everywhere. What are Platform Engineers doing to help their users leverage it better?",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/gallery-images/sv/c14ea5cc-0118-46a0-aaba-7d405125c7b4",
"website": "https://lu.ma/al3ou5kk"
},
{
"title": "🔮 MagicBall - AI Reveal - Product Demos 🚀",
"date": "4-9-2024",
"time": "6:00pm - 9:00pm",
"location": "Bira 91 Taproom, Koramangala, Bengaluru, Karnataka 560034, India",
"description": "Join us in Koramangala for an invite-only event hosted by Grayscale Ventures, Stripe and TrueFoundry in partnership with MagicBall.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/v7/c2ddcad7-20b0-4aad-858b-9e14ea8a5edd",
"website": "https://lu.ma/qm3kway4"
},
{
"title": "Meet the Builders | BLR 🇮🇳",
"date": "31-8-2024",
"time": "5:00pm - 9:00pm",
"location": "The Oberoi, Bengaluru, Sivanchetti Gardens, Bengaluru, Karnataka 560001, India",
"description": "This event is for the builders who are building in decentralisation, payments and AI. Access the network of a very curated crowd of builders.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/lk/4afede4e-fbc8-4d43-a67a-47c88727c51b",
"website": "https://lu.ma/meethebuilders1"
},
{
"title": "Atlassian Community Hybrid Event",
"date": "31-8-2024",
"time": "10:30am - 12:30pm",
"location": "Icon Premier Hotel, 57, Bellandur, Bengaluru, Karnataka 560103, India",
"description": "Hello Atlassian Community, Bangalore ACE is pleased to announce an In-Person event on Advanced JIRA Reporting and Dashboards.",
"image": "https://res.cloudinary.com/startup-grind/image/upload/c_scale,w_2560/c_crop,h_640,w_2560,y_0.0_mul_h_sub_0.0_mul_640/c_crop,h_640,w_2560/c_fill,dpr_2.0,f_auto,g_center,q_auto:good/v1/gcs/platform-data-atlassian/event_banners/CSD-1081_Com_BevyBanner_General_1.jpg",
"website": "https://ace.atlassian.com/events/details/atlassian-bangalore-presents-atlassian-community-hybrid-event-advanced-jira-reporting-and-trello-integration"
},
{
"title": "SecurityBoat Community Meetup",
"date": "31-8-2024",
"time": "10:00am - 2:00pm",
"location": "PayU Bangalore Office, Challaghatta, Bengaluru, Karnataka 560071, India",
"description": "SecurityBoat community is a group of professionals and enthusiasts dedicated to strengthening the security of the digital future.",
"image": "https://media.konfhub.com/event_poster/2024/August/27/1724738426637-045ba1e8-09a2-4060-9afc-b48d3b8ccdec.png",
"website": "https://konfhub.com/securityboat-community-meetup-bengaluru-august"
},
{
"title": "Azure SQL Bangalore User Group Meetup",
"date": "31-8-2024",
"time": "9:00am - 5:00pm",
"location": "Microsoft, Prestige Ferns Galaxy, Bellandur, Bengaluru, Karnataka 560103, India",
"description": "We are back with another awesome Azure SQL Bangalore Meetup, and we can't wait to see you there. Looking forward to your participation.",
"image": "https://secure.meetupstatic.com/photos/event/6/b/9/3/600_513087539.webp?w=384",
"website": "https://www.meetup.com/azure-sql-bangalore-user-group-meetup/events/302392874"
},
{
"title": "Daytona Developers Club Tour '24",
"date": "29-8-2024",
"time": "6:00pm - 9:00pm",
"location": "Garuda BHIVE Workspace, BTM Layout, Bengaluru, Karnataka 560068, India",
"description": "An event where we talk on Developer Experience, and Open Source. This isn't to say that open source is an unhealthy space.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/xn/f39021bf-437a-4617-ab91-d5e801e1f51b",
"website": "https://lu.ma/jl18fprb"
},
{
"title": "LLMs in Production with Microsoft",
"date": "28-8-2024",
"time": "6:00pm - 8:00pm",
"location": "Hustlehub Tech Park, 36/5, HSR Layout, Bengaluru, Karnataka 560102, India",
"description": "Join us for an exclusive event where you'll gain invaluable insights from founders who have successfully navigated the challenges.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/fr/a40bda00-c831-46dc-b4dd-3b30bb30eeae",
"website": "https://lu.ma/dfw1w286"
},
{
"title": "Novo Tech Meetup 1.0",
"date": "24-8-2024",
"time": "10:30am - 2:30pm",
"location": "Dongle Desk, 463, Indiranagar, Bengaluru, Karnataka 560038, India",
"description": "Join us for Novo Tech Meetup 1.0 in Bengaluru, where technology meets opportunity! This event is designed to connect with the brightest minds in tech field.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/uv/08eb3def-804e-4ad7-a564-fab05dc2b655",
"website": "https://lu.ma/ktjderm7"
},
{
"title": "Bengaluru MUG: Let's Meet and Master Mongo",
"date": "24-8-2024",
"time": "10:00am - 2:00pm",
"location": "WeWork Roshini Tech Hub, EPIP Zone, Bengaluru, Karnataka 560037, India",
"description": "Join us for an exciting in-person MongoDB user group meetup where we'll dive into building scalable applications.",
"image": "https://www.mongodb.com/community/forums/uploads/default/optimized/3X/6/0/60fd8749309b879b69f1d38d64cae5b552859776_2_1035x582.jpeg",
"website": "https://www.mongodb.com/community/forums/t/bengaluru-mug-lets-meet-and-master-mongodb-scale-search-and-streams/290247"
},
{
"title": "All About Product Strategy, UX and GTM",
"date": "24-8-2024",
"time": "10:00am - 4:00pm",
"location": "SAP Labs India, Whitefield, Bengaluru, Karnataka 560066, India",
"description": "This event is designed for product managers, designers, and product enthusiasts to explore the aspects of product development.",
"image": "https://secure.meetupstatic.com/photos/event/b/b/9/8/600_522828024.webp?w=384",
"website": "https://www.meetup.com/producttank-bangalore/events/302753007"
},
{
"title": "Web3 Game Dev Meetup",
"date": "23-8-2024",
"time": "5:00pm - 7:00pm",
"location": "Joyride Games Pvt Ltd, IndiQube Hexa, HSR Layout, Bengaluru, Karnataka 560102, India",
"description": "We invite you to a casual and engaging evening powered by Super Champs and hosted by Joyride Games, perfect for blockchain enthusiasts.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/p2/233b96c7-42cb-45f4-9263-706898ed9ede",
"website": "https://lu.ma/vgj97uso"
},
{
"title": "AI Workshop Bangalore",
"date": "17-8-2024",
"time": "10:00am - 12:00pm",
"location": "Third Wave Coffee, Shop No 248, BTM Layout, Bengaluru, Karnataka 560076, India",
"description": "Unlock the future of AI with our AI Agent Building Bootcamp! Dive into the world of advanced AI agents with hands-on training.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/a5/e31c88a7-7de0-42f3-8537-b5411ca2b726",
"website": "https://lu.ma/ozxzs6ks"
},
{
"title": "Ola Sankalp 2024",
"date": "15-8-2024",
"time": "7:00am - 5:00pm",
"location": "Ola Future Factory, Pochampalli, Tamil Nadu 635206, India",
"description": "Sankalp 2024 - Our biggest event yet with a Sankalp to build the India of tomorrow. To pave the way for a future, with India at the forefront of innovation and technology.",
"image": "https://europe1.discourse-cdn.com/olaelectric2/original/2X/1/1a1de5006f1753cd48d9d2d475a41a298473fe89.jpeg",
"website": "https://www.olasankalp.com"
},
{
"title": "Conquest Demo Day",
"date": "11-8-2024",
"time": "9:30am - 6:00pm",
"location": "Four Seasons Hotel Bengaluru at Embassy ONE, Bengaluru, Karnataka 560032, India",
"description": "Demo Day is the grand finale of Conquest, BITS Pilani. Conquest is India's largest student-run startup accelerator, exclusive event for the Bangalore ecosystem.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/o3/cdd575cd-bc7d-40f9-9ce9-c83cf51d6a6a",
"website": "https://lu.ma/5kb9w481"
},
{
"title": "The Platform Meetup",
"date": "10-8-2024",
"time": "10:00am - 2:00pm",
"location": "Facets.Cloud India Pvt Ltd, HSR Layout, Bengaluru, Karnataka 560102, India",
"description": "Join us at the second edition of the Platform Meetup via Loft Labs in Bengaluru whether you're new to Kubernetes, DevOps or a seasoned user.",
"image": "https://secure.meetupstatic.com/photos/event/3/f/2/1/600_522556161.webp?w=384",
"website": "https://www.meetup.com/loft-meetup-india/events/302473805"
},
{
"title": "Brunch @ The Bera Den",
"date": "4-8-2024",
"time": "12:00pm - 2:00pm",
"location": "Bera Den 🐻, 2972, Sai Darshan Rd, Indiranagar, Bengaluru, Karnataka 560008, India",
"description": "Join us for a delightful brunch at The Bera Den! This event is a unique opportunity to delve into the world of Proof of Liquidity.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/rb/d9e41cfc-d95a-43ce-848f-df03cfd9e651",
"website": "https://lu.ma/2a8zndjd"
},
{
"title": "Google I/O Connect | Bengaluru",
"date": "17-7-2024",
"time": "8:30am - 8:30pm",
"location": "KARNATAKA TRADE PROMOTION ORGANISATION, Whitefield, Bengaluru, Karnataka 560066, India",
"description": "Get ready to experience the latest innovations and announcements from Google I/O.",
"image": "https://services.google.com/fh/files/events/ioconnectbengaluru2024header.png",
"website": "https://rsvp.withgoogle.com/events/ioconnect-bengaluru-2024"
},
{
"title": "Casper Blockchain India - Meet and Greet",
"date": "13-7-2024",
"time": "4:30pm - 6:00pm",
"location": "World Trade Center Bengaluru, Rajajinagar, Bengaluru, Karnataka 560055, India",
"description": "We are pleased to welcome you to the Casper Network India Meetup and we are filled with enthusiasm.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/0f/955943ea-04dd-4409-a7ed-26f2ae12210c",
"website": "https://lu.ma/rlrbc02g"
},
{
"title": "Apache Druid Community Meetup",
"date": "13-7-2024",
"time": "10:00am - 1:00pm",
"location": "Nutanix Technologies India Pvt Ltd, Bellandur, Bengaluru, Karnataka 560103, India",
"description": "We're excited to invite you to the second Apache Druid user meetup in Bangalore!",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/1w/65992c85-c312-446a-9955-cc822138655a",
"website": "https://lu.ma/z3qag7hv"
},
{
"title": "AEC Tech Meetup #1",
"date": "12-7-2024",
"time": "6:00pm - 7:30pm",
"location": "PRESET BUILDING SYSTEMS PVT LTD, 10, Ashok Nagar, Bengaluru, Karnataka 560025, India",
"description": "Get ready for an electrifying evening at the AEC Tech Meetup. We're diving deep into the future of design and construction.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/5g/14fe02c5-0041-4531-9918-c4b7acc0f21d",
"website": "https://lu.ma/ef9xhuif"
},
{
"title": "CoreDAO HackerMix Bangalore",
"date": "7-7-2024",
"time": "2:00pm - 5:00pm",
"location": "Urban Escape Spacez Luxury Villa, Koramangala, Bengaluru, Karnataka 560095, India",
"description": "Join Core's Hacker Mix Event in Bangalore This Weekend! Calling all young developers and builders!",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/xq/55ef0604-479f-47ad-8178-c6ca5d5992d1",
"website": "https://lu.ma/zbcgx21u"
},
{
"title": "Tech Mixer",
"date": "6-7-2024",
"time": "6:00pm - 8:00pm",
"location": "GeekyAnts, BTM Layout, Bengaluru, Karnataka 560076, India",
"description": "We are thrilled to extend an invitation to our exclusive Tech Mixer Event, hosted by JS Lovers Bangalore for enthusiasts in collaboration with GeekyAnts.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/d6/7878df47-3755-4e77-9e6c-24a65004c5db",
"website": "https://lu.ma/1j7dd302"
},
{
"title": "SAP Inside Track Bengaluru 2024",
"date": "6-7-2024",
"time": "8:00am - 5:00pm",
"location": "SAP Labs India, 138, Whitefield, Bengaluru, Karnataka 560066, India",
"description": "SAP Inside Track is a community-driven event where SAP professionals, developers, consultants, architects, and leaders come together.",
"image": "https://media.konfhub.com/event_poster/2024/July/05/1720144176876-073cbc1e-220f-43e5-96b4-e8b4ae4dcb2e.png",
"website": "https://konfhub.com/sap-inside-track-bengaluru-2024-2nd-edition"
},
{
"title": "FutureGPT Bengaluru Meetup IV",
"date": "29-6-2024",
"time": "10:00am - 1:15pm",
"location": "Google Bangalore - Old Madras Rd, Sadanandanagar, Bennigana Halli, Bengaluru, Karnataka 560016, India",
"description": "FutureGPT is a community of individuals who are interested to explore, learn and innovate.",
"image": "https://secure.meetupstatic.com/photos/event/7/6/a/a/600_521790378.webp?w=384",
"website": "https://www.meetup.com/futuregpt/events/301688538"
},
{
"title": "DevStudio Con 2024 Bangalore",
"date": "29-6-2024",
"time": "8:00am - 6:00pm",
"location": "Sheraton Grand Hotel, Whitefield, Bengaluru, Karnataka 560048, India",
"description": "DevStudio Con is an event for web developers, app creators and agencies hosted live in Bangalore, by Wix Studio.",
"image": "https://static.wixstatic.com/media/0d6674_61afbd95a85a4c5db21ec77ac750161b~mv2.jpg/v1/fit/w_2500,h_1330,al_c/0d6674_61afbd95a85a4c5db21ec77ac750161b~mv2.jpg",
"website": "https://www.devstudiocon.com/"
},
{
"title": "OpenSearchCon India 2024",
"date": "26-6-2024",
"time": "9:00am - 6:00pm",
"location": "The Ritz-Carlton, 99, Ashok Nagar, Bengaluru, Karnataka 560025, India",
"description": "The OpenSearch community continues to expand, always welcoming the new individuals, organizations, and partners into the fold.",
"image": "https://opensearch.org/assets/media/opensearchcon/2024/OpenSearchCon_India_Banner.png",
"website": "https://opensearch.org/events/opensearchcon/2024/india/index.html"
},
{
"title": "LLMs in Prod BLR | Postman, Portkey, DSPy",
"date": "25-6-2024",
"time": "5:00pm - 9:00pm",
"location": "Postman, 310, Indiranagar, Bengaluru, Karnataka 560038, India",
"description": "Prototyping Gen AI apps is easy; scaling them to production is hard — we’re partnering with Postman to share success stories.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/u0/64b03dc1-a609-482f-be44-7cc12b7b341b",
"website": "https://lu.ma/84ozf8xx"
},
{
"title": "Building GenAI Applications",
"date": "23-6-2024",
"time": "9:30am - 3:00pm",
"location": "Wissen Infotech, 176, Whitefield, Bengaluru, Karnataka 560066, India",
"description": "Join us for an exciting meetup, where industry leaders, innovators, and enthusiasts come together to explore the developments in Gen AI and discuss use cases.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/gallery-images/ah/3c3db379-bc3e-493e-8677-d2fb311882f8",
"website": "https://lu.ma/9f7f70f4"
},
{
"title": "Cloud devXchange",
"date": "22-6-2024",
"time": "2:00pm - 6:00pm",
"location": "SJR Cyber, Adugodi, Bengaluru, Karnataka 560030, India",
"description": "Join us for an engaging evening focused on advancing cloud development practices, to boost developer productivity and optimize cloud environments.",
"image": "https://media.konfhub.com/event_poster/2024/June/13/1718281785366-20339feb-ba2a-48c4-b4f2-d50c520a87cf.png",
"website": "https://konfhub.com/cdevx"
},
{
"title": "SecurityBoat Community Meetup",
"date": "22-6-2024",
"time": "10:00am - 2:30pm",
"location": "Microsoft Luxor North Tower, Mahadevapura, Bengaluru, Karnataka 560048, India",
"description": "SecurityBoat community is a group dedicated to strengthening the security of the digital future.",
"image": "https://media.konfhub.com/event_poster/2024/June/03/1717400185452-77e40cca-fedd-4569-a410-cc97ab52d72c.jpg",
"website": "https://konfhub.com/securityboat-community-meetup-bengaluru-june"
},
{
"title": "InnovAI: Shaping the Future with AI Innovation",
"date": "22-6-2024",
"time": "9:00am - 5:00pm",
"location": "IIM-Bangalore, Bannerghatta Rd, Bengaluru, Karnataka 560076, India",
"description": "InnovAI is the place where AI enthusiasts, industry leaders, innovators, and startups converge to explore the power of AI.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/ag/792df19f-efa0-409c-8dee-f71ab4cac9e5",
"website": "https://lu.ma/35z40uj4"
},
{
"title": "Builders Club by HackOn",
"date": "15-6-2024",
"time": "5:00pm - 8:00pm",
"location": "Razorpay - Payment Gateway, Adugodi, Bengaluru, Karnataka 560030, India",
"description": "HackOn with Block Buidlers brings you Builders Club, a local community dedicated to fostering innovative ideas and developing scalable projects.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/cw/1234c72e-4307-4b6c-92e9-fd90fb1996e1",
"website": "https://lu.ma/HackOnBLR"
},
{
"title": "AI Day Bangalore",
"date": "15-6-2024",
"time": "10:00am - 1:00pm",
"location": "UrbanVault HSR Layout 477, Bengaluru, Karnataka 560102, India",
"description": "AI Day is happening in Bangalore! And we invite you to be a part of the AI community to discover how AI leaders are overcoming the biggest challenges to deliver AI at scale.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/ee/234786f6-6fc4-4a8e-8e14-afae75cc00ea",
"website": "https://lu.ma/uzjhg2is"
},
{
"title": "GitHub Constellation 2024 Bangalore",
"date": "12-6-2024",
"time": "8:00am - 5:30pm",
"location": "Sheraton Grand Hotel, Whitefield, Bengaluru, Karnataka 560048, India",
"description": "Constellation 2024 is GitHub's in-person developer conference celebrating the best of the South African developer community.",
"image": "https://miro.medium.com/v2/resize:fit:828/format:webp/1*CskgBtzmH-q1s_PlIUQ5Dg.png",
"website": "https://githubconstellation.com/schedule"
},
{
"title": "Bangalore Product Hunt Meetup Kickoff",
"date": "8-6-2024",
"time": "11:00am - 4:00pm",
"location": "Scaler School of Technology, Electronic City, Bengaluru, Karnataka 560100, India",
"description": "Join us for a fun-filled day where we will talk about everything related to products and product management with great speakers.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/vq/d57df988-6688-4b81-9e19-94633b1a07b9",
"website": "https://lu.ma/pu45xf7i"
},
{
"title": "SecurityBoat Community Meetup",
"date": "25-5-2024",
"time": "10:00am - 2:30pm",
"location": "Signzy Technologies, BTM Layout, Bengaluru, Karnataka 560068, India",
"description": "SecurityBoat community is a group of professionals and enthusiasts dedicated to strengthening the security of the digital future.",
"image": "https://media.konfhub.com/event_poster/2024/May/14/1715685742735-a768f278-010b-4a09-8100-c0541b432d30.png",
"website": "https://konfhub.com/securityboat-community-meetup-bengaluru-may"
},
{
"title": "Build with AI Roadshow - Bangalore",
"date": "25-5-2024",
"time": "9:30am - 5:00pm",
"location": "MLR Convention Centre, Whitefield, Bengaluru, Karnataka 560048, India",
"description": "Are you ready to unleash the power of Generative AI and revolutionize your apps? Join Google's \"Build with AI\" event series.",
"image": "https://res.cloudinary.com/startup-grind/image/upload/c_scale,w_2560/c_crop,h_640,w_2560,y_0.7_mul_h_sub_0.7_mul_640/c_crop,h_640,w_2560/c_fill,dpr_2.0,f_auto,g_center,q_auto:good/v1/gcs/platform-data-goog/event_banners/BWAI%20Banner_YbiOUuk.jpg",
"website": "https://gdg.community.dev/events/details/google-gdg-cloud-bengaluru-presents-build-with-ai-roadshow-bengaluru-by-google-on-25th-may/"
},
{
"title": "Beyond Authentication: Mastering Identity",
"date": "24-5-2024",
"time": "5:00pm - 8:00pm",
"location": "91Springboard Indiranagar, Bengaluru, Karnataka 560038, India",
"description": "In this meetup, we aim to provide developers with an overview of emerging trends and future directions in digital identity management.",
"image": "https://secure.meetupstatic.com/photos/event/6/9/b/c/600_517107068.webp?w=384",
"website": "https://www.meetup.com/digitaltrust/events/299949570"
},
{
"title": "Build with Generative AI",
"date": "19-5-2024",
"time": "10:30am - 2:00pm",
"location": "Google Bangalore - Old Madras Rd, Sadanandanagar, Bennigana Halli, Bengaluru, Karnataka 560016, India",
"description": "Build Fast with AI, in collaboration with Google for Developers, is excited to invite you to our upcoming collaborative AI event!",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=1,background=white,quality=75,width=400,height=400/event-covers/6n/e098395e-971c-4f97-86cc-fbe0186d061f",
"website": "https://lu.ma/fn1y1rof"
},
{
"title": "Developer productivity using AI tools",
"date": "18-5-2024",
"time": "10:00am - 1:00pm",
"location": "GeekyAnts, BTM Layout, Bengaluru, Karnataka 560076, India",
"description": "This event theme is Developer productivity using Al tools. This covers many developer activities like coding, and testing.",
"image": "https://media.konfhub.com/event_poster/2024/April/28/1714320568416-1714320568416-c705b89e-3a02-4099-a0aa-73c091bf890c.png",
"website": "https://konfhub.com/jsmeetup90"
},
{
"title": "AI Day Bangalore",
"date": "18-5-2024",
"time": "10:00am - 1:00pm",
"location": "Accel LaunchPad, Koramangala, Bengaluru, Karnataka 560095, India",
"description": "AI Day is happening in Bangalore! And we invite you to be a part of the AI community to discover how AI leaders are overcoming the biggest challenges to deliver AI at scale.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=1,background=white,quality=75,width=400,height=400/event-covers/g8/22de8fde-c260-4514-9872-08e1e177f47d",
"website": "https://lu.ma/n1kld8my"
},
{
"title": "MongoDB on Gemini and GCP Cloud Technologies",
"date": "18-5-2024",
"time": "9:30am - 3:00pm",
"location": "Wissen Infotech, Whitefield, Bengaluru, Karnataka 560066, India",
"description": "Join Bengaluru, MongoDB User Group and Google for developers for a Saturday Brunch filled with interactive sessions, games, and fun.",
"image": "https://www.mongodb.com/community/forums/uploads/default/original/3X/f/d/fd9dfc83087ef3447cdac8a84f91d1f9b212e30e.png",
"website": "https://www.mongodb.com/community/forums/t/mongodb-on-gemini-and-gcp-cloud-technologies/277044"
},
{
"title": "Kubetools Day 2.0 Show-n-Tell",
"date": "18-5-2024",
"time": "9:00am - 1:00pm",
"location": "Guidewire Software, Kadabeesanahalli, Bengaluru, Karnataka 560103, India",
"description": "The so-called Kubetools Day 2.0 is a unique gathering of Docker, Kubernetes, and AI enthusiasts, practitioners, and tool developers.",
"image": "https://secure.meetupstatic.com/photos/event/2/5/c/e/600_521109678.webp?w=384",
"website": "https://www.meetup.com/collabnix/events/300163572"
},
{
"title": "Festival of Indian Languages Conference",
"date": "17-5-2024",
"time": "10:00am - 5:00pm",
"location": "Welcomhotel by ITC Hotels, Richmond, Bengaluru, Karnataka 560025, India",
"description": "Festival of Indian Languages (FOIL) is a conference that will try to paint the linguistic patchwork that keeps together the magical idea of India!",
"image": "https://img-cdn.thepublive.com/fit-in/1280x960/filters:format(webp)/afaqs/media/post_attachments/79459b2c539056ea5026c1fb0c0158bbff39d8c48d29381930121f6e794c54f6.jpg",
"website": "https://events.afaqs.com/festival-of-indian-languages"
},
{
"title": "AWS Summit Bengaluru Technical Edition",
"date": "16-5-2024",
"time": "10:00am - 5:30pm",
"location": "Sheraton Grand Hotel, Whitefield, Bengaluru, Karnataka 560048, India",
"description": "Join us for the technical edition of AWS Summit Bengaluru 2024. The event is designed to help builders learn to build, and launch.",
"image": "https://images.yourstory.com/cs/2/21ccd920843c11ec88170b5512a0f9d5/Bannerforarticle-1715699278995.png?mode=crop&crop=faces&ar=2%3A1&format=auto&w=1200&q=75",
"website": "https://aws.amazon.com/events/summits/bengaluru/technical-edition"
},
{
"title": "Kubernetes Bangalore Meetup May 2024",
"date": "11-5-2024",
"time": "1:50pm - 4:00pm",
"location": "Red Hat India Pvt. Ltd., Doddanekkundi, Bengaluru, Karnataka 560037, India",
"description": "Join Kubernetes Bangalore (K8sBLR) for an insightful event. We will delve into Kubernetes and Cloud Native solutions.",
"image": "https://secure.meetupstatic.com/photos/event/d/a/7/0/600_517795920.webp?w=384",
"website": "https://www.meetup.com/kubernetes-india-meetup/events/300323857"
},
{
"title": "25th Dot Net Bangalore Meetup",
"date": "11-5-2024",
"time": "10:30am - 4:00pm",
"location": "DevOn Software, Devarabisanahalli, Bengaluru, Karnataka 560087, India",
"description": "Hello All, this is a free meetup. Everyone is welcome. Spread the word. We have amazing speakers and topics",
"image": "https://secure.meetupstatic.com/photos/event/c/7/0/9/600_519710953.webp?w=384",
"website": "https://www.meetup.com/dotnetblr/events/299729859"
},
{
"title": "Bubble x NoCode Tour India 2024",
"date": "4-5-2024",
"time": "4:00pm - 8:30pm",
"location": "Hustlehub Tech Park, 36/5, HSR Layout, Bengaluru, Karnataka 560102, India",
"description": "The NoCode Tour India 2024 by Zeroic is making waves and this time, it's Bangalore's turn to get in on the action.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/67/faf69fea-c267-4c68-98f3-42ff4b2a4b15",
"website": "https://lu.ma/nct-bengaluru"
},
{
"title": "Scale Tale CS Meetup - To The Stars & Beyond",
"date": "4-5-2024",
"time": "3:00pm - 6:00pm",
"location": "Whatfix Towers, 1090e, HSR Layout, Bengaluru, Karnataka 560102, India",
"description": "Join us on an epic voyage to explore the uncharted territory of the Future of Customer Success. Buckle up and prepare for liftoff.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/h5/785997b2-c538-408d-bddf-dbc9913919a9",
"website": "https://lu.ma/scaletale_tothestars"
},
{
"title": "India Open Source Data Infrastructure Meetup",
"date": "4-5-2024",
"time": "11:00am - 2:00pm",
"location": "Microsoft Reactor Bengaluru, Lavelle Rd, Bengaluru, Karnataka 560001, India",
"description": "Are you interested in learning more about open-source data technologies? Then join us for a meetup.",
"image": "https://secure.meetupstatic.com/photos/event/1/6/f/a/600_520445882.webp?w=384",
"website": "https://www.meetup.com/india-open-source-data-infrastructure-meetup/events/297883098"
},
{
"title": "Data Streams x ML",
"date": "3-5-2024",
"time": "3:30pm - 8:00pm",
"location": "Nutanix Technologies, Bellandur, Bengaluru, Karnataka 560103, India",
"description": "We invite you to Data Streams x ML, taking place the day after the Kafka Summit. Join us to discover, connect and we promise engaging discussions!.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/nd/0d420a59-5711-4951-9fa3-62d1176d6461",
"website": "https://lu.ma/datastreamsxml"
},
{
"title": "Why your LinkedIn Marketing Strategy",
"date": "3-5-2024",
"time": "11:00am - 12:15pm",
"location": "LinkedIn, 4th floor, Bellandur, Bengaluru, Karnataka 560103, India",
"description": "Ever wondered why your LinkedIn strategy hasn't reached its full potential? Don't miss out on our exclusive, invite-only event.",
"image": "https://cdn.lu.ma/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-defaults/1-1/retro4.png",
"website": "https://lu.ma/zdvqehsr"
},
{
"title": "Arm DevHub Live",
"date": "3-5-2024",
"time": "10:00pm - 5:00pm",
"location": "ARM Embedded Technologies, Bengaluru, Karnataka 560048, India",
"description": "DevHub Live is your chance to dive deep into the world of Arm development. This one-day event is packed with informative sessions, workshops, and demos.",
"image": "https://i0.wp.com/collabnix.com/wp-content/uploads/2024/04/ARM3037_2-DevHub-Live-Bangalore-Social-Cards-X2_V2_Option-2.png?w=1080&ssl=1",
"website": "https://www.arm.com/company/events"
},
{
"title": "Kafka Summit Bangalore 2024",
"date": "2-5-2024",
"time": "7:30am - 8:00pm",
"location": "Sheraton Grand Hotel, Whitefield, Bengaluru, Karnataka 560048, India",
"description": "Kafka Summit is the user conference for Apache Kafka and the premier event for data architects, engineers, devops professionals, and developers.",
"image": "https://cache.sessionize.com/image/1544-1140o400o3-DNvWJMumwmAwuu1jEJfQD7.jpg",
"website": "https://www.kafka-summit.org/kafka-summit-bangalore-2024"
},
{
"title": "MagicBall: Reveal - Gen AI Product Demo Day",
"date": "1-5-2024",
"time": "6:00pm - 9:00pm",
"location": "Bira 91 Taproom, Koramangala, Bengaluru, Karnataka 560034, India",
"description": "Welcome to the 8th edition of 🔮 MagicBall: Reveal, a Gen AI product demo day for founders building Gen AI products.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/9x/1645d29b-1955-42c5-9959-b300826446fa",
"website": "https://lu.ma/magicball-april-reveal-demo-day"
},
{
"title": "The Hackers Meetup X HackerOne Bangalore",
"date": "28-4-2024",
"time": "10:00am - 2:00pm",
"location": "CloudSEK, 16/1, Jogupalya, Bengaluru, Karnataka 560008, India",
"description": "The Hackers Meetup X HackerOne Club South India, Bangalore, Application Security special edition, are having amazing topics.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/8a/8b16f318-048f-44fd-8985-f98f99d106d5",
"website": "https://lu.ma/0pgq3ae2"
},
{
"title": "Arweave India Debrief",
"date": "27-4-2024",
"time": "4:00pm - 7:00pm",
"location": "Zo House, S-1, Koramangala, Bengaluru, Karnataka 560095, India",
"description": "Join us at the Arweave India debrief in Bangalore, along with the folks at Zo House BLR. We're gonna dive deep into Arweave, along with conversations and questions.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/qs/a05b928c-0c24-4286-bd39-65524656a976",
"website": "https://lu.ma/z4d6amrd"
},
{
"title": "Data Interest Group Meetup",
"date": "27-4-2024",
"time": "2:30pm - 5:30pm",
"location": "Razorpay, Adugodi, Bengaluru, Karnataka 560030, India",
"description": "Get ready to block your calendars because we are having the first ever - the Data Interest Group Meetup! 🎉 Join us in the morning brimming with data-driven excitement.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/b4/32b124df-b28c-40ab-b263-e99b31ed3725",
"website": "https://lu.ma/2ue0887y"
},
{
"title": "Starknet Connect",
"date": "27-4-2024",
"time": "12:00pm - 3:30pm",
"location": "Zo House, S-1, Koramangala, Bengaluru, Karnataka 560095, India",
"description": "Hello there, blockchain enthusiasts and Starknet fans! 🌟 Get ready to dive deep into the world of Starknet, brought to you by the folks at The Phoenix Guild (TPG) Karnataka.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/ro/b086e9a2-c41e-440c-8e48-3d2010ab710d",
"website": "https://lu.ma/StarkConnectBLR"
},
{
"title": "Evaluation Metrics for GenAI Apps",
"date": "27-4-2024",
"time": "10:30am - 1:30pm",
"location": "Microsoft Reactor Bengaluru, Lavelle Rd, Bengaluru, Karnataka 560001, India",
"description": "In an age where LLMs are evolving at a rapid pace, understanding how to effectively evaluate the output of such models is crucial.",
"image": "https://images.lumacdn.com/cdn-cgi/image/format=auto,fit=cover,dpr=2,background=white,quality=75,width=280,height=280/event-covers/tw/ca68ef35-16a3-4d74-a16e-6e40bfa7d85d",
"website": "https://lu.ma/pkw9m7fy"
},
{
"title": "SecurityBoat Community Meetup",
"date": "27-4-2024",
"time": "10:00am - 2:00pm",
"location": "Navi Technologies Limited, Ibbaluru, Bellandur, Bengaluru, Karnataka, India",
"description": "SecurityBoat community is a group of professionals and enthusiasts dedicated to strengthening the security of the digital future.",
"image": "https://media.konfhub.com/event_poster/2024/April/17/1713365527467-1713365527467-e656e50d-3f06-479c-8398-0a6fb7a3165f.jpeg",
"website": "https://konfhub.com/securityboat-community-meetup-banglore-april2024"
},