BRBrian Richie Sr.inbrianrichiesr.hashnode.dev·Dec 21, 2023 · 5 min readGrasping ContextReact is all about having components on hand to use wherever needed, even inside of other components. Props are a great ability of components .It is so cool for a parent component to be able to hand down information to any of its child components nes...00
BRBrian Richie Sr.inbrianrichiesr.hashnode.dev·Nov 28, 2023 · 4 min readHandling Request Data w/FlaskThis article is about the ways that I have recently learned to handle the data from client requests to the server. While there are other ways to do so than are mentioned here, in my opinion these ways seem to be the most efficient and easiest to lear...00
BRBrian Richie Sr.inbrianrichiesr.hashnode.dev·Nov 9, 2023 · 4 min readTuples 101In Python, tuples are pretty amazing. They are iterable data containers that, once created, cannot be mutated.* To create a tuple you must use the tuple constructor, which takes one argument, or a parentheses with a comma. The comma is necessary. Wit...00
BRBrian Richie Sr.inbrianrichiesr.hashnode.dev·Oct 12, 2023 · 4 min readThe Importance of State ReusabilityI am currently in a coding boot camp and we just got to React. Learning about the power of State has been mind-blowing. So mind-blowing that while I was completing the labs for the curriculum, I tended to create State everywhere. "You get a State and...00
BRBrian Richie Sr.inbrianrichiesr.hashnode.dev·Sep 28, 2023 · 5 min readREADME Essentials for your ProjectThere 3 main components to building a great project. Whether this project is the next Meta or a personal To-Do List, these components are vital to the success of your project. First is functionality. If it does not work the way intended, then there i...00