-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
10603 lines (9716 loc) · 281 KB
/
data.json
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
[
{
"_id": "5ff198a5592a8f6376aad7d1",
"pathname": "/hire",
"from": "/",
"to": "/hire",
"pageName": "hire",
"params": {
},
"query": {
},
"href": "https://findmentor.network/hire",
"referrer": "",
"date": 1609679573039,
"fingerprint": 1651551253
},
{
"_id": "5ff198ab592a8f6376aad7d2",
"pathname": "/jobs",
"from": "/hire",
"to": "/jobs",
"pageName": "jobs",
"params": {
},
"query": {
},
"href": "https://findmentor.network/jobs",
"referrer": "",
"date": 1609679578712,
"fingerprint": 1651551253
},
{
"_id": "5ff198b4592a8f6376aad7d3",
"pathname": "/jobs",
"date": 1609679588147,
"company": "Trendyol",
"position": "Frontend Developer",
"address": "https://jobs.lever.co/trendyol/7ad675a6-e9da-4219-94ac-fad75cac3017?lever-via=ZwMbrwuT3p",
"description": "Join us and be a part of this exciting opportunity!\n\nOur purpose is to create the most positive impact in our country and ecosystem by enabling commerce, empowered by technology! We are a Tech company - Technology is the driver, ecommerce is the outcome.\n\nFounded in 2010, we are the largest and fastest growing mobile commerce company in Turkey and the MENA region, the largest internet employer in Turkey with a team of ca. 2000 people. In 2018, we have announced an investment and strategic partnership with Alibaba Group which also is the largest internet sector investment in Turkey to date.\n\nOur culture is at the core of everything we do. Focused on results, keeping our customers first, we always work for better and always test, iterate and improve. We learn from our mistakes, direct and open feedback is at the core of our culture.\n\nWe are scaling fast and profitably, expanding into international markets. If you want to learn, grow and deliver, if you are results-oriented, love teamwork, appreciate open communication, learning and iteration, and making decisions with data, Come, join our tribe!\n\nTechnology Department is one of the most important teams at Trendyol which is future-oriented, fast-growing and technology enthusiast company. Software Development Team builds scalable, high performing platforms for our customer satisfaction by using up-to-date and efficient technologies. In the end, we are all working towards the same goal: to create an excellent experience for our customers at Trendyol.\n\nYOUR PROFILE\n* BS degree in Computer, Software or Mathematical Engineering or relevant departments,\n* 5+ years of frontend development work\n* Strong JavaScript programming skills\n* Hands-on experience in React.js, Angular.js, Vue.js, or similar technologies\n* Hands-on experience in build tools (Gulp, Webpack, System.js)\n* Experience in REST / stateless API design and microservices architectural style\n* Experience in Stylus, Sass, or LESS\n* Writing automation with cypress is a big plus\n* Writing automated tests is a plus\n* OOP, MVC knowledge is a plus\n* NodeJs knowledge is a must\n* Being an Agile minded team player, having good communication skills\n* Eagerness on self-improvement, open-minded, future-oriented\n* Strong analytical, problem solving, debugging, and troubleshooting skills\n* Preferably experienced in e-commerce domain\n* Preferably experienced in web sites that work under high user loads\n* Technical English proficiency is a must\n\nYOUR CHALLENGE\n* As a SCRUM team member, technically analyzing and developing business and web applications\n* Working closely with product managers, UX designers and experienced engineers to develop creative solutions for our 12 million+ customers\n* Continuously improving and applying technical skills on various platforms\n* Being a part of code review and pair programming activities\n\nWHAT’S IN IT FOR YOU?\n* Take responsibility from day one, improve your skills and learn continuously.\n* We have open communication, teamwork and promote servant leadership. We value talent, not titles!\n* Chance to shape the future of e-commerce with us and experience agility at its best!\n* Working in an engaging workplace and being part of our cross-functional, diversified, and dynamic team.\n* Don’t forget to have fun while we work, we work hard play hard, open office and happy hours :)\n* The personal data you submit will be processed in accordance with our privacy policy.\n",
"location": "Maslak/Istanbul",
"logo": "https://lever-client-logos.s3.amazonaws.com/a81a734c-54a8-4378-85ba-2eee13010fb6-1495699079304.png",
"tags": [
"node.js",
"react.js",
"webpack",
"rest",
"microservices",
"javascript"
],
"remote": "Evet",
"isRemoveAllowed": true,
"type": "seen",
"event": "jobDetail",
"href": "https://findmentor.network/jobs",
"referrer": "",
"fingerprint": 1651551253
},
{
"_id": "5ff198c2592a8f6376aad7d4",
"pathname": "/jobs",
"date": 1609679601566,
"company": "Trendyol",
"position": "Backend Developer",
"address": "https://jobs.lever.co/trendyol/4bf7e1b0-1e26-4a2f-9208-f156b8437e8c?lever-via=ZwMbrwuT3p",
"description": "Join us and be a part of this exciting opportunity!\n\nOur purpose is to create the most positive impact in our country and ecosystem by enabling commerce, empowered by technology! We are a Tech company - Technology is the driver, e-commerce is the outcome.\n\nFounded in 2010, we are the largest and fastest-growing mobile commerce company in Turkey and the MENA region, the largest internet employer in Turkey with a team of ca. 2000 people. In 2018, we have announced an investment and strategic partnership with Alibaba Group which also is the largest internet sector investment in Turkey to date.\n\nOur culture is at the core of everything we do. Focused on results, keeping our customers first, we always work for better and always test, iterate, and improve. We learn from our mistakes, direct and open feedback is at the core of our culture.\n\nWe are scaling fast and profitably, expanding into international markets. If you want to learn, grow, and deliver, if you are results-oriented, love teamwork, appreciate open communication, learning, and iteration, and making decisions with data, Come, join our tribe!\n\nTechnology Department is one of the most important teams at Trendyol which is a future-oriented, fast-growing, and technology enthusiast company. Software Development Team builds scalable, high performing platforms for our customer satisfaction by using up-to-date and efficient technologies. In the end, we are all working towards the same goal: to create an excellent experience for our customers at Trendyol.\n\nYOUR PROFILE\n* Team Player - humble, life long learner and has customer-first mindset.\n* Practical knowledge about OOP, Design Patterns, Clean Code, Craftsmanship culture, Refactoring, and Unit Testing.\n* Experience in at least one of the languages such as Java, Go, C#, Scala\n* Experience in Relational / NonRelational Database Management Systems such as Postgresql, ElasticSearch, Couchbase, etc\n* Experience in messaging software such as Kafka, RabbitMq\n* Experience in Continuous Delivery and build pipelines.\n* Experience building Restful backend services using popular frameworks such as Spring Boot.\n* Being an Agile minded team player with good communication skills.\n* Preferably experienced in distributed architecture with fault tolerance and loose coupling.\n* Kubernetes experience and Performance Monitoring is a big plus.\n* Good command of written and spoken English.\n* Ankara and İzmir starting with remote.\n\nYOUR CHALLENGE\n* You will be coding new features and improve existing platform to improve the Trendyol platform experience and scale. \n* You will continuously improve yourself with your team members learning new technologies and acquiring new skills.\n* You will participate in planning meetings, estimate tasks, do code reviews and code in pairs.\n\nWHAT’S IN IT FOR YOU?\n* Take responsibility from day one, improve your skills and learn continuously.\n* We have open communication, teamwork and promote servant leadership. We value talent, not titles!\n* Chance to shape future of e-commerce with us and experience agility at its best!\n* Working in an engaging workplace and being part of our cross-functional, diversified and dynamic team.\n* Don’t forget to have fun while we work, we work hard play hard, open office and happy hours :)\nThe personal data you submit will be processed in accordance with our privacy policy.\n\nWant to join us? Happy to receive your online application!",
"location": "Maslak/Istanbul",
"logo": "https://lever-client-logos.s3.amazonaws.com/a81a734c-54a8-4378-85ba-2eee13010fb6-1495699079304.png",
"tags": [
"backend",
"java",
"go",
"scala",
"couchbase",
"postgresql"
],
"remote": "Evet",
"isRemoveAllowed": true,
"type": "seen",
"event": "jobDetail",
"href": "https://findmentor.network/jobs",
"referrer": "",
"fingerprint": 1651551253
},
{
"_id": "5ff198c8592a8f6376aad7d5",
"pathname": "/jobs",
"date": 1609679608200,
"company": "Trendyol",
"position": "Developer In Test",
"address": "https://jobs.lever.co/trendyol/ec9b6f54-5a18-4f85-bf2c-3b25e55e79ef?lever-via=ZwMbrwuT3p",
"description": "Join us and be a part of this exciting opportunity!\n\nOur purpose is to create the most positive impact in our country and ecosystem by enabling commerce, empowered by technology! We are a Tech company - Technology is the driver, e-commerce is the outcome.\n\nFounded in 2010, we are the largest and fastest-growing mobile commerce company in Turkey and the MENA region, the largest internet employer in Turkey with a team of ca. 2000 people. In 2018, we have announced an investment and strategic partnership with Alibaba Group which also is the largest internet sector investment in Turkey to date.\n\nOur culture is at the core of everything we do. Focused on results, keeping our customers first, we always work for better and always test, iterate, and improve. We learn from our mistakes, direct and open feedback is at the core of our culture.\n\nWe are scaling fast and profitably, expanding into international markets. If you want to learn, grow, and deliver, if you are results-oriented, love teamwork, appreciate open communication, learning, and iteration, and making decisions with data, Come, join our tribe!\n\nTechnology Department is one of the most important teams at Trendyol which is a future-oriented, fast-growing, and technology enthusiast company. Software Development Team builds scalable, high performing platforms for our customer satisfaction by using up-to-date and efficient technologies. In the end, we are all working towards the same goal: to create an excellent experience for our customers at Trendyol.\n\nYOUR PROFILE\n* BS or MS degree in Computer Science, Engineering or related field\n* QA Engineer / Software Test Engineer experience is a plus\n* Knowledge of automated testing frameworks and languages (Selenium WebDriver, Appium, JUnit, Cucumber, Espresso, JS test frameworks, etc.)\n* Strong experience writing & maintaining automated test scripts for web applications\n* Experience with API automation testing including unit test automation frameworks\n* Knowledge on Java, Python\n* Knowledge on SQL\n* Proactive attitude in identifying issues and solutions that help in improving Software Quality\n* Good command of written and spoken English\n* Comfortable working in a dynamic, low-structure, constantly changing atmosphere and prioritizing work appropriately\n* Excellent problem solving, critical thinking, and debugging skills\n* Curious, a meticulous observer who executes test cases creatively and innovative\n* Speaking up when something just doesn’t feel right w/productive feedback\n\nYOUR CHALLENGE\n* Identify, analyze, and document any defects discovered during testing and provide fine tuning recommendations\n* Develop and lead the automation strategy/effort and generate scripts to perform automated testing cycles\n* Execute and analysis automation test results\n* Work with cross-functional teams to ensure quality throughout the software development lifecycle\n* Define test strategy and provide technical guidance in driving quality in new feature development\n* Break applications in ways the developers never thought about\n\nWHAT’S IN IT FOR YOU?\n* Take responsibility from day one, improve your skills and learn continuously.\n* We have open communication, teamwork and promote servant leadership. We value talent, not titles!\n* Chance to shape the future of e-commerce with us and experience agility at its best!\n* Working in an engaging workplace and being part of our cross-functional, diversified, and dynamic team.\n* Don’t forget to have fun while we work, we work hard play hard, open office and happy hours :)\n\nThe personal data you submit will be processed in accordance with our privacy policy.\n\nWant to join us? Happy to receive your online application!",
"location": "Maslak/Istanbul",
"logo": "https://lever-client-logos.s3.amazonaws.com/a81a734c-54a8-4378-85ba-2eee13010fb6-1495699079304.png",
"tags": [
"test",
"java",
"python",
"sql",
"javascript",
"test automation",
"selenium",
"fine tuning"
],
"remote": "Evet",
"isRemoveAllowed": true,
"type": "seen",
"event": "jobDetail",
"href": "https://findmentor.network/jobs",
"referrer": "",
"fingerprint": 1651551253
},
{
"_id": "5ff198d5592a8f6376aad7d6",
"pathname": "/jobs",
"date": 1609679620537,
"company": "Glosis Danışmanlık ve İnsan Kaynakları",
"position": "Yazılım Test Mühendisi ",
"address": "https://www.linkedin.com/feed/update/urn:li:activity:6748197668956200960",
"description": "Dünyada ve ülkemizde lider içecek markasının Ümraniye/İstanbul merkezindeki yazılım ekibinde görev alacak;\n\n🖇️ Manuel test süreçlerinde 2 sene deneyimli,\n🖇️ Tüm test case’lerin yazılması, bug’ların açılması ve bugfix takibi yapacak,\n🖇️ UAT testlerinde kullanıcılara yol gösterecek /onlarla birlikte test yapabilecek,\n🖇️ Scrum sprintleri içerisinde kabul testlerini yapacak Test Mühendisi arıyoruz. \n\nGörüşmelerimizin tümünü dijital yapıyoruz, pandemi süresince uzaktan çalışma modeli uygulanıyor. \n",
"location": "Ümraniye/İstanbul",
"logo": "https://firebasestorage.googleapis.com/v0/b/getdersim.appspot.com/o/logo.png?alt=media&token=dd2a7930-0957-43e3-b8ab-8bbcf078ec04",
"tags": [
"uat",
"test",
"testengineer",
"manueltesting",
"SQL",
"SOAP UI",
"Confluence",
"JIRA"
],
"remote": "Hayır",
"isRemoveAllowed": false,
"type": "seen",
"event": "jobDetail",
"href": "https://findmentor.network/jobs",
"referrer": "",
"fingerprint": 1651551253
},
{
"_id": "5ff198f7592a8f6376aad7d7",
"pathname": "/peer/bartu-ozel",
"from": "/",
"to": "/peer/bartu-ozel",
"pageName": "peer-slug",
"params": {
"slug": "bartu-ozel"
},
"query": {
},
"href": "https://findmentor.network/peer/bartu-ozel",
"referrer": "https://findmentor.network/mentorships/",
"date": 1609668854999,
"fingerprint": -120163695
},
{
"_id": "5ff198fd592a8f6376aad7d8",
"pathname": "/",
"from": "/",
"to": "/",
"pageName": "index",
"params": {
},
"query": {
},
"href": "https://findmentor.network/",
"referrer": "",
"date": 1609668862794,
"fingerprint": -9405394
},
{
"_id": "5ff19915592a8f6376aad7d9",
"pathname": "/jobs",
"date": 1609679666575,
"company": "Glosis Danışmanlık ve İnsan Kaynakları",
"position": "Php Yazılım Uzmanı",
"address": "https://www.linkedin.com/feed/update/urn:li:activity:6750319966475587584",
"description": "Php Yazılım Uzmanı arıyoruz. (En az 2 sene deneyimli)\n\n2000 yılı itibari ile Türkiye yazılım sektöründe faaliyet gösteren özgün oyun sitesi olan müşterimizin yazılım ekibine dahil olacak;\n\n🖇️ PHP 5.6, PHP 7 ile çalışmış,\n🖇️ Laravel, Codeigniter frameworklerinde deneyimli Php Developer arıyoruz.\n\n✔️Pandemi sebebiyle uzaktan çalışılmakta, bu model pandemi bitiminde de devam edebilir. \n✔️Tam zamanlı ve yarı zamanlı çalışma modeli uygulanmaktadır, başvuruların tümü değerlendirilecektir. \n✔️Görüşmelerimizin tümünü dijital yapıyoruz",
"location": "İstanbul",
"logo": "https://firebasestorage.googleapis.com/v0/b/getdersim.appspot.com/o/logo.png?alt=media&token=dd2a7930-0957-43e3-b8ab-8bbcf078ec04",
"tags": [
"PHP 5.6",
"PHP 7",
"Laravel",
"Codeigniter"
],
"remote": "Evet",
"isRemoveAllowed": true,
"type": "seen",
"event": "jobDetail",
"href": "https://findmentor.network/jobs",
"referrer": "",
"fingerprint": 1651551253
},
{
"_id": "5ff1992c592a8f6376aad7da",
"pathname": "/jobs",
"date": 1609679707394,
"company": "Malwation",
"position": "Full-Stack Developer",
"address": "https://malwation.com/careers/",
"description": "• Experience with nodeJS\n• Experience with React / Vue.js\n• NoSQL Database Knowledge\n• Knowledge or interest in ElasticSearch",
"location": "İstanbul",
"logo": "https://malwation.com/wp-content/uploads/2020/07/Varl%C4%[email protected]",
"tags": [
"full-stack",
"react",
"nodejs"
],
"remote": "Evet",
"isRemoveAllowed": true,
"type": "seen",
"event": "jobDetail",
"href": "https://findmentor.network/jobs",
"referrer": "",
"fingerprint": 1651551253
},
{
"_id": "5ff19936592a8f6376aad7db",
"pathname": "/",
"from": "/jobs",
"to": "/",
"pageName": "index",
"params": {
},
"query": {
},
"href": "https://findmentor.network/",
"referrer": "",
"date": 1609679717709,
"fingerprint": 1651551253
},
{
"_id": "5ff1993e592a8f6376aad7dc",
"pathname": "/peer/murat-terzioglu",
"from": "/",
"to": "/peer/murat-terzioglu",
"pageName": "peer-slug",
"params": {
"slug": "murat-terzioglu"
},
"query": {
},
"href": "https://findmentor.network/peer/murat-terzioglu",
"referrer": "https://findmentor.network/mentorships/",
"date": 1609668926437,
"fingerprint": -120163695
},
{
"_id": "5ff19945592a8f6376aad7dd",
"pathname": "/mentorships",
"from": "/",
"to": "/mentorships/",
"pageName": "mentorships",
"params": {
},
"query": {
},
"href": "https://findmentor.network/mentorships/",
"referrer": "",
"date": 1609668933536,
"fingerprint": -120163695
},
{
"_id": "5ff199ba592a8f6376aad7de",
"pathname": "/",
"from": "/",
"to": "/",
"pageName": "index",
"params": {
},
"query": {
},
"href": "https://findmentor.network/",
"referrer": "",
"date": 1609669049630,
"fingerprint": -577319866
},
{
"_id": "5ff19e47592a8f6376aad7df",
"pathname": "/",
"from": "/",
"to": "/",
"pageName": "index",
"params": {
},
"query": {
},
"href": "https://findmentor.network/",
"referrer": "",
"date": 1609670214863,
"fingerprint": -861065065
},
{
"_id": "5ff19f46592a8f6376aad7e0",
"pathname": "/peer/canberk-koc",
"from": "/",
"to": "/peer/canberk-koc",
"pageName": "peer-slug",
"params": {
"slug": "canberk-koc"
},
"query": {
},
"href": "https://findmentor.network/peer/canberk-koc",
"referrer": "",
"date": 1609670471578,
"fingerprint": 1668194402
},
{
"_id": "5ff19f7f592a8f6376aad7e1",
"pathname": "/peer/tayfur-ozkara",
"from": "/peer/canberk-koc",
"to": "/peer/tayfur-ozkara",
"pageName": "peer-slug",
"params": {
"slug": "tayfur-ozkara"
},
"query": {
},
"href": "https://findmentor.network/peer/tayfur-ozkara",
"referrer": "",
"date": 1609670528511,
"fingerprint": 1668194402
},
{
"_id": "5ff19f83592a8f6376aad7e2",
"pathname": "/peer/furkan-karakoyunlu",
"from": "/peer/tayfur-ozkara",
"to": "/peer/furkan-karakoyunlu",
"pageName": "peer-slug",
"params": {
"slug": "furkan-karakoyunlu"
},
"query": {
},
"href": "https://findmentor.network/peer/furkan-karakoyunlu",
"referrer": "",
"date": 1609670533037,
"fingerprint": 1668194402
},
{
"_id": "5ff19f85592a8f6376aad7e3",
"pathname": "/peer/tayfur-ozkara",
"from": "/peer/furkan-karakoyunlu",
"to": "/peer/tayfur-ozkara",
"pageName": "peer-slug",
"params": {
"slug": "tayfur-ozkara"
},
"query": {
},
"href": "https://findmentor.network/peer/tayfur-ozkara",
"referrer": "",
"date": 1609670534341,
"fingerprint": 1668194402
},
{
"_id": "5ff19f86592a8f6376aad7e4",
"pathname": "/peer/canberk-koc",
"from": "/peer/tayfur-ozkara",
"to": "/peer/canberk-koc",
"pageName": "peer-slug",
"params": {
"slug": "canberk-koc"
},
"query": {
},
"href": "https://findmentor.network/peer/canberk-koc",
"referrer": "",
"date": 1609670535173,
"fingerprint": 1668194402
},
{
"_id": "5ff1a147592a8f6376aad7e5",
"pathname": "/",
"from": "/",
"to": "/",
"pageName": "index",
"params": {
},
"query": {
},
"href": "https://findmentor.network/",
"referrer": "",
"date": 1609670907220,
"fingerprint": 753114804
},
{
"_id": "5ff1a170592a8f6376aad7e6",
"pathname": "/peer/hidayet-ok",
"from": "/",
"to": "/peer/hidayet-ok",
"pageName": "peer-slug",
"params": {
"slug": "hidayet-ok"
},
"query": {
},
"href": "https://findmentor.network/peer/hidayet-ok",
"referrer": "",
"date": 1609670948594,
"fingerprint": 753114804
},
{
"_id": "5ff1a171592a8f6376aad7e7",
"pathname": "/peer/hidayet-ok",
"from": "/",
"to": "/peer/hidayet-ok",
"pageName": "peer-slug",
"params": {
"slug": "hidayet-ok"
},
"query": {
},
"href": "https://findmentor.network/peer/hidayet-ok",
"referrer": "https://findmentor.network/peer/hidayet-ok",
"date": 1609670949794,
"fingerprint": 753114804
},
{
"_id": "5ff1a17b592a8f6376aad7e8",
"pathname": "/",
"from": "/peer/hidayet-ok",
"to": "/",
"pageName": "index",
"params": {
},
"query": {
},
"href": "https://findmentor.network/",
"referrer": "",
"date": 1609670959856,
"fingerprint": 753114804
},
{
"_id": "5ff1a1fd592a8f6376aad7e9",
"pathname": "/search/Cagatay",
"from": "/",
"to": "/search/Cagatay",
"pageName": "search-keyword",
"params": {
"keyword": "Cagatay"
},
"query": {
},
"href": "https://findmentor.network/search/Cagatay",
"referrer": "",
"date": 1609671165714,
"fingerprint": 1668194402
},
{
"_id": "5ff1a202592a8f6376aad7ea",
"pathname": "/guide",
"from": "/search/Cagatay",
"to": "/guide/",
"pageName": "guide",
"params": {
},
"query": {
},
"href": "https://findmentor.network/guide/",
"referrer": "",
"date": 1609671170251,
"fingerprint": 1668194402
},
{
"_id": "5ff1a222592a8f6376aad7eb",
"pathname": "/guide/",
"from": "/guide/",
"to": "/guide/",
"pageName": "guide",
"params": {
},
"query": {
},
"href": "https://findmentor.network/guide/#fn-2",
"referrer": "",
"date": 1609671201853,
"fingerprint": 1668194402
},
{
"_id": "5ff1a26c592a8f6376aad7ec",
"pathname": "/mentorships",
"from": "/guide/",
"to": "/mentorships/",
"pageName": "mentorships",
"params": {
},
"query": {
},
"href": "https://findmentor.network/mentorships/",
"referrer": "",
"date": 1609671276324,
"fingerprint": 1668194402
},
{
"_id": "5ff1a26d592a8f6376aad7ed",
"pathname": "/mentees",
"from": "/mentorships/",
"to": "/mentees/",
"pageName": "mentees",
"params": {
},
"query": {
},
"href": "https://findmentor.network/mentees/",
"referrer": "",
"date": 1609671276884,
"fingerprint": 1668194402
},
{
"_id": "5ff1a26e592a8f6376aad7ee",
"pathname": "/mentors",
"from": "/mentees/",
"to": "/mentors/",
"pageName": "mentors",
"params": {
},
"query": {
},
"href": "https://findmentor.network/mentors/",
"referrer": "",
"date": 1609671277868,
"fingerprint": 1668194402
},
{
"_id": "5ff1a275592a8f6376aad7ef",
"pathname": "/mentees",
"from": "/mentors/",
"to": "/mentees/",
"pageName": "mentees",
"params": {
},
"query": {
},
"href": "https://findmentor.network/mentees/",
"referrer": "",
"date": 1609671285060,
"fingerprint": 1668194402
},
{
"_id": "5ff1a27c592a8f6376aad7f0",
"pathname": "/search/eray",
"from": "/mentees/",
"to": "/search/eray",
"pageName": "search-keyword",
"params": {
"keyword": "eray"
},
"query": {
},
"href": "https://findmentor.network/search/eray",
"referrer": "",
"date": 1609671292278,
"fingerprint": 1668194402
},
{
"_id": "5ff1a27e592a8f6376aad7f1",
"pathname": "/peer/eray-gundogmus",
"from": "/search/eray",
"to": "/peer/eray-gundogmus",
"pageName": "peer-slug",
"params": {
"slug": "eray-gundogmus"
},
"query": {
},
"href": "https://findmentor.network/peer/eray-gundogmus",
"referrer": "",
"date": 1609671294156,
"fingerprint": 1668194402
},
{
"_id": "5ff1a725592a8f6376aad7f2",
"pathname": "/peer/murat-demirci",
"from": "/",
"to": "/peer/murat-demirci",
"pageName": "peer-slug",
"params": {
"slug": "murat-demirci"
},
"query": {
},
"href": "https://findmentor.network/peer/murat-demirci",
"referrer": "https://www.google.com/",
"date": 1609672484415,
"fingerprint": 1668194402
},
{
"_id": "5ff1a737592a8f6376aad7f3",
"pathname": "/guide",
"from": "/",
"to": "/guide/",
"pageName": "guide",
"params": {
},
"query": {
},
"href": "https://findmentor.network/guide/",
"referrer": "https://t.co/V3MgLoP9Cq?amp=1",
"date": 1609672569055,
"fingerprint": 725826516
},
{
"_id": "5ff1a747592a8f6376aad7f4",
"pathname": "/mentorships",
"from": "/guide/",
"to": "/mentorships/",
"pageName": "mentorships",
"params": {
},
"query": {
},
"href": "https://findmentor.network/mentorships/",
"referrer": "https://t.co/V3MgLoP9Cq?amp=1",
"date": 1609672585998,
"fingerprint": 725826516
},
{
"_id": "5ff1a760592a8f6376aad7f5",
"pathname": "/mentorships",
"from": "/",
"to": "/mentorships/",
"pageName": "mentorships",
"params": {
},
"query": {
},
"href": "https://findmentor.network/mentorships/",
"referrer": "https://findmentor.network/guide/",
"date": 1609672611101,
"fingerprint": 725826516
},
{
"_id": "5ff1a763592a8f6376aad7f6",
"pathname": "/mentors",
"from": "/mentorships/",
"to": "/mentors/",
"pageName": "mentors",
"params": {
},
"query": {
},
"href": "https://findmentor.network/mentors/",
"referrer": "https://findmentor.network/guide/",
"date": 1609672614091,
"fingerprint": 725826516
},
{
"_id": "5ff1a766592a8f6376aad7f7",
"pathname": "/mentees",
"from": "/mentors/",
"to": "/mentees/",
"pageName": "mentees",
"params": {
},
"query": {
},
"href": "https://findmentor.network/mentees/",
"referrer": "https://findmentor.network/guide/",
"date": 1609672617484,
"fingerprint": 725826516
},
{
"_id": "5ff1a76a592a8f6376aad7f8",
"pathname": "/peer/ahmet-can-guven",
"from": "/mentees/",
"to": "/peer/ahmet-can-guven",
"pageName": "peer-slug",
"params": {
"slug": "ahmet-can-guven"
},
"query": {
},
"href": "https://findmentor.network/peer/ahmet-can-guven",
"referrer": "https://findmentor.network/guide/",
"date": 1609672621440,
"fingerprint": 725826516
},
{
"_id": "5ff1a788592a8f6376aad7f9",
"pathname": "/mentees",
"from": "/peer/ahmet-can-guven",
"to": "/mentees/",
"pageName": "mentees",
"params": {
},
"query": {
},
"href": "https://findmentor.network/mentees/",
"referrer": "https://findmentor.network/guide/",
"date": 1609672651184,
"fingerprint": 725826516
},
{
"_id": "5ff1a78d592a8f6376aad7fa",
"pathname": "/peer/gurkan-aslan",
"from": "/mentees/",
"to": "/peer/gurkan-aslan",
"pageName": "peer-slug",
"params": {
"slug": "gurkan-aslan"
},
"query": {
},
"href": "https://findmentor.network/peer/gurkan-aslan",
"referrer": "https://findmentor.network/guide/",
"date": 1609672656137,
"fingerprint": 725826516
},
{
"_id": "5ff1a796592a8f6376aad7fb",
"pathname": "/mentees",
"from": "/peer/gurkan-aslan",
"to": "/mentees/",
"pageName": "mentees",
"params": {
},
"query": {
},
"href": "https://findmentor.network/mentees/",
"referrer": "https://findmentor.network/guide/",
"date": 1609672665558,
"fingerprint": 725826516
},
{
"_id": "5ff1a797592a8f6376aad7fc",
"pathname": "/mentors",
"from": "/mentees/",
"to": "/mentors/",
"pageName": "mentors",
"params": {
},
"query": {
},
"href": "https://findmentor.network/mentors/",
"referrer": "https://findmentor.network/guide/",
"date": 1609672666442,
"fingerprint": 725826516
},
{
"_id": "5ff1aa1d592a8f6376aad7fd",
"pathname": "/",
"from": "/",
"to": "/",
"pageName": "index",
"params": {
},
"query": {
},
"href": "https://findmentor.network/",
"referrer": "",
"date": 1609673246377,
"fingerprint": -530454175
},
{
"_id": "5ff1aa1e592a8f6376aad7fe",
"pathname": "/hire",
"from": "/",
"to": "/hire",
"pageName": "hire",
"params": {
},
"query": {
},
"href": "https://findmentor.network/hire",
"referrer": "",
"date": 1609673247717,
"fingerprint": -530454175
},
{
"_id": "5ff1aa24592a8f6376aad7ff",
"pathname": "/mentorships",
"from": "/",
"to": "/mentorships",
"pageName": "mentorships",
"params": {
},
"query": {
},
"href": "https://findmentor.network/mentorships",
"referrer": "https://findmentor.network/hire",
"date": 1609673253805,
"fingerprint": -530454175
},
{
"_id": "5ff1aa30592a8f6376aad800",
"pathname": "/peer/selcuk-tatar",
"from": "/hire",
"to": "/peer/selcuk-tatar",
"pageName": "peer-slug",
"params": {
"slug": "selcuk-tatar"
},
"query": {
},
"href": "https://findmentor.network/peer/selcuk-tatar",
"referrer": "",
"date": 1609673266298,
"fingerprint": -530454175
},
{
"_id": "5ff1aa32592a8f6376aad801",
"pathname": "/hire",
"from": "/peer/selcuk-tatar",
"to": "/hire",
"pageName": "hire",
"params": {
},
"query": {
},
"href": "https://findmentor.network/hire",
"referrer": "",
"date": 1609673267858,
"fingerprint": -530454175
},
{
"_id": "5ff1aa35592a8f6376aad802",
"pathname": "/peer/yunus-yilmaz",
"from": "/hire",
"to": "/peer/yunus-yilmaz",
"pageName": "peer-slug",
"params": {
"slug": "yunus-yilmaz"
},
"query": {
},
"href": "https://findmentor.network/peer/yunus-yilmaz",
"referrer": "",
"date": 1609673270577,
"fingerprint": -530454175
},
{
"_id": "5ff1aa3a592a8f6376aad803",
"pathname": "/hire",
"from": "/peer/yunus-yilmaz",
"to": "/hire",
"pageName": "hire",
"params": {
},
"query": {
},
"href": "https://findmentor.network/hire",
"referrer": "",
"date": 1609673275448,
"fingerprint": -530454175
},
{
"_id": "5ff1aa3c592a8f6376aad804",
"pathname": "/peer/murat-mirgun-ercan",
"from": "/hire",
"to": "/peer/murat-mirgun-ercan",
"pageName": "peer-slug",
"params": {
"slug": "murat-mirgun-ercan"
},
"query": {
},
"href": "https://findmentor.network/peer/murat-mirgun-ercan",
"referrer": "",
"date": 1609673278190,
"fingerprint": -530454175
},
{
"_id": "5ff1aa3e592a8f6376aad805",
"pathname": "/hire",
"from": "/peer/murat-mirgun-ercan",
"to": "/hire",
"pageName": "hire",
"params": {
},
"query": {
},
"href": "https://findmentor.network/hire",
"referrer": "",
"date": 1609673279742,
"fingerprint": -530454175
},
{
"_id": "5ff1aa3f592a8f6376aad806",
"pathname": "/peer/mustafa-b.-yildiz",
"from": "/hire",
"to": "/peer/mustafa-b.-yildiz",
"pageName": "peer-slug",
"params": {
"slug": "mustafa-b.-yildiz"
},
"query": {
},
"href": "https://findmentor.network/peer/mustafa-b.-yildiz",
"referrer": "",
"date": 1609673280466,
"fingerprint": -530454175
},
{
"_id": "5ff1aa42592a8f6376aad807",
"pathname": "/peer/mustafa-b.-yildiz",
"from": "/peer/mustafa-b.-yildiz",
"to": "/peer/mustafa-b.-yildiz",
"pageName": "peer-slug",
"params": {
"slug": "mustafa-b.-yildiz"
},
"query": {
},
"href": "https://findmentor.network/peer/mustafa-b.-yildiz#active-mentorships",
"referrer": "",
"date": 1609673283631,
"fingerprint": -530454175
},
{
"_id": "5ff1ab2e592a8f6376aad808",
"pathname": "/",
"from": "/",
"to": "/",
"pageName": "index",
"params": {
},
"query": {