-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
911 lines (848 loc) · 39.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Primary Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Kağan Can Şit | Software Engineer - Projects, blog posts, designs and more...">
<meta name="author" content="Kağan Can Şit">
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#1a1a1a" media="(prefers-color-scheme: dark)">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://kagancansit.com/">
<meta property="og:title" content="Kağan Can Şit - Software Engineer">
<meta property="og:description" content="Software Engineer focusing on security and server software development">
<meta property="og:image" content="/images/base_site_images/og-image.webp">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="@kagancansit">
<meta name="twitter:title" content="Kağan Can Şit - Software Engineer">
<meta name="twitter:description" content="Software Engineer focusing on security and server software development">
<meta name="twitter:image" content="/images/base_site_images/og-image.webp">
<!-- Title and Favicon -->
<title>Kağan Can Şit</title>
<link rel="icon" href="/images/base_site_images/designPng.webp" type="image/x-icon" />
<!-- Preload Critical Resources -->
<link rel="preconnect" href="https://cdnjs.cloudflare.com">
<link rel="preload" href="/css/base-site.css" as="style">
<link rel="preload" href="/css/tooplate-style.css" as="style">
<!-- Stylesheets -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-..." crossorigin="anonymous"
referrerpolicy="no-referrer">
<link rel="stylesheet" href="/css/base-site.css">
<link rel="stylesheet" href="/css/tooplate-style.css">
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2BLQV2M3JL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-2BLQV2M3JL', {
'anonymize_ip': true,
'cookie_flags': 'SameSite=None;Secure'
});
</script>
</head>
<body>
<div id="loader" class="loader-light">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
<nav class="navbar navbar-expand-sm navbar-light">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">Kağan Can Şit</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div style="background-color: transparent;" class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav mx-auto">
<li class="nav-item"><a href="#project" class="nav-link">Project</a></li>
<li class="nav-item"><a href="#blog" class="nav-link">Blog</a></li>
<li class="nav-item"><a href="#design" class="nav-link">Design</a></li>
<li class="nav-item"><a href="#about" class="nav-link">About</a></li>
<li class="nav-item"><a href="#contact" class="nav-link">Contact</a></li>
</ul>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link"><span class="color-mode color-mode-icon"></span></a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="full-screen">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<h1 class="hero-title">KAĞAN CAN ŞİT</h1>
<p class="hero-subtitle">SOFTWARE ENGINEER</p>
</div>
<div class="col-lg-6">
<p class="hero-text">"I'M SEEKING INSIGHTS THAT BROADEN MY <u>HORIZON</u>."<br><br>
<a href="#about">Learn More</a>
</p>
</div>
</div>
</div>
</section>
<!-- About Me -->
<section class="full-screen" id="about">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<h2>About Me</h2>
<p>
I am Kağan. I work as a software engineer in the defense industry, primarily focusing on security
and server software.
</p>
<p>
I am passionate about developing solutions in technology and security while automating processes.
I closely follow innovations in the C++ programming language and leverage these skills to develop
security solutions and create software that enhances efficiency. Additionally, I value knowledge sharing to
foster a culture of continuous learning and development within the team.
</p>
<p>I am a detail-oriented, hardworking, and eager learner.</p>
<div class="social-links-container">
<div class="social-links">
<a href="mailto:kagancansit@hotmail.com" class="social-link" aria-label="Email" title="Contact by email">
<i class="fas fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/kagancansit/" class="social-link" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn"
title="Visit my LinkedIn profile">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/KaganCanSit" class="social-link" target="_blank" rel="noopener noreferrer" aria-label="GitHub" title="Visit my GitHub profile">
<i class="fab fa-github"></i>
</a>
<a href="https://x.com/kagancansit" class="social-link" target="_blank" rel="noopener noreferrer" aria-label="Twitter" title="Visit my Twitter profile">
<i class="fab fa-twitter"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6">
<img src="../images/base_site_images/potraitImage.webp" loading="lazy" class="img-fluid" alt="Kağan Can Şit Photo">
</div>
</div>
</div>
</section>
<!-- Experience | Education -->
<section class="timeline-section">
<div class="container">
<div class="row g-5">
<!-- Experience -->
<div class="col-lg-6">
<h2 class="section-title mb-4">Experience</h2>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-year">2023</div>
<div class="timeline-content">
<div class="timeline-header">
<h3>Software Engineer</h3>
<small>TÜBİTAK BİLGEM - UEKAE | <i>June 2023 - Present</i></small>
</div>
<details class="timeline-details">
<summary>Learn More</summary>
<div class="details-content">
<p>
I work as part of the National Public Key Infrastructure (MA3) team, focusing on the design and
development of high-performance and secure software solutions using C++.
</p>
<div class="details-section">
<p class="section-title">Key Areas of Expertise</p>
<ul class="details-list">
<li>Designing and configuring modules optimized for specific operating systems.</li>
<li>Providing strategic solutions to enhance the security of HSM modules.</li>
<li>Designing and configuring modules tailored for operating systems.</li>
<li>Implementing performance improvements and security optimizations.</li>
<li>Developing and implementing secure cryptographic algorithms.</li>
<li>Performing comprehensive security and efficiency analyses on algorithms.</li>
</ul>
</div>
<div class="details-section">
<p class="section-title">Tools and Technologies</p>
<ul class="details-list">
<li>Programming Languages: C++</li>
<li>Static Code Analysis Tools: Valgrind, GDB, CppCheck, Shellcheck</li>
<li>Operating Systems: Linux, Windows</li>
<li>Project Management Tools: Atlassian ecosystem (Bitbucket, Jira, Confluence)</li>
</ul>
</div>
<div class="details-section">
<p class="section-title">Certifications and Standards</p>
<ul class="details-list">
<li>PCI, ISO19790 Level-3, and Common Criteria (CC) EAL4+: Actively involved in certification
processes</li>
<li>PKCS#11 Standard: Experienced in developing software fully compliant with security standards
</li>
</ul>
</div>
</div>
</details>
</div>
</div>
<div class="timeline-item">
<div class="timeline-year">2022</div>
<div class="timeline-content">
<h3>Junior Software Engineer</h3>
<small>TÜBİTAK BİLGEM - UEKAE | <i>November 2022 - June 2023</i></small>
<details class="timeline-details">
<summary>Learn More</summary>
<div class="details-content">
<p>
At UEKAE (National Electronics and Cryptology Research Institute) - TUBITAK, I worked full-time in
the MA3 (National Public Key Infrastructure) team from my last year as a student until my
graduation. During this time, I deepened my expertise in software development in accordance with
national security standards. I also significantly improved my skills in creating, auditing and
editing efficient and reliable software architectures.
</p>
</div>
</details>
</div>
</div>
<div class="timeline-item">
<div class="timeline-year">2022</div>
<div class="timeline-content">
<h3>Candidate Software Engineer</h3>
<small>TÜBİTAK BİLGEM - UEKAE | <i>September 2022 - October 20222</i></small>
<details class="timeline-details">
<summary>Learn More</summary>
<div class="details-content">
<p>In the National Public Key Infrastructure (MA3) team, I started as an intern and continued as a
"Candidate Engineer" for two months.</p>
</div>
</details>
</div>
</div>
<div class="timeline-item">
<div class="timeline-year">2022</div>
<div class="timeline-content">
<h3>Software Engineer Summer Intern</h3>
<small>TÜBİTAK BİLGEM - UEKAE | <i>July 2022 - September 2022</i></small>
<details class="timeline-details">
<summary>Learn More</summary>
<div class="details-content">
<p>I worked as an intern in the National Public Key Infrastructure (MA3) team for a total of 40
working days.</p>
</div>
</details>
</div>
</div>
</div>
</div>
<!-- Education -->
<div class="col-lg-6">
<h2 class="section-title mb-4">Education</h2>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-year">2023</div>
<div class="timeline-content">
<h3>Software Engineering</h3>
<small>Manisa Celal Bayar University | <i>September 2020 - June 2023</i></small>
<small>GNO: 3.69</small>
<details class="timeline-details">
<summary>Learn More</summary>
<div class="details-content">
<p>
I completed my undergraduate degree in Software Engineering at Manisa Celal Bayar University.
Throughout my education, I engaged in various side projects to enhance my software skills.
</p>
<p>
In addition, I paid attention to expanding my professional network and gaining new perspectives by
communicating with experienced people in the industry via e-mail and social media tools.
</p>
</div>
</details>
</div>
</div>
<div class="timeline-item">
<div class="timeline-year">2019</div>
<div class="timeline-content">
<h3>Mechatronics Engineering</h3>
<small>Düzce University | <i>November 2019 - June 2020</i></small>
<small>GNO: 3.60</small>
<details class="timeline-details">
<summary>Learn More</summary>
<div class="details-content">
<p>I participated in many events such as Python training and cyber security training given by
HAVELSAN
by taking part in the UAV team in Düzce Mekatek community.</p>
<p>After completing the 1st year of Mechatronics Engineering at Düzce University, I transferred to
Manisa Celal Bayar University, Software Engineering Department.</p>
</div>
</details>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Technology -->
<section class="full-screen">
<div class="container row align-items-center mx-auto">
<div class="col-lg-5 mx-auto text-center">
<div class="text-center">
<a href="https://www.freepik.com/designer">
<img src="/images/resume/freepik-tools-illustration.webp" loading="lazy" class="img-fluid" alt="Freepik Illustration">
</a>
</div>
</div>
<div class="col-lg-6">
<h2>Technologies</h2>
<p>
I primarily use C++ in my software development processes, but I also work with other programming languages and
tools to create comprehensive solutions. I use static code analysis tools like CppCheck and ShellCheck to
improve code quality and security, Valgrind and GDB for memory checking and debugging, and Bash scripts for
automation and process management.
</p>
<p>
I use Atlassian tools like Bitbucket, Jira and Confluence to optimize teamwork and workflow, and Git is one of
my main tools for version control. I also have experience developing on Linux-based systems.
</p>
</div>
</div>
</section>
<!-- Goals -->
<section class="full-screen">
<div class="container row align-items-center mx-auto">
<div class="col-lg-6">
<h2>Goals</h2>
<p>
I want to have in-depth knowledge of the C++ language and further develop my skills. For this reason, I follow
and use the C++ Standard Library and modern standards such as C++17, C++20, C++23 in my applications.
</p>
<p>
My goals include getting more involved in open source projects, getting feedback from experienced developers
and improving myself in the process. I would like to better understand computer architecture, improve software
quality and gain deeper knowledge about the Linux operating system. I am also interested in improving my
ability to read and speak English documentation.
</p>
</div>
<div class="col-lg-5 mx-auto text-center">
<div class="text-center">
<a href="https://www.freepik.com/designer">
<img src="/images/resume/freepik-goals-illustration.webp" loading="lazy" class="img-fluid" alt="Freepik Illustration">
</a>
</div>
</div>
</div>
</section>
<!-- Companies -->
<section class="full-screen companies-section">
<div class="container">
<div class="companies-content">
<h2 class="section-title mb-5">Companies</h2>
<div class="company-grid">
<a href="https://bilgem.tubitak.gov.tr/" target="_blank" rel="noopener noreferrer" class="company-link">
<img src="/images/resume/TUBITAK-Bilgem-DarkMode.webp" loading="lazy" alt="Tübitak Bilgem Logo Dark Mode" class="company-logo dark-logo">
<img src="/images/resume/TUBITAK-Bilgem.webp" loading="lazy" alt="Tübitak Bilgem Logo Light Mode" class="company-logo light-logo">
</a>
</div>
</div>
</div>
</section>
<!-- Project -->
<section class="full-screen" id="project">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5 mx-auto text-center">
<a href="https://www.freepik.com/designer">
<img src="images/base_site_images/freepik-project-illustration.webp" loading="lazy" class="img-fluid" alt="Freepik Illustration">
</a>
</div>
<div class="col-lg-6">
<h2><span>Project</span></h2>
<p>
Engineering is a discipline that develops on problem solving skills. The development of this skill requires
experience, labor and practice. For this reason, I develop many projects and meet with experienced people.
</p>
<p>
The software world has always attracted me with its open source and free software principles, forums based
on knowledge sharing, and globally accessible educational resources. Especially platforms like GitHub, Stack
Overflow and Reddit have inspired me to learn and contribute to the community. People around the world are
sharing knowledge to make life easier by developing projects with limited resources. As an engineer, I
embrace this sharing and inclusive aspect of software and develop my own projects, which I share on GitHub.
</p>
<p class="social-links text-center">
<a href="https://github.com/KaganCanSit" class="social-link" target="_blank" rel="noopener noreferrer" aria-label="GitHub" title="Visit my GitHub profile">
<i class="fab fa-github"></i>
</a>
</p>
</div>
</div>
</div>
</section>
<!-- Open Source Projects Logo Content -->
<section class="container">
<div class="row align-items-center">
<div class="col-lg-5">
<div class="text-center">
<a href="https://www.freepik.com/designer">
<img src="/images/project/freepik-open-source-project-illustration.webp" loading="lazy" class="img-fluid" alt="Freepik Illustration">
</a>
</div>
</div>
<div class="col-lg-6 mx-auto">
<h2><span>Open Source</span></h2>
<p>
Open source projects are a world where people from different civilizations, languages and cultures come
together for a common purpose. In this world, concrete steps are being taken for the future. For my part, I
would like to contribute to these steps as much as I can and grow the list below.
</p>
<p>I look forward to collaborating on many more open-source projects.</p>
</div>
</div>
</section>
<section class="container">
<div class="row">
<div class="col-lg-6">
<div class="timeline">
<div class="timeline-item">
<div class="timeline-year">2024</div>
<div class="timeline-content">
<a href="https://github.com/LuNiZz/siber-guvenlik-sss/pull/154">
<h3>siber-guvenlik-sss</h3>
<small>Some broken links found and removed it</small>
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="timeline">
<div class="timeline-item">
<div class="timeline-year">2024</div>
<div class="timeline-content">
<a href="https://github.com/rubytr/ruby-tr/pull/224">
<h3>ruby-tr</h3>
<small>Broken links were discovered and fixed.</small>
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="timeline">
<div class="timeline-item">
<div class="timeline-year">2024</div>
<div class="timeline-content">
<a href="https://github.com/mue/marketplace/pull/17">
<h3>Mue</h3>
<small>"Sky Perspective" photo packages added and Mustafa Kemal Atatürk Queto typo fault fixed.</small>
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="timeline">
<div class="timeline-item">
<div class="timeline-year">2024</div>
<div class="timeline-content">
<a href="https://github.com/randombit/botan/pull/4093">
<h3>Botan</h3>
<small>The entire directory was prevented from being displayed in doxy documents created using
website.py</small>
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="timeline">
<div class="timeline-item">
<div class="timeline-year">2024</div>
<div class="timeline-content">
<a href="https://github.com/mue/marketplace/pull/16#event-13152991033">
<h3>Mue</h3>
<small>Added Mustafa Kemal Ataturk Quotes</small>
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="timeline">
<div class="timeline-item">
<div class="timeline-year">2024</div>
<div class="timeline-content">
<a href="https://github.com/fatihacet/turkcekaynaklar-com/pull/486">
<h3>turkcekaynaklar-com</h3>
<small>Broken links removed and markdown style fixed with plugin.</small>
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="timeline">
<div class="timeline-item">
<div class="timeline-year">2024</div>
<div class="timeline-content">
<a href="https://github.com/ruby/www.ruby-lang.org/pull/3258">
<h3>Ruby-lang.org</h3>
<small>Many broken and old links were found and identified for necessary changes.</small>
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="timeline">
<div class="timeline-item">
<div class="timeline-year">2024</div>
<div class="timeline-content">
<a href="https://github.com/gabime/spdlog/pull/3052">
<h3>spdlog</h3>
<small>INSTALL.md has been updated to provide current status information.</small>
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="timeline">
<div class="timeline-item">
<div class="timeline-year">2023</div>
<div class="timeline-content">
<a href="https://github.com/hyperledger/cacti/pull/2907">
<h3>cacti</h3>
<small>fix(weaver): usage of weak PRNG issue</small>
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="timeline">
<div class="timeline-item">
<div class="timeline-year">2023</div>
<div class="timeline-content">
<a href="https://github.com/mue/mue/pull/478">
<h3>Mue</h3>
<small>Turkish Language Support Expanded</small>
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="timeline">
<div class="timeline-item">
<div class="timeline-year">2022</div>
<div class="timeline-content">
<a href="https://github.com/mue/mue/pull/329">
<h3>Mue</h3>
<small>TR Translation Update.</small>
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="timeline">
<div class="timeline-item">
<div class="timeline-year">2022</div>
<div class="timeline-content">
<a href="https://github.com/mue/mue/pull/290">
<h3>Mue</h3>
<small>Grammar And Simplification For Turkish Language.</small>
</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="timeline">
<div class="timeline-item">
<div class="timeline-year">2022</div>
<div class="timeline-content">
<a href="https://github.com/mue/mue/pull/285">
<h3>Mue</h3>
<small>Turkish_Language_Support_Added</small>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Blog Content -->
<section class="full-screen" id="blog">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<h2><span>Blog</span></h2>
<p>
Life is a journey, sometimes surrounded by challenging obstacles, sometimes with peaceful and serene paths.
The conditions, the equipment we take with us and the experiences we accumulate along the way are different
for each of us. Yet every step, every turn leads us to new discoveries. Sometimes our paths cross; we share
our experiences, have a cup of tea together and chat.
</p>
<p>
On this page you will find small notes from my own journey. They contain my mistakes, moments of learning
and endless discoveries. There are many roads ahead of me that I have yet to complete and explore, but
looking at the maps of the roads I have crossed and trying to make sense of them is also part of this
adventure.
</p>
<p>
I hope you find something inspiring or useful for your own discoveries...
</p>
</div>
<div class="col-lg-5 mx-auto text-center">
<a href="https://www.freepik.com/designer">
<img src="/images/base_site_images/freepik-blog-illustration.webp" loading="lazy" class="img-fluid mb-5" alt="Freepik Illustration">
</a>
</div>
</div>
</div>
</section>
<section class="full-screen">
<div class="container">
<div class="row" id="blog_content_area">
<!-- Blog Card -->
<div class="col-lg-6">
<div class="card">
<a href="/pages/blogs/09.dahi_yazilimci_efsanesi&&yetersizlik_hissi.html">
<div class="card__image-container">
<img src="/images/blogs/dahi_yazilimci_efsanesi&&yetersizlik hissi/header_image.webp" loading="lazy" class="card__image"
alt="Albert Einsten Image | Dahi Yazılımcısı Efsanesi" />
<div class="card__overlay">
<h4 class="card__title">Dahi Programcı Efsanesi ve Yetersizlik Hissi</h4>
<time class="card__date">Eylül 24, 2023</time>
</div>
</div>
</a>
</div>
</div>
<!-- Blog Card -->
<div class="col-lg-6">
<div class="card">
<a href="/pages/blogs/08.yazilimcinin_otomasyoncusu_bash_betikleri_hakkinda_tuyolar.html">
<div class="card__image-container">
<img src="/images/blogs/yazilimcinin_otomasyoncusu_bash_betikleri_hakkinda_tuyolar/header_image.webp" loading="lazy" class="card__image"
alt="Yazilimcinin Otomasyoncusu Bash" />
<div class="card__overlay">
<h4 class="card__title">Yazılımcının Otomasyoncusu Bash Betikleri Hakkında Tüyolar</h4>
<time class="card__date">Ağustos 26, 2023</time>
</div>
</div>
</a>
</div>
</div>
<!-- Blog Card -->
<div class="col-lg-6">
<div class="card">
<a href="/pages/blogs/07.cpp_ile_gelistirme_yapilirken_neden_new_kullanimi_en_aza_indirgenmeli.html">
<div class="card__image-container">
<img src="/images/blogs/C++_Ile_Gelistirme_Yap._Neden_new_En_Aza_Ind/header_image.webp" loading="lazy" class="card__image"
alt="C++ İle Geliştirme Yapılırken Neden new Kullanımı En Aza İndirgenmeli?" />
<div class="card__overlay">
<h4 class="card__title">C++ İle Geliştirme Yapılırken Neden "new" Kullanımı En Aza İndirgenmeli?</h4>
<time class="card__date">Mart 12, 2023</time>
</div>
</div>
</a>
</div>
</div>
<!-- Blog Card -->
<div class="col-lg-6">
<div class="card">
<a href="/pages/blogs/06.git_gitflow_github_ve_bazi_git_kavramlari.html">
<div class="card__image-container">
<img src="/images/blogs/git_gitflow_github_kavramlari_ve_bazi_git_komutlari/header_image.webp" loading="lazy" class="card__image"
alt="Git Gitflow Github Kavramlari ve Bazi Git Komutlari" />
<div class="card__overlay">
<h4 class="card__title">Git, Git Flow, Github Kavramları ve Bazı Git Komutları</h4>
<time class="card__date">Temmuz 30, 2022</time>
</div>
</div>
</a>
</div>
</div>
<!-- Blog Card -->
<div class="col-lg-4">
<div class="card">
<a href="/pages/blogs/05.linux_kavrami_ve_temel_linux_terminal_komutlari.html">
<div class="card__image-container">
<img src="/images/blogs/linux_kavramı_ve_temel_linux_komutları/header_image.webp" loading="lazy" class="card__image" alt="Linux Kavramı ve Temel Linux Komutları" />
<div class="card__overlay">
<h4 class="card__title"> Linux Kavramı ve Temel Linux Terminal Komutları </h4>
<time class="card__date">Temmuz 23, 2022</time>
</div>
</div>
</a>
</div>
</div>
<!-- Blog Card -->
<div class="col-lg-4">
<div class="card">
<a href="/pages/blogs/04.github_profili_icin_readme_dosyasi_olusturma_ve_ozellestirme.html">
<div class="card__image-container">
<img src="/images/blogs/github_profili_icin_readme_olusturma/header_image.webp" loading="lazy" class="card__image" alt="Github Profili Icin Readme Olusturma" />
<div class="card__overlay">
<h4 class="card__title">Github Profili İçin Readme Dosyası Oluşturma ve Özelleştirme</h4>
<time class="card__date">Temmuz 6, 2022</time>
</div>
</div>
</a>
</div>
</div>
<!-- Blog Card -->
<div class="col-lg-4 ">
<div class="card">
<a href="/pages/blogs/03.acik_kaynaga_katkida_bulunmaya_dair_ilk_adimlar.html">
<div class="card__image-container">
<img src="/images/blogs/acik_kaynaga_katikida_bulunmak/header_iamge.webp" loading="lazy" class="card__image" alt="Acik Kaynaga Katikida Bulunmak" />
<div class="card__overlay">
<h4 class="card__title"> Açık Kaynak Kavramı ve Açık Kaynağa Katkıda Bulunmaya Dair İlk Adımlar </h4>
<time class="card__date">Temmuz 4, 2022</time>
</div>
</div>
</a>
</div>
</div>
<!-- Blog Card -->
<div class="col-lg-4">
<div class="card">
<a href="/pages/blogs/02.notion_ile_markdown_dosyasi_olusturmak.html">
<div class="card__image-container">
<img src="/images/blogs/notion_ile_markdawn_dosyası_olusturmak/header_image.webp" loading="lazy" class="card__image" alt="Notion Ile Markdawn Dosyası Olusturmak" />
<div class="card__overlay">
<h4 class="card__title"> Notion İle Markdown Dosyası Oluşturmak</h4>
<time class="card__date">Haziran 15, 2022</time>
</div>
</div>
</a>
</div>
</div>
<!-- Blog Card -->
<div class="col-lg-4">
<div class="card">
<a href="/pages/blogs/01.idealler_ve_inanclar.html">
<div class="card__image-container">
<img src="/images/blogs/idealler_ve_inanclar/headerImage.webp" loading="lazy" class="card__image" alt="Idealler ve Inanclar" />
<div class="card__overlay">
<h4 class="card__title">İdealler ve İnançlar</h4>
<time class="card__date">Eylül 15, 2021</time>
</div>
</div>
</a>
</div>
</div>
<!-- Blog Card -->
<div class="col-lg-4">
<div class="card">
<a href="/pages/blogs/00.youtube_kanal_onerileri.html">
<div class="card__image-container">
<img src="/images/blogs/youtube_kanal_onerileri/headerImage.webp" loading="lazy" class="card__image" alt="Youtube Kanal Onerileri" />
<div class="card__overlay">
<h4 class="card__title"> Yeni Bilgiler Edinmek İçin YouTube Kanal Önerileri </h4>
<time class="card__date">Ağustos 12, 2020</time>
</div>
</div>
</a>
</div>
</div>
</div>
<!-- Pagination Link -->
<div style="text-align: center;" id="pagination"></div>
</div>
</section>
<!-- Design -->
<section class="full-screen" style="margin-top: 10%;" id="design">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5 mx-auto text-center">
<a href="https://www.freepik.com/designe">
<img src="/images/base_site_images/freepik-digital-design-illustration.webp" loading="lazy" class="img-fluid mb-5" alt="Freepik Illustration">
</a>
</div>
<div class="col-lg-6">
<h2><span>Design</span></h2>
<p>
Graphic design has been one of my hobbies since the first time I met computers. I tried to create different
perspectives with “Digital Surreal” and layering methods, I copied movie scenes or created book chapters. I
made news on Onedio when I was working to earn my school allowance.
</p>
<p>
In developing my design skills, I have also honed my abilities in research and learning. I have gained many
skills such as obtaining information from the internet, examining foreign sources and asking people
questions.
</p>
</div>
<div class="col-lg-12">
<div class="row">
<div class="col-lg-3">
<img src="../images/design/00.Atam_Mustafa_Kemal_Ataturk.webp" loading="lazy" class="img-fluid" alt="Surreal Art | Mustafa Kemal Ataturk">
<img src="../images/design/01.Dusuncelerinde_Kayip.webp" loading="lazy" class="img-fluid" alt="Surreal Art | Dusuncelerinde Kayip">
</div>
<div class="col-lg-3">
<img src="../images/design/03.Warrior_mother.webp" loading="lazy" class="img-fluid" alt="Surreal Art | Warrior Mother">
<img src="../images/design/04.One_Book.webp" loading="lazy" class="img-fluid" alt="Surreal Art | One Book">
</div>
<div class="col-lg-3">
<img src="../images/design/05.Rules.webp" loading="lazy" class="img-fluid" alt="Surreal Art | Rules">
<img src="../images/design/06.Wound.webp" loading="lazy" class="img-fluid" alt="Surreal Art | Wound">
</div>
<div class="col-lg-3">
<img src="../images/design/07.Exploration Of The Stars.webp" loading="lazy" class="img-fluid" alt="Surreal Art | Exploration Of The Stars">
<img src="../images/design/08.UnderTheStars.webp" loading="lazy" class="img-fluid" alt="Surreal Art | Under The Star">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact" style="padding-top: 5%;">
<div class="container mx-auto">
<div class="row align-items-center">
<div class="col-lg-3 mx-auto text-center">
<img src="/images/base_site_images/designGIF.webp" loading="lazy" class="img-fluid" alt="Icon GIF">
</div>
<div class="col-lg-8">
<div class="contact-form">
<h3><span>Would you like to meet? Let's talk!</span></h3>
<p>You may have questions you are curious about or have questions in your mind. In these cases, do not
hesitate to contact me you can reach.</p>
<p>Take care until we meet again.</p>
</div>
</div>
</div>
<div class="social-links-container">
<div class="social-links">
<a href="mailto:kagancansit@hotmail.com" class="social-link" aria-label="Email" title="Contact by email">
<i class="fas fa-envelope"></i>
</a>
<a href="https://www.linkedin.com/in/kagancansit/" class="social-link" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn" title="Visit my LinkedIn profile">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/KaganCanSit" class="social-link" target="_blank" rel="noopener noreferrer" aria-label="GitHub" title="Visit my GitHub profile">
<i class="fab fa-github"></i>
</a>
<a href="https://x.com/kagancansit" class="social-link" target="_blank" rel="noopener noreferrer" aria-label="Twitter" title="Visit my Twitter profile">
<i class="fab fa-twitter"></i>
</a>
</div>
</div>
<p class="copyright-text text-center">Kağan Can Şit | I hope you found content that contributed and informed you
🏹</p>
</div>
</section>
<!-- Scripts -->
<script src="/js/blogPagination.js" defer></script>
<script src="/js/jquery-3.3.1.min.js" defer></script>
<script src="/js/popper.min.js" defer></script>
<script src="/js/bootstrap.min.js" defer></script>
<script src="/js/Headroom.js" defer></script>
<script src="/js/jQuery.headroom.js" defer></script>
<script src="/js/owl.carousel.min.js" defer></script>
<script src="/js/theme-and-loader.js" defer></script>
</body>
</html>