-
Notifications
You must be signed in to change notification settings - Fork 2
/
events.ics
1537 lines (1537 loc) · 67.6 KB
/
events.ics
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
BEGIN:VCALENDAR
VERSION:2.0
CALSCALE:GREGORIAN
PRODID:gitevents/ics
METHOD:PUBLISH
X-PUBLISHED-TTL:PT1H
BEGIN:VEVENT
UID:58jWKIulATWUD0GmKgEVZ
SUMMARY:CDC Paphos Meet & Greet\, 28/04\, 18.30h
DTSTAMP:20241202T015918Z
DTSTART:20220428T153000Z
DESCRIPTION:Every last Thursday of the month\, the CDC Paphos Chapter meets
for drinks and snacks at Baracas Lounge.
URL:https://github.com/cyprus-developer-community/events/issues/4
LOCATION:baracas-lounge
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Patrick Heneise
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT1H30M
END:VEVENT
BEGIN:VEVENT
UID:F3zDeZNR5stvJ263qF1IE
SUMMARY:CDC Organizers Meetup
DTSTAMP:20241202T015918Z
DTSTART:20220406T173000Z
DESCRIPTION:Monthly organizers sync
URL:https://github.com/cyprus-developer-community/events/issues/5
LOCATION:online
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Patrick Heneise
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT30M
END:VEVENT
BEGIN:VEVENT
UID:KGPTug2Ix_OdNVE2df6al
SUMMARY:CDC Limassol Meet&Greet Meetup\, 14/04\, 18.30h
DTSTAMP:20241202T015918Z
DTSTART:20220414T153000Z
DESCRIPTION:Start of Meet\\&Greet in Limassol
URL:https://github.com/cyprus-developer-community/events/issues/6
LOCATION:bono
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Michael サイトー 中村 Bashurov
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT1H30M
END:VEVENT
BEGIN:VEVENT
UID:GFA1EpLfMoPw_5UBn3yH7
SUMMARY:CDC Organizers Meetup 04/05\, 20.30h
DTSTAMP:20241202T015918Z
DTSTART:20220504T173000Z
DESCRIPTION:Monthly organizers sync
URL:https://github.com/cyprus-developer-community/events/issues/7
LOCATION:online
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=michdim
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/PatrickHeneise;
CN=Patrick Heneise
DURATION:PT30M
END:VEVENT
BEGIN:VEVENT
UID:pbiFpOhCWzUfamjjLFTIW
SUMMARY:CDCoffee April 2022
DTSTAMP:20241202T015918Z
DTSTART:20220413T070000Z
DESCRIPTION:Monthly virtual coffee hour for all Cypriot developers and tech
enthusiasts to meet and chat.
URL:https://github.com/cyprus-developer-community/events/issues/8
LOCATION:online
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Patrick Heneise
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT1H
END:VEVENT
BEGIN:VEVENT
UID:cAmZqCkZj6QMk401IQpkn
SUMMARY:CDC Larnaka Meet & Greet Meetup
DTSTAMP:20241202T015918Z
DTSTART:20220415T153000Z
DESCRIPTION:Welcome to the CDC - Cyprus Developer Community! Join us for ou
r monthly Larnaka meet & greet event. Meet likeminded people\, discuss top
ics we would like to hear about in upcoming talks\, welcome potential spea
kers\, discuss all things tech and have fun!\n\nNotice with regards to COV
ID:\n\nAll attendees must follow measures in accordance with Ministry of H
ealth directives. <https://www.pio.gov.cy/coronavirus/eng>
URL:https://github.com/cyprus-developer-community/events/issues/9
LOCATION:The Brewery Larnaka - <https://goo.gl/maps/UWSwofFp37nvtGmb6>
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Nicholas Verban
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:WyqjKC0C2bJHuzYhoQ834
SUMMARY:CDC Organizers Meetup 07/06\, 20.30h
DTSTAMP:20241202T015918Z
DTSTART:20220607T173000Z
DESCRIPTION:Monthly organizers sync
URL:https://github.com/cyprus-developer-community/events/issues/10
LOCATION:online
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Michael サイトー 中村 Bashurov
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT30M
END:VEVENT
BEGIN:VEVENT
UID:u9G0LJIHKPw9pLAtdWehY
SUMMARY:A practical introduction to Test Driven Development (TDD) by Marios
Georgiou
DTSTAMP:20241202T015918Z
DTSTART:20220517T160000Z
DESCRIPTION:GDG is happy to host Marios Georgiou!\n\nIn this talk\, Marios
will walk us through the steps of creating automated unit tests that run e
very time we build our code\, and cover all the basic concepts of unit tes
ting\, code coverage and some best practices by showing examples in an int
eractive\, workshop like experience.\n\nThis course is targeted to beginne
rs or to more experience developers who want to learn more about TDD.\n\nT
he examples will use very simple code written in React\, however the conce
pts and practices are similarly applicable on most programming languages\,
e.g. Java\, Python etc.\n\nThis is a hybrid event. The physical event wil
l take place at University of Cyprus (Nicosia)\, in the department of Comp
uter Science building THEE 01\, Room B101 (Basement\, Walk-in Lab). map: <
https://goo.gl/maps/BoDyu6fmyNPaYkwC6>\n\nThe virtual event will be on zoo
m (see below) and also on CDC discord channel. Visit <https://cdc.cy> to a
ccess the discord channel and view the events channel for details on how t
o access.\n\nFor the participants of the physical event\, pizza and refres
hments will be offered by our sponsor "TSYS A Global Payments Company".\n\
nFor RSVP\, kindly visit <https://gdg.community.dev/j/wt7w56qhpa29j/>\n\nL
ooking forward to see you there!\n\nDon't forget to like our FB page at <h
ttps://www.facebook.com/GDGCyprus> and also checkout <http://cdc.cy>\, the
Cyprus Developer Community portal.\n\nLike/Share :)\n\nZoom:\n<https://us
06web.zoom.us/j/81182498281?pwd=RTdwakZ5ZklvdG8xOW5ESzdjSElKQT09>\n\nMeeti
ng ID: 811 8249 8281\nPasscode: 576202
URL:https://github.com/cyprus-developer-community/events/issues/11
LOCATION:Nicosia at University Of Cyprus / Virtual on zoom and discord
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=michdim
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT1H30M
END:VEVENT
BEGIN:VEVENT
UID:FLwLxq6bJQh1qT2wLUq98
SUMMARY:CDC Meet & Greet - The Brewery Larnaka
DTSTAMP:20241202T015918Z
DTSTART:20220520T153000Z
DESCRIPTION:Welcome to the CDC - Cyprus Developer Community! Join us for ou
r monthly Larnaka meet & greet event. Meet likeminded people\, discuss all
things tech and have fun!
URL:https://github.com/cyprus-developer-community/events/issues/12
LOCATION:The Brewery Larnaka - <https://goo.gl/maps/UWSwofFp37nvtGmb6>
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Nicholas Verban
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:7QtBH_XjogLDoyXV1Pgd9
SUMMARY:BeerJS Limassol #2
DTSTAMP:20241202T015918Z
DTSTART:20220929T153000Z
DESCRIPTION:BeerJS is back in Limassol! Let's meet and talk stuff and have
fun!\n\n**note on drinking and js**\n\nBeerJS is about creating social spa
ces to strengthen software communities. There is no requirement to drink t
o participate\, nor talk specifically js (I personally can support convers
ation on variety of topics and I would love to listen to people talking ab
out it)
URL:https://github.com/cyprus-developer-community/events/issues/15
LOCATION:bono
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Michael サイトー 中村 Bashurov
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/jgebal;CN=Jacek
Gębal
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/Gennadion;CN=Ge
nnady Petrishchev
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/anstarovoyt;CN=
Andrey Starovoyt
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:3rp_c9f4lUGhvUHE-vtBh
SUMMARY:CDC Meet & Greet - Brewfellas Nicosia
DTSTAMP:20241202T015918Z
DTSTART:20221015T130000Z
DESCRIPTION:Casual meet & greet at Brewfellas in Nicosia
URL:https://github.com/cyprus-developer-community/events/issues/18
LOCATION:brewfellas
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Patrick Heneise
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/PatrickHeneise;
CN=Patrick Heneise
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/saitonakamura;C
N=Michael サイトー 中村 Bashurov
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/MarioSimou;CN=m
simou
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:W7at4-Uc_7JA7PIMHHIJ2
SUMMARY:CDC Paphos Meet & Greet
DTSTAMP:20241202T015918Z
DTSTART:20221111T140000Z
DESCRIPTION:Drinks / Dinner || Snacks
URL:https://github.com/cyprus-developer-community/events/issues/19
LOCATION:baracas-lounge
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Paphos
ORGANIZER;CN=Patrick Heneise
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/sergeiwaigant;C
N=Sergei Waigant
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/orlov-vo;CN=Vla
dislav Orlov
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/framp;CN=Federi
co Rampazzo
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:FDtINQUE3NxPlBvTNq-03
SUMMARY:BeerJS Limassol #3
DTSTAMP:20241202T015918Z
DTSTART:20221027T153000Z
DESCRIPTION:BeerJS in Limassol! Let's meet and talk stuff and have fun!\n\n
**note on drinking and js**\n\nBeerJS is about creating social spaces to s
trengthen software communities. There is no requirement to drink to partic
ipate\, nor talk specifically js (I personally can support conversation on
variety of topics and I would love to listen to people talking about it)
URL:https://github.com/cyprus-developer-community/events/issues/20
LOCATION:bono
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Limassol
ORGANIZER;CN=Michael サイトー 中村 Bashurov
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/saitonakamura;C
N=Michael サイトー 中村 Bashurov
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:ewN4RzuqZ7XBJDp6GkqTH
SUMMARY:CDC Paphos Meet & Greet
DTSTAMP:20241202T015918Z
DTSTART:20221216T140000Z
DESCRIPTION:![Mulled-wine-in-white-rustic-mugs](https://user-images.githubu
sercontent.com/74390/202103125-a5316145-c182-40cc-bcca-cbe079453a64.jpeg)\
n\nWinter Edition - bring warm clothes. We'll meet on "The Rooftop" (Evago
ras Pallikarides Foundation)\, have some Glühwein and talk software\, tech
nology and Cyprus.
URL:https://github.com/cyprus-developer-community/events/issues/26
LOCATION:the-rooftop\, [Evagoras Pallikarides Foundation](https://what3word
s.com/affair.blinking.mugs)
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Paphos
ORGANIZER;CN=Patrick Heneise
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H30M
END:VEVENT
BEGIN:VEVENT
UID:yHM5klT7rrG8TDdlhZ6Ol
SUMMARY:Live Watching of HolyJS Talks
DTSTAMP:20241202T015918Z
DTSTART:20221120T140000Z
DESCRIPTION:Live watching of HolyJS Talks and networking with developers fr
om inDrive\, Mayflower and other companies!\n\nRegistration required <http
s://forms.gle/DK22XQ6hwY8CXwYv8>
URL:https://github.com/cyprus-developer-community/events/issues/27
LOCATION:sash-shisha
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Michael サイトー 中村 Bashurov
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT3H
END:VEVENT
BEGIN:VEVENT
UID:zqkPt0fB9C9eW2ioc0UcL
SUMMARY:BeerJS Limassol #4
DTSTAMP:20241202T015918Z
DTSTART:20221124T170000Z
DESCRIPTION:BeerJS in Limassol! Let's meet and talk stuff and have fun!\n\n
**note on drinking and js**\n\nBeerJS is about creating social spaces to s
trengthen software communities. There is no requirement to drink to partic
ipate\, nor talk specifically js (I personally can support conversation on
variety of topics and I would love to listen to people talking about it)
URL:https://github.com/cyprus-developer-community/events/issues/28
LOCATION:bono
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Limassol
ORGANIZER;CN=Michael サイトー 中村 Bashurov
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:NwULDGK2YyNN7K16H0hW8
SUMMARY:CDCx Paphos
DTSTAMP:20241202T015918Z
DTSTART:20230120T153000Z
DESCRIPTION:![Ancient-Odeon-amphitheatre-in-Paphos-Archaeological-Park\,-Cy
prus](https://user-images.githubusercontent.com/74390/210996690-976dd4b6-3
476-4e75-bace-5b5cfdf148a0.png)\n\nThe Cyprus Developer Community presents
: **CDCx** Paphos with talks from [CyprusJS](https://github.com/cyprusjs)
and [CyprusRust](https://github.com/cyprusrust)
URL:https://github.com/cyprus-developer-community/events/issues/29
LOCATION:pallikarides-paphos
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Paphos
ORGANIZER;CN=Patrick Heneise
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/sergeiwaigant;C
N=Sergei Waigant
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/stepanselyuk;CN
=Stepan Seliuk
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/framp;CN=Federi
co Rampazzo
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/ScriptHUBoffici
al;CN=Script HUB
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/bsekachev;CN=Bo
ris Sekachev
DURATION:PT2H30M
END:VEVENT
BEGIN:VEVENT
UID:4l6V8X7_7qxBLwyBLtpKx
SUMMARY:CDC Nicosia / CyprusJS Meet & Greet
DTSTAMP:20241202T015918Z
DTSTART:20221207T160000Z
DESCRIPTION:Let's get together at "B.R. Hub" and talk about the latest news
and events in technology\, software and programming. Table is reserved fo
r "Christos".
URL:https://github.com/cyprus-developer-community/events/issues/30
LOCATION:br-hub-nicosia
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Nicosia
ORGANIZER;CN=Patrick Heneise
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:k0QFycgHtcAZ_Pl-JuWod
SUMMARY:CocoaHeads Cyprus iOS Talks
DTSTAMP:20241202T015918Z
DTSTART:20221215T160000Z
DESCRIPTION:We are happy to announce the first meetup of CocoaHeads Cyprus!
Let's gather and get to know each other.\n\nAgenda\n18:00 - 18:30 - Gathe
ring & Intro\n18:30 - 19:15 - "Swift: some and any. What’s this all about?
"\nAnton Goncharov (iOS developer\, inDrive)\n“some” and “any” keywords we
re introduced in Swift 5 some time ago. The latest Swift 5.7 realease incl
udes a lot of related novelties that significantly change the syntax of pr
otocols and generics. In this talk\, we will find out the reasons for the
appearance of those changes and figure out how and when to use them proper
ly.\n19:15 - 21:00 - Networking
URL:https://github.com/cyprus-developer-community/events/issues/31
LOCATION:Crowne Plaza Limassol
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Limassol
ORGANIZER;CN=Alex Kudryavtsev
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT3H
END:VEVENT
BEGIN:VEVENT
UID:WwBMG-hgOEQxi4Olh-gX0
SUMMARY:Wrike Product Management Meetup
DTSTAMP:20241202T015918Z
DTSTART:20221215T163000Z
DESCRIPTION:We continue growing [Wrike TechClub](https://www.wrike.com/tech
club/) CY community and happy to announce the event on Product Developmen
t challenges! Happy to see you there.\n\n**Venue:** Wrike Office in Nicosi
a\n**Entrance:** Free\n**Drinks and Food:** Free\n**Language:** English (a
t least for the talks)\n**Registration:** <https://pmcy-1.eventbrite.com/>
\n\nSpeakers and Talks:\n\n[Anastasia Shevchenko](https://www.linkedin.com
/in/anastasia--shevchenko/)\, Wrike – Product research mistake cases\nAs
a PM I do a lot of different researches. As an ever-learning PM\, I’ve don
e a lot of mistakes in such researches.\nLet me share 3 cases from my pers
onal experience of things to avoid when doing research\, and tips on how I
keep myself from repeating them. They are universal\, so even though I’ll
be using my own examples\, I hope you can apply them to your ongoing rese
arch as soon as you get home.\n[Artyom Sarkisov](https://www.linkedin.com/
in/artemsarkisov/)\, JetBrains – Topic to be announced\n\nFollow us: [www.
wrike.com/techclub](http://www.wrike.com/techclub)
URL:https://github.com/cyprus-developer-community/events/issues/32
LOCATION:wrike-hq-nicosia
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Nicosia
ORGANIZER;CN=Wrike TechClub
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:ozTwRtsH6YjczDocP7HkY
SUMMARY:Cyprus Kotlin User Group meetup
DTSTAMP:20241202T015918Z
DTSTART:20221220T160000Z
DESCRIPTION:KUG Cyprus is for everyone who is interested in Kotlin. Doesn't
matter whether you're a beginner or an expert\, more into Android or Back
end - we all want to learn more about Kotlin and have some fun together!\n
\n[Registration form](https://www.eventbrite.com/e/cyprus-kotlin-user-grou
p-meetup-2012-tickets-478030140017?)\n\nAgenda\n18:00 - 18:30 - Gathering
& Intro\n18:30 - 19:15 - "Functional programming in Kotlin with Arrow"\nAr
temiy Mikhaylov (Android developer\, inDrive)\nIn this talk\, I will show
some popular functional programming usage examples in Java and Kotlin and
how the Arrow library can help you to use functional programming more effi
ciently.\n19:15 - 21:00 - Networking\nSpecial Guest - [Katerina Petrova](h
ttps://github.com/KaterinaPetrova) (Product Marketing Manager\, ex-Develop
er Advocate for Kotlin Multiplatform Mobile\, JetBrains). If you have ques
tions about Kotlin Multiplatform or Kotlin in general\, you will have the
opportunity to discuss them with Katerina in an informal way.
URL:https://github.com/cyprus-developer-community/events/issues/33
LOCATION:Crowne Plaza\, Limassol
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Limassol
ORGANIZER;CN=Mike Klyuev
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT3H
END:VEVENT
BEGIN:VEVENT
UID:YXIRwSYDWtJsuBOY0humz
SUMMARY:CDC Meet & Greet Limassol
DTSTAMP:20241202T015918Z
DTSTART:20230126T170000Z
DESCRIPTION:Informal meet & greet to talk about the latest in software and
web development\, technology and science.
URL:https://github.com/cyprus-developer-community/events/issues/38
LOCATION:bono
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Michael サイトー 中村 Bashurov
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:ws6M-1AF7oshkepDoR8lS
SUMMARY:CocoaHeads Lite Paphos
DTSTAMP:20241202T015918Z
DTSTART:20230202T170000Z
DESCRIPTION:This is an informal networking event without talks & presentati
ons\, where we can just meet and discuss iOS-related topics informally\, s
hare ideas and get feedback from peers. All interested in iOS development
are welcome!
URL:https://github.com/cyprus-developer-community/events/issues/39
LOCATION:Coffee Island (21 Poseidonos Avenue 8042 Paphos Cyprus)
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Mike Klyuev
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:8YxC_1lKufvIxYoNcby5W
SUMMARY:CDC Meet & Greet Ammochostos
DTSTAMP:20241202T015918Z
DTSTART:20230225T170000Z
DESCRIPTION:![patrickheneise_a_developer_meetup_in_Famagusta_8k_watercolor_
st_67327723-9d62-4f20-b22d-7f87909c4165](https://user-images.githubusercon
tent.com/74390/232881191-5a987ec8-5f11-4a9e-9e77-11a337dcf263.jpg)\n\nInfo
rmal meet & greet to talk about the latest in software and web development
\, technology and science.
URL:https://github.com/cyprus-developer-community/events/issues/40
LOCATION:Costa Coffee Protaras
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=msimou
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/MarioSimou;CN=m
simou
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:RBo3ZRJWONKPTE4suvcy2
SUMMARY:CDC Paphos Meet & Greet
DTSTAMP:20241202T015918Z
DTSTART:20230216T170000Z
DESCRIPTION:![patrickheneise_three_young_software_engineers_in_a_pub_drinki
ng_658796ae-12f9-4766-a3e1-614ba29cb6e5](https://user-images.githubusercon
tent.com/74390/218968911-ad4e40c5-e9ed-4546-8f71-7ef9858cd181.png)\n\ninfo
rmal get together to discuss the latest in technology and science
URL:https://github.com/cyprus-developer-community/events/issues/41
LOCATION:oneills-paphos
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Paphos
ORGANIZER;CN=Patrick Heneise
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:Kmu1VJlfFjvKULhKsAZpB
SUMMARY:Cyprus Kotlin User Group
DTSTAMP:20241202T015918Z
DTSTART:20230302T170000Z
DESCRIPTION:KUG Cyprus is for everyone who is interested in Kotlin. Doesn't
matter whether you're a beginner or an expert\, more into Android or Back
end - we all want to learn more about Kotlin and have some fun together!\n
\nPlease [register here.](https://www.eventbrite.com/e/cyprus-kotlin-user-
group-meetup-0203-tickets-547755831437)\n\n**Agenda**\n19:00 - 19:30 - Gat
hering & Intro\n19:30 - 20:00 - "10 myths about cross platform mobile deve
lopment with Kotlin" by Katerina Petrova (JetBrains)\nBusting myths about
Kotlin Mobile Multiplatform!\n20:00 - 20:30 - TBA\n20:30 - 21:00 - Network
ing\n\n**СFP**\nWe are open to talk proposals. If you are interested in ma
king a Kotlin-related tech talk at this meeting\, please fill in an[ issue
here](https://github.com/Cyprus-Kotlin-User-Group/Cyprus-KUG/issues/new?a
ssignees=oldtuna\\&labels=talk+proposal\\&template=talk-proposal.md\\&titl
e=).
URL:https://github.com/cyprus-developer-community/events/issues/42
LOCATION:Exness office (Porto Bello Business & Cultural center)\, Limassol
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Limassol
ORGANIZER;CN=Mike Klyuev
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:htma2F0fRI2oFHVD5Ps9_
SUMMARY:CDC Meet & Greet Limassol
DTSTAMP:20241202T015918Z
DTSTART:20230223T170000Z
DESCRIPTION:Informal meet & greet to talk about the latest in software and
web development\, technology and science.
URL:https://github.com/cyprus-developer-community/events/issues/43
LOCATION:bono
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Limassol
ORGANIZER;CN=Michael サイトー 中村 Bashurov
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:l7ypy2uMaP766BjqpueSh
SUMMARY:CyprusJS Meetup #1 2023
DTSTAMP:20241202T015918Z
DTSTART:20230302T163000Z
DESCRIPTION:CyprusJS is back with a long-awaited meetup! On the 2nd of Marc
h at [Diamante Blu](https://www.google.com/maps/place/Diamante+blu/@34.670
1968\,33.0439646\,15z/data=!4m2!3m1!1s0x0:0x565901f7e7ddc41e?sa=X\\&ved=2a
hUKEwjQgPmil5r9AhWkVKQEHUOrArIQ_BJ6BAhwEAg)\, we’ll hear about GraphQL and
WebXR. [Patrick Heneise](https://twitter.com/PatrickHeneise) from [Zenter
ed](https://zentered.co/) will talk about custom GraphQL schemas for arbit
rary data sources with GraphQL Nexus\, and [Michael Bashurov](https://twit
ter.com/saitonakamura) from [Mayflower](https://mayflower.work/) will delv
e into the current state of things with VR in the browser.\n\n*Registratio
n:*\n<https://www.eventbrite.com/e/cyprusjs-meetup-1-2023-tickets-55243987
1527>
URL:https://github.com/cyprus-developer-community/events/issues/44
LOCATION:diamante-blu
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Limassol
ORGANIZER;CN=Michael サイトー 中村 Bashurov
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H30M
END:VEVENT
BEGIN:VEVENT
UID:QLAVwk4Ba3zCy1g3fYmqz
SUMMARY:Software Engineering Talks
DTSTAMP:20241202T015918Z
DTSTART:20230425T160000Z
DESCRIPTION:More info in:\n\n<https://www.meetup.com/software-development-t
alks/events/291208012/>\n\nFree food and drinks\n\nVenue:\nTBC
URL:https://github.com/cyprus-developer-community/events/issues/45
LOCATION:Nicosia
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Vasilis Nicolaou
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:m4wAesnehuT6MXmR-aEWF
SUMMARY:CDC Paphos Meet & Greet
DTSTAMP:20241202T015918Z
DTSTART:20230323T170000Z
DESCRIPTION:![patrickheneise_a_software_developer_meetup_at_the_medierranea
n__0841f0b7-5310-4ab9-8997-bae248a2b207](https://user-images.githubusercon
tent.com/74390/226611766-a5612e77-230d-4ebb-88cf-5b892010e99b.jpg)\n\ninfo
rmal get together to discuss the latest in technology and science
URL:https://github.com/cyprus-developer-community/events/issues/47
LOCATION:The New Horizon Pub\, Chloraka
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Patrick Heneise
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/ReDetection;CN=
Serg
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/alexandra-mara;
CN=Alexandra Mirzuitova
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:5d70tA4K82VZ_SFyhqfZa
SUMMARY:CocoaHeads 06.04
DTSTAMP:20241202T015918Z
DTSTART:20230406T153000Z
DESCRIPTION:We are happy to announce the first meetup of CocoaHeads Cyprus!
Let's gather and have some fun. Talks would be in English. \\[Reserve a s
pot here]\\(<https://www>. eventbrite. com/e/cocoaheads-cyprus-0604-ticket
s-596834436867).\n\nAgenda
URL:https://github.com/cyprus-developer-community/events/issues/48
LOCATION:Porto Bello\, Limassol
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Limassol
ORGANIZER;CN=Mike Klyuev
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H30M
END:VEVENT
BEGIN:VEVENT
UID:xhvhmFW6v9TVjzkcwfM4f
SUMMARY:CDC Paphos Meet & Greet
DTSTAMP:20241202T015918Z
DTSTART:20230427T160000Z
DESCRIPTION:![patrickheneise_a_software_developer_meetup_at_the_medierranea
n__0841f0b7-5310-4ab9-8997-bae248a2b207](https://user-images.githubusercon
tent.com/74390/226611766-a5612e77-230d-4ebb-88cf-5b892010e99b.jpg)\n\ninfo
rmal get together to discuss the latest in technology and science\n\n<http
s://www.eventbrite.com/e/cdc-meet-greet-paphos-tickets-512982904677>
URL:https://github.com/cyprus-developer-community/events/issues/51
LOCATION:The New Horizon Pub\, Chloraka
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Paphos
ORGANIZER;CN=Patrick Heneise
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/ReDetection;CN=
Serg
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:ayGMhe88HNMkgF4THaTKf
SUMMARY:CDC Meet & Greet Ammochostos
DTSTAMP:20241202T015918Z
DTSTART:20230427T160000Z
DESCRIPTION:![patrickheneise_a_developer_meetup_in_Famagusta_8k_watercolor_
st_67327723-9d62-4f20-b22d-7f87909c4165](https://user-images.githubusercon
tent.com/74390/232881527-0570789c-da97-4fdc-9446-f53ee3eabcec.jpg)\n\nInfo
rmal meet & greet to talk about the latest in software and web development
\, technology and science.
URL:https://github.com/cyprus-developer-community/events/issues/52
LOCATION:Costa Coffee Protaras
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Famagusta
ORGANIZER;CN=msimou
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT1H30M
END:VEVENT
BEGIN:VEVENT
UID:lMeyPUiNhHL6rswJ2wlO5
SUMMARY:Google I/O Extended 2023 Watch Party - Nicosia\, Cyprus
DTSTAMP:20241202T015918Z
DTSTART:20230510T160000Z
DESCRIPTION:I/O connects developers from around the world for thoughtful di
scussions\, hands-on learning with Google experts\, and a first look at Go
ogle’s latest developer products.\n\nGoogle Developer Group Cyprus is invi
ting you to a local Google I/O Extended event where tech enthusiasts and d
evelopers from the region will come together to watch live the Google I/O
2023 keynote.\n\nWhether you're a seasoned developer or a newcomer to the
tech scene\, the Google I/O Extended event is an excellent opportunity to
network with other like-minded individuals and learn about the latest deve
lopments in the Google developer ecosystem.\n\n**Agenda:**\n\n[More info &
RSVP](https://gdg.community.dev/events/details/google-gdg-cyprus-presents
-google-io-extended-2023-watch-party-nicosia-cyprus/)
URL:https://github.com/cyprus-developer-community/events/issues/53
LOCATION:Arabica Coffee House\, Strovolos\, Nicosia
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Nicosia
ORGANIZER;CN=MYerouPaleBlue
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT3H
END:VEVENT
BEGIN:VEVENT
UID:Y9kunOS1nzKtUW3SJPbx_
SUMMARY:Engineering leadership meetup #2: Case Study
DTSTAMP:20241202T015918Z
DTSTART:20230518T153000Z
DESCRIPTION:Venue: Wrike Office in Nicosia\n\nEntrance: Free\n\nDrinks and
Food: Free\n\nLanguage: English\n\nRegistration: <https://www.eventbrite.c
om/e/engineering-leadership-meetup-2-case-study-tickets-624309746257>\n\nW
elcome to the Wrike Engineering Leadership Meetup in Cyprus! This event is
designed for professionals who lead a team or manage an engineering depar
tment. Our goal is to provide a space where you can network and share your
experiences with fellow leaders.\n\nDuring our meetup\, we will cover a r
ange of topics that are relevant to your daily challenges. We will explore
techniques for motivating and developing your team members\, planning and
executing projects effectively\, working with junior specialists\, commun
icating with stakeholders\, and implementing tactical approaches.\n\nUnlik
e traditional conferences\, we will not have any "talking head" presentati
ons. Instead\, we will use conversational formats such as case studies and
live discussions to help you engage with the content on a deeper level. W
e believe that everyone has something valuable to contribute\, which is wh
y we will not be recording any videos. This will enable you to share your
failures\, mistakes\, and lessons learned without fear of judgment. Our go
al is to create a safe space where you can learn from each other\, develop
your leadership skills\, network\, and have fun.\n\nOur Experts:\n– [Va
sily Sozykin](https://www.linkedin.com/in/sozykin-vasily-b2b723104/) – Tec
hnical Engineering\, Wrike\n\n– [Askhat Urazbaev](https://www.linkedin.co
m/in/urazbaev/) – Agile Transformation Lead\, Exness\n\n– [Kirill Peskov]
(https://www.linkedin.com/in/kirillpeskov/) – Head of Development @ World
of Tanks\, Wargaming\n\n– Viktoria Dubrovskaja - Engineering manager @ UI
platform team\, inDrive\n\nHosts: [Ekaterina Rumiantseva](https://www.li
nkedin.com/in/ekaterina-rumiantceva/)\, Scrum master\, Wrike\, [Anton Anok
hin](https://www.linkedin.com/in/antonanokhin/)\, Head of Employer brandin
g\, Wrike.\n\nTopics to discuss:\n– To be announced shortly\n\nFollow us:
[www.wrike.com/techclub](https://www.wrike.com/techclub/)\nWrike TechClu
b newsletter: [www.wrike.com/subscription-techclub/](https://www.wrike.com
/subscription-techclub/)\nUpcoming events: [www.eventbrite.com/o/wrike-tec
hclub-27552199725](https://www.eventbrite.com/o/wrike-techclub-27552199725
)
URL:https://github.com/cyprus-developer-community/events/issues/54
LOCATION:Wrike Office
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Nicosia
ORGANIZER;CN=Wrike TechClub
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
END:VEVENT
BEGIN:VEVENT
UID:GUQ4kogZ-t8_axn0RcAr5
SUMMARY:CocoaHeads Cyprus: WWDC Keynote Watch Party
DTSTAMP:20241202T015918Z
DTSTART:20230605T150000Z
DESCRIPTION:Join us in Limassol for an event where we'll be watching the WW
DC keynote from Apple on a big screen. This is a great opportunity to witn
ess the latest innovations and updates from Apple. You'll have the chance
to discuss and exchange your thoughts with fellow developers. [Book your s
eats here](https://www.eventbrite.com/e/cocoaheads-cyprus-wwdc-keynote-wat
ch-party-0506-tickets-629888462347).
URL:https://github.com/cyprus-developer-community/events/issues/55
LOCATION:Rio cinemas\, Limassol
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Limassol
ORGANIZER;CN=Mike Klyuev
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT3H
END:VEVENT
BEGIN:VEVENT
UID:H0oBS9YOaDcFM1Y-mMID7
SUMMARY:Cyprus Kotlin User Group Meetup 13.06
DTSTAMP:20241202T015918Z
DTSTART:20230613T153000Z
DESCRIPTION:KUG Cyprus is for everyone who is interested in Kotlin. Doesn't
matter whether you're a beginner or an expert\, more into Android or Back
end - we all want to learn more about Kotlin and have some fun together! [
Book your place here](https://www.eventbrite.com/e/cyprus-kotlin-user-grou
p-meetup-1306-tickets-636457520577).\n\nAgenda\n18:30 - 19:00 - Gathering
& Intro\n19:00 - 19:45 - "Compose Multiplatform on iOS" by Nikita Lipsky (
Software Developer for Kotlin at JetBrains)\nAn overview of the exciting p
resent and future of Compose Multiplatform\, including live demos and how
to get started with the latest additions to the multiplatform UI framework
built by JetBrains.\n19:45 - 20:00 - Break & Networking\n20:00 - 20:45 -
TBA\n\nСFP\nWe are open to talk proposals. If you are interested in making
a Kotlin-related tech talk at this meeting\, please [fill in an issue her
e](https://github.com/Cyprus-Kotlin-User-Group/Cyprus-KUG/issues/new?assig
nees=oldtuna\\&labels=talk+proposal\\&projects=\\&template=talk-proposal.m
d\\&title=).
URL:https://github.com/cyprus-developer-community/events/issues/56
LOCATION:TBA
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Limassol
ORGANIZER;CN=Mike Klyuev
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT3H
END:VEVENT
BEGIN:VEVENT
UID:S04dDY-tMYvwO5hwJTuCx
SUMMARY:CDC Meet & Greet Limassol May
DTSTAMP:20241202T015918Z
DTSTART:20230525T160000Z
DESCRIPTION:Informal meet & greet to talk about the latest in software and
web development\, technology and science.
URL:https://github.com/cyprus-developer-community/events/issues/57
LOCATION:bono
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Michael サイトー 中村 Bashurov
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:ZB8Jq0rW4FhgrUmhoPssm
SUMMARY:CDC Meet & Greet Limassol June
DTSTAMP:20241202T015918Z
DTSTART:20230629T160000Z
DESCRIPTION:Informal meet & greet to talk about the latest in software and
web development\, technology and science.
URL:https://github.com/cyprus-developer-community/events/issues/59
LOCATION:bono
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Michael サイトー 中村 Bashurov
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:qmhk_Dlqr5743-8piZOaC
SUMMARY:Lightning talks by first time speakers - Nicosia
DTSTAMP:20241202T015918Z
DTSTART:20230713T170000Z
DESCRIPTION:Hello everyone! 🙌\n\nWe're thrilled to announce our upcoming s
oftware development meetup event\, specifically tailored for first-time sp
eakers.
URL:https://github.com/cyprus-developer-community/events/issues/63
LOCATION:Arabica Strovolos
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Nicosia
ORGANIZER;CN=Vasilis Nicolaou
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:xaBZgqa-MMH4cc7hcHFpX
SUMMARY:CDC Paphos Meet & Greet
DTSTAMP:20241202T015918Z
DTSTART:20230727T160000Z
DESCRIPTION:![image](https://github.com/cyprus-developer-community/events/a
ssets/611109/6f756ac4-1194-4702-afdc-aa0701fd8fe2)\n\ninformal get togethe
r to discuss the latest in technology and science\n\n<https://www.eventbri
te.com/e/cdc-meet-greet-paphos-tickets-512982904677>
URL:https://github.com/cyprus-developer-community/events/issues/64
LOCATION:baracas-lounge
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Paphos
ORGANIZER;CN=Federico Rampazzo
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/ReDetection;CN=
Serg
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:xGx1hER-MLvrh8IZ341iO
SUMMARY:CDC Larnaka Meet & Greet
DTSTAMP:20241202T015918Z
DTSTART:20230804T160000Z
DESCRIPTION:Welcome to the Cyprus Developer Community! Join us for our Larn
aka meet & greet. Meet likeminded people\, discuss topics we would like to
hear about in upcoming talks\, welcome potential speakers\, discuss all t
hings tech and have fun!\n\n![CDC Larnaka](https://github.com/cyprus-devel
oper-community/events/assets/3581331/9c33984b-e49f-4a66-9445-f44308e93479)
URL:https://github.com/cyprus-developer-community/events/issues/65
LOCATION:brewery
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Larnaka
ORGANIZER;CN=Nicholas Verban
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:cV_lphDcSLxqVMmPayOXZ
SUMMARY:CDC Meet & Greet Limassol July
DTSTAMP:20241202T015918Z
DTSTART:20230727T160000Z
DESCRIPTION:Informal meet & greet to talk about the latest in software and
web development\, technology and science. Registration <https://www.eventb
rite.com/e/cdc-meet-greet-limassol-tickets-510469466917>
URL:https://github.com/cyprus-developer-community/events/issues/66
LOCATION:bono
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Michael サイトー 中村 Bashurov
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:UMWfobtUhPZjkDscHdLnj
SUMMARY:CDC Paphos Meet & Greet August 2023
DTSTAMP:20241202T015918Z
DTSTART:20230824T160000Z
DESCRIPTION:![изображение](https://github.com/cyprus-developer-community/ev
ents/assets/5837296/528716ea-a59a-41dc-a30f-77f642c25a3f)![image](https://
media.discordapp.net/attachments/912289256154734602/1134194307042127983/IM
G_4663.jpg)\n\nMeet and greet is an informal get together to discuss the l
atest in technology and science\, and just have a pleasant evening\n\nPlea
se sign up [on Eventbrite](https://www.eventbrite.ca/e/cdc-meet-greet-paph
os-tickets-512982944797)\, so we could book tables :)
URL:https://github.com/cyprus-developer-community/events/issues/67
LOCATION:Baracas Lounge\, Chloraka\, Paphos <https://goo.gl/maps/nwNByfDeq2
JNgyvQA>
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Paphos
ORGANIZER;CN=Alexandra Mirzuitova
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:-A9uX8XlysIarQX-5uk6D
SUMMARY:Google Cloud Next Keynote 2023 Watch Party
DTSTAMP:20241202T015918Z
DTSTART:20230829T153000Z
DESCRIPTION:Google Cloud Next connects developers from around the world for
thoughtful discussions\, hands-on learning with Google experts\, and a fi
rst look at Google’s latest developer products.\n\nGoogle Developer Group
Cyprus is inviting you to a local Google Cloud Next event where tech enthu
siasts and developers from the region will come together to watch live the
Google Cloud Next keynote.\n\nWhether you're a seasoned developer or a ne
wcomer to the tech scene\, the Google Cloud Next event is an excellent opp
ortunity to network with other like-minded individuals and learn about the
latest developments in the Google developer ecosystem.\n\nAgenda:\n\nThis
event is co-hosted with C2C\, the Google Cloud Customer Community.\n\n[RS
VP here](https://gdg.community.dev/events/details/google-gdg-cyprus-presen
ts-google-cloud-next-keynote-2023-watch-party-nicosia-cyprus/)
URL:https://github.com/cyprus-developer-community/events/issues/68
LOCATION:CECG Offices - Kyriakou Matsi 44\, 3rd floor\, Nicosia\, 1082
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Nicosia
ORGANIZER;CN=MYerouPaleBlue
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT4H
END:VEVENT
BEGIN:VEVENT
UID:kgSZ_khxnALZ271QB0vNB
SUMMARY:CDC Meet & Greet Limassol August
DTSTAMP:20241202T015918Z
DTSTART:20230831T160000Z
DESCRIPTION:Informal meet & greet to talk about the latest in software and
web development\, technology and science. Registration <https://www.eventb
rite.com/e/cdc-meet-greet-limassol-tickets-510469466917>
URL:https://github.com/cyprus-developer-community/events/issues/70
LOCATION:bono
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:
ORGANIZER;CN=Michael サイトー 中村 Bashurov
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:wZamCFz33SYlrNNTTnP-V
SUMMARY:CDC Software Freedom Day
DTSTAMP:20241202T015918Z
DTSTART:20230923T090000Z
DESCRIPTION:A day to celebrate Open Source and Technology!\n\nSubmitted top
ics:\n\nOther links:
URL:https://github.com/cyprus-developer-community/events/issues/71
LOCATION:pallikarides-paphos
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Paphos
ORGANIZER;CN=Federico Rampazzo
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/ReDetection;CN=
Serg
ATTENDEE;RSVP=TRUE;PARTSTAT=ACCEPTED;DIR=https://github.com/nikolask7;CN=Ni
kolas
DURATION:PT4H
END:VEVENT
BEGIN:VEVENT
UID:XDGLv7FNy_U1gH-Rcll5t
SUMMARY:GDG Tech Talks #1
DTSTAMP:20241202T015918Z
DTSTART:20231012T160000Z
URL:https://github.com/cyprus-developer-community/events/issues/72
LOCATION:Wrike Cyprus Ltd - 64 Kallipoleos\, Nicosia 1071
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Nicosia
ORGANIZER;CN=MYerouPaleBlue
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H30M
END:VEVENT
BEGIN:VEVENT
UID:jy4LpqXsQtP0YrokP4YeE
SUMMARY:CDC Meet & Greet Paphos September 2023
DTSTAMP:20241202T015918Z
DTSTART:20230928T160000Z
DESCRIPTION:![изображение](https://github.com/cyprus-developer-community/ev
ents/assets/5837296/528716ea-a59a-41dc-a30f-77f642c25a3f)![image](https://
media.discordapp.net/attachments/912289256154734602/1134194307042127983/IM
G_4663.jpg)\n\nMeet and greet is an informal get together to discuss the l
atest in technology and science\, and just have a pleasant evening\n\nPlea
se sign up [on Eventbrite](https://www.eventbrite.ca/e/cdc-meet-greet-paph
os-tickets-512982944797)\, so we could book tables :)
URL:https://github.com/cyprus-developer-community/events/issues/75
LOCATION:Baracas Lounge\, Chloraka\, Paphos <https://goo.gl/maps/nwNByfDeq2
JNgyvQA>
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Paphos
ORGANIZER;CN=Federico Rampazzo
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:lVX_McGQbRCyGqAKRlL0H
SUMMARY:CDC Meet & Greet Limassol September
DTSTAMP:20241202T015918Z
DTSTART:20230928T160000Z
DESCRIPTION:Informal meet & greet to talk about the latest in software and
web development\, technology and science. Registration <https://www.eventb
rite.com/e/cdc-meet-greet-limassol-tickets-510469476947>
URL:https://github.com/cyprus-developer-community/events/issues/76
LOCATION:bono
STATUS:CONFIRMED
CATEGORIES:Event :sparkles:,Approved :white_check_mark:,Limassol
ORGANIZER;CN=Michael サイトー 中村 Bashurov
X-MICROSOFT-CDO-BUSYSTATUS:BUSY
DURATION:PT2H
END:VEVENT
BEGIN:VEVENT
UID:XfS093_P52CMbp8Mhrs_m
SUMMARY:CDC Meet & Greet Paphos October 2023
DTSTAMP:20241202T015918Z
DTSTART:20231026T160000Z