BlogHide Resteemsaronson (25)in code • 7 years agoDay 62,63March 16th, 17th Actually I am thinking of not writing this every single. Maybe just once a week or months because the code is getting harder and and really I can't explain it that well. So these…aronson (25)in code • 7 years agoDay 61March 15th, 2018 Hello! At the React for Beginners course by Wes Bos I learned about persisting state with firebase, which means that the state won’t disappear after reload. Firebase is a…aronson (25)in code • 7 years agoDay 60March 14, 2018 Hello! At the React for Beginners course by Wes Bos I learned about updating order state. const isAvailable = status === 'available';aronson (25)in code • 7 years agoDay 59March 13th, 2018 Hello! At the React for Beginners course by Wes Bos I did displaying state with JSX. The goal was to move parts around the app. We do that by making a component. If you want to…aronson (25)in code • 7 years agoDay 58March 12th, 2018 Hello! Today at the React for Beginners by Wes Bos I learned about loading Data into state onClick. We have to include the button with an onClick event function…aronson (25)in code • 7 years agoDay 57March 11th, 2018 Hello! Today at the React for Beginners course by Wes Bos I learned about state, a very important but alas first a bit difficult bit. What is state? It is basically just an…aronson (25)in code • 7 years agoDay 56March 10th, 2018 Hello! Today at the React for Beginners course by Wes Bos I learned something about events, refs, and binding in React. Events in react work the same as in JavaScript. React…aronson (25)in code • 7 years agoDay 55March 9th, 2018 Hello! Today the React for Beginners Course by Wes Bos I learned about routing in react. First import: import { BrowserRouter, Route, Switch} from 'react-router-dom';aronson (25)in code • 7 years agoDay 54March 8th, 2018 Hello! Today at the React for Beginners Course by Wes Bos I learned aboutPassing Dynamic data with props. Props, they are similar to HTML attributes, they provide more…aronson (25)in code • 7 years agoDay 53March 7th, 2018 Hello! At the React course by Wes Bos I learned about CSS in React. We have import the CSS directly in a component and that will go together with the component How to import it…aronson (25)in code • 7 years agoDay 52March 6th, 2018 Hello! At the React course by Wes Bos I learned some more about components. Render() determines what HTML elements we render out to the page. First we need to import react, as…aronson (25)in code • 7 years agoDay 51March 5th, 2018 Hello! I am really excited, because I have started a new course! React for Beginners by Wes Bos. On the first day I just set up a few things like the coding environment. I have…aronson (25)in code • 7 years agoDay 50March 4th, 2018 Hello! Today I got the end of the ES6 course by Wes Bos, and it was really great. I learned a lot about ES6 and I will make sure to use them in my code. It can also be used as a…aronson (25)in code • 7 years agoDay 49March 3rd, 2018 Hello! Today I was at the Web Development Bootcamp by Colt Steele and I learned about APIs. API stands for Application Program Interface and it is a way for computers to interact…aronson (25)in code • 7 years agoDay 48March 2nd, 2018 Hello! At the ES6 course by Wes Bos I learned about the Async Await. If you execute something synchronously you wait for the task to be done, before you continue. But if you do it…aronson (25)in code • 7 years agoDay 47March 1st, 2018 Hello! At the ES6 course by Wes Bos, I learned some more about custom promises. We reviewed how we can create a custom promise: function breathe(amount) {aronson (25)in code • 7 years agoDay 46February 28th, 2018 Hello! At the ES6 course by Wes Bos I started to learn about Async, but first we actually review the Promises. We canuse the fetch api to get data, together with then, and we…aronson (25)in code • 7 years agoDay 45February 27th, 2018 Hello! Today at the ES6 course by Wes Bos I learned about maps and weak maps. Maps are like objects. They have key-value pair. You can call .has() and .delete() on them. As…aronson (25)in code • 7 years agoDays 41-44February 23rd, 24th, 25th and 26th 2018 Hello! Yes, laziness. Not really that I have working on all these days, but Mr. Procrasto was busy. So, at the ES6 course by Wes Bos I learned about sets.…aronson (25)in code • 7 years agoDays 37-40February 19th , 20th, 21st, 22nd 2018 Hello! At the ES6 course by Wes Bos I learned about generators and proxies. Functions run from top to bottom, but with a generator you can make a function…