Category: Genel

Sunday November 10th, 2019

Bubble Sort

Hello, In my previous articles, I wrote about the Insertion and Selection Sort Algorithms. In this article, I will try to make Bubble Sort Algorithm. In the bubble sort, we are finding the bigger item in the array and then change the order, algorithm do these process until the array become orderly. For the give an example, think like that array = [3,1,6,5,7,8,2,4] for the make orderly […]

Saturday November 9th, 2019

Web Service and SQL Connection

Hello, In my previous article, i wrote about the how to create Web App and SQL Service in the Azure. In this article, I create a ASP.NET Web Service and try to communicate with the services which we created at Azure. Also I will try to keep data in SQL. Firstly, I create a blank solution and then I create an ASP.NET Core and choose the template […]

Friday November 8th, 2019

Azure Web App and SQL Databases

Hello, In our project whatever we develop, we would like to keep our data in the databases. For that Azure present us to some free services. In this services, I will create a Web App and SQL Database and then i try to make these services communicate with each other. After the making connection between the web app and sql database, I will connect the web service […]

Thursday November 7th, 2019

Insertion Sort Algorithm

Hello, In my previous article i talked about the selection sort algorithm you can reach by clicking here and in this article i try to make Insertion Sort Algorithm. In the insertion sort algorithm we pass the first element of the array and we think that that data is the smallest in the array. Rest of the data array, we consider that they are orderly and […]

Thursday November 7th, 2019

Selection Sort

Hello, Selection Sort is a sorting algorithm. With Selection Sort, we can sort the array minimum to the maximum or maximum to the minimum. Algorithm, choose the first element of the array as minimum and then in the for loops, we controlled the conditions if there is some minimum value than the or minimum then we change the their places. Algorithm is really simple to implement. Algorithms has complexity […]

Sunday November 3rd, 2019

Stack

Hello, Stack is an Abstract Data Type. Stacks are defined like the Last in First Out (LIFO) or First in Last Out(FILO). Stack can be used with the Arrays and Linked Lists. In this example, I will try to use Stack with the Array. Stack has 3 important functions and these are; Push : To add item, we use push function. Pop : To delete item, we use pop function. […]

Wednesday October 30th, 2019

Linux Mint Setup

Hello friends,Today I will setup the Linux Mint to the my Virtual Machine using by the VMware Workstation. I setup the VMware Workstation before, If you will have trouble the install you can ask me via e-mail or comments. The reason of the installing Linux Mint to the m computer, I would like to experience different operating systems. Before the installation, we have to download the Linux Mint […]

Monday October 28th, 2019

Linked List

Hello, Linear List is a linear data structure which keeps the every data separately. Arrays are static but Linked Lists has dynamic structure. We may have difficulty to add a data to the array but if we use linked lists, we can add the data where ever we want. Number of the data is not sure in the Linked Lists, we can add data or delete data […]

Thursday October 17th, 2019

ASP.NET Web API

Hello, When we develop an application, we may want to keep data in the local or real time databases. In my previous articles, I wrote about the how to use sqlite. Now, I would like to create a web api using by the ASP.NET. While writing this article, I follow the Microsoft Documentation. Firstly, I created a blank solution and then i added the ASP.NET Core Web […]

Friday October 11th, 2019

Xamarin.Forms Text Analysis

Hello, In my previous article, I try to  wrote about the face recognition and in this article, i will try to make Text Analytics app. Text Analytics can be used for the different purposes. In the application, I will try to make sentiment analytics, language analytics, important entities or people analytics and key phrases of the text. Firstly, Login into Azure and create a Text […]