When I was starting out in my web development career, I so wish that someone would have pulled me aside for 30minutes and given me a web development lecture with this advice and information. If you want to be a web developer, then this course will give you career advice that will shortcut you to learning the things you need to learn to get a job in the industry. Do you know if you want to be a frontend developer or a backend developer? You need to know.
This video will tell you what you have to learn to become a web developer that employers are desperate to hire. It will show you what paths to take, and what kind of job descriptions are out there that employers are trying to fill.
Show less
Immutable Javascript means that we're never going to change a value once it's been set on an object. It might sound complicated, but it's really quite simple. We simply always create new objects ...
This Redux tutorial series will show you the schematics of a Redux application. Redux is AWESOME, but it takes a bit to get it setup. There really aren't a lot of moving parts, but there are a lo...
WITH SOUNDCLIPS: The Ergodox is a crazy mechanical keyboard! And Ergodox EZ did a great job making one that you don't have to build yourself to get in on the fun. Here's all about the Ergodox and...
WITH SOUND CLIPS - An amazing mechanical keyboard for development or gaming. I have the Matias Ergo Pro with Matias quiet click mechanical keys - arguably some of the best mechanical switches in t...
React Virtual DOM helps you avoid a lot of memory leaks, but they still can happen. Here's what memory leaks are, how they show up in a React JS Flux application and how to solve them when they ha...
Let's do asynchronous flux actions now! We can easily load in data via Ajax and trigger multiple dispatches as the data loads. This will result in our React app remaining synchronous while the Fl...
Flux Actions will complete the circle on our Flux application. Components call actions which, in turn, send dispatches to the dispatcher. Each action needs to include an action type, and optional...
Now, let's add a Flux Dispatcher to our application. The dispatcher will route all events to our store, which will use a single switch statement to determine which events to respond to.
Flux Stores emit events, components listen to the events and update. It's really that simple. Now that our component is connected to the store, let's have the store emit change events so the comp...
Let's build a Flux app with React. Flux is a pattern that Facebook created for building consistent, stable web apps with React. React really doesn't give us a way to manage data, it simple accept...