Skip to content

Instantly share code, notes, and snippets.

View N-Gibson's full-sized avatar

Noah Gibson N-Gibson

View GitHub Profile
@N-Gibson
N-Gibson / heroku.md
Created November 25, 2019 01:17 — forked from qfarenwald/heroku.md

#Promise Practice

  return new Promise((resolve, reject) => {
    if(num > 10) {
      resolve(`${num} is greater than 10`)
    } else {
      reject(Error(`${num} is less than 10`))
    }
 })

Gear up- reading section

The two articles I chose were: The Surprising (Nontechnical) Skill You Need to Succeed in Tech by The Muse and Why Aren’t We More Compassionate TED Talk by Daniel Goleman.

I think we are talking about empathy at Turing because there is a huge emphasis on the matter built into the foundations of the culture here. The reasons for this being that Turing’s goal is to train a diverse student body to succeed in high fulfillment technical careers. The only way to achieve a diverse base in any field or avenue, you have to display empathy. As this does have a large impact at Turing, I think it is applicable to the workforce as well. In order to properly convey a message or a task you have to put your feet into someone else's shoes (ie. the consumer rather than the developer). This strategy will result in the most positively received site with the greatest level of success in whatever it’s mission may be. Developing the skill of empathy is something that takes a concentrated effort. In

Reflection

  1. What is your greatest strength and how do you know?
  • I would say my greatest strength would be my ability to reach benchmarks or milestones via a unique path. Many people can take pre-existing paths to reach a goal from a given location. I have always forged my own and that has worked best for me. This includes reaching professional, academic and personal goals. This is not to say that help or guidance or instruction isn’t used it is just formatted in my own way.
  1. How do you work best?
  • I work best with a team. I know this as my most significant achievements have been in a team setting. School has always been hard for me and so I’m not entirely sure how I work best with regard to school. As far as education goes, if it is something I’m passionate about I’ll learn it!
  1. What is your greatest area of improvement?
  • My greatest area in need of improvement is definitely public speaking and gaining confidence, composure and a level head in public situations. I don’t want to be shy forever, i

Chapter 1 & 2 Questions

  1. On a website, what is the purpose of HTML code?
  • HTML pages are text documents that comprise the contents of a page.
  1. What is the difference between an element and a tag?
  • Elements and tags are often used interchangebly, however, elements are the characteristics that live inside a tag and a tag is the set of opening and closing elements. Ex. (<{h1}>) {h1 is the element} and (<h1> is the opening tag) <{/h1}> {/h1 is the element} and (</h1> is the closing tag)
  1. Why do we use attributes in HTML elements?
  • Attributes tell us more about the contents of an element, such as name and value.
  1. Describe the purpose of the head, title, and body HTML elements.
  • Head is the header of the site.
@N-Gibson
N-Gibson / mod_0_assessment_checklist.md
Last active April 17, 2019 21:32 — forked from rwarbelow/mod_0_assessment_checklist.md
Mod 0 Technical Assessment Checklist

Checklist/Rubric

Part I: Creating Directories and Files; Initializing Git and Pushing to GitHub

  • I named my directories correctly.
  • I named my files correctly.
  • I structured my files and directories correctly.
  • I made one initial commit.
  • I pushed my initial commit to GitHub.

Beginners Guide to Git

There are a few things that are important to know while getting introduced to Git.

  1. Git is a way to track changes in a project. It can be done by an individual or a group of individuals.
  2. It essentially takes a snapshot of a project, the time it was changed and you can add a handy title as well. From there it allows all of those snapshots to be accessed for editing or time travel (in your code)!
  3. These allow for a much easier and more effective experience making new, and editing code that is preexisting.

How to use Git

There are quite a few steps to use Git, but once you get a hang of them it's not so scary.

@N-Gibson
N-Gibson / mod_0_session_4_readings.md
Last active April 17, 2019 22:46 — forked from rwarbelow/mod_0_session_4_readings.md
Mod 0 Session 4 Readings and Responses

Session 4 Readings and Responses

The readings and responses listed here should take you approximately 50 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.
@N-Gibson
N-Gibson / mod_0_session_4_practice_tasks.md
Last active April 17, 2019 23:07 — 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.