forked from JetBrains/kotlin-web-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.yml
11019 lines (10064 loc) · 440 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: 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:
<p>* When to bridge and when to rewrite (if possible)
* Interfaces or expect/actual? (Almost always interfaces, but no
spoilers here)
* cinterop basics
* Packaging and deployment related topics.<p>
<p>Some of this ground was covered at Droidcon SF 2019, but we've
learned and refined so, so much since then!<p>
- lang: en
startDate: '2022-06-03'
endDate: '2022-06-03'
location: San Francisco, CA, USA
speaker: Lena Stepanova
title: droidconsanfrancisco
subject: >-
Kotlin Multiplatform Mobile in production: key takeaways from developing
two cross-platform apps
url: https://www.sf.droidcon.com/schedule
description:
__cdata: >
<p>Kotlin Multiplatform Mobile is a young promising technology, but is
it there to stay? And is it worth trying out? This talk is based on
the experience of developing two very different cross-platform apps
with KMM. The goal of this talk is to introduce KMM, discuss the
pitfalls that a new KMM developer may encounter and share some
valuable tips that were collected along the way of KMM development:
from preferable app architecture to team requirements.<p>
- lang: en
startDate: '2022-06-02'
endDate: '2022-06-02'
location: San Francisco, CA, USA
speaker: Bree Hoffman
title: droidconsanfrancisco
subject: Kotlin Generics In Depth
url: https://www.sf.droidcon.com/schedule
description:
__cdata: >
<p>When writing more powerful abstractions with Kotlin it becomes
necessary to have a strong grasp of how to use generics. This talk
covers a variety of concepts surrounding generic types & type
parameters.
Key points:
* variance (covariance, contravariance, invariance)
* type projection (+star projection, aka wildcard)
* type constraints
* reification (with inline modifier)<p>
- lang: sv
startDate: '2022-05-20'
endDate: '2022-05-20'
location: Stockholm, Sweden
speaker: Petrus
title: Apputveckling Sverige
subject: Kotlin Multiplatform - erfarenheter från 5 Appar under 2021
url: https://www.meetup.com/Apputveckling-sverige/events/284973447/
description:
__cdata: >
<p>Kotlin Multiplatform Mobile har väckt mer och mer intresse sedan
första lansering för ca 2,5 år sedan. Språket är utvecklat av
JetBrains och stöds av Google samt är Open Source. I praktiken är det
ett SDK för iOS- och Android-apputveckling.<p>
- lang: en
startDate: '2022-05-09'
endDate: '2022-05-09'
location: Tel Aviv-Yafo, Israel
speaker: Ronel Girat
title: Full Stack Developers Israel
subject: Asynchronous Data Streams with Kotlin Flow
url: https://www.meetup.com/full-stack-developer-il/events/285268669/
description:
__cdata: >
<p>In this talk, we will discuss how Kotlin Flows can overcome the
challenges of working with asynchronous streams.<p>
<p>We will go through the basics of Kotlin Flow design, see their
typical usage patterns, and how they enable writing safe, reliable,
and leak-free systems.<p>
- lang: en
startDate: '2022-06-30'
endDate: '2022-06-30'
location: Brighton, United Kingdom
speaker: Arnaud Giuliani
title: Brighton Kotlin
subject: Android Architecture Design with Koin
url: https://www.meetup.com/Brighton-Kotlin/events/285386453/
description:
__cdata: >
<p>In this session, I propose to see together how we can structure our
components, for the following topics:<p>
<p>Classical Components in MVP, MVVM
Dealing with Scopes
Jetpack Navigation
Jetpack Compose
Integrating with Multi-Platform<p>
- lang: en
startDate: '2022-06-15'
endDate: '2022-06-15'
location: Berlin, Germany
speaker: Urs Peter
title: WeAreDevelopers World Congress
subject: Moving from Java to Kotlin
url: https://www.wearedevelopers.com/world-congress/topics#/
description:
__cdata: >
<p>In this talk, we will explore the journey you embark on when moving
from Java to Kotlin. Based on real-world experience, code statistics,
and many code samples, light will be shed on questions like ‘What were
the benefits and drawbacks?’, ‘How did we approach it?’ …and most of
all: ‘Was it worth it and why?’ At the end of this talk, you know in
detail the differences between Java and Kotlin. You have learned what
to expect when embracing Kotlin and which best practices you can
apply, providing you with the information and tools to evaluate
whether Kotlin is worth a try.<p>
- lang: en
startDate: '2022-05-05'
endDate: '2022-05-05'
location: Philadelphia, PA, USA
speaker: Kevin Galligan
title: Philly Mobile Developer Conference
subject: Kotlin Multiplatform iOS Interop Overview
url: >-
https://www.comcastlabsconnect.com/2022-mobile-abstracts/kotlin-multiplatform-ios-interop-overview
description:
__cdata: >
<p>Everybody knows that Kotlin Multiplatform for native mobile will
allow you to export code that can be called from iOS. However, within
that statement, there are many details to learn and decisions to be
made. As many KMP/KMM developers are coming from an Android
background, these details are often missing background knowledge that
everybody learns “the hard way”. Static or dynamic frameworks?
Linking? Cocoapods vs SPM? This talk is an introduction to what the
Kotlin compiler actually produces, what choices you’ll need to make,
and things you may want to consider before attempting to integrate
Kotlin shared-native code into a production iOS environment.<p>
- lang: en
startDate: '2022-05-05'
endDate: '2022-05-05'
location: Philadelphia, PA, USA
speaker: Mohit Sarveiya
title: Philly Mobile Developer Conference
subject: Building Android Infrastructure Teams at Scale
url: >-
https://www.comcastlabsconnect.com/2022-mobile-abstracts/building-android-infrastructure-teams-at-scale
description:
__cdata: >
<p>In this talk, I will share with you the purpose of a Infrastructure
team, the responsibilities and how to build it. I’ll share my
experiences of working on Infrastructure teams and the challenges
you’ll encounter. Lastly, I’ll cover fragmentation of large codebases
and what role an Infrastructure team could play to improve it. At
various companies, such a team is called an platform or foundations
team.<p>
- lang: en
startDate: '2022-05-17'
endDate: '2022-05-17'
location: Zurich, Switzerland
speaker: Sebastian Brunnre
title: Voxxed Days Zürich 2022
subject: 9 Java Patterns That Kotlin Made Obsolete
url: https://voxxeddays.com/zurich/schedule/speaker-details/?id=4001
description:
__cdata: >
<p>Are you a Kotlin expert? Or maybe you have never worked with it
before? Either way, there's a lot for you to learn because Kotlin
isn't just a fancy, new Java syntax, but another way of programming!
Come with me on a quick journey comparing Java's beloved design
patterns and how they were simplified or even replaced by Kotlin
quirks and features. Amongst those patterns are Singleton, Factory,
Builder, Util and more. Even if you're not interested in patterns, you
can still learn about the features of Kotlin like extension properties
or delegates. There's something new for everyone.<p>
- lang: en
startDate: '2022-05-22'
endDate: '2022-05-22'
location: San Jose, Costa Rica
speaker: Alejandra Gil
title: Kotlin Day
subject: Intro to kotlin on Android
url: >-
https://gdg.community.dev/events/details/google-gdg-pura-vida-presents-kotlin-day/
- lang: en
startDate: '2022-06-02'
endDate: '2022-06-02'
location: San Francisco, CA, USA
speaker: Mohit Sarveiya
title: droidconsanfrancisco
subject: Migrating to Kotlin State & Shared Flows
url: >-
https://www.sf.droidcon.com/speaker/mohit-sarveiya/migrating-to-kotlin-state-%26-shared-flows
description:
__cdata: >
<p>State Flows and Shared Flows were introduced to broadcast events to
multiple consumers with coroutines. You might have been using
Broadcast Channels and are starting to migrate to Shared Flows. Or,
you might be converting your RxJava code to Flows.<p>
<p>We’ll dive deep into the Shared & State Flow APIs. A Shared Flow
provides you with ability to replay and cache events. How does it
compare and map to existing RxJava constructs like publisher subjects?
Or, how is it different from a Broadcast Channel? How do you handle
back pressure? We’ll look into simple to complex use cases for
migrating to Shared Flows and explore these questions in detail.<p>
<p>By the end of this talk, you’ll have a good starting point to begin
to migrate to State Flows and Shared Flows.<p>
- lang: en
startDate: '2022-06-02'
endDate: '2022-06-02'
location: San Francisco, CA, USA
speaker: Anna Zharkova
title: droidconsanfrancisco
subject: KSP and Plugins. Optimizing Kotlin Multiplatform common code
url: >-
https://www.sf.droidcon.com/speaker/anna-zharkova/ksp-and-plugins.-optimizing-kotlin-multiplatform-common-code
description:
__cdata: >
<p>KSP (Kotlin Symbol Processing) is an API from Google for writing
Kotlin compiler plugins. Using KSP we can write annotation processors
to reduce boilerplate and solve cross-cutting concerns. Also KSP is
more effective than KAPT. Among the advantages of using it is the
support of Kotlin Multiplatform. Another way to optimize common code
is to use Kotlin plugins. In my talk I would to like to show some
samples how to use own plugins and KSP processing in Kotlin
Multiplatform app supporting both iOS and Android.<p>
- lang: en
startDate: '2022-04-25'
endDate: '2022-04-25'
location: Paris, France
speaker: Marton Braun
title: AndroidMakers 2022
subject: Untangling Coroutine Testing
url: >-
https://androidmakers.fr/speakers/5498b37176004d47f01ecb6d61bdead82ff63d9b
description:
__cdata: >
<p>Coroutines are embraced on Android as a tool to perform
asynchronous operations and manage threading in your apps. Testing
them requires some extra work and a solid understanding of scopes and
dispatchers. In this talk, we’ll look at how to test coroutines with
the latest available testing APIs introduced in kotlinx.coroutines
1.6, from the simplest cases all the way to Flows.<p>
- lang: en
startDate: '2022-04-26'
endDate: '2022-04-26'
location: Paris, France
speaker: Carlos Mota
title: AndroidMakers 2022
subject: The Adventures of Kotlin And Compose Through the Multiplatform World
url: >-
https://androidmakers.fr/speakers/aaec18080e28068c1d725fb7747a77a26df8dcd8
description:
__cdata: >
<p>Join me in this adventure through Kotlin and Compose Multiplatform
and learn how you can develop apps using these technologies. You’ve
got your Android app already developed? See how you can make it run on
your watch and on the Desktop effortlessly. Or how you can share your
business logic with iOS and speed up your development. Perhaps, you
want to develop for the Web? See how you can give the first steps into
Compose for the Web while also sharing your logic.<p>
- lang: en
startDate: '2022-04-25'
endDate: '2022-04-25'
location: Paris, France
speaker: Martin Bonnin, Bennoit Lubek