Intro to Object-Oriented DesignIn this article, I want to discuss how to design an application with an Object-Oriented language. In order to do this we must change our…Jan 29, 2021Jan 29, 2021
OOP PolymorphismIn the object oriented program languages, like Java, polymorphism refers to objects of different types can be accessed through the same…Jan 22, 2021Jan 22, 2021
Unit Testing and Integration TestingI’m writing this article for all of the newly graduated bootcamp grads or the self taught software developers. I wanted to share some of…Jan 15, 2021Jan 15, 2021
External API UsageHello, today I would like to walk through my process of using an external api while, writing a small weather application project. The…Jan 9, 2021Jan 9, 2021
Elastic Search and Ruby on RailsElastic Search is a search engineer based on the Lucene library and written in Java. The Apache Lucene library is a high performance —…Jan 1, 2021Jan 1, 2021
A Beginner’s Guide to React TestingIn this article I will be discussing the types of testing tools, what is react testing, and also introduce a couple of testing tools…Dec 19, 2020Dec 19, 2020
Image Uploading with Active StorageActive Storage facilitates uploading files to a cloud storage service and attaches those files to active record objects. Active Storage…Dec 12, 2020Dec 12, 2020
JavaScript Function: A Closer LookWhile working on some Codewars’ coding challenges, I came across this problem: Calculating with Functions, very straight forward for a…Dec 5, 2020Dec 5, 2020
My intro to JavaHello, everyone new to this blog I must give a warning this is my documentation of my progress as a software developer. I am no expert…Nov 20, 2020Nov 20, 2020
My introduction to Gatsby.jsHello today I’m taking a break from my data structure series to talk about Gatsby. Gatsby is a static site generator, it uses HTML, CSS…Nov 14, 2020Nov 14, 2020
Binary Heaps and Priority QueuesContinuation of The Data Structure series. I’ll like to discuss Binary heaps and by extension Priority Queues. Buckle up buckaroos this…Oct 30, 2020Oct 30, 2020
Transversing Binary Search TreesTransversing a Binary Search Tree has to be a separate topic because there’s so many ways to accomplish this, we have to discuss this…Oct 24, 2020Oct 24, 2020
Binary Search TreeHello, Welcome to the continuation of my blog series “Data structures and Problem Solving”. Today’s topic is Binary Search Trees.Oct 16, 2020Oct 16, 2020
DoublyLinked ListsThe Objectives of this article is to construct a Doubly Linked List & Compare doubly linked list to singly linked list.Oct 2, 2020Oct 2, 2020
Problem Solving Patterns: Frequency CounterThis article is a continuation of the problem solving patterns series. In the previous articles in this series, I explained my preferred…Sep 25, 2020Sep 25, 2020
Merge Sort ExplainedThis article I’m introducing one of the most intriguing algorithms I encountered so far…Merge sort. The importance of sorting in…Sep 17, 2020Sep 17, 2020
Problem Solving Patterns: Multiple PointersThis is the introduction to the Problem solving patterns series. The first pattern we’re discussing is the Multiple pointers. Before we…Sep 10, 2020Sep 10, 2020