Personal blog
Writing every week about programming, new technology and books.
HackerRank Solution Arrays-DS in C#

In today's video I am going to solve the HackerRank problem Arrays - DS problem. This problem is inside the arrays section of the Data Structures category.
Variables in C#

In today's video, I am going to talk about what are variables and how to use them in C#.
Comments in C#

In this tutorial, I am going to quickly show you how to use comments in C#. There are two types of comments, one for commenting on only one line of code and another one for commenting on multiple lines of code.
Introduction And Hello World

This is the first episode in C# for beginners series. In this episode, I am going to introduce you to the visual studio to cover some very basic stuff and create a Hello World console app.
HackerRank Simple Text Editor Solution In C#

Solving the HackerRank problem called Simple Text Editor. This problem is part of the Data Structures and Algorithms section. In order to solve this problem, I used the Stack data structure.
HackerRank Equal Stacks Solution in C#

Solving Equal Stacks problem on the HackerRank website using C#. This problem is part of the Data Structures section on HackerRank. For this solution, I used the Stacks data structure in order to solve the problem.
HackerRank Maximum Element Solution in C#

Solving HackerRank problem called Maximum Element using C#. This problem is part of the Data Structures and Algorithms section in HackerRank and it can be solved by using the Stack data structure.
DATA STRUCTURES AND ALGORITHMS
Stack and Queue Explained And Implemented in C#

In today's video, I explained what are Stack and Queue data structures, how they work, and I also implemented them in C#.
HackerRank Self Balancing Tree Solution In Java

In today's video, I am going to solve the HackerRank question called Self Balancing Tree and explain how it works.
DATA STRUCTURES AND ALGORITHMS
Binary Search in C#

In today's lesson, I am going to talk about what is Binary Tree and how to implement it using C#. Also, I am going to compare it to some more common algorithms for searching like Iterative search and explain why Binary Search is more efficient.
DATA STRUCTURES AND ALGORITHMS
Binary Search Tree in C#

In today's video, I am going to explain what is Binary Search Tree and how to create it with C#. I will also create two methods, Search and Insert and three different types of traversals.
Sending emails with mail() function in PHP

Learn how to send and recive emails in PHP using mail() fuctions and what are pros and cons of using it.
Fill credit card info in less then 10 lines of code with this Python script

Every time there is a need to shop online you will need to enter your credit card information. Learn how to automate this proccess in this quick and simple tutorial.
What is virtualt environment in Python?

Learn what is virtualt environment and how can you create one for managing Python packages inside projects.
How to install Python and run you first line of code

This is a tutorial about Python installation on Windows. It's quick and easy, so if you are interested in learning Python make sure to go through this tutorial to install it correctly.