-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault-firebase-data.json
More file actions
2133 lines (2133 loc) · 108 KB
/
default-firebase-data.json
File metadata and controls
2133 lines (2133 loc) · 108 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"blog": {
"c4p": {
"title": "We're looking for speakers",
"brief": "IWD istanbul was announced, for the sixth year in a row, the conference will bring together 500 developers, managers and...",
"published": "2019-02-04",
"backgroundColor": "#3647a5",
"source": "/data/posts/2017-02-12-c4p.md",
"image": "https://pbs.twimg.com/media/Dyj5TQ8WsAAgZfb.jpg:large",
"content": "Baharın en güzel gününde bizimle olmak istediğini duyar gibiyiiiiz 🤩Senin için güzel bir haberimiz vaaaar🔥#IWD19 için CFP açıldı!Hadi hemen aşağıdaki formu doldur! 🌟 Unutma, 1 Mart akşamı formumuz kapanacak ⏳ PS: Kadın/Erkek tüm başvuruları bekliyoruz! https://buff.ly/2G8qVXV "
}
},
"gallery": [
"https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fgallery%2Fimg_4185.jpg?alt=media&token=ff3fd161-3d68-401a-90cd-74b90bd2a4d8",
"https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fgallery%2Fimg_4411.jpg?alt=media&token=7fda0d66-a631-4816-bd85-b93ef49ed3a6",
"https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fgallery%2Fimg_4577.jpg?alt=media&token=f14205b5-be75-447c-8bca-73a15ca2df41",
"https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fgallery%2Fimg_4525.jpg?alt=media&token=0428f0e3-fda0-4119-8249-69f98e936ce5",
"https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fgallery%2Fimg_4611.jpg?alt=media&token=b080143c-161c-4d9f-96f3-ebb6bdcdfd95",
"https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fgallery%2Fimg_4720.jpg?alt=media&token=75de0c2d-8bd9-48bb-9117-1349c9bc381f",
"https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fgallery%2Fimg_4646.jpg?alt=media&token=eafb0320-6f21-47bc-8ba4-8eec708f2076",
"https://firebasestorage.googleapis.com/v0/b/hoverboard-experimental.appspot.com/o/images%2Fgallery%2Fimg_5294.jpg?alt=media&token=72ab5141-d21b-4e71-a58b-faa2b00d1d02"
],
"notifications": {
"config": {
"icon": "",
"timezone": "+03:00"
},
"messages": {},
"subscribers": {},
"test": {},
"users": {}
},
"partners": [
{
"logos": [
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/google.png?alt=media&token=29967743-e249-47f4-bf47-1184a9047c85",
"name": "Google",
"url": "https://about.google/intl/en/"
}
],
"order": 1,
"title": "General Sponsor"
},
{
"logos": [
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/Accenture.png?alt=media&token=bfd35ec4-722e-4388-9790-de2dbeef0cbd",
"name": "Accenture",
"url": "https://www.accenture.com/us-en"
}
],
"order": 0,
"title": "Platinum Sponsor"
},
{
"logos": [
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/adesso.png?alt=media&token=ffa7a8c5-eefb-4083-baa1-4fbd2f3652f0",
"name": "Adesso",
"url": "https://www.adesso.com.tr/en/index-3.jsp"
},
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/adphorus.png?alt=media&token=2142401f-2dac-4eed-97ed-33ccb60858f4",
"name": "Adphorus",
"url": "https://adphorus.com/"
},
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/iyzico.jpg?alt=media&token=97c02555-ac91-445f-bcb7-9b24adf42876",
"name": "iyzico",
"url": "https://www.iyzico.com/"
},
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/vestel-kirmizi-logo-buyuk.png?alt=media&token=2da97590-a909-4ee2-9d09-c1b1afa319c6",
"name": "Vestel",
"url": "http://www.vestel.com.tr/"
}
],
"order": 2,
"title": "Silver Sponsor"
},
{
"logos": [
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/vngrs_red_logo.svg?alt=media&token=6772232d-6079-4933-bfcb-13fca0a4c24a",
"name": "VNGRS",
"url": "https://vngrs.com/"
}
],
"order": 3,
"title": "Bronze Sponsor"
},
{
"logos": [
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/boomset.png?alt=media&token=9a30c90d-efc3-4ae6-bcd4-9a2a0cbd8ee7",
"name": "Boomset",
"url": "https://boomset.com/"
}
],
"order": 4,
"title": "Check-In & Badging"
},
{
"logos": [
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/robotistan.png?alt=media&token=d67f1672-43aa-4702-b1ef-d7bba46b8d46",
"name": "Robotistan",
"url": "https://www.robotistan.com/"
}
],
"order": 5,
"title": "Gift Sponsor"
},
{
"logos": [
{
"order": 0,
"logoUrl": "../images/logos/gdg-lviv.svg",
"name": "GDG Lviv",
"url": "https://plus.google.com/102444623953913144164"
}
],
"order": 10,
"title": "Template Creator"
},
{
"logos": [
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/cloudfunctioncode.appspot.com/o/sendloop-logo-3.png?alt=media&token=b0a7f48b-d456-488d-9c44-6b52778d1eef",
"name": "Sendloop",
"url": "https://firebasestorage.googleapis.com/v0/b/cloudfunctioncode.appspot.com/o/sendloop-logo-3.png?alt=media&token=b0a7f48b-d456-488d-9c44-6b52778d1eef"
}
],
"order": 9,
"title": "Mail Provider"
},
{
"logos": [
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/gdgistanbul.png?alt=media&token=5ba96b89-4231-40c2-b1eb-4da9b5797c20",
"name": "GDG İstanbul",
"url": "https://gdg.ist"
},
{
"order": 0,
"logoUrl": "https://pbs.twimg.com/profile_images/993460867126751234/NF7joSq9_400x400.jpg",
"name": "Agile Turkey",
"url": "http://www.agileturkey.org/"
},
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/devopsdayslogo.jpg?alt=media&token=610ecb49-0bde-4b0d-bf98-70bbd2ad9005",
"name": "Devops Turkey",
"url": "https://devopsturkey.org/"
},
{
"order": 0,
"logoUrl": "https://pbs.twimg.com/profile_images/927980955859595264/PHVeUp0o.jpg",
"name": "Hackathon Türkiye",
"url": "https://hackathonturkiye.com/"
},
{
"order": 0,
"logoUrl": "https://cdn-images-1.medium.com/max/1200/1*npG6TSVVycocWjdCJmBcrA.png",
"name": "Ns Istanbul",
"url": "http://www.nsistanbul.com/"
},
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/serverlessturkey.png?alt=media&token=5f937a51-759c-4123-b1d9-90ba414e7e93",
"name": "Serverless Turkey",
"url": "https://www.meetup.com/tr-TR/Serverless-Turkey/"
},
{
"order": 0,
"logoUrl": "http://devnot.com/wp-content/uploads/2016/01/devnot-logo-370x223.png",
"name": "Devnot istanbul",
"url": "http://devnot.com/"
},
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/ZoneApp.jpeg?alt=media&token=c27de89d-17e5-4e8a-8097-7cd523263e0d",
"name": "Zone App",
"url": "#"
},
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/kadin-yazilimci.png?alt=media&token=e00230c0-8da2-4986-8ec4-367d38df96fb",
"name": "Kadın Yazılımcı",
"url": "#"
},
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/mondayhero.png?alt=media&token=c6a8f5d3-2cc2-42c6-a3a1-fd34b4a4ae29",
"name": "MondayHero",
"url": "http://www.gomondayhero.com/"
},
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/KreatifBiri.png?alt=media&token=83dc21c8-7f37-4a56-8cbb-6c7e0d50e796",
"name": "KreatifBiri",
"url": "https://www.kreatifbiri.com/"
}
],
"order": 7,
"title": "Community Partners"
},
{
"logos": [
{
"order": 0,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/500x560pk.jpg?alt=media&token=e9b38240-de70-404d-8e0a-896dcd8717f7",
"name": "HardwarePlus",
"url": "https://hwp.com.tr"
},
{
"order": 1,
"logoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/indir.png?alt=media&token=61ae964a-dde7-4381-8755-9ebbab6f23eb",
"name": "indir.com",
"url": "https://www.indir.com"
}
],
"order": 8,
"title": "Press Partners"
}
],
"schedule": {
"2019-03-23": {
"date": "2019-03-23",
"tracks": [
{
"title": "Menekşe"
},
{
"title": "Papatya (Salon A)"
},
{
"title": "Defne (Salon B)"
},
{
"title": "Kardelen (Workshop)"
}
],
"dateReadable": "March 23",
"timeslots": [
{
"startTime": "09:00",
"endTime": "10:00",
"sessions": [
{
"items": [
141
]
}
]
},
{
"startTime": "10:00",
"endTime": "11:00",
"sessions": [
{
"items": [
142
]
}
]
},
{
"startTime": "11:10",
"endTime": "11:50",
"sessions": [
{
"items": [
143
]
},
{
"items": [
172
]
},
{
"items": [
144
]
},
{
"items": [
170
]
}
]
},
{
"endTime": "12:40",
"startTime": "12:00",
"sessions": [
{
"items": [
145
]
},
{
"items": [
146
]
},
{
"items": [
147
]
},
{
"items": [
169
]
}
]
},
{
"endTime": "13:30",
"startTime": "12:40",
"sessions": [
{
"items": [
149
]
}
]
},
{
"endTime": "14:10",
"startTime": "13:30",
"sessions": [
{
"items": [
150
]
},
{
"items": [
151,
152
]
},
{
"items": [
153
]
},
{
"items": [
148
],
"extend": 2
}
]
},
{
"endTime": "15:00",
"startTime": "14:20",
"sessions": [
{
"items": [
154
]
},
{
"items": [
155
]
},
{
"items": [
156
]
}
]
},
{
"startTime": "15:00",
"endTime": "15:20",
"sessions": [
{
"items": [
171
]
}
]
},
{
"startTime": "15:20",
"endTime": "16:00",
"sessions": [
{
"items": [
157
]
},
{
"items": [
158
]
},
{
"items": [
159
]
},
{
"items": [
148
]
}
]
},
{
"endTime": "16:30",
"startTime": "16:10",
"sessions": [
{
"items": [
161
]
},
{
"items": [
162
]
},
{
"items": [
163
]
},
{
"items": [
160
]
}
]
},
{
"endTime": "16:50",
"startTime": "16:30",
"sessions": [
{
"items": [
164
]
},
{
"items": [
165
]
},
{
"items": [
168
]
},
{
"items": [
160
]
}
]
},
{
"endTime": "17:40",
"startTime": "17:00",
"sessions": [
{
"items": [
166
]
}
]
},
{
"sessions": [
{
"items": [
167
]
}
],
"endTime": "18:05",
"startTime": "17:40"
}
]
}
},
"sessions": {
"140": {
"description": "YAKINDAA..",
"title": "YAKINDAA..",
"language": "English | Turkce"
},
"141": {
"description": "Register | Kayıt",
"title": "Register | Kayıt",
"language": "English | Turkce"
},
"142": {
"description": "Keynote | Açılış",
"title": "Keynote | Açılış",
"language": "English | Turkce"
},
"143": {
"complexity": "Intermediate",
"description": "Whether your app is mobile, web, or cloud native, Google Cloud Platform (GCP) has an entire suite of serverless tools that can help. What is serverless? It means cloud power available instantly and transparently, without having to create any virtual machines or manage scaling or application runtimes. See how GCP and serverless can make your app's backend more powerful, cheaper, and easier to build and manage. We'll explore compute products like Google Cloud Functions, big data tools, like Firestore and BigQuery, and machine learning tools that can connect to build entire systems (web, mobile, and cloud) that run purely serverless!",
"language": "Turkish",
"speakers": [
"PamirErdem",
"PinarUgurluKirazci"
],
"tags": [
"Cloud"
],
"title": "Building serverless applications with Google Cloud"
},
"144": {
"complexity": "Intermediate",
"description": "Mikroservislerin son yıllardaki popülerliği ve monolitik korku döngüsü, yazılım alanındaki uzmanların bir uygulama geliştirmeye başlarken direkt mikroservis mimarisi kurmaya çalışmasına neden olmaktadır. Oysa başlangıç olarak monolitik bir uygulama ile başlamak ve sonrasında doğru zamanda 'domain driven design' prensipleri ile mikroservisleri modellemek ve mimariyi kurgulamak türlü başarısızlık senaryolarını engellemekte anahtar noktadır. Bu konuşmada, monolitik bir uygulamanın mikroservis mimarisine geçişini anlatırken; mikroservislerin artıları ve eksilerine, doğru ekip/zaman parametresine, mimari ve tasarım aşamasında dikkate alınması gereken kavramlara, mimari seviyedeki tasarım desenlerine değinmeyi ve bu yolculukta iyzico olarak neler öğrendiğimizi anlatmayı hedefliyorum.",
"language": "Turkish",
"speakers": [
"GulCabukKeskin"
],
"tags": [
"domain driven design",
"microservices communication",
"error handling",
"architectural patterns",
"data consistency",
"microservice resiliency",
"centralized logging",
"monitoring"
],
"title": "From monolith to microservices and beyond"
},
"145": {
"complexity": "Intermediate",
"description": "A Journey to DevOps",
"language": "Turkish",
"speakers": [
"FilizGokce"
],
"tags": [
"Mobile Technologies",
"IoT",
"DevOps"
],
"title": "A Journey to DevOps"
},
"146": {
"complexity": "Beginner",
"description": "Makine Öğrenmesi Yapay Zeka ve Derin Öğrenme hakkında basit karşılaştırmalar ve işleyişi. ",
"language": "Turkish",
"speakers": [
"TufanKupeli"
],
"tags": [
"Machine Learning",
"AI"
],
"title": "AI vs Machine Learning Vs Deep Learning"
},
"147": {
"complexity": "Intermediate",
"description": "Kotlin Java ile birlikte calisabilse de Mockito Kotlin dilinin tüm mocklama ihtiyaçlarını karşılamıyor. Kotlin'de en çok kullanılan mocklama kütüphanesi olan MockK'den bahsedeceğim.",
"language": "Turkish",
"speakers": [
"HadiTok"
],
"tags": [
"Mobile Technologies"
],
"title": "Kotlin'de mocklama ve MockK"
},
"148": {
"complexity": "Beginner",
"description": "Google Asistan'ın yapabilecekleri ve geleceği ile ilgili kısa bir giriş yaptıktan sonra Asistan'a özellik ekleme veya uygulama geliştirme olarak da isimlendirilebilecek Action geliştirme konusunu, örnek projeler üzerinde anlatacağım. Özellikle Firebase Cloud Functions ve Dialogflow kullanarak kendi web servislerini sesli bir arayüze açarak kullanıcılarına daha iyi bir deneyim sunmak isteyen geliştiriciler için uygulama ve action geliştirirken hangi açılardan farklı düşünmek gerekir gibi soruları yanıtlayacağım. Google Asistan'a Action geliştirmenin artı ve eksi yönlerinden bahsedip, Action publish edenlerin kabul edildiği Actions On Google Community Program ile ilgili bilgi vereceğim.",
"language": "Turkish",
"speakers": [
"YukselTolun",
"MerveBasak"
],
"tags": [
"Mobile Technologies",
"Voice User Inferfaces"
],
"title": "Building Actions For The Google Assistant"
},
"149": {
"description": "Öğle arası | Lunch",
"title": "Lunch | Öğle arası",
"language": "English | Turkce"
},
"150": {
"complexity": "Intermediate",
"description": "Imagine you have plans to start your own technology company. You have interesting ideas and strong opinions for the success. You have, or your partners have passion and endless energy for coding and building products. What else do you need? How can a startup born, grow, scale and succeed? Are startups great places to work, or simply blackholes where chaos and burn-out define the rules? In this session, Lemi will talk about how we can build a technology company from nothing and make it scale gradually by continuously keeping its agility at desired levels.",
"language": "Turkish",
"speakers": [
"LemiOrhanErgin"
],
"tags": [
"Entrepreneurship",
"Leadership"
],
"title": "How to Build a Technology Company"
},
"151": {
"complexity": "Beginner",
"description": "Sunumda öncesinde Arduino Lilypad ve Raspberry Pi Zero'dan kısaca bahsedip ardından onlarla yapılmış örnek projelere yer vereceğim. Ardından kendi projelerimi anlatacağım. Devamında 'Giyilebilir Teknolojide Kadın Hareketinden' kısaca bahsedip ilgi duyanlar için başlangıç projeleriyle ilgili örnek linkler/projeler/etkinlikler göstererek sunumumu bitireceğim.",
"language": "Turkish",
"speakers": [
"HilalGungor"
],
"tags": [
"STEM",
"E-Textiles",
"Wearable Tech"
],
"title": "Arduino ile E-Textiles & Giyilebilir Teknoloji Projeleri"
},
"152": {
"complexity": "Beginner",
"description": "Swift programlama dilindeki Enumeration'ların güçlü özellikleri ve bunların günlük hayattaki kullanım örneklerinden bahsedeceğim.",
"language": "Turkish",
"speakers": [
"SemaSancar"
],
"tags": [
"Web Technologies"
],
"title": "Powerful Enums in Swift"
},
"153": {
"complexity": "Beginner",
"description": "Bir Android uygulamasi gelistirmeye baslarken verilmesi gereken kritik kararlar vardir? Kotlin mi kullansak Java mi? Test yazalim mi yoksa Google Play'e direk atalim, sonra bir ara mi yazalim? Data binding mi? Cok gerek yok sanki(!)... ve daha fazlasi icin bakalim dogru karari verebilecek misin?",
"language": "Turkish",
"speakers": [
"BurcuYalcinkaya"
],
"tags": [
"Mobile Technologies"
],
"title": "Interactive Android Application"
},
"154": {
"complexity": "Advanced",
"description": "Technological improvement totally depends on internet infrastructure of a country Turkey's widespread fiber investments are enough to jump in a developed countrys' scale or we need to look in a different way? Connectivity-aided economic growth offers greater possibilities and prosperity for all sectors of society. If all stakeholders work together on evidence-based strategies to achieve it, while minimizing disruption, Turkey can hasten a highly connected future that benefits everyone So, we need to speak connectivity first rather than popular topics like AI, IoT or Cloud because fiber or mobile investments supports or creastes those Technologies first My session will bring a different angle to participants' mind and for country's sake they will think what we have to do or request in near future",
"language": "Turkish",
"speakers": [
"İlknurCiftcibasi"
],
"tags": [
"Mobile Technologies"
],
"title": "Turkey's Internet Capabilities though Technology"
},
"155": {
"complexity": "Advanced",
"description": "In this talk, I'll talk about basic concepts of Angular and get down to business immediately! We'll go through couple steps. First, we'll create an Angular app using Angular CLI. Then, we'll create our modules, components, services. Finally, we'll use Angular Firebase to glue everything together. Once our app is ready, we'll build it and deploy it to Firebase Hosting to test it together live!",
"language": "Turkish",
"speakers": [
"BunyaminCoskuner"
],
"tags": [
"Web Technologies",
"Firebase",
"Cloud"
],
"title": "Building realtime messaging app with Angular and Firebase "
},
"156": {
"complexity": "Advanced",
"description": "As a Scrum Master and a Product Owner, we want share our stories about how we applied Scrum during a Mobile Application Project which is now available on Apple and Google Play Stores. We will also talk about our personal journey of turning our career paths towards Agile.",
"language": "Turkish",
"speakers": [
"YaseminDemirdelen",
"PeymanTayilga"
],
"tags": [
"Web Technologies",
"Firebase",
"Cloud"
],
"title": "Scrum Fighters: Adventures of a Scrum Team on a Mobile Application Project"
},
"157": {
"complexity": "Advanced",
"description": "Is 'industrial software' any different than usual software? Do “IoT solutions” really solve anything? How to deal with the ridiculously complex problems that come with IoT and industry 4.0 (or industry *.*)? How to survive in all this chaos as a software architect?",
"language": "Turkish",
"speakers": [
"KezbanBayir"
],
"tags": [
"IoT",
"Cloud",
"Software Architecture",
"Software Career"
],
"title": "IoT, Industrial Software and Survival Guide of a Software Architect"
},
"158": {
"complexity": "Beginner",
"description": "In the technology sector, we are all going through similar paths. We make mistakes, we learn, we try, we make mistakes again.. In this session, I will talk about what should be done for a better career journey. I will also share the work I do with the Jedi Masters of the sector. Who wouldn't want to learn advice and tactics to be a better developer? Even if you are a senior developer..",
"language": "Turkish",
"speakers": [
"SezgiSensoz"
],
"tags": [
"Leadership",
"career guide"
],
"title": "How to be a Jedi Master: Journey from Padawan to Master"
},
"159": {
"complexity": "Beginner",
"description": "I am 12 years old for four years now I have been coding and building robots.This year I built a guide dog robot for visually impaired people, my robot dog iC4U and I won the first prize in the hardware category at Coderdojo's International Coolest Projects 2018 and we were also one of the 5 finalists in the open innovation category of the European Youth Awards 2018. I am now working on the second version of my robot guide dog that has AI features such as image processing and voice control. Whilst doing this I am learning python, tensor flow and how to use google AIY kits. I am also in the process of building a new robot for 2019 robotic competitions. ",
"language": "Turkish",
"speakers": [
"SelinAlaraOrnek"
],
"tags": [
"Robotics",
"AI"
],
"title": "#ibuildrobots - My journey of building robots"
},
"160": {
"complexity": "Beginner",
"description": "Well-designed animations makes a UI feel more intuitive, contribute to the slick look and feel of a polished app, and improve the user experience. Flutter’s animation support makes it easy to implement a variety of animation types. Many widgets, especially Material widgets, come with the standard motion effects defined in their design spec, but it’s also possible to customize these effects. On my presentation, I will talk about animation types and how we can implement this animations with code examples.",
"language": "Turkish",
"speakers": [
"SercanYusuf",
"UmitDuran"
],
"tags": [
"Mobile Technologies"
],
"title": "Animations On Flutter"
},
"161": {
"complexity": "Intermediate",
"description": "Artık karar mekanizmalarının bir kısmının bile teknolojiye devredildiği dijital çağda , şirket organizasyon yapıları, iş yapış şekilleri , çalışan profilleri ve motivasyonları baştan aşağı değişti. Düşünülenin aksine , insana olan ihtiyacın azalmayıp arttığı, duygusal zekanın analitik zeka ile aynı hatta bazen çok daha yüksek bir öneme sahip olduğu günümüz iş dünyasında , efektif bir lider inovatif teknolojileri insanlara -hem çalışanlar hem müşteriler hem de iş ortakları ve paydaşlar- hizmet ettirmeyi başarabilmelidir. ",
"language": "Turkish",
"speakers": [
"YelizTurunc"
],
"tags": [
"Mobile Technologies",
"Machine Learning & AI",
"Entrepreneurship",
"Leadership"
],
"title": "Dijital Çağda Liderlik"
},
"162": {
"complexity": "Intermediate",
"description": "In our daily lives, we often face different scale of problems and may not be solving them efficiently or may not be solving them at all, can we can change this around and create more practical, faster and sustainable solutions, by design? What makes an app easy to use, a poster starring, a pair of pants comfortable or a building available for us, the end user, is the design process behind them. As design touches every aspect of our lives, why not use its thinking methods for improving our personal lives as well as professions?",
"language": "Turkish",
"speakers": [
"EceEyisoy"
],
"tags": [
"Design",
"Leadership",
"Design Thinking"
],
"title": "Keep Calm Start Design Thinking"
},
"163": {
"complexity": "Beginner",
"description": "Bu oturumda test mühendisliğine giriş ve sonrasında yaşanan problemlere nasıl çözüm üretebiliriz, doğan ihtiyaçları nasıl karşılarız, test otomasyonu ne zaman gereklidir/ne kadar gereklidir, mobil test otomasyonuna en hızlı girişi nasıl yapabiliriz ve sonrasında kullandığımız teknolojinin değişmesi gerekiyor mu kararını nasıl veririz, bize en uygun teknolojiyi nasıl buluruz ve nasıl teknoloji değiştiririz konularından bahsedeceğim. Spesifik olarak android test automation ve toolları hakkında bilgilendirme yapacağım.",
"language": "Turkish",
"speakers": [
"GizemSaruhan"
],
"tags": [
"Mobile Technologies"
],
"title": "Mobile Test Automation"
},
"164": {
"complexity": "Beginner",
"description": "Yapay Zekanin hayattan ve farkli endustrilerden ornekleriyle ne oldugunu, ve bu konuda calismak icin neler ‘gerektigini’ konusacagiz. Everday examples of AI, basics. How to pursue a career in AI as a woman tech maker",
"language": "Turkish",
"speakers": [
"MerveCerit"
],
"tags": [
"Mobile Technologies"
],
"title": "Yapay Zeka ve Uygulamalari ( AI and its applications)"
},
"165": {
"complexity": "Intermediate",
"description": "Dijital Yıkım(Digital Distruption) artık büyük, küçük bütün kurumları hatta endüstrileri etkiliyor. Teknoloji ve inovasyonun hızlanması ile birlikte kullanıcı davranışları ve kullanıcıların markalara bakışları değişti. Google anında her sorumuza cevap veriyor, sosyal medya real time güncellemeleri ile “always –on” kültürünü yarattı ve artık herkes 7/24 hizmet bekler hale geldi. Profesyonelleşmiş ve varsayılanın üzerinde hizmet bekleyen müşteriyi elde tutmak güçleşti. Artık sürdürülebilir başarı ve hatta hayatta kalmak için dijitalleşme ve bütün iş alanlarında çevik yönetim bakış açısı şart(agile mindset). Kısacası müşteri deneyimini mükemmelleştirmek için sadece yazılım alanında değil, kurumun her yerinde hızlı karar alma ve uygulamak gerekli. Şirket büyümesinde istikrar, güvenilirlik, çeviklik ve hız istiyorsak kurum içinde değişim ajanlarına ve çevik liderlere ihtiyacımız var.",
"language": "Turkish",
"speakers": [
"GizemMoralKunter"
],
"tags": [
"Leadership"
],
"title": "Agile Leadership"
},
"166": {
"complexity": "Intermediate",
"description": "Açık Mutfak",
"language": "Turkish",
"speakers": [
"ErolKaftanoglu",
"OrcunKilic",
"SelinTunc",
"ArdaArican"
],
"tags": [
"Development",
"Design",
"GDGIstanbul",
"Tasarım Mutfağı"
],
"title": "Merge with Design and Software"
},
"167": {
"complexity": "Beginner",
"description": "Kapanış | Closed Keynote, Çekiliş ",
"language": "Turkish",
"speakers": [],
"tags": [
"GDGIstanbul"
],
"title": "Kapanış | Closed Keynote "
},
"168": {
"complexity": "Beginner",
"description": "Merak, soru sormak ve bilim! peki ya bilim insanı değilsek bize neden bilim lazım? Bu sorularla bilim hakkında daha fazla soru sormamız için bu konuşmayı hazırladım. Evet konuşmanın amacı cevaplar vermekten çok daha fazla düşünmek ve sormak. Çünkü herşey bir soru sorarak başlar.Merak, insanlığın en temel yaşamsal özelliklerinden biridir. Özellikle çocukluk çağında önplandadır. Yetişkinlikteyse daha seçici ve sofistike bir hal alarak hayatımıza dahil olur. Çocuklar gökyüzü neden mavi diye merak ederken, yetişkinler uçaklardan neden gaz bulutu çıktığını merak ederler. Merak etme süreci soru sormayı da beraberinde getirir. Etraflarındaki şeylere göre, neden, nasıl, nerede, kim, ne soruları ilk akla gelenlerdir. Bilim, insanlığın evreni anlama çabasında günümüzde kullandığı en sistematik yaklaşımdır. Belli bir disiplin ve çalışma yöntemiyle etrafımızı keşfetmemizin ismidir de diyebiliriz. Bilim soru sorarak araştırmaya başlar. Sorularına ise belli bir düzen içinde yapılmış araştırmalarla cevap vermeye çalışır. Ancak her yeni cevap, kendisiyle birlikte yeni başka sorular getirir. Bu süreçlerin tamamına bilim deriz.Peki neden bilim herkese lazım? Soru sormak ve etrafı keşfetmek en temel içgüdülerimizden biri. Bu keşif süreciniyse şu anda en iyi ortaya koyuş yöntemlerimizden biri de bilim.",
"language": "Turkish",
"speakers": [
"ElcinEksi"
],
"tags": [
"STEM"
],
"title": "Bilim Herkese Lazım!"
},
"169": {
"complexity": "Beginner",
"description": "If you are into mobile development, you probably heard of Flutter. It's the new kid in the block and offers you a native cross-platform development environment. Even before the stable version, big companies like Alibaba decided to move their applications to Flutter. After it became stable, it got even more attention.One of the mottos of the Flutter was 'Developing beautiful applications in record time'. As we all know, for building a beautiful application, we need to understand the theming and how it works in platforms. In this talk we are going to talk about the base concepts of theming, how you can implement theming in Flutter by following the Material Guidelines and see how we can create a beautiful application.",
"language": "Turkish",
"speakers": [
"MuhammedSalihGuler"
],
"tags": [
"Flutter"
],
"title": "Mastering the Theming in Flutter"
},
"170": {
"complexity": "Beginner",
"description": "Global arenada daha fazla kazanç, daha önemli projeler ve daha kilit müşterilerle çalışmayı isteyen kadın yazılımcılardan İngilizce bilgisi olarak ne bekleniyor? Bu becerileri elde etmenin alternatif yolları nelerdir? Nasıl başarılı olabilirsiniz?",
"language": "Turkish",
"speakers": [
"SudoSpeak"
],
"tags": [
"Speaking"
],
"title": "İngilizce Ama Ne? İngilizce Ama Ne kadar?"
},
"171": {
"complexity": "Begineer",
"description": "Break Timeee!",
"language": "Turkish",
"speakers": [],
"tags": [
"GDGIstanbul"
],
"title": "Break Timeee!"
},
"172": {
"complexity": "Begineer",
"description": "Biz Vestel olarak tek gün değil her gün kadın konularının gündeme gelmesini arzu ediyor ve bunun için ses çıkarmaya devam ediyoruz. Toplumda önceliğin “ toplumsal cinsiyet eşitliği”olduğunu biliyoruz. Ancak kadın konuları türkiye’de halen bugün sorun olduğu için biz pozitif ayrımcılık ile 8 mart’ı bir değil her gün gündeme taşıyoruz. ",
"language": "Turkish",
"speakers": [
"FEZATURUNCOGLU"
],
"tags": [
"VESTEL",
"Woman Tech"
],
"title": "VESTEL 365 Gün Kadınlar Günü"
}
},
"speakers": {
"PamirErdem": {
"bio": "Jr. Developer",
"company": "Academand",
"companyLogoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/academand.jpg?alt=media&token=8dca4816-3f78-4069-95bf-eaab2116cbbe",
"country": "Turkey",
"featured": true,
"name": "Pamir Erdem",
"title": "Solutions Architect",
"photoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/pamir_erdem.jpg?alt=media&token=f4e2055b-7683-4110-9cec-bc50f0556e7e",
"shortBio": "Jr. Developer",
"socials": [
{
"icon": "github",
"link": "http://github.com/pamir",
"name": "Github"
}
],
"tags": [
"Cloud"
]
},
"PinarUgurluKirazci": {
"bio": "Pinar was born in June 14, 1981 in Ankara, Turkey. She had her bachelor degree in Bilkent University Computer Engineering Department in 2002 and Masters of Business Administration from Bogazici University in 2006.Pinar started her career in IBM Turkey in September 2002 as a Developer Consultant then switched to Technical Presales and Software Architect roles. Pinar acts as a trusted advisor and dedicated client architect for strategic enterprise customers. Then joined HPE Software in December 2014 as a Software Business Consultant to develop the business in enterprise customers. Pinar has been part of enterprise scale digital transformation, application lifecycle management and devops related projects.After 15 years of broad IT experience; she joined Google as a Cloud Customer Engineer in August 2017. This proves that she has the passion for technical engineering roles and passion to learn. She is now taking active role in Cloud adoption and have special interest in serverless technologies.",
"company": "Google",
"companyLogoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/google.png?alt=media&token=29967743-e249-47f4-bf47-1184a9047c85",
"country": "Turkey",
"featured": true,
"name": "Pınar Uğurlu Kirazcı",
"title": "Cloud Customer Engineer",
"photoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/pinar_ugurlu_kirazci.jpg?alt=media&token=1f80d6a2-7ecb-4a50-8f2b-0a09ae290e2a",
"shortBio": "She is now taking active role in Cloud adoption and have special interest in serverless technologies.",
"socials": [
{
"icon": "linkedin",
"link": "https://www.linkedin.com/in/pinarugurlu/",
"name": "Linkedin"
}
],
"tags": [
"Cloud"
]
},
"TufanKupeli": {
"bio": "Mobil teknolojileri takip etmek ve güncel konularla çalışmaktan zevk alırım, şu anda adesso Turkey firmasında çalışıyorum ve Akbank lokasyonunda kurulu ekibimiz ile çalışmalarımıza devam ediyoruz.",
"company": "adesso Turkey",
"companyLogoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/adesso.png?alt=media&token=ffa7a8c5-eefb-4083-baa1-4fbd2f3652f0",
"country": "Turkey",
"featured": true,
"name": "Tufan Küpeli",
"title": "Mobile Competence Center Manager",
"photoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/tufan_kupeli.png?alt=media&token=7ae07fc9-0aad-4bca-9249-03475d2f874b",
"shortBio": "adesso Turkey firmasında çalışıyorum ve Akbank lokasyonunda kurulu ekibimiz ile çalışmalarımıza devam ediyoruz.",
"socials": [
{
"icon": "website",
"link": "http://www.tufankupeli.com",
"name": "Website"
}
],
"tags": [
"Mobile"
]
},
"SelinAlaraOrnek": {
"bio": " I am a 12 years old student at Özel Küçük Prens Ortaokulu. I love robotics, coding, technology and animals. I speak English, Turkish and French.",
"company": "Student",
"companyLogoUrl": "",
"country": "Turkey",
"featured": true,
"name": "Selin Alara Örnek",
"title": "Student",
"photoUrl": "https://firebasestorage.googleapis.com/v0/b/wtm19-site.appspot.com/o/selin_alara_ornek.jpeg?alt=media&token=81c1f66b-83ef-4515-b682-4fc0301bb67e",
"shortBio": "I love robotics, coding, technology and animals.",
"socials": [
{
"icon": "twitter",
"link": "https://twitter.com/Selinoid2",
"name": "Twitter"
},
{
"icon": "website",
"link": "https://selinoid.wordpress.com/",
"name": "Blog"
}
],
"tags": [
"Robotic"
]
},