forked from JetBrains/kotlin-web-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.yml
11308 lines (10353 loc) · 450 KB
/
events.yml
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
- lang: fr
startDate: '2024-10-22'
endDate: '2024-10-22'
location: Bordeaux, France
speaker: Salomon Brys
title: 'Bordeaux Kotlin User Group'
subject: 'Compose Multiplatform: State of the art, use-cases and limits'
url: https://www.eventbrite.fr/e/billets-compose-multiplatform-etat-de-lart-cas-dusages-et-limites-1018664130837
- lang: en
startDate: '2024-09-21'
endDate: '2024-09-21'
location: Chennai, India
speaker: 'TBD'
title: 'Ko-Hacks'
subject: 'A diverse Kotlin Hackathon by KUG Chennai'
url: https://lu.ma/rbofnzaf
- lang: en
startDate: '2024-11-19'
endDate: '2024-11-19'
location: Vienna, Austria
speaker: 'TBD'
title: 'Going Fully Platform Specific'
subject: 'Kotlin Vienna Meetup'
url: https://www.meetup.com/kotlin-vienna/events/295318907/
- lang: en
startDate: '2024-10-01'
endDate: '2024-10-01'
location: Vienna, Austria
speaker: 'TBD'
title: 'When is Kotlin the Right Choice?; Kotlin 101; Multiplatform at Stable and Beyond'
subject: 'Kotlin Vienna Meetup'
url: https://www.meetup.com/kotlin-vienna/events/295318889/
- lang: bn
startDate: '2024-06-08'
endDate: '2024-06-08'
location: Dhaka, Bangladesh
online: true
speaker: 'Mohi Us Sunnat'
title: 'KtAdda Kickoff: Connecting Kotlin Minds'
subject: 'Introducing new Kotlin Developers online and learning about their experiences'
url: https://www.linkedin.com/events/ktaddakickoff-connectingkotlinm7199538006976835586/
- lang: en
startDate: '2024-06-11'
endDate: '2024-06-11'
location: Vienna, Austria
speaker: 'Markus Fischer & Raphael Tarita'
title: 'Arrow - upgrade your funcy Kotlin! & Image Processing Done Wrong'
subject: 'Kotlin Vienna Meetup'
url: https://www.meetup.com/kotlin-vienna/events/295318877/
- lang: en
startDate: '2024-06-08'
endDate: '2024-06-08'
location: Minna, Nigeria
speaker: 'To be announced'
title: 'KotlinConf 2024 Global Minna'
subject: 'KotlinConf 2024 Global Minna'
url: https://kommunity.com/kotlin-minna-user-group/events/kotlinconf-2024-global-minna-2180e651
- lang: en
startDate: '2024-02-22'
endDate: '2024-02-22'
location: Limassol, Cyprus
speaker : 'Andrey Fomenkov'
title : 'Cyprus KUG meetup'
subject : 'Optimizing Android Project Build Time'
url: https://www.eventbrite.com/e/cyprus-kotlin-user-group-meetup-2202-tickets-811213329907
- lang: en
startDate: '2024-02-22'
endDate: '2024-02-22'
location: Limassol, Cyprus
speaker : 'Aleksei Beloglazov'
title : 'Cyprus KUG meetup'
subject : 'Load Testing with Gatling and VictoriaMetrics'
url: https://www.eventbrite.com/e/cyprus-kotlin-user-group-meetup-2202-tickets-811213329907
- lang: en
startDate: '2024-01-24'
endDate: '2024-01-24'
location: Amsterdam, Netherlands
speaker : 'Alejandro Serrano Mena'
title : 'Kotlin MeetUp Amsterdam'
subject : 'Functors and monads for better Schedules'
url: https://www.meetup.com/dutch-kotlin-user-group/events/298396544
- lang: en
startDate: '2024-01-24'
endDate: '2024-01-24'
location: Amsterdam, Netherlands
speaker : 'Urs Peter'
title : 'Kotlin MeetUp Amsterdam'
subject : 'Grow with the Flow: A Game-Changing Success Story featuring Spring Boot Reactive Streams, Kotlin & Flow'
url: https://www.meetup.com/dutch-kotlin-user-group/events/298396544
- lang: en
startDate: '2024-01-24'
endDate: '2024-01-24'
location: Vienna, Austria
speaker : 'Dominik Moser'
title : 'Kotlin Vienna'
subject : 'Integrating Native libraries with Kotlin using Project Panama'
url: https://www.meetup.com/kotlin-vienna/events/295318844
- lang: en
startDate: '2024-01-24'
endDate: '2024-01-24'
location: Vienna, Austria
speaker : 'Frantisek Nagy'
title : 'Kotlin Vienna'
subject : 'Introducing Kotlin Multiplatform to Existing Project'
url: https://www.meetup.com/kotlin-vienna/events/295318844
- lang: en
startDate: '2024-01-24'
endDate: '2024-01-24'
location: Vienna, Austria
speaker : 'Mario Fleischhacker'
title : 'Kotlin Vienna'
subject : 'Modernizing Web Development: Kotlin and HTMX'
url: https://www.meetup.com/kotlin-vienna/events/295318844
- lang: en
startDate: '2024-05-22'
endDate: '2024-05-24'
location: Copenhagen, Denmark
speaker : ''
title : ''
subject : 'KotlinConf'
url: https://kotlinconf.com/
- lang: en
startDate: '2023-11-23'
endDate: '2023-11-23'
location: Limassol, Cyprus
speaker : 'Katerina Petrova'
title : 'State of KMP'
subject : 'State of KMP'
url: https://www.eventbrite.com/e/state-of-kotlin-multiplatform-tickets-743548241807
- lang: en
startDate: '2023-11-14'
endDate: '2023-11-14'
location: Brighton, UK
speaker : 'Andrey Breslav'
title : 'Brighton Kotlin'
subject : 'Kotlin: a bit of history'
url: https://www.meetup.com/Brighton-Kotlin/events/296107142
- lang: de
startDate: '2023-10-16'
endDate: '2023-10-17'
online: true
speaker : 'Sebastian Aigner'
title : ''
subject : 'KKON'
url: https://rheinwerk-kkon.de/
- lang: en
startDate: '2023-09-21'
endDate: '2023-09-22'
location: Amsterdam, Netherlands
speaker : 'Garth Gilmour'
title : 'Kotlin Training Day'
subject : 'Effective Ktor with Kotlin'
url: https://pages.xebia.com/kotlin-training-day
- lang: en
startDate: '2023-09-14'
endDate: '2023-09-15'
location: New York, USA
speaker : ''
title : ''
subject : 'droidcon New York'
url: https://nyc.droidcon.com/
- lang: en
startDate: '2023-06-27'
endDate: '2023-06-27'
location: Vienna, Austria
speaker : 'Kariem Hussein'
title : 'Kotlin User Group Vienna'
subject : 'AI support for Kotlin Development in Android Studio'
url: https://www.meetup.com/kotlin-vienna/events/290438424/
- lang: en
startDate: '2023-06-28'
endDate: '2023-06-28'
location: Berlin, Germany
speaker : 'Karin-Aleksandra Monoid'
title : 'Kotlin User Group Berlin'
subject : 'Configuration Management in Kotlin: The Basics'
url: https://www.meetup.com/kotlin-berlin/events/294252176/
- lang: en
startDate: '2023-07-12'
endDate: '2023-07-12'
location: Amsterdam, Netherlands
speaker : 'Alejandro Serrano Mena'
title : 'Dutch Kotlin User Group'
subject : 'Safe concurrency: resources and resilience'
url: https://www.meetup.com/nlkug-dutch-kotlin-user-group/events/294135157
- lang: en
startDate: '2023-07-12'
endDate: '2023-07-12'
location: Amsterdam, Netherlands
speaker : 'René Bulsing'
title : 'Dutch Kotlin User Group'
subject : 'Beyond K2: What features are next and how you can use them'
url: https://www.meetup.com/nlkug-dutch-kotlin-user-group/events/294135157
- lang: en
startDate: '2023-07-12'
endDate: '2023-07-12'
location: Amsterdam, Netherlands
speaker : 'Urs Peter'
title : 'Dutch Kotlin User Group'
subject : 'Unraveling the most Kotlin-Friendly Framework: Springboot vs. Quarkus vs. Micronaut. Who Claims the Krown?'
url: https://www.meetup.com/nlkug-dutch-kotlin-user-group/events/294135157
- lang: en
startDate: '2023-07-18'
endDate: '2023-07-18'
location: Brighton, UK
speaker : 'Michele Sollecito'
title : 'Brighton Kotlin'
subject : 'Apache Pulsar with Kotlin couroutines and flows'
url: https://www.meetup.com/brighton-kotlin/events/294227622/
- lang: en
startDate: '2023-06-24'
endDate: '2023-06-24'
location: Nairobi, Kenya
speaker : 'Dennis Githuku'
title : 'Kotlin Kenya - June Meetup'
subject : 'Side Effects in Jetpack Compose'
url: https://www.meetup.com/KotlinKenya/events/294262326
- lang: en
startDate: '2023-06-24'
endDate: '2023-06-24'
location: Nairobi, Kenya
speaker : 'Kenneth Mathari'
title : 'Kotlin Kenya - June Meetup'
subject : 'Is Graphql replacing REST in Android Development'
url: https://www.meetup.com/KotlinKenya/events/294262326
- lang: en
startDate: '2023-06-24'
endDate: '2023-06-24'
location: Nairobi, Kenya
speaker : 'Kenn Junior'
title : 'Kotlin Kenya - June Meetup'
subject : 'Notification : Past, Present & Future'
url: https://www.meetup.com/KotlinKenya/events/294262326
- lang: en
startDate: '2023-06-13'
endDate: '2023-06-13'
location: Nieuwegein, Netherlands
speaker : ''
title : 'Utrecht Kotlin Meetup'
subject : 'Exploratory Testing | Navigating Through Uncharted Territory'
url: https://www.meetup.com/meetup-group-YgJEOzCn/events/293993904/
- lang: en
startDate: '2023-06-13'
endDate: '2023-06-13'
location: Limassol, Cyprus
speaker : Nikita Lipsky
title : 'Kotlin User Group Cyprus'
subject : 'Compose Multiplatform on iOS'
url: https://www.eventbrite.com/e/cyprus-kotlin-user-group-meetup-1306-tickets-636457520577
- lang: en
startDate: '2023-05-09'
endDate: '2023-05-09'
location: Amsterdam, Netherlands
speaker : João Paulo Gomes
title : 'Kotlin Meetup Amsterdam'
subject : 'Writing performance tests with Kotlin'
url: https://www.meetup.com/nl-NL/nlkug-dutch-kotlin-user-group/events/293144259/
- lang: en
startDate: '2023-05-09'
endDate: '2023-05-09'
location: Amsterdam, Netherlands
speaker : Vladimir Dolzhenko
title : 'Kotlin Meetup Amsterdam'
subject : 'How we’re improving the performance of the IntelliJ IDEA Kotlin plugin'
url: https://www.meetup.com/nl-NL/nlkug-dutch-kotlin-user-group/events/293144259/
- lang: en
startDate: '2023-07-05'
endDate: '2023-07-07'
location: Berlin, Germany
speaker : TBA
title : ''
subject : 'droidcon Berlin'
url: https://www.droidcon.com/events/droidcon-berlin-2023/
- lang: en
startDate: '2023-04-13'
endDate: '2023-04-13'
location: Belgrade, Serbia
speaker : Anastasia Birillo
title : 'KotlinConf 2023 Global Serbia'
subject : 'How does the Kotlin compiler work?'
url: https://www.meetup.com/serbia-kotlin-user-group/events/291312745/
- lang: en
startDate: '2023-04-08'
endDate: '2023-04-09'
location: KIET Group Of Institutions, Ghaziabad, Delhi NCR India
speaker : Anshul Sadaria & Saumya Singh
title : 'SprintHacks 2023 Hackathon'
subject : 'Innovation, creativity & networking'
url: 'https://sprinthacks.devfolio.co/'
- lang: en
startDate: '2023-03-02'
endDate: '2023-03-02'
location: Limassol, Cyprus
speaker: Katerina Petrova
title: 'Cyprus Kotlin User Group'
subject: 'Kotlin Multiplatform Mobile'
url: https://www.eventbrite.com/e/cyprus-kotlin-user-group-meetup-0203-tickets-547755831437
- lang: en
startDate: '2023-02-23'
endDate: '2023-02-23'
location: Athens, Greeece
speaker: Rainer Kern
title: 'Athens Kotlin User Group'
subject: 'Kotlin Coroutines'
url: https://www.meetup.com/kotlin-athens/events/291447655/
- lang: en
startDate: '2023-02-23'
endDate: '2023-02-23'
location: Athens, Greeece
speaker: Petros Paraskevopoulos
title: 'Athens Kotlin User Group'
subject: 'Version Catalog, Dependabot and Renovate'
url: https://www.meetup.com/kotlin-athens/events/291447655/
- lang: en
startDate: '2023-03-02'
endDate: '2023-03-02'
online: true
speaker: ''
title: 'San Diego Kotlin User Group'
subject: 'Monthly Kotlin'
url: https://www.meetup.com/sd-kotlin/events/dqlhxsyfcfbcb/
- lang: en
startDate: '2023-02-02'
endDate: '2023-02-02'
online: true
speaker: ''
title: 'San Diego Kotlin User Group'
subject: 'Monthly Kotlin'
url: https://www.meetup.com/sd-kotlin/events/290873403/
- lang: en
startDate: '2023-02-23'
endDate: '2023-02-23'
location: Vilnius, Lithuania
speaker: Robertas Šetkus
title: 'Vilnius KUG meetup'
subject: 'Think Once, Think Twice, Think Multiplatform'
url: https://vilniuskug.netlify.app/meetups/2023/january/meetup-1/
- lang: en
startDate: '2023-02-23'
endDate: '2023-02-23'
location: Vilnius, Lithuania
speaker: Vladislav Ermolin
title: 'Vilnius KUG meetup'
subject: 'Static Code Analysis for Kotlin: A Guiding Star'
url: https://vilniuskug.netlify.app/meetups/2023/january/meetup-1/
- lang: en
startDate: '2023-02-04'
endDate: '2023-02-05'
location: Brussels, Belgium
speaker: To be announced
title: 'FOSDEM 2023'
subject: 'Kotlin Devroom'
url: https://fosdem.org/2023/schedule/track/kotlin/
- lang: en
startDate: '2023-01-28'
endDate: '2023-01-28'
location: Nairobi, Kenya
speaker: To be announced
title: ''
subject: 'Kotlin Kenya January Networking Meetup'
url: https://www.meetup.com/KotlinKenya/events/291097566/
- lang: en
startDate: '2023-04-28'
endDate: '2023-04-28'
location: Paris, France
speaker: ''
title: 'CFP is open'
subject: 'AndroidMakers by droidcon'
url: https://androidmakers.droidcon.com/
- lang: en
startDate: '2023-03-07'
endDate: '2023-03-07'
location: Vienna, Austria
speaker: Patrick Lamprecht & Mario Fleischhacker
title: 'Kotlin Meetup March 2023'
subject: 'Kotlin Support in Spring Boot 3 Microservices & Webassembly with Kotlin'
url: https://www.meetup.com/kotlin-vienna/events/290420821/
- lang: en
startDate: '2023-01-21'
endDate: '2023-01-21'
location: Bengaluru, India
speaker: Gautam Sukhramani
title: 'BlrKotlin #30'
subject: 'Intro to Deploying ML Models on Android'
url: https://www.meetup.com/BlrKotlin/events/290955120/
- lang: en
startDate: '2023-01-21'
endDate: '2023-01-21'
location: Bengaluru, India
speaker: Nischal Raj
title: 'BlrKotlin #30'
subject: 'Creating Dynamic UI at Runtime using Kotlin'
url: https://www.meetup.com/BlrKotlin/events/290955120/
- lang: en
startDate: '2023-01-28'
endDate: '2023-01-28'
location: Kolkata, India
speaker: To be announced
title: ''
subject: 'Droid Fest Kolkata 2023'
url: https://www.meetup.com/kotlin-kolkata-ug/events/290826337/
- lang: en
startDate: '2023-01-17'
endDate: '2023-01-17'
location: Brighton, UK
speaker: Sergio del Amo Caballero
title: 'January 2023 Brighton Kotlin Meetup'
subject: 'Getting Started with the Micronaut Framework'
url: https://www.meetup.com/Brighton-Kotlin/events/290553314/
- lang: en
startDate: '2023-01-18'
endDate: '2023-01-18'
location: Amsterdam, the Netherlands
speaker: Nico Krijnen
title: 'Kotlin Meetup Amsterdam'
subject: 'Kotlin Multiplatform + Domain models = Love'
url: https://www.meetup.com/nlkug-dutch-kotlin-user-group/events/290715011/
- lang: en
startDate: '2023-01-18'
endDate: '2023-01-18'
location: Amsterdam, the Netherlands
speaker: Urs Peter
title: 'Kotlin Meetup Amsterdam'
subject: 'Kotlin & Project Loom: Blessing or Doom?'
url: https://www.meetup.com/nlkug-dutch-kotlin-user-group/events/290715011/
- lang: en
startDate: '2023-01-19'
endDate: '2023-01-19'
location: Berlin, Germany
speaker: Peter Maedel, Kim Kunc
title: 'Informal get-together of Kotlin developers in Berlin'
subject: 'Kotlin For Infrastructur as Code with AWS CDK'
url: https://www.meetup.com/kotlin-berlin/events/290370803/
- lang: en
startDate: '2023-01-04'
endDate: '2023-01-04'
online: true
speaker: Jack Leow
title: 'San Diego Kotlin User Group'
subject: 'What Does It Mean for a Language to Be Strongly Typed?'
url: https://www.meetup.com/sd-kotlin/events/290212945/
- lang: ru
startDate: '2023-01-20'
endDate: '2023-01-20'
online: true
speaker: Anton Arhipov
title: 'Kotlin Moscow'
subject: 'Creative Coding With Kotlin and Compose'
url: https://www.meetup.com/KotlinMoscow/events/290914378/
- lang: en
startDate: '2022-12-20'
endDate: '2022-12-20'
location: Limassol, Cyprus
speaker: Artemiy Mikhaylov
title: 'Cyprus Kotlin User Group'
subject: 'Functional programming in Kotlin with Arrow'
url: https://www.eventbrite.com/e/cyprus-kotlin-user-group-meetup-2012-tickets-478030140017
- lang: en
startDate: '2022-12-15'
endDate: '2022-12-15'
location: Eindhoven, the Netherlands
speaker: Abdulcelil Cercenazi
title: 'Eindhoven Kotlin User Group, 3rd meetup'
subject: 'Test-Driven Development with Kotlin'
url: https://www.meetup.com/eindhoven-kotlin-user-group/events/290122029/
- lang: en
startDate: '2022-12-15'
endDate: '2022-12-15'
location: Eindhoven, the Netherlands
speaker: João Paulo Gomes
title: 'Eindhoven Kotlin User Group, 3rd meetup'
subject: 'Performance testing in Kotlin using Gatling'
url: https://www.meetup.com/eindhoven-kotlin-user-group/events/290122029/
- lang: jp
startDate: '2022-12-10'
endDate: '2022-12-10'
online: true
speaker: ''
title: ''
subject: 'Kotlin Fest 2022'
url: https://kotlin.connpass.com/event/261782/
- lang: en
startDate: '2022-11-29'
endDate: '2022-11-29'
location: Vienna, Austria
speaker: Dominik Moser
title: Kotlin Vienna Meetup
subject: 'Kotlin and Graal VM'
url: https://www.meetup.com/kotlin-vienna/events/288815446/
- lang: en
startDate: '2022-11-24'
endDate: '2022-11-24'
location: Munich, Germany
speaker: Aleksei Semin, Svetlana Isakova, Marcel Pintó Biescas
title: Kotlin Meetup - November 2022 Edition
subject: 'Why Kotlin Multiplatform Mobile?'
url: https://www.meetup.com/Kotlin-User-Group-Munich/events/288879550
- lang: en
startDate: '2022-12-06'
endDate: '2022-12-06'
location: London, UK
speaker: Andrey Breslav, David Denton
title: 'On Kotlin #5'
subject: 'Smash Your Adapter Monolith With The Connect Pattern'
url: https://www.meetup.com/source-talks-on-kotlin/events/289687310/
- lang: en
startDate: '2022-12-08'
endDate: '2022-12-08'
location: Brighton, UK
speaker: ''
title: ''
subject: 'Brighton Kotlin Big Festive Meetup'
url: https://www.meetup.com/brighton-kotlin/events/289765411/
- lang: cn
startDate: '2022-11-26'
endDate: '2022-11-27'
online: true
speaker: 范圣佑, 王鹏, 乔禹昂, 李盈瑩, 2BAB, Pamela Hill, Alina Dolgikh, and more
title: ''
subject: '2022 Kotlin 中文开发者大会'
url: https://pages.jetbrains.com/kotlin-online-conference-for-chinese-developers-2022
- lang: es
startDate: '2022-11-21'
endDate: '2022-11-26'
online: true
speaker: Adrián Catalán, Anahí Salgado, Antonio Leiva, Dinorah Tovar, Santiago Carrillo, and more
title: ''
subject: 'Compose Camp Kotlin La Paz'
url: https://kotlinlapaz.github.io/ComposeCamp/
- lang: en
startDate: '2022-11-16'
endDate: '2022-11-18'
location: Nairobi, Kenya
speaker: Pamela Hill, Victor Kabata, Rygel Louv, Breimer John, Brian Odhiambo, Harny Otuoniyo, and more
title: ''
subject: 'droidconKE 2022'
url: https://www.droidcon.com/events/droidcon-kenya-2022/
- lang: en
startDate: '2022-11-22'
endDate: '2022-11-22'
location: Paris, France
speaker: John O’Reilly
title: PAUG and Cocoaheads @ BlaBlaCar
subject: 'The ever increasing convergence of native iOS and Android mobile development'
url: https://www.meetup.com/android-paris/events/289612876/
- lang: en
startDate: '2022-11-22'
endDate: '2022-11-22'
location: Paris, France
speaker: Etienne Vautherin
title: PAUG and Cocoaheads @ BlaBlaCar
subject: 'Jetpack Compose and KMM could change the life of a mobile developer'
url: https://www.meetup.com/android-paris/events/289612876/
- lang: en
startDate: '2022-11-12'
endDate: '2022-11-12'
location: Abuja, Nigeria
speaker: Slick Shola Akinroliei
title: Compose Camp Kotlin Abuja
subject: 'Kotlin ... The spotlit language for mobile developers'
url: https://www.meetup.com/kotlin-abuja-user-group-nigeria/events/288874459/
- lang: en
startDate: '2022-11-12'
endDate: '2022-11-12'
location: Abuja, Nigeria
speaker: Adetayo James
title: Compose Camp Kotlin Abuja
subject: 'Getting started and Building your first App in Kotlin'
url: https://www.meetup.com/kotlin-abuja-user-group-nigeria/events/288874459/
- lang: it
startDate: '2022-11-30'
endDate: '2022-11-30'
online: true
speaker: Francesco Stanieri
title: Meetup HDG Rome 12
subject: 'Come creare un servizio di chat Serverless'
url: https://www.meetup.com/hdg-rome/events/289209400/
- lang: en
startDate: '2022-12-02'
endDate: '2022-12-02'
location: Utrecht, The Netherlands
speaker: Julien Lengrand-Lambert
title: 'Flock. Meetups'
subject: 'Introducing Kotlin In Your Organization, From The Ground Up'
url: https://www.meetup.com/flock-meetups/events/289393375/
- lang: en
startDate: '2022-11-11'
endDate: '2022-11-11'
online: true
speaker: Pamela Hill
title: Women Who Code
subject: 'Kotlin Multiplatform Mobile for Skeptics'
url: https://www.meetup.com/nyandroiddevelopers/events/289399273/
- lang: en
startDate: '2022-12-10'
endDate: '2022-12-10'
online: true
speaker: Amanjeet Singh
title: Chicago Kotlin User Group
subject: 'Locking Horns with Native Crashes'
url: https://www.meetup.com/chicago-kotlin/events/289608325/
- lang: en
startDate: '2022-12-08'
endDate: '2022-12-08'
online: true
speaker: To be announced
title: San Diego Kotlin User Group
subject: 'Monthly Kotlin'
url: https://www.meetup.com/sd-kotlin/events/289513488/
- lang: es
startDate: '2022-11-11'
endDate: '2022-11-11'
online: true
speaker: Hugo Pérez
title: Slashfriday
subject: 'Kotlin para desarrollos Backend'
url: https://www.meetup.com/slashmobility/events/289600561/
- lang: en
startDate: '2022-11-24'
endDate: '2022-11-24'
online: true
speaker: Mohit Sarveiya
title: Virtual Kotlin User Group
subject: 'Building State Flow Streams with Molecule'
url: https://www.meetup.com/virtual-kotlin-user-group/events/289317026/
- lang: en
startDate: '2022-11-05'
endDate: '2022-11-05'
online: true
speaker: Manuel Ernesto
title: DevFest Makurdi 2022
subject: 'The Kotlin Features You Have Been Missing Out On'
url: https://gdg.community.dev/events/details/google-gdg-makurdi-presents-devfest-makurdi-2022/
- lang: cs
startDate: '2022-10-05'
endDate: '2022-10-05'
location: Prague, Czech Republic
speaker: Will be announced soon
title: Czech Kotlin User Group
subject: 'Restart of the Kotlin meetups in Prague'
url: https://www.facebook.com/events/s/cz-kotlin-meetup-9/483290587001145/
- lang: en
startDate: '2022-10-04'
endDate: '2022-10-04'
location: Amsterdam, The Netherlands
speaker: Hadi Hariri
title: Flexport<>Kotlin Meetup with Hadi Hariri
subject: 'Functional Programming in Kotlin'
url: https://www.meetup.com/flexport-amsterdam-meetup-group/events/288180298/
- lang: en
startDate: '2022-10-11'
endDate: '2022-10-11'
location: Eindhoven, The Netherlands
speaker: Simon Vergauwen
title: Kotlin Meetup Eindhoven
subject: 'Introductory talk to Functional Programming in Kotlin'
url: https://www.meetup.com/nl-NL/nlkug-dutch-kotlin-user-group/events/288372662/
- lang: en
startDate: '2022-10-11'
endDate: '2022-10-11'
location: Eindhoven, The Netherlands
speaker: Urs Peter
title: Kotlin Meetup Eindhoven
subject: 'Moving from Java to Kotlin - is it worth it?'
url: https://www.meetup.com/nl-NL/nlkug-dutch-kotlin-user-group/events/288372662/
- lang: en
startDate: '2022-11-03'
endDate: '2022-11-03'
location: Ede, The Netherlands
speaker: Bart Enkelaar
title: J-Fall 2022
subject: 'The Dangerous Side of Kotlin'
url: https://jfall.nl/timetable-2021/
- lang: en
startDate: '2022-10-17'
endDate: '2022-10-20'
location: Las Vegas, NV, USA
speaker: Mark Heckler
title: JavaOne
subject: 'Das Boot: Diving into Debugging Spring Boot Applications'
url: https://reg.rf.oracle.com/flow/oracle/cloudworld/session-catalog/page/catalog?search=kotlin
- lang: en
startDate: '2022-10-13'
endDate: '2022-10-13'
location: Antwerp, Belgium
speaker: James Ward, Josh Long
title: Devoxx Belgium 2022
subject: 'Spring + Kotlin = Modern + Reactive + Productive'
url: https://devoxx.be/talk/?id=20174
- lang: en
startDate: '2022-10-13'
endDate: '2022-10-13'
location: Antwerp, Belgium
speaker: James Ward, Brad Hawkes, John Pampuch
title: Devoxx Belgium 2022
subject: Google's Journey from Java to Kotlin for Server-Side Programming
url: https://devoxx.be/talk/?id=20174
- lang: en
startDate: '2022-10-06'
endDate: '2022-10-06'
location: Gdansk, Poland
speaker: Hadi Hariri
title: Infoshare 2022
subject: The Silver Bullet Syndrome Director's Cut - Complexity Strikes Back!
url: https://infoshare.pl/conference/agenda/#talk638-10
- lang: en
startDate: '2022-09-28'
endDate: '2022-09-28'
location: Amsterdam, The Netherlands
speaker: Bjorn van der Laan
title: Kotlin Multiplatform Mobile and Building DSLs
subject: 'Type-safe builders and five other patterns to create beautiful DSLs in Kotlin'
url: https://www.meetup.com/nl-NL/kotlin-amsterdam/events/288163725/
- lang: en
startDate: '2022-09-28'
endDate: '2022-09-28'
location: Amsterdam, The Netherlands
speaker: Urs Peter
title: Kotlin Multiplatform Mobile and Building DSLs
subject: 'Kotlin Multiplatform Mobile (KMM) - what’s in it for me?'
url: https://www.meetup.com/nl-NL/kotlin-amsterdam/events/288163725/
- lang: en
startDate: '2022-09-27'
endDate: '2022-09-27'
location: Vienna, Austria
speaker: Rainer Kern
title: Vienna Kotlin User Group
subject: 'Back to School with Kotlin'
url: https://www.meetup.com/kotlin-vienna/events/287145275/
- lang: en
startDate: '2022-09-29'
endDate: '2022-09-29'
online: true
speaker: David Rawson
title: Virtual Kotlin User Group
subject: 'Codegen with KSP: A Farewell to Stubs'
url: https://www.meetup.com/virtual-kotlin-user-group/events/288024628/
- lang: fr
startDate: '2022-11-03'
endDate: '2022-11-03'
location: Paris, France
speaker: Salomon Brys, Riadh Mnasri, Romain Boiselle, and more!
title: ''
subject: DevCon '#15 - Conférence 100% Kotlin'
url: https://www.programmez.com/page-devcon/devcon-15-conference-100-kotlin
- lang: en
startDate: '2022-11-24'
endDate: '2022-11-24'
location: Amsterdam, The Netherlands
speaker: Urs Peter, Márton Braun, Simon Vergauwen, Brian Collins, Pamela Hill, and more
title: ''
subject: Kotlin Dev Day. Advanced Edition
url: https://kotlindevday.com/
- lang: en
startDate: '2022-09-24'
endDate: '2022-10-22'
location: Minna, Nigeria
speaker: Umar Saidu
title: Google Developer Student Clubs
subject: 'Compose Camp Bootcamp'
url: https://gdsc.community.dev/events/details/developer-student-clubs-federal-university-of-technology-minna-presents-jetpack-compose-bootcamp/
- lang: en
startDate: '2022-07-30'
endDate: '2022-07-30'
location: Chicago, IL, USA
speaker: Amanda Hinchman-Dominguez, Maia Grotepass
title: Chicago Kotlin Users Group
subject: 'Dear Amanda, help me fix my memory leaks'
url: https://www.meetup.com/chicago-kotlin/events/287169344/
- lang: en
startDate: '2022-07-28'
endDate: '2022-07-28'
online: true
speaker: Jilles van Gurp
title: Virtual Kotlin Users Group
subject: 'Full-stack Kotlin at FORMATION'
url: https://www.meetup.com/kotlin-berlin/events/286992665/
- lang: en
startDate: '2022-08-04'
endDate: '2022-08-04'
online: true
speaker: Ian Brandt
title: San Diego Kotlin User Group
subject: 'Monthly Kotlin Online!'
url: https://www.meetup.com/sd-kotlin/events/mjfhnsydclbfb/
- lang: en
startDate: '2022-09-08'
endDate: '2022-09-08'
online: true
speaker: Ian Brandt
title: San Diego Kotlin User Group
subject: 'Monthly Kotlin Online!'
url: https://www.meetup.com/sd-kotlin/events/mjfhnsydclbfb/
- lang: zh
startDate: '2022-07-30'
endDate: '2022-07-31'
location: Taipei, Taiwan
speaker: Shengyou Fan, Wig, Andy Lu
title: ''
subject: COSCUP 2022
url: https://coscup.org/2022/en/
- lang: en
startDate: '2022-10-06'
endDate: '2022-10-07'
location: Turin, Italy
online: true
speaker: Nate Ebel
title: droidcon Italy 2022
subject: 'Adopting kotlin multiplatform in brownfield applications'
url: https://it.droidcon.com/2022/
- lang: de
startDate: '2022-09-12'
endDate: '2022-09-13'
online: true
speaker: Amanda Hinchman-Dominguez, Sebastian Aigner, Annyce Davis, Benedikt Jerat and many more!
title: ''
subject: Rheinwerk Konferenz für Kotlin
url: https://rheinwerk-kkon.de/
- lang: en
startDate: '2022-09-29'
endDate: '2022-09-30'
online: true
speaker: Anton Arhipov
title: IntelliJ IDEA Conf
subject: 'Idiomatic Kotlin'
url: https://pages.jetbrains.com/intellij-idea-conf-2022/
- lang: en
startDate: '2022-09-28'
endDate: '2022-09-28'
location: Orlando, FL, USA
speaker: Justin Reock
title: DevOps World
subject: 'Speeding up Jenkins, Maven, and Gradle with a Build Cache'
url: https://reg.devopsworld.com/flow/cloudbees/devopsworld22/Landing/page/welcome
- lang: de
startDate: '2022-08-02'
endDate: '2022-08-02'
location: Vienna, Austria
speaker: ''
title: Vienna Kotlin User Group
subject: 'Kotlin meetups in Vienna are back! Social evening'
url: https://www.meetup.com/kotlin-vienna/events/286706117/
- lang: en
startDate: '2022-07-27'
endDate: '2022-07-27'
location: Wisconsin Dells, WI, USA
speaker: Michael Fazio
title: THAT Conference
subject: 'Kotlin Multiplatform - The Power of Common Kotlin'
url: https://that.us/activities/nVHorb2jfoOzAxsmgm2p
- lang: en
startDate: '2022-07-26'
endDate: '2022-07-26'
online: true
speaker: Gerald Soriano
title: THAT Conference
subject: 'Jetpack 🚀 Compose - Creating a List (RecyclerView & Adapters no more!)'
url: https://that.us/activities/8DIt7kf7DtcAxawg3Br1
- lang: en
startDate: '2022-07-18'
endDate: '2022-07-19'
location: Barcelona, Spain
speaker: Mario Gray, Georgios Andrianakis, Joaquin Azcarate, and many more
title: ''
subject: JBCNConf
url: https://www.jbcnconf.com/2022/talks.html
- lang: en
startDate: '2022-07-06'
endDate: '2022-07-08'
location: Berlin, Germany
speaker: Florina Muntenescu, Simanti Olive, James Swinton-Bland, Wojtek Kalicinski, and many more!
title: ''
subject: droidcon Berlin
url: https://berlin.droidcon.com/
- lang: en
startDate: '2022-06-28'
endDate: '2022-06-28'
location: Munich, Germany
speaker: Hauke Brammer
title: ML Munich Hybrid Conference
subject: 'Kotlin? For Machine Learning?'
url: https://mlconference.ai/tools-apis-frameworks/kotlin-fur-machine-learning/
- lang: en
startDate: '2022-06-22'
endDate: '2022-06-24'
location: Krakow, Poland
speaker: Ties van de Ven
title: Devoxx Poland
subject: 'Functional programming in Kotlin: exploring Arrow'
url: https://devoxx.pl/schedule-friday/
- lang: en
startDate: '2022-06-22'
endDate: '2022-06-24'
location: Krakow, Poland
speaker: Margarita Nedzelska
title: Devoxx Poland
subject: 'SonarKotlin - a better static code analysis tool for Kotlin'
url: https://devoxx.pl/schedule-friday/
- lang: en
startDate: '2022-06-21'
endDate: '2022-06-22'
location: Mondorf-les-Bains, Luxembourg
speaker: Ties van de Ven
title: Voxxed Days Luxembourg
subject: 'Functional programming in Kotlin: exploring Arrow'
url: https://cfp-voxxed-lux.yajug.org/2022/talk/OYZ-9351/Functional_programming_in_Kotlin:_exploring_Arrow
- lang: en
startDate: '2022-06-14'
endDate: '2022-06-15'
online: true
speaker: Florina Muntenescu, Chet Haase, Romain Guy and many more
title: ''
subject: DevFest for Ukraine
url: https://gdg.community.dev/events/details/google-gdg-lviv-presents-devfest-for-ukraine/
- lang: en
startDate: '2022-06-15'
endDate: '2022-06-15'
location: Berlin, Germany
speaker: Lothar Schulz
title: WeAreDevelopers World Congress
subject: 'Java Sealed Classes vs. Kotlin Sealed Classes #Slideless'
url: https://www.wearedevelopers.com/world-congress/program#sz-tab-44727
- lang: es
startDate: '2022-06-15'
endDate: '2022-06-15'
online: true
speaker: Carlos de Tena Bellmont
title: KeepCoding
subject: 'Webinar: Aprende Kotlin desde cero'
url: https://www.meetup.com/KeepCoding/events/286435598/
- lang: en
startDate: '2022-06-16'
endDate: '2022-06-16'
online: true
speaker: Anthony Accioly
title: 'Source Talks: On Kotlin'
subject: 'On Kotlin #3: with Anthony Accioly'
url: https://www.meetup.com/source-talks-on-kotlin/events/285678485/
- lang: en
startDate: '2022-06-15'
endDate: '2022-06-15'
online: true
speaker: Artem Koshelev
title: Apputveckling Sverige
subject: Kotlin Multiplatform Mobile at SCALE by Electrolux!
url: https://www.meetup.com/Apputveckling-sverige/events/286328722/
- lang: en
startDate: '2022-06-21'
endDate: '2022-06-21'
online: true
speaker: Karin-Aleksandra Monoid
title: Sixth Func Prog Sweden MeetUp 2022
subject: Functional Kotlin with Arrow
url: https://www.meetup.com/Func-Prog-Sweden/events/286465453/
- lang: de
startDate: '2022-06-28'
endDate: '2022-06-28'
online: true
speaker: Benjamin Schmid
title: Java User Group Augsburg Meetup
subject: Kotlin ist auch eine Insel
url: https://www.meetup.com/Java-User-Group-Augsburg/events/285798986/
- lang: sk
startDate: '2022-06-21'
endDate: '2022-06-21'
online: true
speaker: Janči Kandráč
title: Kotlin Talks 4
subject: Problém immutability v Jave, Kotline a iných jazykoch
url: https://www.meetup.com/Kotlin-Slovakia/events/286439623/
- lang: en
startDate: '2022-07-02'
endDate: '2022-07-02'
location: Yola, Nigeria
speaker: Munnir Abdulhamid
title: I/O Extended Yola 2022
subject: Getting Started with Kotlin
url: https://gdg.community.dev/events/details/google-gdg-yola-presents-io-extended-yola-2022/#event-info
- lang: en
startDate: '2022-06-02'
endDate: '2022-06-02'
location: San Francisco, CA, USA
speaker: Kevin Galligan
title: droidconsanfrancisco
subject: 'Troubled Waters: Bridging platform-native SDKs with Kotlin Multiplatform'
url: https://www.sf.droidcon.com/schedule
description:
__cdata: >
<p>One of the most valuable features of Kotlin Multiplatform is being
able to interop with existing platform-native SDKs from Kotlin code.
This allows you to take existing code from Android and iOS, and rather
than "rewrite it", simply create a common Kotlin SDK surface that
delegates to the platform-native SDK code. Then you can call
everything from Kotlin!<p>
<p>This is not always so easy. There are a number of considerations
you should keep in mind when planning your shared code utopian vision.
In this talk we'll discuss: