Vue.js Tutorial

Recently, I stumbled upon a fun looking tutorial on scotch.io utilizing Vue.js. I have been working pretty consistently with vanilla JS and some React, and was interested in dabbling with vue. This tutorial was a great one for getting your feet wet and becoming more familiar with the framework. It was definitely geared toward a […]

Read more "Vue.js Tutorial"

Function Growth and Big-O Notation

One of the most important aspects of algorithms is how quickly they grow. The quicker the growth, the better. Here is a list of function types in order of their growth: Constant functions Logarithmic functions Linear functions Linearithmic functions Polynomial functions Exponential functions Big-O Notation is a way to describe the growth, complexity and performance […]

Read more "Function Growth and Big-O Notation"