Why we use "key" in React?
Ever wondered why React keeps bugging you about using the key attribute? Why we need to use this if everything is working perfectly? The answer is rather simple, Performance!
07/13/2021
The compiling process
My notes on the compiling process transformed in an article. Read about the four steps for compiling code.
06/28/2021
Customizing Git Bash in Windows
A small Post about customizing git bash in Windows.
05/21/2021
Implementing Binary Search in Java
If you saw my article about Selection Sort it means that you already know at least one sorting algorithm. Now that you have a sorted list (or can create one) we are gonna dive in an algorithm that can search for an element in this sorted list
01/25/2021
Implementing Selection Sort in Java
Selection Sort is a simple sorting algorithm. In this Article we are gonna implement it in java. A post from the series A&DS in java.
12/11/2020
Implementing Singly Linked Lists in Java
Linked lists are really important data structures, they let us store values in different parts of the memory and find them by their addresses. In this article I'm gonna go on how to implement a Singly Linked List in java.
12/10/2020