-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2075 lines (2002 loc) · 103 KB
/
index.html
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
<!doctype html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" href="<%= require('./src/assets/favicons/favicon.ico') %>" >
<link rel="apple-touch-icon" href="<%= require('./src/assets/favicons/apple-touch-icon-180x180.png') %>" sizes="180x180">
<link rel="icon" type="image/png" href="<%= require('./src/assets/favicons/favicon-16x16.png') %>" sizes="16x16">
<link rel="icon" type="image/png" href="<%= require('./src/assets/favicons/favicon-32x32.png') %>" sizes="32x32">
<link rel="icon" type="image/png" href="<%= require('./src/assets/favicons/android-36x36.png') %>" sizes="36x36">
<link rel="icon" type="image/png" href="<%= require('./src/assets/favicons/android-48x48.png') %>" sizes="48x48">
<link rel="icon" type="image/png" href="<%= require('./src/assets/favicons/android-72x72.png') %>" sizes="72x72">
<link rel="icon" type="image/png" href="<%= require('./src/assets/favicons/android-96x96.png') %>" sizes="96x96">
<link rel="icon" type="image/png" href="<%= require('./src/assets/favicons/android-144x144.png') %>" sizes="144x144">
<link rel="icon" type="image/png" href="<%= require('./src/assets/favicons/android-192x192.png') %>" sizes="192x192">
<title lang="en">OpenTR | State of Open Source Contribution in Turkey</title>
<title lang="tr">OpenTR | Türkiye'de Açık Kaynağa Katkının Durumu</title>
<meta name="description" content="Bu rapor, Türkiye'de açık kaynağa katkının durumunu analiz etmektedir.">
<meta itemprop="name" content="OpenTR | Açık Kaynağa Katkı Raporu">
<meta itemprop="description" content="Bu rapor, Türkiye'de açık kaynağa katkının durumunu analiz etmektedir.">
<meta property="og:title" content="OpenTR | Açık Kaynağa Katkı Raporu" />
<meta property="og:description" content="Bu rapor, Türkiye'de açık kaynağa katkının durumunu analiz etmektedir." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://state.opentr.foundation/" />
<meta property="og:image" content="https://state.opentr.foundation/<%= require('./src/assets/opengraph-card.png') %>"/>
<meta property="og:site_name" content="OpenTR" />
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="https://state.opentr.foundation/<%= require('./src/assets/opengraph-card.png') %>"/>
<meta name="twitter:title" content="OpenTR | Açık Kaynağa Katkı Raporu"/>
<meta name="twitter:description" content="Bu rapor, Türkiye'de açık kaynağa katkının durumunu analiz etmektedir."/>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-B643D9JLP5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-B643D9JLP5');
</script>
</head>
<body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.8.5/d3.min.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-cloud/1.2.7/d3.layout.cloud.min.js" crossorigin="anonymous"></script>
<script>
MathJax = {
tex: {inlineMath: [['$', '$'], ['\\(', '\\)']], packages: {'[+]': ['color']}},
svg: {fontCache: 'global', displayAlign: 'left'},
// available colors: https://en.wikibooks.org/wiki/LaTeX/Colors#Predefined_colors
loader: {load: ['[tex]/color']},
};
</script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js" crossorigin="anonymous"></script>
<div class="container">
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="<%= require('./src/assets/logo.svg') %>"/>
<span>OpenTR</span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0" lang="en">
<li class="nav-item">
<a class="nav-link active" target="_blank" href="https://opentr.foundation">About OpenTR</a>
</li>
<li class="nav-item">
<a class="nav-link active" target="_blank" href="https://state.opentr.foundation/history.html"><i class="bi bi-clock-history"></i> Previous Reports</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
🇬🇧 English
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item turkish">🇹🇷 Türkçe</a></li>
</ul>
</li>
</ul>
<ul class="navbar-nav me-auto mb-2 mb-lg-0" lang="tr">
<li class="nav-item">
<a class="nav-link active" target="_blank" href="https://opentr.foundation">OpenTR Hakkında</a>
</li>
<li class="nav-item">
<a class="nav-link active" target="_blank" href="https://state.opentr.foundation/history.html"><i class="bi bi-clock-history"></i> Önceki Raporlar</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
🇹🇷 Türkçe
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item english">🇬🇧 English</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</div>
<div class="container content">
<h1 class="display-4">
<span lang="en">State of Open Source Contribution in Turkey</span>
<span lang="tr">Türkiye'de Açık Kaynağa Katkının Durumu</span>
</h1>
<p class="lead">
<!-- TODO: update with latest dates-->
<span lang="en">July 31, 2024</span>
<span lang="tr">31 Temmuz 2024</span>
</p>
<h1 class="display-6 section-header">
<span lang="en">1. Introduction</span>
<span lang="tr">1. Giriş</span>
</h1>
<p class="lead">
<span lang="en">
This report looks at data from GitHub and shows the stats related to GitHub usage in Turkey and the contributions from Turkey to open source.
</span>
<span lang="tr">
Bu rapor, GitHub'dan gelen verileri kullanarak Türkiye'deki GitHub kullanımı ve Türkiye'nin açık kaynağa katkıları ile ilgili istatistikleri göstermektedir.
</span>
</p>
<p class="lead">
<span lang="en">
We also talk about <strong>"focus projects"</strong>, which are special projects we want more contributors from Turkey to work on.
These projects offer a great chance for developers from Turkey to get involved and make a difference in the worldwide open source community.
</span>
<span lang="tr">
Ayrıca, Türkiye'den daha fazla yazılımcının katkı yapmasını istediğimiz özel projeler olan <strong>"odak projeler"</strong>den de bahsetmektedir.
Bu projeler, Türkiye'deki geliştiricilerin katılabileceği ve dünya çapındaki açık kaynak topluluğunda fark yaratma şansı sunan projelerdir.
</span>
</p>
<div>
<h1 class="display-6 section-header">
<span lang="en">2. Getting Started</span>
<span lang="tr">2. Önbilgi</span>
</h1>
<p class="lead">
<span lang="en">
We collected the data from GitHub API using a custom written software called <a href="https://github.com/OpenTRFoundation/cuttlecat">OpenTR/CuttleCat</a>.
All the location related data is collected from the location field of the user profile. We went an extra mile to understand if the location is actually in Turkey.
</span>
<span lang="tr">
Verileri GitHub API'sinden <a href="https://github.com/OpenTRFoundation/cuttlecat">OpenTR/CuttleCat</a> isimli özel yazılan bir yazılım kullanarak topladık.
Tüm konumla ilgili veriler, kullanıcı profili içindeki konum alanından toplanmıştır. Konumun gerçekten Türkiye'de olup olmadığını anlamak için ekstra bir çaba sarf ettik.
</span>
</p>
<p class="lead">
<span lang="en">
Collected data can be found in <a href="https://github.com/OpenTRFoundation/state-of-oss-contribution">OpenTRFoundation/state-of-oss-contribution</a> repository.
</span>
<span lang="tr">
Toplanan veriler, <a href="https://github.com/OpenTRFoundation/state-of-oss-contribution">OpenTR/state-of-oss-contribution</a> repository'sinde görülebilir.
</span>
</p>
</div>
<div>
<h1 class="display-6 section-header">
<span lang="en">3. Comparison with GitHub Innovation Graph data</span>
<span lang="tr">3. GitHub Innovation Graph verileri ile karşılaştırma</span>
</h1>
<p class="lead">
<span lang="en">
GitHub's <a href="https://innovationgraph.github.com/economies/tr">Innovation Graph</a> is a great resource for understanding country specific GitHub usage.
Its data is aggregated from GitHub network activity and data.
</span>
<span lang="tr">
GitHub'ın hazırladığı <a href="https://innovationgraph.github.com/economies/tr">Innovation Graph</a> isimli rapor, ülkelere özel GitHub kullanımını anlamak için harika bir kaynaktır.
Verileri, GitHub ağ etkinliği ve verilerinden toplanmıştır.
</span>
</p>
<p class="lead">
<span lang="en">
GitHub is using some internal resources when building their Innovation Graph, which are not accessible to public.
They don't need to use the location field user provided, as they have access to the IP address of the user and thus the location.
GitHub uses the IP address to determine the country of the user as described in
<a href="https://github.com/github/innovationgraph/blob/main/docs/datasheet.md#6-what-are-the-contents-of-this-dataset">their datasheet.</a>
</span>
<span lang="tr">
GitHub, Innovation Graph'ı oluştururken herkese açık olmayan bazı iç kaynakları kullanıyor.
Kullanıcının IP adresine ve dolayısıyla konumuna erişebildikleri için, kullanıcının sağladığı konum alanını kullanmalarına gerek yok.
GitHub, <a href="https://github.com/github/innovationgraph/blob/main/docs/datasheet.md#6-what-are-the-contents-of-this-dataset"> veri seti bilgilendirmesinde</a> yazıldığı üzere, kullanıcının ülkesini belirlemek için IP adresini kullanıyor.
</span>
</p>
<p class="lead">
<span lang="en">
We compared our data with the data from GitHub Innovation Graph, and we understand that GitHub Innovation Graph data is more accurate, but it is less detailed.
As they only provide aggregated data, the break down is very limited. For example, we cannot see the distribution of the users in Turkey per province.
Similarly, we cannot see the number of active users or their contribution to open source projects.
</span>
<span lang="tr">
Verilerimizi GitHub Innovation Graph verileri ile karşılaştırdık ve GitHub Innovation Graph verilerinin daha doğru olduğunu, ancak daha az ayrıntılı olduğunu anladık.
Yalnızca toplu veri sağladıkları için, verilen kırılımlar kısıtlı. Örneğin Türkiye'deki kullanıcıların il bazında dağılımını göremiyoruz.
Benzer şekilde, aktif kullanıcıların sayısını veya açık kaynak projelerine katkılarını göremiyoruz.
</span>
</p>
<p class="lead">
<span lang="en">
For example, GitHub Innovation Graph data shows 1,317,401 users in Turkey as of Q1 2023, while we found around 110,000 users with a location field somewhere in Turkey.
This is because the location field is a plain-text and optional input.
Some users from Turkey might not have entered a location, or they might have written a location that we couldn't match with Turkey.
</span>
<span lang="tr">
GitHub Innovation Graph verileri, 2023'in birinci çeyreği itibariyle Türkiye'de 1.317.401 kullanıcı gösterirken, biz konum bilgisi Türkiye'de bir yer olarak girmiş olan yaklaşık 110.000 kullanıcı bulduk.
Bu, konum alanının düz metin ve opsiyonel bir alan olması nedeniyledir.
Türkiye'den bazı kullanıcılar bir konum yazmamış olabilir veya Türkiye ile eşleştiremediğimiz bir konum yazmış olabilir.
</span>
</p>
<p class="lead">
<span lang="en">
Considering the <a href="https://en.wikipedia.org/wiki/Law_of_large_numbers">Weak Law of Large Numbers</a>, readers can have very good approximations about the trends and changes.
Also, although we probably cannot multiply every user count related number below with 13 (1.3M/110K ratio), readers can use this ratio to have a feeling about the number of users and open source contributors from Turkey.
We did not use this ratio and simply show the numbers we found.
</span>
<span lang="tr">
<a href="https://tr.wikipedia.org/wiki/B%C3%BCy%C3%BCk_say%C4%B1lar_yasas%C4%B1">Büyük Sayılar Yasası</a> göz önüne alındığında, okuyucuların trendler ve değişiklikler hakkında çok iyi yaklaşımlar yapabileceğini düşünüyoruz.
Ayrıca, muhtemelen kullanıcı sayısı ile ilgili aşağıdaki her sayıyı 13 ile çarpamayacaksak da (1,3 milyon / 110 bin oranı), okuyucular bu oranı Türkiye'deki GitHub kullanıcıları ve açık kaynak katkılarının sayısı hakkında bir fikir edinmek için kullanabilir.
Biz bu oranı kullanmadık ve sadece bulduğumuz sayıları gösterdik.
</span>
</p>
</div>
<div>
<h1 class="display-6 section-header">
<span lang="en">4. Software people in Turkey from GitHub usage</span>
<span lang="tr">4. Türkiye'deki yazılımcılar ve GitHub kullanımı</span>
</h1>
<p class="lead">
<span lang="en">
This section gives an overview of software industry in Turkey, with regard to GitHub usage.
</span>
<span lang="tr">
Bu bölüm, GitHub kullanımı açısından Türkiye'deki yazılım endüstrisine genel bir bakış sunmaktadır.
</span>
</p>
<!-- TODO: convert the following this div to a template, as it is duplicated in 2 other places -->
<div>
<h2>
<span lang="en">Number of GitHub users with a location somewhere in Turkey</span>
<span lang="tr">Türkiye'de bir yer olarak bir konum yazmış GitHub kullanıcılarının sayısı</span>
</h2>
<div id="user-count-cards" class="row row-cols-1 row-cols-md-2 row-cols-lg-4">
<div class="col">
<div class="total card border-light text-center">
<div class="card-body">
<div class="card-text">
<h1 class="count display-4">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
<h1 class="name display-6">
<span lang="en">Total</span>
<span lang="tr">Toplam</span>
</h1>
</div>
</div>
</div>
<div class="col">
<div class="province-0 card border-light text-center">
<div class="card-body">
<div class="card-text">
<h1 class="count display-4">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
<h1 class="name display-6">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
</div>
</div>
<div class="col">
<div class="province-1 card border-light text-center">
<div class="card-body">
<div class="card-text">
<h1 class="count display-4">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
<h1 class="name display-6">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
</div>
</div>
<div class="col">
<div class="province-2 card border-light text-center">
<div class="card-body">
<div class="card-text">
<h1 class="count display-4">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
<h1 class="name display-6">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12 col-lg-10">
<div id="github-user-map"></div>
</div>
</div>
<div id="github-user-map-tooltip">
<h1 class="province-name display-6" style="text-align: center;">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
<div class="row row-cols-1 row-cols-md-1 row-cols-lg-3">
<div class="col">
<div class="card border-light text-center">
<div class="card-body">
<div class="card-text">
<h1 class="province-count display-4">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
<h1 class="display-6">
<span lang="en">Count</span>
<span lang="tr">Sayı</span>
</h1>
</div>
</div>
</div>
<div class="col">
<div class="card border-light text-center">
<div class="card-body">
<div class="card-text">
<h1 class="province-population display-4">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
<h1 class="display-6">
<span lang="en">Population</span>
<span lang="tr">Nüfus</span>
</h1>
</div>
</div>
</div>
<div class="col">
<div class="card border-light text-center">
<div class="card-body">
<div class="card-text">
<h1 class="province-count-population-ratio display-4">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
<h1 class="display-6">
<span lang="en">Count per 1M people</span>
<span lang="tr">1 milyon kişiye düşen</span>
</h1>
</div>
</div>
</div>
</div>
</div>
</div>
<div>
<h3>
<span lang="en">Summary</span>
<span lang="tr">Özet</span>
</h3>
<p class="lead">
<span lang="en">
These users have entered a location on GitHub that we matched with Turkey.
As GitHub's location input is a plain-text input, we worked hard to understand if the location is actually in Turkey.
</span>
<span lang="tr">
Bu kullanıcılar, GitHub'da Türkiye ile eşleştirdiğimiz bir konum yazan kullanıcılar.
GitHub'ın konum girdisi düz metin bir girdi olduğu için, konumun gerçekten Türkiye'de olup olmadığını anlamak için çok çalıştık.
</span>
</p>
<p class="lead">
<span lang="en">
Istanbul has the most users by having ~40% of the all users. Ankara comes the second, followed up by Izmir.
</span>
<span lang="tr">
İstanbul, tüm kullanıcıların ~40%'ına sahip olarak en fazla kullanıcıya sahip. Ankara ikinci sırada, İzmir ise onu takip ediyor.
</span>
</p>
<p class="lead">
<span lang="en">
These 3 big provinces have more than 50% of the users.
</span>
<span lang="tr">
Bu 3 büyük il, kullanıcıların %50'sinden fazlasına sahip.
</span>
</p>
<p class="lead">
<span lang="en">
It is not possible to determine the provinces of ~30% of the users.
</span>
<span lang="tr">
Kullanıcıların %30'unun ilini belirlemek mümkün değil.
</span>
</p>
<p class="lead">
<span lang="en">
Coloring of the provinces are based on the number of users in that province per 1M people.
This can be thought of a score of a province's software industry.
</span>
<span lang="tr">
İllerin renklendirmesi, o ildeki kullanıcı sayısına göre 1 milyon kişi başına düşen kullanıcı sayısına göre belirlenmiştir.
Bu, bir ilin yazılım endüstrisinin bir puanı olarak düşünülebilir.
</span>
</p>
<p class="lead">
<span lang="en">
<!-- TODO: update with latest dates-->
The process to fetch the user data started on 2024-07-10 and completed on 2024-07-13.
</span>
<span lang="tr">
<!-- TODO: update with latest dates-->
Kullanıcı verilerini çekme işlemi 2024-07-10'da başladı ve 2024-07-13'de tamamlandı.
</span>
</p>
</div>
<div>
<h3>
<span lang="en">Criteria</span>
<span lang="tr">Kriterler</span>
</h3>
<ul class="lead">
<li>
<span lang="en">
Users who have a location input on GitHub to be one of these:
</span>
<span lang="tr">
GitHub'da konum olarak bunlardan birini yazan kullanıcılar:
</span>
<ul>
<li>
<span lang="en">
Turkey (Türkiye, TR, TUR, etc. also accepted, but some fine-tuning is done to ignore irrelevant users)
</span>
<span lang="tr">
Türkiye (Türkiye, TR, TUR, vb. de kabul edilir, ancak alakasız kullanıcıları çıkarmak için bazı ince ayarlar yapılmıştır)
</span>
</li>
<li>
<span lang="en">
A province in Turkey (all of these are accepted: Şanlıurfa, Sanliurfa, Şanliurfa, Sanlıurfa, Urfa)
</span>
<span lang="tr">
Türkiye'deki bir il (bunların hepsi kabul edilir: Şanlıurfa, Sanliurfa, Şanliurfa, Sanlıurfa, Urfa)
</span>
</li>
<li>
<span lang="en">
A district in Turkey (all of these are accepted: Çiğli, Cigli, Çigli, ...)
</span>
<span lang="tr">
Türkiye'deki bir ilçe (bunların hepsi kabul edilir: Çiğli, Cigli, Çigli, ...)
</span>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div>
<h2>
<span lang="en">
Yearly sign up numbers of GitHub users with a location somewhere in Turkey
</span>
<span lang="tr">
Türkiye'de bir yer olarak bir konum yazmış GitHub kullanıcılarının yıllık kayıt sayıları
</span>
</h2>
<div id="user-signed-up-at-chart"></div>
<div>
<h3>
<span lang="en">Summary</span>
<span lang="tr">Özet</span>
</h3>
<p class="lead">
<span lang="en">
There has been a steady increase in the number of users signing up to GitHub with a location somewhere in Turkey until 2021.
Please note that, this chart does not state that the location specified by the users at the time they signed up was somewhere in Turkey, but the location they have in their profile at the time of data collection is somewhere in Turkey.
</span>
<span lang="tr">
2021'e kadar, konum olarak Türkiye'de bir yer belirten yeni GitHub kullanıcılarınin sayısında istikrarlı bir artış oldu.
Ancak, bu grafik kullanıcıların kayıt oldukları sırada Türkiye'den bir konum belirttiklerini değil, veri toplama sırasındaki profilinde Türkiye'den bir yer olduğunu göstermektedir.
</span>
</p>
<p class="lead">
<span lang="en">
After 2021, the number of new users signing up has decreased. We believe that this is due to the fact that users update their location after some time they sign up. The numbers from 2023 gives that impression too.
</span>
<span lang="tr">
2021'den sonra, kayıt olan yeni kullanıcıların sayısı azaldı. Kullanıcıların kayıt olduktan sonra bir süre sonra konumlarını güncellemelerinden kaynaklandığını düşünüyoruz. 2023'ten gelen sayılar da bu izlenimi veriyor.
</span>
</p>
</div>
</div>
<div>
<h2>
<span lang="en">
Number of <strong><i>active</i></strong> GitHub users with location somewhere in Turkey
</span>
<span lang="tr">
Türkiye'de bir yer olarak bir konum yazmış <strong><i>aktif</i></strong> GitHub kullanıcılarının sayısı
</span>
</h2>
<div id="active-user-count-cards" class="row row-cols-1 row-cols-md-2 row-cols-lg-4">
<div class="col">
<div class="total card border-light text-center">
<div class="card-body">
<div class="card-text">
<h1 class="count display-4">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
<h1 class="name display-6">
<span lang="en">Total</span>
<span lang="tr">Toplam</span>
</h1>
</div>
</div>
</div>
<div class="col">
<div class="province-0 card border-light text-center">
<div class="card-body">
<div class="card-text">
<h1 class="count display-4">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
<h1 class="name display-6">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
</div>
</div>
<div class="col">
<div class="province-1 card border-light text-center">
<div class="card-body">
<div class="card-text">
<h1 class="count display-4">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
<h1 class="name display-6">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
</div>
</div>
<div class="col">
<div class="province-2 card border-light text-center">
<div class="card-body">
<div class="card-text">
<h1 class="count display-4">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
<h1 class="name display-6">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12 col-lg-10">
<div id="active-github-user-map"></div>
</div>
</div>
<div id="active-github-user-map-tooltip">
<h1 class="province-name display-6" style="text-align: center;">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
<div class="row row-cols-1 row-cols-md-1 row-cols-lg-3">
<div class="col">
<div class="card border-light text-center">
<div class="card-body">
<div class="card-text">
<h1 class="province-count display-4">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
<h1 class="display-6">
<span lang="en">Count</span>
<span lang="tr">Sayı</span>
</h1>
</div>
</div>
</div>
<div class="col">
<div class="card border-light text-center">
<div class="card-body">
<div class="card-text">
<h1 class="province-population display-4">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
<h1 class="display-6">
<span lang="en">Population</span>
<span lang="tr">Nüfus</span>
</h1>
</div>
</div>
</div>
<div class="col">
<div class="card border-light text-center">
<div class="card-body">
<div class="card-text">
<h1 class="province-count-population-ratio display-4">
<span lang="en"></span>
<span lang="tr"></span>
</h1>
</div>
<h1 class="display-6">
<span lang="en">Count per 1M people</span>
<span lang="tr">1 milyon kişiye düşen</span>
</h1>
</div>
</div>
</div>
</div>
</div>
<div>
<h3>
<span lang="en">Summary</span>
<span lang="tr">Özet</span>
</h3>
<p class="lead">
<span lang="en">
Only ~20% of the users are active, according to the criteria below.
</span>
<span lang="tr">
Kullanıcıların yalnızca ~20%'si aşağıdaki kriterlere göre aktif.
</span>
</p>
<p class="lead">
<span lang="en">
Ratios of the provinces are similar to the total user count.
</span>
<span lang="tr">
İllerin 1 milyon kişiye düşen aktif kullanıcı sayıları, 1 milyon kişiye düşen toplam kullanıcı sayıları ile orantılı.
</span>
</p>
</div>
<div>
<h3>
<span lang="en">Criteria</span>
<span lang="tr">Kriterler</span>
</h3>
<ul class="lead">
<li>
<span lang="en">These users have at least 1 repository, and they made an activity in the last 90 days before the time the data is fetched.</span>
<span lang="tr">Bu kullanıcıların en az 1 repository'si var ve verinin çekildiği tarihten önceki son 90 günde bir aktivitede bulundular.</span>
</li>
</ul>
<ul class="lead">
<li>
<span lang="en">Activities are any of the following:</span>
<span lang="tr">Aktiviteler aşağıdakilerden biri:</span>
</li>
<ul>
<li>
<span lang="en">
Code commit
</span>
<span lang="tr">
Kod commitlemek
</span>
</li>
<li>
<span lang="en">
Create an issue
</span>
<span lang="tr">
Bir issue oluşturmak
</span>
</li>
<li>
<span lang="en">
Create a pull request
</span>
<span lang="tr">
Bir pull request oluşturmak
</span>
</li>
<li>
<span lang="en">
Review a pull request
</span>
<span lang="tr">
Bir pull request'i review etmek
</span>
</li>
</ul>
</ul>
</div>
</div>
<div>
<h1 class="display-6 section-header">
<span lang="en">5. What projects?</span>
<span lang="tr">5. Hangi projeler?</span>
</h1>
<p class="lead">
<span lang="en">
OpenTR's mission is to increase the number of contributors from Turkey to open source projects.
However, what are these projects?
This section gives an overview of such projects.
</span>
<span lang="tr">
OpenTR'nin misyonu, Türkiye'den açık kaynak projelere katkıda bulunanların sayısını artırmaktır.
Ancak, bu projeler hangileri?
Bu bölüm, bu tür projelere bir genel bakış sunmaktadır.
</span>
</p>
<p class="lead">
<span lang="en">
Any public project on GitHub is open source by definition (as long as it has a OSS license).
However, we want more contributors to work on some projects that we think have an impact.
</span>
<span lang="tr">
GitHub'daki herhangi bir public proje, tanım gereği açık kaynaktır (bir açık kaynak lisansı varsa).
Ancak, daha fazla katılımcının etkili olduğunu düşündüğümüz bazı projelerde çalışmasını istiyoruz.
</span>
</p>
<p class="lead">
<span lang="en">
We call these projects <strong>focus projects</strong>.
</span>
<span lang="tr">
Bu projelere <strong>odak projeler</strong> diyoruz.
</span>
</p>
<p class="lead">
<span lang="en">
Criteria for focus projects can be seen in the next section.
</span>
<span lang="tr">
Odak projeler için kriterler bir sonraki bölümde görülebilir.
</span>
</p>
<h2>
<span lang="en">
Projects vs organizations vs repositories
</span>
<span lang="tr">
Projeler vs organizasyonlar vs repository'ler
</span>
</h2>
<p class="lead">
<span lang="en">
We use the term <strong>project</strong> in an abstract way to refer to a project such as Linux, Kubernetes, or React.
We cannot tie a project to a repository or a GitHub organization, as some projects may have multiple repositories.
Some projects may even have repositories under different organizations.
</span>
<span lang="tr">
Linux, Kubernetes veya React gibi bir projeden bahsederken, soyut bir şekilde <strong>proje</strong> terimini kullanıyoruz.
Bir projeyi bir repository veya GitHub organizasyonuna bağlayamayız, çünkü bazı projelerin birden fazla repository'si olabilir.
Bazı projeler, farklı organizasyonların altında bile repository'lere sahip olabilir.
</span>
</p>
<p class="lead">
<span lang="en">
For example Kubernetes has multiple repositories under the <code>kubernetes</code> organization, but it also has repositories under other organizations such as <code>kubernetes-sigs</code>.
Conversely, the Linux project does not have an organization.
Its main repository is the <code>torvalds/linux</code> repository.
</span>
<span lang="tr">
Örneğin Kubernetes, <code>kubernetes</code> organizasyonunun altında birden fazla repository'ye sahip, ancak <code>kubernetes-sigs</code> gibi diğer organizasyonların altında da repository'lere sahip.
Bunun aksine, Linux projesinin bir organizasyonu yok.
Ana repository'si <code>torvalds/linux</code>.
</span>
</p>
<p class="lead">
<span lang="en">
To make things simpler, we use the term <strong>focus organization</strong> to refer to an organization that has at least one repository that meets the criteria below.
Similarly, we use the term <strong>focus repository</strong> to refer to a repository that meets another set of criteria below.
</span>
<span lang="tr">
İşleri sadeleştirmek için, aşağıdaki kriterleri karşılayan en az bir repository'si olan bir organizasyondan bahsetmek için <strong>odak organizasyon</strong> terimini kullanıyoruz.
Benzer şekilde, aşağıdaki diğer kriterleri karşılayan bir repository'den bahsetmek için <strong>odak repository</strong> terimini kullanıyoruz.
</span>
</p>
<p class="lead">
<span lang="en">
OpenTR's goal in this report is to find the number of contributors to open source projects.
It is not finding the number of open source repositories or organizations in general.
So, when we check users from Turkey, we only check the users who contributed to any repository in a focus organization or to a focus repository.
</span>
<span lang="tr">
OpenTR'nin bu rapordaki amacı, açık kaynak projelerine katkıda bulunanların sayısını bulmaktır.
Genel olarak açık kaynak repository'lerinin veya organizasyonlarının sayısını bulmak değildir.
Bu nedenle, Türkiye'den kullanıcıları kontrol ettiğimizde, yalnızca bir odak organizasyonun herhangi bir repository'sine veya bir odak repository'ye katkıda bulunan kullanıcıların bilgilerini çekiyoruz.
</span>
</p>
</div>
<div>
<h2>
<span lang="en">
Focus organizations
</span>
<span lang="tr">
Odak organizasyonlar
</span>
</h2>
<p class="lead">
<span lang="en">
Contributions to any repositories under these organizations are counted as contributions to open source.
</span>
<span lang="tr">
Bu organizasyonların altındaki herhangi bir repository'ye yapılan katkılar, açık kaynağa yapılan katkılar olarak değerlendirilmiştir.
</span>
</p>
<p class="lead">
<span lang="en">
We only show the top 100 organizations the following word cloud.
</span>
<span lang="tr">
Aşağıdaki word cloud'da sadece ilk 100 organizasyonu gösteriyoruz.
</span>
</p>
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-8 col-xl-6">
<div id="focus-orgs-word-cloud"></div>
</div>
</div>
<h2>
<span lang="en">
Focus repositories outside organizations
</span>
<span lang="tr">
Organizasyon harici odak repository'ler
</span>
</h2>
<p class="lead">
<span lang="en">
Similarly, contributions to any of these repositories that are not under any organization are counted as contributions to open source.
</span>
<span lang="tr">
Benzer şekilde, herhangi bir organizasyonun altında olmayan bu repository'lerin herhangi birine yapılan katkılar, açık kaynağa yapılan katkılar olarak değerlendirilmiştir.
</span>
</p>
<p class="lead">
<span lang="en">
We only show the top 50 repositories the following cloud.
</span>
<span lang="tr">
Aşağıdaki word cloud'da sadece ilk 50 repository'yi gösteriyoruz.
</span>
</p>
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-8 col-xl-6">
<div id="focus-repositories-word-cloud"></div>
</div>
</div>
<div>
<h3>
<span lang="en">Summary</span>
<span lang="tr">Özet</span>
</h3>
<p class="lead">
<span lang="en">
We found <span class="focus-org-count">N</span> organizations that have at least repository that meets the criteria below.
These organizations have multiple repositories.
However, number of repositories is not exactly relevant, as we're interested in finding people who contribute any repository under these organizations.
</span>
<span lang="tr">
Aşağıdaki kriterleri karşılayan en az bir repository'si olan <span class="focus-org-count">N</span> organizasyon bulduk.
Evet, bu organizasyonların birden fazla repository'si var, ancak repository sayısı tam olarak önemli değil, çünkü bu organizasyonların altındaki herhangi bir repository'ye katkıda bulunan kişileri bulmak istiyoruz.
</span>
</p>
<p class="lead">
<span lang="en">
On top of the organizations, we found <span class="focus-repository-count">N</span> repositories that meet the criteria below.
</span>
<span lang="tr">
Organizasyonların yanı sıra, aşağıdaki kriterleri karşılayan <span class="focus-repository-count">N</span> repository bulduk.
</span>
</p>
<p class="lead">
<span lang="en">
<!-- TODO: update with latest dates-->
The process to fetch the focus repositories and organizations started on 2024-07-20 and completed on 2024-07-20 and the
process to fetch all repositories of all focus organizations started on 2024-07-30 and completed on 2024-07-30.
</span>
<span lang="tr">
<!-- TODO: update with latest dates-->
Odak repository'leri ve organizasyonları çekme işlemi 2024-07-20'de başladı ve 2024-07-20'de tamamlandı.
Tüm odak organizasyonların tüm repository'lerini çekme işlemi ise, 2024-07-30'de başladı ve 2024-07-30'de tamamlandı.
</span>
</p>
</div>
<div>
<h3>
<span lang="en">Criteria</span>
<span lang="tr">Kriterler</span>
</h3>
<p class="lead">
<span lang="en">Focus organizations:</span>
<span lang="tr">Odak organizasyonlar:</span>
</p>
<ul class="lead">
<li>
<span lang="en">
Has at least one repository that meets the following criteria:
</span>
<span lang="tr">
Aşağıdaki kriterleri karşılayan en az bir repository'si var:
</span>
</li>
<ul class="lead">
<li>
<span lang="en">Has minimum 50 stars</span>
<span lang="tr">Minimum 50 star'a sahip</span>
</li>
<li>
<span lang="en">Has minimum 50 forks</span>
<span lang="tr">Minimum 50 fork'a sahip</span>
</li>
<li>
<span lang="en">Has a minimum size of 1000 KiB</span>
<span lang="tr">Minimum 1000 KiB boyutunda</span>
</li>
<li>
<span lang="en">Had an activity within the last 90 days before the time the data is fetched</span>
<span lang="tr">Verinin çekildiği tarihten önceki son 90 günde bir aktivite olan</span>
</li>
<li>
<span lang="en">Created after 2008-01-01</span>
<span lang="tr">2008-01-01 tarihinden sonra oluşturulmuş</span>