Blog

January 18, 2018

How to spin up a React App in 5 minutes

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

Set a day long goal

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

Search through a tree data-structure

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

Build SPA applications that use routing

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

Describe Trees & Graphs

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

Pros and Cons of ReactJS

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

Describe stacks & queues

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

Job Shadow with Will Meier at Agency Zero in Denver

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

Build responsive websites

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

Manage internal state in Single Page Applications

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

Discover missing information from a technical source

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

Pass data to child components

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 […]