Skip to content

Instantly share code, notes, and snippets.

View ericweissman's full-sized avatar

Eric Weissman ericweissman

  • Turing School of Software and Design
  • Denver, CO
View GitHub Profile

1908 Final Assessment Submission

Please submit your repo link below!

1908 Binary Challenge Submission

Please submit your Binary Challenge in the following format:

  • Project Manager
  • GH Repo Link

⛄ Work for Winter Break ⛄

Yes. You have work to do. If you don't do any of this work, you have a much higher chance of repeating the module.

📽️ Deliverable

  • Create a video of you drawing out the Redux cycle and explaining each step of the process.
  • Send your video to your PM for your Rancid Tomatillos by 5pm on Sunday 1/5

‼️ Strongly Suggested Work

SWAPI Submission - 1908

Swapi

Format

Please submit your project as a comment below in the following format:

  • Group Members
  • Github Repo
  • Project Mgmt Board
  • PM

1908 Thanksgiving Break Plan

Howdy gang. As mentioned in class, rather than add more projects, work, etc. on your plate for Thanksgiving Break, we would rather you spend part of each day either ramping up or shoring up areas of the content we have covered so far.

While you do not need to code for hours on end each day, we STRONGLY recommend that you spend a portion of each day code. And by STRONGLY, I mean that if you do absolutley no coding you are exponentially more likely to repeat the module. As we have mentioned, you'd be shocked at how quickly concepts are forgotten if you aren't putting in the reps!

ES6 Exercises

Wireframing

This lesson typically can be done in 20-30 minutes.

Model

Use the the old Dashboard static comp to model how to break a larger comp into containers and then work through going into smaller pieces. I typically will model how to break out the sidebar into smaller parts.

Practice

Have students work through building out the rest of the Dashboard comp OR the Profile page.

What motivates you?

I am motivated by getting back to a more stable lifestyle and more stable paycheck.

How will you keep yourself going when faced with rejection in the job search?

I will keep myself going by celebrating my struggles with my cohort mates. I would like to do some type of "cohort standup" type process with my cohort to keep everyone accountable and stay supportive of one another.

How will you hold yourself accountable to your plans? (Ex: Attend Mod 5, meet with cohortmates, attend Kayt's coffee shop hours, etc.)

I will plan on attending Mod 5, scheduling time to meet with cohortmates throughout the week and also attending Kayt's coffee shop hours when the location isn't too far from Denver.

How do you like to communicate?

Conditionals

Key Points

  • Javascript interprets (reads) code from the top down, line by line
  • A function can only return one thing. Anything below a return statement will not be read if that return statement fires
  • Conditionals allow you to write more logic into a function to give JS more information about what you want to return from a function!
  • Order matters when writing a conditional! Take time to psuedocode out how you want your function to interpret the data it is given!

Conditional Boilerplate