Blog
-
True Detective season one is Transcendental!
TV Show Review
I still can't believe I tried watching this show five years back and slept through halfway thinking it was boring!»
-
Writing a simple Kernel
November 15, 2020
I figured I'll read a little bit about Operating Systems and write a simple kernel as a lazy afternoon project. This is a simple kernel written in C that runs with the GRUB bootloader on an x86 system.»
-
Algorithms 101: Sorting II
October 12, 2020
These three remaining sorting algorithms are better af than the previous three and more complicated af to implement. That said these three algorithms excel where the previous three didn't that is, in sorting the lists efficiently.»
-
Algorithms 101: Sorting I
October 10, 2020
Sorting is very vital when it comes to the algorithms. As the name suggests sorting algorithms help to sort an unordered list or an array. The thing about sorting algorithms is they're easy in a manner but confusing af.»
-
Algorithms 101: Searching
October 09, 2020
There are numerous searching techniques but mosly they rely on the construction of more complex data structures and do the repeated searching via the below most famous techniques.»
-
Shuffling cards the right way!
October 07, 2020
The problem with the normal random shuffle is it over shuffles the cards in the deck by selecting each card's swap from the entire deck every time which means that some cards are getting moved multiple times!!!»