Blog
January 18, 2018
Thursday, January 18th, 2018 How to spin up a React App in 5 minutesFirst you will need to open up your terminal and install create-react-app globally […]
January 16, 2018
Tuesday, January 16th, 2018 Set a day long goalFor this standard, we will be working with the Set Short Term Goals repositoryhttps://github.com/prdesignwork/set-short-term-goalsAccording the repo, in order to […]
January 11, 2018
Thursday, January 11th, 2017 Depth First Search algorithmfunction dfs (cb, node) { if(!node) return; cd(node.data) this.dfs(node.left) this.dfs(cb, node.right) } Breadth First Search algorithmfunction bfs (cb, node) […]
January 11, 2018
Thursday, January 11th, 2018 Build SPA applications that use routingFor this example I quickly create simple SPA that has routing, you kind find the repo here:https://github.com/prdesignwork/spa-routesWhich […]
January 9, 2018
Tuesday, January 9th, 2017 TreesTrees are recursive data structures consisting of a bunch of nodes and links that are connected to one another in a non-linear […]
January 8, 2018
Monday, January 8th, 2018 What is React?ReactJS is a JavaScript library that combines the speed of JavaScript and uses a new way of rendering webpages, making […]
January 8, 2018
Monday, January 8th, 2018 Stacks & Queues — Data Structure and AlgorithmStacks and Queues are similar in structure but vary in use. These type of data structures help […]
January 5, 2018
Wednesday, January 5th, 2018 Is it possible to love your job and have autonomy?Today I was grateful to job shadow a recent Galvanize Alum with a […]
January 2, 2018
Tuesday, January 2nd, 2018 Build responsive websitesWanted to give my website an overhaul and make sure that it is responsive for mobile-first viewing.With this in mind, […]
December 28, 2017
Thursday, December 28th, 2017 Build a SPA that manages internal stateFirst this example we will be using the Roofstops app found here:https://github.com/Roofstops/Roofstops Where I’m using internal […]
December 20, 2017
Wednesday, December 20th, 2017 Given a tutorial in an unfamiliar environment, identify what knowledge is assumed and find it.For this standard, I will be using the […]
December 13, 2017
Wednesday, December 13th, 2018 Create a SPA that uses components that pass data to children componentsWe will be looking at the Roof Stops SPA app.https://github.com/Roofstops/RoofstopsRoof Stops […]