Skip to content

Instantly share code, notes, and snippets.

Template for DTR Memo

Project: Number Guesser

Group Member Names: Amy Rippeto and Yana Aleksandrova

  1. Goals and Expectations for the Project (What does each group member hope to get out of this project? What do we want to achieve as a team? How will we know that we're successful?):
  • Better understanding of using JavaScript
  • Polished HTML and CSS

Professional Development Pre-work

Please respond to the following questions in a reflection (4-6 sentences):

  • What is your greatest strength and how do you know?

I would have to say that my greatest strength is my ability to know when to ask for help. I am a firm believer in asking questions and being honest about when I need help. I have always preferred to learn how to do something the right way the first time, instead of making unnecessary mistakes. That being said, I also value the lessons that can be learned from making mistakes. Sometimes learning what doesn't work or what to avoid doing can be essential in preventing the same mistakes in the future.

  • How do you work best?

Gear Up Pre-Work

Empathy

  • What role does empathy play in your life and how has it helped you?

Empathy is something that I struggled with years ago. Becoming aware of this encouraged me to make a conscious effort to change how I interact with others. Once I started focusing on being empathetic, I believe it helped me to grow positively as an individual. Regularly practicing empathy has improved relationships in my life, personally and professionally. Taking the time to not only listen, but try and relate to others has opened my mind to so many new perspectives and ideas, that I would not have had the privilege of understanding otherwise.

  • How does empathy help you build better software?
@aripp2
aripp2 / beginners_guide_to_git.md
Last active March 26, 2019 22:05
Beginners Guide to Git

Beginner's Guide to Git

Basic Git Commands and their purpose:

To utilize these commands, be sure you are in the directory of the repository you intent to work on by typing cd directory_name from your home directory.

  • git init start tracking a directory with git (this only needs to be done once within a directory)
  • git status tracks the current status of your files
  • git add <name_of_file.txt> add a file to track (goes to stagin area)
  • git commit -m 'Message about your changes' commit changes (use the message 'Initial commit' for the first commit in a repository)
@aripp2
aripp2 / mod_0_session_4_practice_tasks.md
Last active March 27, 2019 00:33 — forked from rwarbelow/mod_0_session_4_practice_tasks.md
Mod 0 Session 4 Practice Tasks

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.

Turing Pre-work

Day 1

Chapters 1 & 2

  1. On a website, what is the purpose of HTML code?

To structure the content of a website