Skip to content

Instantly share code, notes, and snippets.

View danmoran-pro's full-sized avatar

Daniel "Danny" Moran danmoran-pro

View GitHub Profile

Session 2 Readings and Responses

The readings and responses listed here should take you approximately 60 minutes.

To start this assignment, click the button in the upper right-hand corner that says Fork. This is now your copy of this document. Click the Edit button when you're ready to start adding your answers. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.

1. Learning Fluency by Turing alum Sara Simon (30 min)

  • Your key take-aways OR how you're going to implement specific points (minimum 3):
  • Method of doing/remembering. Look at it, copy it, copy it, write it with out looking at it, write it with out looking at it. Repeat.

Session 2 Practice Tasks

The assignments listed here should take you approximately 2 hours.

To start this assignment, click the button in the upper right-hand corner that says Fork. This is now your copy of the document. Click the Edit button when you're ready to start adding your answers. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.

1. Documentation and Googling (75 min)

Documentation of a langauge, framework, or tool is the information that describes its functionality. For this part of the practice tasks, you're going to practice digging into documentation and other reference material.

Session 3 Readings and Responses

The readings and responses listed here should take you approximately 20 minutes total.

To start this assignment:

  1. Click the button in the upper right-hand corner that says Fork. This is now your copy of this document.
  2. Click the Edit button when you're ready to start adding your answers.
  3. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.

Session 3 Practice Tasks

The assignments listed here should take you approximately 25 total minutes.

To start this assignment, click the button in the upper right-hand corner that says Fork. This is now your copy of the document. Click the Edit button when you're ready to start adding your answers. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.

1. Creating Files and Directories (10 min)

Need help? You can go back to the files/directories portion of the lesson here.

@danmoran-pro
danmoran-pro / readme.md
Created May 14, 2019 20:29 — forked from benstr/readme.md
Gist Markdown Cheatsheet

#Heading 1 ##Heading 2 ###Heading 3 ####Heading 4 #####Heading 5 ######Heading 6


Paragraph

Session 4 Practice Tasks

The assignments listed here should take you between 1.5 and 2 total hours.

To start this assignment:

  1. Click the button in the upper right-hand corner that says Fork. This is now your copy of the document.
  2. Click the Edit button when you're ready to start adding your answers.
  3. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.
@danmoran-pro
danmoran-pro / Parin_Survey.md
Last active June 20, 2019 20:27
Parin_Survey

Parin Survey

My greatest strength would have to be that I am empathic. I’ve personally have struggled a with a lot of things from learning to financially stability. I do work best when I am alone, however I am a great team player but often can find those times distracting. My greatest area of imporovement would have to be focus. I tend to get distracted easily. I hope that in software devolvement I can put my strength to work by being able to relate to people when they get frustrated. Knowing my strengths will help me understand peoples working method and be able to adapt to them rather than have them adapt to mine.

@danmoran-pro
danmoran-pro / Gear_Up_Pre-Work.md
Last active June 22, 2019 00:23
Gear Up Pre-Work
  • Empathy plays an important roll in my life. I was raised without a father and being raised by only women there were things that they couldn’t teach me. Now that I have my own son I am aware of how important it is to have a father present throughout child hood. Additionally, I also wasn't exposed to many resources that would've help me in life as a first american generation to be raised in the US. I want to empower youth and give them a much better start in life than what I had.

  • Empathy and perspective helps software by taking notes of where things could be improved on. For example, I use and see how things could run more smoothly or look beter. Unfortunately, I do not have the background to be able to go up to a company and tell them how to fix the problem. Maybe in the future I would be expiremced enough to help start ups or even jr devolpers on how to create successful software.

  • Being on a team can sometimes be difficult when you have teammates from all different types of backgrounds. It could be

What is a Class?

  • Class is something that models.(IE. The blue print.)
    • state
    • behavior What is an Instance?
  • represents a class(type) What is an Object?
  • the same as Instance....for now. What happens when we call .new on an object?
  • creats a new instance of that class.

Vehicles and Passengers Prework

Iteration 1

Use TDD to create a Passenger class that responds to the following interaction pattern. For the adult? method, a Passenger is considered an adult if they are age 18 or older.

pry(main)> require './lib/passenger'
# => true