- 1Password
- Chrome
- Twist
- Zoom
- Tuple
- Fork
- XCode
const movieTown = _.reduce(beyonce.movies, (movieTown, movie) => {
let average = _.meanBy(beyonce.movies, movie => movie.rating)
movieTown[movie.title] = {rating: movie.rating, averageRating: average}
return movieTown
}, {})
console.log(movieTown)```
What was your learning focus this inning? What technical and communication skills did you want to grow? Do you feel like you've achieved those goals?
My learning focus this inning was to get more comfortable writing code in both javaScript and React. I also wanted to get better at TDD. In terms of communication skills, I very much wanted to get better about arguing/asserting my opinions about code.
I understand javaScript much better and feel comfortable writing functions in es5 and es6. I'm still struggling to put the pieces together to make a coherent program in React. TDD continues to be an area that I can improve in. As for communication skills, I'm great at asking for help (maybe too good. I should probably stay on the struggle bus a little longer), but I have difficulty articulating my opinions about code format or flow because I often don't have a precise, "better" way to do things, I just have a feeling that there's
Empathy is a "soft" skill that provides a great many benefits in and beyond the workplace. As a former preschool teacher, empathy was one of the main responsibilities of my job when I interacted with parents and children alike. I look forward to being able to continue to practice empathy with future colleagues to create supportive, productive work environment. When people feel valued by their team, I believe that they produce a higher quality of work.
Two of the behaviors listed in this article are closely related to one another and resonate strongly with my background. In Montessori, we have a practice called "friendliness with error". This means that mistakes are teaching moments and should not be viewed in a negative manner. This closley ties in with absorbing criticism with ease. If one can acknowledge mistakes without being defensive, learning from that situation will come much more quickly than deflecting criticism. The third tenet that I found relateable is the one about skipping meetings. Often times I found myself thinking about all he actual work I could have done had I not gone to school staff meetings. If you're going to call a meeting, you should have at least one item that MUST be attened to and decided upon.
Making a check list seems redundant sometimes when it pertains to everyday activities that you're accustomed to doing. However, they can be quite h
- HTML code describes the structure of the website, including headins, body paragraphs, and attributes of portions of content.
- A tag is a was to denote something about the infomation following the tag while an element is comprised of both an opening and closing tag and helps define the info between an opening and closing tag.
- We use attributes to provide extra info regarding the contents of an element. It is made-up of a name and a pre-defined value.
- Head element: contains information about the content of the page and is not necessarily shown on the page Title element: usually located within head element. Will be shown at the top of browser above the url or on the browser tab.