Richard Chea·Jan 4, 2021Ruby FundamentalsRuby is a programming language that focuses on simplicity and productivity. It can be said that Ruby is easier to read and write because…
Richard Chea·Dec 27, 2020Unique Ruby Array MethodsArrays can be manipulated with Ruby methods and some common ones are .length, . shift, .reverse, and .push. We’re going to go over a few…
Richard Chea·Dec 21, 2020Types of Ruby IteratorsIn Ruby, arrays and hashes are collections. Then there are iterators, which are methods that can be used on a collection. We will look at…
Richard Chea·Dec 14, 2020JavaScript Promises ExplainedThe introduction of promises in ES6 was released to help work with callbacks. There is a term called, “callback hell”, that refers to a…
Richard Chea·Nov 25, 2020What is a Callback Function?A callback function is a function that is passed into another function as an argument, which is then invoked inside the outer function.
Richard Chea·Nov 13, 2020How to Host Your React App on GitHub PagesGitHup Pages is a great place to host your app. People can go to a URL and have your active project running and they can test it and see…
Richard Chea·Nov 9, 2020Simple CSS Modern LayoutsUsing CSS to build out modern layouts is way easier than you think. All you’ll need is a few lines of code to accomplish doing it. We’re…
Richard Chea·Nov 2, 2020Intro to React Lifecycle MethodsThe idea of the React lifecycle is that a component has mainly 3 different parts.