Jan 17, 2021CRUD React ReduxWe’re going to embark on a pretty crazy journey today. We are going to be talking about how to give your single page application CRUD functionality using React Redux. Just so that were on the same page. Were using rails on our backend: If you want a quick crash course…Crud4 min readCrud4 min read
Published inNerd For Tech·Jan 14, 2021REDUX FAQs For BeginnersWhat is Redux? Redux according to the official doc’s “is a pattern and library for managing nd updating application state, using events called “actions”” It helps you manage global state. So that you can call &/or update information through out your application. Redux can be integrated with any front end but is most…Redux2 min readRedux2 min read
Jan 14, 2021React Life Cycle MethodsWhat are Life Cycles? React has 3 main phases Mounting, Updating, and Unmounting. Lets start with Mounting Mounting Mounting means putting elements into the DOM. React has 4 built in components methods that get called when mounting a component.React2 min readReact2 min read
Jan 14, 2021React JS FAQs for Beginners Pt.1How to create a react app To create a react app you first start off with npx create-react-app nameofyourap This will create your entire front end of you. Once youa re ready go ahead and type in npm start or yarn start. React comes with yarn. Yarn is nothing more then a package management tool for…Js3 min readJs3 min read
Oct 30, 2020CRUD with JavaScript FETCHToday we are going to learn about building a SPA (Single Page Application) Crud application using Fetch. We need to be able to send and receive JSON from the DB. This is what allows the CRUD functionality. Keeping this core principle in mind. …JavaScript6 min readJavaScript6 min read
Sep 3, 2020Sinatra ProjectStep 1) Gem install “corneal “ We are going to use the corneal gem because it sets up the file structure of the project for us. Not only that; it comes with nearly all the gems you need in your gem file. …Ruby7 min readRuby7 min read
Sep 3, 2020RAILS |CRUD|OverviewGOAL: Our goal here is to build a content management system (CRUD application) using rails. Disclaimers: I’m using windows. If you use mac the only thing that will be different will be the terminal commands. But their substitutes are easily “google-able”. Also I personally use VS code so I’ll be…Rails8 min readRails8 min read