Code Reviews I'm enjoying performing a code review per day. I committed yesterday to doing 2 more code reviews in addition to the first one I did a couple of days ago. I created a list of all the solo projects I did so far as part of the program. I created a folder to include all the recaps of all the modules I studied …
Read MoreCode Reviews Yesterday I completed the code reviews module. Key learnings: How to perform Scrim-based over the shoulder code reviews. I performed my first real code review of a solo project for a student. I have nine more to go. I plan on doing one per day for the next 2 days. How to do PRs. You create an issue, create …
Read MoreCode Reviews Yesterday I kicked off Module 8: Code Reviews. Key things I went through: Code reviews are an important activity in software development. They help share knowledge, improve code quality, and raise developers skill level. When code reviewing, the reviewers can use a checklist of things to go through. I …
Read MoreNext Level JavaScript Yesterday I went through the following concepts: .reduce() => Ternary operator setTimeout() class You use this when defining a property inside the constructor. Outside the constructor, you don't use the function keyword to define a method, or this to declare a property.
Read MoreNext Level JavaScript I continue studying through the Next Level JavaScript module. Yesterday I went through the following concepts: object destructuring .map() .join() to convert an array to a string new Array() .fill() to fill a newly created array with items constructor functions this methods Object.assign(target, …
Read MoreKCNA Yesterday I attended the first part of the O'Reilly KCNA Crash Course with Sander van Vugt. It was a good review of the material I already studied in the Linux Foundation course Kubernetes and Cloud Native Essentials. The first part covered Cloud Native, Containers, and Kubernetes. Today it will go through the …
Read MoreCSS Grid The key difference between flex box and css grid is that flex box uses one-dimensional layout, either rows or columns, while css grid uses two-dimensional layout, with both rows and columns. Key css grid properties, units, and functions are: display: grid grid-template auto grid-row grid-column justify-items …
Read MoreKubernetes The core knowledge and experience tested on the KCNA exam is Kubernetes. Yesterday I looked at all the components in K8s: Cluster Node Namespace Pod Service Proxy Ingress kubelet kubectl Network Policy Cloud Control Manager Controller Manager Deployment ReplicaSet StatefulSet Volume API Server ConfigMap …
Read MoreReact Basics Yesterday I went through the props concept in React. It's passing data to a component to enable dynamic websites and code reusability. It includes passing an aobject and a non-string prop, destructuring, and spreading. I also studied mapping an array to a group of components. Kubernetes I started …
Read MoreResponsive Design New Learnings from Yesterday: Use viewport meta tag to force mobile devices to use your @media queries User flexbox properties to have more control on wrapping with flex-wrap, flex-basis, and flex-grow Know common breakpoints React Basics I completed the first section and got going with section two, …
Read More