Join Tables in SQLWhen creating a data base you are almost certainly going to make a collection of tables and chances are you will want some over lap…Mar 13, 2021Mar 13, 2021
Navigating Linked ListsLinked lists can be a confusing thing to comprehend. In most cases it can look something like an array. In reality it is a nested series…Mar 6, 2021Mar 6, 2021
How to merge two sorted arrays in placeIn recent weeks I have been doing a lot of practice on algorithms and dealing with different data structures. One of the standouts this…Feb 27, 2021Feb 27, 2021
Baseball game algorithmRecently I had the pleasure of solving leetcode problem 682, “Baseball Game”. What I really enjoyed about this algorithm is that it was a…Feb 20, 2021Feb 20, 2021
Solving the easiest “Medium” difficulty algorithm on leet codeFor a couple of months now, I have been working on solving algorithms almost daily. I do this by participating in an algorithm group where…Feb 13, 2021Feb 13, 2021
Solving an algorithm using recursion.A recursive function is one that calls itself to solve itself. A clear demonstration of this process is creating a function to solve a…Feb 6, 2021Feb 6, 2021
How to deploy your Ruby app to HerokuThis week I decided to try to deploy the backend of an app I created on rails to Heroku.com. Let me tell you, what I thought would be a…Jan 30, 2021Jan 30, 2021
Solving the Roman Numeral to integers AlgorithmThis problem (number 13 on leetcode) is as followsJan 23, 2021Jan 23, 2021
Solving the two sum algorithmPerhaps one of the most common algorithms is the “two sum” algorithm from leet code. It is said to be a commonly asked entrance level…Jan 16, 2021Jan 16, 2021
Using the useForm hookOne of my favorite things about hooks is how they make programming a bit more simplistic. Take the use form hook for instance, the useForm…Jan 8, 2021Jan 8, 2021
Using the useEffect hookIf you’re familiar with class components you are probably familiar with life cycle methods. If you’re looking to make a jump from class…Jan 2, 2021Jan 2, 2021
How to use the state hookOne of the wonderful features of React is the addition of hooks. As someone who initially learned how to build a react app using class…Dec 26, 2020Dec 26, 2020
How to create multiple pages in your React appUpon creating a react app it is pretty common to want to be able to separate certain features. While it is nice and fairly intuitive to…Dec 18, 2020Dec 18, 2020
Saving an array to a Rails data base (the dirty way)So I might begin with saying I realize this might not be the most efficient or “proper” way to save an array of information to a back end…Oct 23, 2020Oct 23, 2020
How to have an image as a nav link in reactWhile building a react app, I had a bunch of different pages and I wanted a clean way to present it instead of just a bunch of text on a…Oct 22, 2020Oct 22, 2020
How to add a custom font library to a css fileSomething I find myself doing quite often is searching for unique fonts to add to my projects in order to make them stand out so I figured…Oct 22, 2020Oct 22, 2020