Skip to content

Instantly share code, notes, and snippets.

M4 Reflection

Fork this gist and answer these questions to reflect on your learning experiences.

  • What brought you to Turing?

    I was originally an accountant, felt that I wasn't helping anyone and that I didn't want it to be my lifes work so I started my own tech service biz. Ran that successfully for a few years, but wasn't intellectually stimulated so I moved on to programming to be able to help people while being challenged.

  • Where do you see yourself after Turing?

@Ryanspink1
Ryanspink1 / dtr_expectations.markdown
Last active January 28, 2017 22:40 — forked from case-eee/dtr_expectations.markdown
Group Work Expectations

Group Expectations

Group Member Names: Ryan Spink, Ashley Schauer, Charlotte Moore

Project Manager:Ashley Schauer

Defining the Relationship (DTR) Questions:

  1. When are group members available to work together? What hours can each group member work individually? Are there any personal time commitments that need to be discussed? ###Charlotte
@Ryanspink1
Ryanspink1 / crud_cfu.md
Last active January 24, 2017 06:38 — forked from case-eee/crud_cfu.md
CRUD CFU Questions
  1. Define CRUD. ###CRUD is create, read, update, and delete. It provides basic functionality/methods to our database.

  2. Why do we use set method_override: true? ###it allows the use of _method in the form.

  3. Explain the difference between value and name in this line: <input type='text' name='task[title]' value="<%= @task.title %>"/>. ###name is the value of the key title from the hash task ###value is coming from the instance variable task that hold the info title ###not entirely sure on this