Learning Handlebars

Would you like to learn how to make websites with less effort? Well Handlebars is just the tool you might be looking for. Handlebars is a fast and easy way of creating templates to display content to users!!

Created on: 5/9/2022

Sequelize as an ORM

Did you know you can use Sequelize, an Object Relational Mapping system, to manage your database more efficiently? Sequelize even offers amazing documentation to help navigate you through their amazing tool.

Created on: 5/10/2022

OOP I Did it Again

The four fundamental concepts of Object Oriented Programming (OOP) are Inheritance, Encapsulation, Polymorphism and Data abstraction. To know OOP, you must have understand these concepts.

Created on: 5/10/2022

React's useEffect hook

Do you know about React's useEffect hook? The useEffect hook allows developers to run code any time a stateful value is updated. By default, the useEffect hook will run on page load if no stateful value is given. Each of these circumstances allow for different implementations of the useEffect hook. Luckily, we can use multiple useEffect hooks in our React components so we can use it in many ways. For example, a default useEffect hook with no stateful value could pull data from APIs to populate unchanging lists on your component. You could then create another useEffect hook with a stateful value for cards generated from user preferences! This useEffect hook would update anytime the user's preferences are updated.

Created on: 11/2/2022