tech15 October, 2022
Array Data Types and AnalysisArray is a data structured that is ordered and indexed. Arrays are created in different manners in each language but they are all indexed in almost the same way. In this post I'm gonna be talking about the array data structure in couple of languages and how can we work with them.
Ilker Akbiyiktech6 October, 2022
Linked Lists and Their UsesLinked lists are simple data structures that consist of two main parts. A part that contians the actual data and another for information about the next list item. There are 3 main types of linked lists; singly linked lists, doubly linked lists and circular linked lists that. Usually linked lists have a part that acts as the head, you can choose to end your linked lists with a tail or you can use it empty as well.
Ilker Akbiyiktech2 October, 2022
Quick Sort With PythonQuick sort is yet another divide and conquer algorithm that we can use to sort our arrays / lists. First of all we pick a pivot point. After choosing this pivot point (or value) we will put the smaller values to it's left and the greater values to it's right. We will divide our array / list by this pivot point and call our sorting algorithm recursively until we have sorted list.
Ilker Akbiyiktech29 September, 2022
The Simplest Sorting Ever Bubble SortBubble sort is probably the simplest way of sorting you can think of when creating a sorting algorithm. The idea is that you go through the algorithm sorting the adjacent items again and again until we have a sorted array.
Ilker Akbiyiktech26 September, 2022
Merge Sort Using PythonProbably my favourite sorting algorithm and the one took the longestto Understand. I hope I can make it easier for you to grasp how does this algorithm work. We basically divide our array (or list) recursively until the pieces are small enough to sort. Finally we can start sorting them and start the "merging". Sounds really simple right? Let's get right to it!
Ilker Akbiyiktech23 September, 2022
Insertion Sort Using PythonInsertion sort is one of the simple sorting algorithms that can work very well on relatively smaller lists (or arrays). It performs better in arrays that are partially sorted already, as it doesn't need to fire a second iteration. We are going to see the reason why right away.
Ilker Akbiyiklearning - 29 March, 2022
5 Helpful Websites I Use Very OftenAs a developer your job is hard enough as it is without having to build the resources for testing your code. There are resources that were built by developers just like you and I to make your life easier. Most of these resources are free to use how cool is that!
Ilker Akbiyiklearning - 20 May, 2022
When Should You Start Learning CSYou can for sure become a web developer without taking CS classes or going through the basics such as Data Structures and Algorithms. But don't forget these classes (courses) exist for a reason.
Ilker Akbiyiklearning - 1 April, 2022
How Do I Study and Learn Programming As A Self Taught Web DeveloperAs a person who had no idea how to code, programming was this magical process that created almost everything I enjoyed. When I decided to learn web development in my free time, it fascinated me. In this post I wanna sharing my personal journey of learning web development with you.
Ilker Akbiyikproject - 25 April, 2022
Node JWT Authentication ProcessHandling authentication and authorisation can be very daunting especially if you are a beginner. I know it was for me. With this post you can get a basic understanding of the jwt auth process with passport.js. We won't be using any frontend framework, gonna keep it nice and simple.
Ilker Akbiyikgame - 11 May, 2022
Tic Tac Toe with JavascriptIn this game project we will create a simple game with basic HTML, CSS and javascript. This game is fully functional but still there is room for improvement. Let's get started!
Ilker Akbiyikproject - 4 May, 2022
React Hotel Project For BeginnersA great website project for the beginners. After creating this project you will know how to use the react router, create dynamic routes and handle forms in react. You can add this project to your portfolio (after personalizing and improving upon some parts of course).
Ilker Akbiyik










