Skip to content

Instantly share code, notes, and snippets.

Apps

  • 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)```
@marikaross
marikaross / Marika_Ross-M2_Portfolio.md
Last active June 6, 2018 19:02
Marika Ross - M2 Portfolio

Portfolio Template

Marika Ross - M2 Portfolio

Areas of Emphasis

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

@marikaross
marikaross / MarikaRoss_GearUp.md
Created February 23, 2018 14:22
Gear Up Pre-Work

Gear-Up on Empathy

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.

@marikaross
marikaross / Professional-Development.md
Last active February 23, 2018 14:26
Marika Ross Professional Development Questions

Career Development Curriculum

Behaviors of Unstoppable Coders

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.

List Making

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

Marika Ross Pre-Work

Day One

HTML & CSS Chapters 1 and 2

  1. HTML code describes the structure of the website, including headins, body paragraphs, and attributes of portions of content.
  2. 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.
  3. 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.
  4. 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.