-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·1260 lines (1067 loc) · 67.9 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>
<!--[if IE 8 ]><html class="no-js oldie ie8" lang="en"> <![endif]-->
<!--[if IE 9 ]><html class="no-js oldie ie9" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html class="no-js" lang="en"> <!--<![endif]-->
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>Seyhun Akyürek / Senior Software Engineer @ IOS / Swift / Objective-C / Node.js / Former Rubyist</title>
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="Seyhun Akyürek working as senior software Engineer at eBay. Writing code to iOS, Swift, Objective-C, Cocoa Touch and Java. Former Rubyist" />
<meta name="keywords" content="iOS, Swift, Objective-C, Cocoa Touch, Scala, Ruby, Rails, Application development, Mobile Architecture, Agile development, Scrum" />
<meta name="author" content="Seyhun Akyürek" />
<meta name="twitter:card" content="summary">
<meta name="twitter:domain" content="seyhunakyurek.com" />
<meta name="twitter:title" property="og:title" itemprop="title name" content="Seyhun Akyürek" />
<meta name="twitter:description" property="og:description" itemprop="description" content="Seyhun Akyürek working as senior software Engineer at eBay. Writing code to iOS, Swift, Objective-C, Cocoa Touch. Node.JS. Former Rubyist" />
<meta name="keywords" content="ios, swift, objective c, java, spring framework, ruby, rails" />
<meta property="og:type" content="website" />
<meta property="og:image" itemprop="image primaryImageOfPage" content="https://www.gravatar.com/avatar/752f46a244e2f617b77ea15b6e310a63?s=200&r=PG&d=https://i.stack.imgur.com/T119o.png" />
<meta property="og:url" content="http://seyhunakyurek.com" />
<!-- Yandex
================================================== -->
<meta name="yandex-verification" content="b3879ae8467c9c20" />
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="icon" type="image/png" href="favicon.png">
<!-- google analytics
================================================== -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-20823915-2', 'auto');
ga('send', 'pageview');
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "NewsArticle",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "http://www.seyhunakyurek.com"
},
"headline": "Seyhun Akyürek / Senior Software Engineer",
"image": [
"https://github.com/seyhunak/seyhunak.github.io/blob/master/images/profile.jpg?raw=true"
],
"datePublished": "2018-01-05T08:00:00+08:00",
"dateModified": "2018-01-05T09:20:00+08:00",
"author": {
"@type": "Person",
"name": "Seyhun Akyürek"
},
"publisher": {
"@type": "Organization",
"name": "seyhunak",
"logo": {
"@type": "ImageObject",
"url": "https://github.com/seyhunak/seyhunak.github.io/blob/master/images/profile.jpg?raw=true"
}
},
"description": "Seyhun Akyürek / Senior Software Engineer @ IOS / Swift / Objective-C / Node.js / Former Rubyist"
}
</script>
</head>
<body id="top">
<!-- intro section
================================================== -->
<section id="intro">
<div class="intro-overlay"></div>
<div class="intro-content">
<div class="row">
<div class="col-twelve">
<h5>Hello, World!</h5>
<h1>I'm Seyhun Akyürek, Senior Software Engineer.</h1>
<p class="intro-position">
<span>Blogger, Open Source Developer. Swift/Objective-C / Node.js / Former Rubyist</span>
</p>
<a class="button stroke smoothscroll" href="#about" title="">More About Me</a>
</div>
</div>
</div> <!-- /intro-content -->
<ul class="intro-social">
<li><a target="new" href="https://www.linkedin.com/in/seyhunak/"><i class="fab fa-linkedin"></i></a></li>
<li><a target="new" href="http://medium.com/@seyhunak"><i class="fab fa-medium"></i></a></li>
<li><a target="new" href="http://twitter.com/seyhunak"><i class="fab fa-twitter"></i></a></li>
<li><a target="new" href="https://www.facebook.com/seyhunak"><i class="fab fa-facebook"></i></a></li>
<li><a target="new" href="http://instagram.com/seyhunakyurek"><i class="fab fa-instagram"></i></a></li>
<li><a target="new" href="http://github.com/seyhunak"><i class="fab fa-github"></i></a></li>
<li><a target="new" href="https://stackoverflow.com/users/story/236598"><i class="fab fa-stack-overflow"></i></a></li>
<li><a target="new" href="http://hackerrank.com/seyhunak"><i class="fab fa-hackerrank"></i></a></li>
<li><a target="new" href="https://www.slideshare.net/seyhunak"><i class="fab fa-slideshare"></i></a></li>
<li><a target="new" href="http://behance.com/seyhunak"><i class="fab fa-behance"></i></a></li>
<li><a target="new" href="http://dribble.com/seyhunak"><i class="fab fa-dribbble"></i></a></li>
<li><a target="new" href="http://soundcloud.com/seyhunak"><i class="fab fa-soundcloud"></i></a></li>
<li><a target="new" href="https://calendly.com/seyhunak/15min"><i class="far fa-calendar-check"></i></a></li>
<li><a target="new" href="https://my.playstation.com/profile/seyhunak"><i class="far fa-playstation"></i></a></li>
</ul> <!-- /intro-social -->
</section> <!-- /intro -->
<!-- about section
================================================== -->
<section id="about">
<div class="row section-intro">
<div class="col-twelve">
<h5>About</h5>
<h1>I'm Seyhun Akyürek, Senior Software Engineer.
Working as Senior Mobile Consultant.
Blogger. Open Source Developer
</h1>
<div class="intro-info">
<img src="https://avatars0.githubusercontent.com/u/170820?s=460&v=4" alt="Profile Picture">
<p class="lead">
Currently writing code in <strong>Mobile platforms</strong> solving problems, designing technical architectures.
Living in Istanbul / Turkey
</p>
</div>
</div>
</div> <!-- /section-intro -->
<div class="row about-content">
<div class="col-twelve">
<h3>My Profile</h3>
<p>Typically 10 years directly related experience of software development and/or enterprise software implementation experience from startups to enterprise in eCommerce, real-time messaging, payment, fin-tech area</p>
</p>
</div>
<div class="col-six tab-full">
<p>Perfectionalist. Good at Kitchen. I love to cook Italian, Turkish and Indian kitchen.
Bicycle lover.
Coffee; (while coding) Starbucks Veranda Blend, Verona, Sumatra.
Beer; Jet Black Heart, Gulden Draak, Petrus, Gara Guzu, Amsterdam, Guiness, Frederik Brown Ale.
Whiskey; The Macallan, Chivas Regal, Talisker.
Playing video games, Playstation.
Love to go theaters.
Love to reading books daily.
Loves to do Yoga everyday.
Going outdoors.
Swimming.
Travels around the world which including Thailand, Russia.
Cuba, Barcelona, Amsterdam, Italy, Roma, Venice, Sevilla, Bangkok, Lhasa (China)
Malta, Cambodia, Vietnam, Tokyo, Bahamas.
</p>
<ul class="info-list">
<li>
<strong>Fullname:</strong>
<span>Seyhun Akyurek</span>
</li>
<li>
<strong>Website</strong>
<span>seyhunakyurek.com</span>
</li>
<li>
<strong>Email:</strong>
<span>seyhunak AT gmail DOT com</span>
</li>
</ul> <!-- /info-list -->
<h3>Soft / Technical / Enginerring Skills</h3>
<ul>
<li>Ability to Analyze Complex Technical Information</li>
<li>Analyze Business Requirements and Assess Impact With Existing Application Architecture</li>
<li>Analyze, Design and Implement Database Structures</li>
<li>Consistently Seeking and Learning New Technology</li>
<li>Detail Oriented</li>
<li>Enhance the Functional and Technical Aspects of Products</li>
<li>Experience With Source Code and Version Repository</li>
<li>Familiar with UI Toolkits and Frameworks</li>
<li>Hands-On Java, Ruby, Ruby on Rails, Node.js Development Experience</li>
<li>Have an experience on Node.JS development, enhancement and customization</li>
<li>DevOps knowledge and understanding in Docker Compose and Kubernetes</li>
<li>Have an experience on headless / abstract architectures in terms of back-end and front-end communication.</li>
<li>Familiar JIRA system or Kanban boards for issues & tickets workflow</li>
<li>Manage Multiple Projects in a Deadline-Driven Environment</li>
<li>Strong Oral and Written Communication</li>
<li>Participating in Source Code and Design Reviews</li>
<li>Thrive in Dynamic, Fast-Paced Environments</li>
<li>Troubleshoot and Debug Issues</li>
<li>Understand Software Engineering Best Practices</li>
<li>Work Well Independently and Within a Team Setting</li>
<li>Work Within an Agile Scrum Team</li>
<li>Write Clear and Detailed Technical Specifications and Documentation</li>
</ul>
</div>
<div class="col-six tab-full">
<h3>Application Development</h3>
<p>Over 10 years of experience in designing & developing applications. Starting from Objective C to Swift.
5+ years of development spesifically mobile applications UI and integrating with various database services and client-server applications using Rails and Node.js
</p>
<h3>Open Source</h3>
<p>Built and contributed open source projects including popular twitter-bootstrap-rails Twitter Bootstrap for Rails 3.x - 4 Asset Pipeline project. (around 5k stars, 1k fork)
Reviewed pull requests, merged pull requests, and verified reported issues on open source projects
<a href="https://github.com/seyhunak/twitter-bootstrap-rails">Twitter Bootstrap for Rails 5 - 4.x Asset Pipeline</a>
</p>
<h3>Proficiency</h3>
<ul class="skill-bars">
<li>
<div class="progress percent90"><span>90%</span></div>
<strong>Problem solving</strong>
</li>
<li>
<div class="progress percent85"><span>85%</span></div>
<strong>Programming language</strong>
</li>
<li>
<div class="progress percent95"><span>95%</span></div>
<strong>Debugging</strong>
</li>
<li>
<div class="progress percent80"><span>80%</span></div>
<strong>System design</strong>
</li>
<li>
<div class="progress percent70"><span>70%</span></div>
<strong>Performance</strong>
</li>
<li>
<div class="progress percent90"><span>90%</span></div>
<strong>Code review capability</strong>
</li>
</ul> <!-- /skill-bars -->
<h3>Languages</h3>
<ul class="skill-bars">
<li>
<div class="progress percent95"><span>95%</span></div>
<strong>Swift</strong>
</li>
<li>
<div class="progress percent85"><span>85%</span></div>
<strong>Objective-C</strong>
</li>
<li>
<div class="progress percent75"><span>75%</span></div>
<strong>Ruby / Ruby On Rails</strong>
</li>
<li>
<div class="progress percent60"><span>60%</span></div>
<strong>Javascript</strong>
</li>
<li>
<div class="progress percent50"><span>50%</span></div>
<strong>Blockchain</strong>
</li>
<li>
<div class="progress percent90"><span>90%</span></div>
<strong>Agile Development / Scrum</strong>
</li>
</ul> <!-- /skill-bars -->
</div>
</div>
<div class="row section-intro">
<div class="col-twelve">
<div class="row">
<div class="col-twelve">
<ul class="stats-tabs">
<li><a href="#">14<em>Project delivered to live</em></a></li>
<li><a href="#">5000+<em>Followers I have</em></a></li>
<li><a href="#">10300<em>Steps taken every-day</em></a></li>
<li><a href="#">125<em>Books Read Until Now</em></a></li>
<li><a href="#">30<em>Minutes of Exercise I'm doing every-day</em></a></li>
</ul>
</div>
</div> <!-- /row -->
</div>
</div> <!-- /section-intro-->
<div class="row button-section">
<div class="col-twelve">
<a href="http://pph.me/seyhunak" title="Hire Me on PPH" class="button stroke smoothscroll">Hire Me On PPH</a>
<a href="http://stackoverflow.com/story/seyhunak" title="Download My Story" class="button button-primary">My Story</a>
<a href="http://stackoverflow.com/cv/seyhunak" title="Download My CV" class="button button-primary">My CV</a>
</div>
</div>
</section> <!-- /process-->
<!-- resume Section
================================================== -->
<section id="resume" class="grey-section">
<div class="row section-intro">
<div class="col-twelve">
<h5>Resume</h5>
<h1>More of from me.</h1>
<p class="lead">
You can see my work experience below, in different startups / enterprise level companies I'm currently working and worked in previously.
</p>
</div>
</div> <!-- /section-intro-->
<div class="row resume-timeline">
<div class="col-twelve resume-header">
<h2>Work Experience</h2>
</div> <!-- /resume-header -->
<div class="col-twelve">
<div class="timeline-wrap">
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Senior Mobile Consultant at Turkcell</h3>
<p>Jan 2020 - Current</p>
</div>
<div class="timeline-content">
<h4>Turkcell</h4>
<p>Turkcell is Turkey-based technology company communications operator. It is GSM, 2G, 3G, 4G and 4.5G operator. It provides services using GSM 900, UMTS2100, LTE800, LTE900, LTE1800, LTE2100, LTE2600 technologies.</p>
<ul>
<li>Dedicated on Turkcell TV+ (Apple 4K Development) in Mobile Applications at Turkcell</li>
<li>Mobile Video Streaming with HLS for TV+</li>
<li>Audio Streaming for Fizy</li>
<li>Using Jenkins for CI for Devops enabled projects</li>
<li>Implementing Agile development model using Scrum framework.</li>
</ul>
See in App-store: <a name="tv+" class="anchor" href="#turkcell">
<span class="octicon octicon-link"></span></a>
<a href="https://apps.apple.com/tr/app/turkcell-tv/id835880015">Tv+
</a>
<br>
See in App-store: <a name="fizy+" class="anchor" href="#turkcell">
<span class="octicon octicon-link"></span></a>
<a href="https://apps.apple.com/tr/app/fizy-m%C3%BCzik-video/id404239912?l=tr">Fizy
</a>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Senior IOS Developer at eBay</h3>
<p>May 2017 - November 2019</p>
</div>
<div class="timeline-content">
<h4>eBay</h4>
<p>Worked on Gittigidiyor's iPhone, iPad applications. GittiGidiyor is the leading e-commerce application in Turkey</p>
<ul>
<li>Adapted to the Agile development model using Scrum framework.</li>
<li>Worked with the Agile Leaders team to adopt Agile transformation for the GittiGidiyor
Organizing Tech-Day( in-house tech-talks) for GittiGidiyor organization</li>
<li>Using Objective-C extensively. SOAPUI, Jira, Confluence, Slack for team messaging</li>
<li>Using Xcode and Appcode for application development</li>
<li>Adapted to the agile development model using Scrum framework.</li>
<li>Working on application architecture built using Objective-C, Service Oriented Domain Model</li>
<li>Working on new features built using Objective-C, REST APIs.</li>
<li>Implemented Secure Card Payment Gateway using MobilExpress, using PCI DSS Level 1 Security Architecture</li>
<li>Implement Guest Checkout feature; Payment Instant Refunding modules</li>
<li>Implemented Marketing integrations, Google SDK, Adjust, Omniture, Universal Linking, Deeplinking</li>
<li>Used Jenkins for CI and for Docker, Kubernetes for Devops</li>
</ul>
See in App-store: <a name="ebay" class="anchor" href="#ebay">
<span class="octicon octicon-link"></span></a>
<a href="http://www.ebay.com">eBay | Gittigidiyor
</a>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Senior IOS Developer</h3>
<p>October 2016 - May 2017</p>
</div>
<div class="timeline-content">
<h4>Dreams & Bytes Agency</h4>
<p>Worked as Senior IOS developer on realtime messaging IOS application called FanFan. Using Swift, Firebase, Implementing Unidirectional Data Flow Architecture, MVP, Clean Architecture in Swift 3</p>
<ul>
<li>Built architecture using Swift, Protocol Oriented Programming, MVP, Test Driven Development, TeamCity CI, REST APIs.</li>
<li>Implemented Firebase realtime architecture, microservices, notifications</li>
<li>Working on Realtime API's and related micro-services.</li>
<li>Worked on Agile based development model.</li>
<li>Worked extensively with Swift 3</li>
<li>Working with native and third party frameworks. </li>
<li>Customized the table view cells depending on the design requirement. </li>
<li>Used Storyboard to design the UI wireframes of the application. </li>
<li>Used IB for Multiview-architecture in XIB using auto layouts, and customizing it using code. </li>
<li>Used Zeplin / Photoshop tool for designs. </li>
<li>Worked in tandem with the web service team to discuss the interface required along with changes the interface required. </li>
<li>Worked on web service calls, XML and JSON parsing.</li>
<li>Followed the apple UI guidelines throughout the project. </li>
<li>Created the View Controllers by both programming and through Interface Builder. </li>
<li>Proposed mobile friendly design approaches needed to develop the app. </li>
<li>Used BitBucket for code sharing and Jira for project tracking.</li>
<li>Used HockeyApp for testing, beta releases and crash reporting</li>
<li>Environment: iOS 8/9 iPhone SDK, Swift, Objective-C, Xcode 7.x, Interface-Builder, Cocoa Touch, UIKit framework, MVP architecture, RESTful JSON web services.</li>
</ul>
See in App-store: <a name="fanfan" class="anchor" href="#fanfan">
<span class="octicon octicon-link"></span></a>
<a href="https://appsto.re/tr/uXcrhb.i">FanFan
</a>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Mateli</h3>
<p>May 2016 - October 2016</p>
</div>
<div class="timeline-content">
<h4>Mateli eBanking / Fin-Tech</h4>
<p>Worked as Senior IOS/Swift engineer on Mateli's mobile banking project</p>
<ul>
<li>Built architecture using Swift, Protocol Oriented Programming, MVVM, Test Driven Development, TeamCity CI, Jenkins CI and enterprise grade-level tools, financial microservices, REST APIs.</li>
<li>Implemented Mateli's payment architecture, microservices</li>
<li>Worked on Face Recognition API, Voice Recognation, Fraud Prevention and payment related micro-services.</li>
<li>Worked on Agile based development model.</li>
<li>Worked extensively with Swift and Objective C. </li>
<li>Experience in working with native and third party frameworks. </li>
<li>Customized the table view cells depending on the design requirement. </li>
<li>Used Storyboard to design the UI wireframes of the application. </li>
<li>Used IB for Multiview-architecture in XIB using auto layouts, and customizing it using code. </li>
<li>Used Zeplin tool for designs. </li>
<li>Worked in tandem with the web service team to discuss the interface required along with changes the interface required. </li>
<li>Worked on web service calls, XML and JSON parsing.</li>
<li>Followed the apple UI guidelines throughout the project. </li>
<li>Created the View Controllers by both programming and through Interface Builder. </li>
<li>Proposed mobile friendly design approaches needed to develop the app. </li>
<li>Used BitBucket for code sharing and Jira for project tracking.</li>
<li>Used continuous integration Teamcity to build / test / deploy to Mateli IOS project.</li>
<li>Used Fabric for testing, beta releases and crash reporting</li>
<li>Environment: iOS 8/9 iPhone SDK, Swift, Objective-C, Xcode 7.x, Interface-Builder, Cocoa Touch, UIKit framework, MVVM architecture, RESTful JSON web services.</li>
</ul>
See in App-store: <a name="mateli" class="anchor" href="#mateli">
<span class="octicon octicon-link"></span></a>
<a href="https://mateli.com">Mateli
</a>
</div>
</div> <!-- /timeline-block -->
<!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Historide</h3>
<p>March 2016 - May 2016</p>
</div>
<div class="timeline-content">
<h4>Historide</h4>
<p>Senior Software Consultant - (Contractor for 3 Month)</p>
<ul>
<li>Built application using Swift, MVC Pattern, VCS, Rails</li>
<li>As an part-time provided support to Historide's backend stack and architecture</li>
<li>Implemented new features to IOS application built using Swift and
implemented backend services</li>
<li>Worked on web service calls, XML and JSON parsing.</li>
<li>Used SVN for code sharing and Asana for project tracking.</li>
<li>Environment: iOS 8/9 iPhone SDK, Swift, Xcode 7.x, Interface-Builder, Cocoa Touch, UIKit framework, MVC architecture, RESTful JSON web services.</li>
</ul>
See in App-store: <a name="historide" class="anchor" href="#historide">
<span class="octicon octicon-link"></span></a>
<a href="https://historide.com">Historide
</a>
</div>
</div> <!-- /timeline-block -->
<!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>INGBank</h3>
<p>June 2015 - May 2016</p>
</div>
<div class="timeline-content">
<h4>INGBank</h4>
<p>Worked as Senior IOS/Swift developer on INGBank's mobile project</p>
<ul>
<li>Swift application using enterprise grade tools.</li>
<li>Implementing INGBank's enterprise payment architecture</li>
<li>Worked on Agile based development model.</li>
<li>Worked extensively with Swift and Objective C. </li>
<li>Experience in working with native and third party frameworks. </li>
<li>Customized the table view cells depending on the design requirement. </li>
<li>Used Storyboard to design the UI wireframes of the application. </li>
<li>Used IB for Multiview-architecture in XIB using auto layouts, and customizing it using code. </li>
<li>Worked in tandem with the web service team to discuss the interface required along with changes the interface required. </li>
<li>Worked on web service calls, XML and JSON parsing.</li>
<li>Followed the apple UI guidelines throughout the project. </li>
<li>Localized application using Strings files</li>
<li>Created the View Controllers by both programming and through Interface Builder. </li>
<li>Used Git for code sharing and Team Foundation Server for project tracking.</li>
<li>Environment: iOS 7/8/9 iPhone SDK, Swift, Objective-C, Xcode 7.x, Interface-Builder, Cocoa Touch, UIKit framework, MVC architecture, RESTful JSON web services.</li>
</ul>
See in App-store: <a name="ingbank" class="anchor" href="#ingbank">
<span class="octicon octicon-link"></span></a>
<a href="https://ingbank.com.tr">INGBank
</a>
</div>
</div> <!-- /timeline-block -->
<!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Useful Business Development Agency</h3>
<p>May 2012 - June 2015</p>
</div>
<div class="timeline-content">
<h4>Studio (Useful Business Development Agency)</h4>
<p>Worked as Senior Swift developer on Studio project, managed the team, implemented latest realtime technologies, messaging architecture</p>
<ul>
<li>Swift, Objective-C application using Firebase, Parse, Parse Analytics and Parse Push Notifications</li>
<li>Developed Realtime messaging interface for notification system</li>
<li>Extensive API interfaces used (Parse API, Parse Cloud functions)</li>
<li>Used highly scalable mobile backend system. i.e. Firebase</li>
<li>User authentication via Facebook via Parse</li>
<li>Worked extensively with Swift and Objective C. </li>
<li>Experience in working with native and third party frameworks. </li>
<li>Customized the table view cells depending on the design requirement. </li>
<li>Used Storyboard to design the UI wireframes of the application. </li>
<li>Used IB for Multiview-architecture in XIB using auto layouts, and customizing it using code. </li>
<li>Worked on web service calls, XML and JSON parsing.</li>
<li>Followed the apple UI guidelines throughout the project. </li>
<li>Localized application using Strings files</li>
<li>Created the View Controllers by both programming and through Interface Builder. </li>
<li>Used Git for code sharing and Jira for project tracking.</li>
<li>Environment: iOS 7/8/9 iPhone SDK, Swift, Objective-C, Xcode 6.x, Interface-Builder, Cocoa Touch, UIKit framework, MVC architecture, RESTful JSON web services.</li>
</ul>
See in App-store: <a name="studio" class="anchor" href="#studio">
<span class="octicon octicon-link"></span></a>
<a href="http://getstudio.co">Studio
</a>
</div>
</div> <!-- /timeline-block -->
<!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Useful Business Development Agency</h3>
<p>May 2012 - June 2015 (3 years 2 months)</p>
</div>
<div class="timeline-content">
<h4>Introduce</h4>
<p>Introduce is the social connection application built using IOS platform in Swift. Worked as Lead developer on introduceapp.me project, managed the team and implemented latest web technologies and mobile methodologies.</p>
<ul>
<li>Ruby on Rails application with MySQL, MongoDB, Redis database</li>
<li>RESTFUL API Interface for mobile application, built on Rails application with MySQL, MongoDB, Redis database</li>
<li>Developed Realtime messaging interface for notification system</li>
<li>Extensive API interfaces used (Twitter Search API, REST API and Streaming API)</li>
<li>Built highly scalable web backend</li>
<li>User authentication via Twitter</li>
</ul>
See in App-store:<a name="introduce" class="anchor" href="#introduce">
<span class="octicon octicon-link"></span></a><a href="http://introduceapp.me">Introduce</a>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Web Applications built using Ruby On Rails / Javascript</h3>
<p>May 2012 - June 2015</p>
</div>
<div class="timeline-content">
<h4>Pointro</h4>
<p>Worked as Lead developer on pointro.me (SAAS) project, managed the team, implemented latest web technologies and methodologies.</p>
<ul>
<li>Ruby On Rails application with MySQL, MongoDB, Redis database</li>
<li>Developed a location engine and realtime API integrations</li>
<li>Extensive API interfaces used (Twitter, Foursquare, Instagram, Yelp, Booking, Tripadvisor)</li>
<li>Built highly scalable web backend</li>
<li>User authentication via Twitter, Foursquare, Instagram</li>
</ul>
See in Web: <a name="pointro" class="anchor" href="#pointro">
<span class="octicon octicon-link"></span></a><a href="http://pointro.me">Pointro</a>
<h4>HesaplaBakalım</h4>
<p>Worked as Lead developer on hesaplabakalim.com project, managed the team, implemented latest web technologies and methodologies.</p>
<ul>
<li>Ruby On Rails application with PostgreSQL, Redis database</li>
<li>Developed calculator engine (wizard style, or form style) </li>
<li>Cached and scaled application</li>
<li>Marketing actions (Google Analytics and Google Adwords)</li>
<li>User authentication via Facebook</li>
</ul>
See in Web: <a name="hesaplabakalim" class="anchor" href="#hesaplabakalim">
<span class="octicon octicon-link"></span></a><a href="http://hesaplabakalim.com">HesaplaBakalım</a>
<h4>SosyalPosta</h4>
<p>PHP application with MySQL database hosted on Amazon EC2</p>
<ul>
<li>Complex PHP application for generating social postcards and sending as physical card</li>
<li>Contributed to application backend code</li>
</ul>
See in Web: <a name="sosyalpostacom" class="anchor" href="#sosyalpostacom">
<span class="octicon octicon-link"></span></a><a href="http://sosyalposta.com">SosyalPosta.com</a>
<hr>
<a name="background-experience" class="anchor" href="#background-experience"><span class="octicon octicon-link"></span></a>Background Experience</h4>
<h3>
<a name="bupat" class="anchor" href="#bupat"><span class="octicon octicon-link"></span></a>BUPAT GLOBAL - Software Engineer</h3>
<p>May 2010 - May 2012 (2 years 1 month)</p>
<ul>
<li>Bupat Ltd. is milltary equiment seller company. Hosting bupat.com.tr, elektronikvadisi.net, kurumsalperformans.net. I was involved to work for company also in the programming and CRM management of the websites.</li>
</ul><h3>
<h3>
<a name="bupat" class="anchor" href="#bupat"><span class="octicon octicon-link"></span>
</a>Software Engineer</h3>
<p>January 2004 - May 2010 (6 years 5 months)</p>
<ul>
<li>After the school, I built web apps using PHP ve Python for my customers and personal projects.</li>
<li>Asistanbar.com - Developed Windows based, IE browser extension, customizable.</li>
</ul><h3>
<hr>
<a name="background-experience" class="anchor" href="#background-experience"><span class="octicon octicon-link"></span></a>School</h4>
<h3>
<a name="bupat" class="anchor" href="#bupat"><span class="octicon octicon-link"></span></a>University of the People</h3>
<p>Bachelor’s degree, Computer Science · (2019 - 2023)</p>
<h3>
<h3>
<a name="bupat" class="anchor" href="#bupat"><span class="octicon octicon-link"></span></a>Kırıkkale Üniversitesi</h3>
<p>Elektronik Haberleşme ve Telekominikasyon · (2002 - 2004)</p>
<h3>
</div>
</div> <!-- /timeline-block -->
</div> <!-- /timeline-wrap -->
</div> <!-- /col-twelve -->
</div> <!-- /resume-timeline -->
</section> <!-- /features -->
<!-- Portfolio Section
================================================== -->
<section id="portfolio">
<div class="row section-intro">
<div class="col-twelve">
<h5>Achievements I made</h5>
<h1>Check Out Some of My Achievements including certifications, badges</h1>
<div data-iframe-width="200" data-iframe-height="270" data-share-badge-id="ce9ee9a5-6b51-4755-8a8a-3fa4a08433e2" data-share-badge-host="https://www.youracclaim.com"></div><script type="text/javascript" async src="//cdn.youracclaim.com/assets/utilities/embed.js"></script>
<div data-iframe-width="200" data-iframe-height="270" data-share-badge-id="6846ad51-61e7-4481-af6c-8e1448e20062" data-share-badge-host="https://www.youracclaim.com"></div><script type="text/javascript" async src="//cdn.youracclaim.com/assets/utilities/embed.js"></script>
<div data-iframe-width="200" data-iframe-height="270" data-share-badge-id="88123352-a31e-4b3f-b070-7400a651ebc7" data-share-badge-host="https://www.youracclaim.com"></div><script type="text/javascript" async src="//cdn.youracclaim.com/assets/utilities/embed.js"></script>
</div>
<div class="col-twelve">
<h5>Book I'm reading</h5>
<h1>Check Out Some of My Readings</h1>
<p class="lead">Here is the some of books I'm reading.</p>
<div class="col-six tab-full">
<!-- Show static HTML/CSS as a placeholder in case js is not enabled - javascript include will override this if things work -->
<style type="text/css" media="screen">
.gr_custom_container_1579183415 {
/* customize your Goodreads widget container here*/
border: 0px solid gray;
border-radius:10px;
padding: 10px 5px 10px 5px;
background-color: #FFFFFF;
color: #000000;
width: 300px
}
.gr_custom_header_1579183415 {
/* customize your Goodreads header here*/
border-bottom: 1px solid gray;
width: 100%;
margin-bottom: 5px;
text-align: center;
font-size: 120%
}
.gr_custom_each_container_1579183415 {
/* customize each individual book container here */
width: 100%;
clear: both;
margin-bottom: 10px;
overflow: auto;
padding-bottom: 4px;
border-bottom: 1px solid #aaa;
}
.gr_custom_book_container_1579183415 {
/* customize your book covers here */
overflow: hidden;
height: 60px;
float: left;
margin-right: 4px;
width: 39px;
}
.gr_custom_author_1579183415 {
/* customize your author names here */
font-size: 10px;
}
.gr_custom_tags_1579183415 {
/* customize your tags here */
font-size: 10px;
color: gray;
}
.gr_custom_rating_1579183415 {
/* customize your rating stars here */
float: right;
}
</style>
<div id="gr_custom_widget_1579183415">
<div class="gr_custom_container_1579183415">
<h2 class="gr_custom_header_1579183415">
<a style="text-decoration: none;" rel="nofollow" href="https://www.goodreads.com/review/list/7525675-seyhun-aky-rek?shelf=currently-reading&utm_medium=api&utm_source=custom_widget">Seyhun's bookshelf: currently-reading</a>
</h2>
<div class="gr_custom_each_container_1579183415">
<div class="gr_custom_book_container_1579183415">
<a title="Clean Code: A Handbook of Agile Software Craftsmanship" rel="nofollow" href="https://www.goodreads.com/review/show/267464144?utm_medium=api&utm_source=custom_widget"><img alt="Clean Code: A Handbook of Agile Software Craftsmanship" border="0" src="https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1436202607l/3735293._SX50_.jpg" /></a>
</div>
<div class="gr_custom_rating_1579183415">
<span class=" staticStars notranslate" title="it was amazing"><img alt="it was amazing" src="https://www.goodreads.com/images/layout/gr_red_star_active.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_active.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_active.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_active.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_active.png" /></span>
</div>
<div class="gr_custom_title_1579183415">
<a rel="nofollow" href="https://www.goodreads.com/review/show/267464144?utm_medium=api&utm_source=custom_widget">Clean Code: A Handbook of Agile Software Craftsmanship</a>
</div>
<div class="gr_custom_author_1579183415">
by <a rel="nofollow" href="https://www.goodreads.com/author/show/45372.Robert_C_Martin">Robert C. Martin</a>
</div>
<div class="gr_custom_tags_1579183415">
tagged:
currently-reading
</div>
</div>
<div class="gr_custom_each_container_1579183415">
<div class="gr_custom_book_container_1579183415">
<a title="Peopleware: Productive Projects and Teams" rel="nofollow" href="https://www.goodreads.com/review/show/267472935?utm_medium=api&utm_source=custom_widget"><img alt="Peopleware: Productive Projects and Teams" border="0" src="https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1386925395l/67825._SY75_.jpg" /></a>
</div>
<div class="gr_custom_rating_1579183415">
<span class=" staticStars notranslate"><img src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /></span>
</div>
<div class="gr_custom_title_1579183415">
<a rel="nofollow" href="https://www.goodreads.com/review/show/267472935?utm_medium=api&utm_source=custom_widget">Peopleware: Productive Projects and Teams</a>
</div>
<div class="gr_custom_author_1579183415">
by <a rel="nofollow" href="https://www.goodreads.com/author/show/38238.Tom_DeMarco">Tom DeMarco</a>
</div>
<div class="gr_custom_tags_1579183415">
tagged:
currently-reading
</div>
</div>
<div class="gr_custom_each_container_1579183415">
<div class="gr_custom_book_container_1579183415">
<a title="Thinking, Fast and Slow" rel="nofollow" href="https://www.goodreads.com/review/show/936750683?utm_medium=api&utm_source=custom_widget"><img alt="Thinking, Fast and Slow" border="0" src="https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1317793965l/11468377._SX50_.jpg" /></a>
</div>
<div class="gr_custom_rating_1579183415">
<span class=" staticStars notranslate"><img src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /></span>
</div>
<div class="gr_custom_title_1579183415">
<a rel="nofollow" href="https://www.goodreads.com/review/show/936750683?utm_medium=api&utm_source=custom_widget">Thinking, Fast and Slow</a>
</div>
<div class="gr_custom_author_1579183415">
by <a rel="nofollow" href="https://www.goodreads.com/author/show/72401.Daniel_Kahneman">Daniel Kahneman</a>
</div>
<div class="gr_custom_tags_1579183415">
tagged:
currently-reading
</div>
</div>
<div class="gr_custom_each_container_1579183415">
<div class="gr_custom_book_container_1579183415">
<a title="Fooled by Randomness: The Hidden Role of Chance in Life and in the Markets" rel="nofollow" href="https://www.goodreads.com/review/show/1277409989?utm_medium=api&utm_source=custom_widget"><img alt="Fooled by Randomness: The Hidden Role of Chance in Life and in the Markets" border="0" src="https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1388180506l/38315._SY75_.jpg" /></a>
</div>
<div class="gr_custom_rating_1579183415">
<span class=" staticStars notranslate"><img src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /></span>
</div>
<div class="gr_custom_title_1579183415">
<a rel="nofollow" href="https://www.goodreads.com/review/show/1277409989?utm_medium=api&utm_source=custom_widget">Fooled by Randomness: The Hidden Role of Chance in Life and in the Markets</a>
</div>
<div class="gr_custom_author_1579183415">
by <a rel="nofollow" href="https://www.goodreads.com/author/show/21559.Nassim_Nicholas_Taleb">Nassim Nicholas Taleb</a>
</div>
<div class="gr_custom_tags_1579183415">
tagged:
mind and currently-reading
</div>
</div>
<div class="gr_custom_each_container_1579183415">
<div class="gr_custom_book_container_1579183415">
<a title="Curious: The Desire to Know and Why Your Future Depends On It" rel="nofollow" href="https://www.goodreads.com/review/show/1486348389?utm_medium=api&utm_source=custom_widget"><img alt="Curious: The Desire to Know and Why Your Future Depends On It" border="0" src="https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1399456032l/22047408._SY75_.jpg" /></a>
</div>
<div class="gr_custom_rating_1579183415">
<span class=" staticStars notranslate"><img src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /><img alt="" src="https://www.goodreads.com/images/layout/gr_red_star_inactive.png" /></span>
</div>
<div class="gr_custom_title_1579183415">
<a rel="nofollow" href="https://www.goodreads.com/review/show/1486348389?utm_medium=api&utm_source=custom_widget">Curious: The Desire to Know and Why Your Future Depends On It</a>
</div>
<div class="gr_custom_author_1579183415">
by <a rel="nofollow" href="https://www.goodreads.com/author/show/2854556.Ian_Leslie">Ian Leslie</a>
</div>
<div class="gr_custom_tags_1579183415">
tagged:
mind and currently-reading
</div>
</div>
<br style="clear: both"/>
<center>
<a rel="nofollow" href="https://www.goodreads.com/"><img alt="goodreads.com" style="border:0" src="https://www.goodreads.com/images/widget/widget_logo.gif" /></a>
</center>
<noscript>
Share <a rel="nofollow" href="https://www.goodreads.com/">book reviews</a> and ratings with Seyhun, and even join a <a rel="nofollow" href="https://www.goodreads.com/group">book club</a> on Goodreads.
</noscript>
</div>
</div>
<script src="https://www.goodreads.com/review/custom_widget/7525675.Seyhun's%20bookshelf:%20currently-reading?cover_position=left&cover_size=small&num_books=5&order=a&shelf=currently-reading&show_author=1&show_cover=1&show_rating=1&show_review=1&show_tags=1&show_title=1&sort=date_added&widget_bg_color=FFFFFF&widget_bg_transparent=&widget_border_width=none&widget_id=1579183415&widget_text_color=000000&widget_title_size=medium&widget_width=medium" type="text/javascript" charset="utf-8"></script>
</div>
<div class="col-six tab-full">
<!-- Show static HTML/CSS as a placeholder in case js is not enabled - javascript include will override this if things work -->
<style type="text/css" media="screen">
.gr_custom_container_1579183910 {
/* customize your Goodreads widget container here*/
border: 0px solid gray;
border-radius:10px;
padding: 10px 5px 10px 5px;
background-color: #FFFFFF;
color: #000000;
width: 300px
}
.gr_custom_header_1579183910 {
/* customize your Goodreads header here*/
border-bottom: 1px solid gray;
width: 100%;
margin-bottom: 5px;
text-align: center;
font-size: 120%
}
.gr_custom_each_container_1579183910 {
/* customize each individual book container here */
width: 100%;
clear: both;
margin-bottom: 10px;
overflow: auto;
padding-bottom: 4px;
border-bottom: 1px solid #aaa;
}
.gr_custom_book_container_1579183910 {
/* customize your book covers here */
overflow: hidden;
height: 60px;
float: left;
margin-right: 4px;