Skip to content

Instantly share code, notes, and snippets.

View pvinthemix's full-sized avatar

Paul Vangelakos pvinthemix

View GitHub Profile
@pvinthemix
pvinthemix / Mod1.md
Created August 15, 2018 19:35
Mod 1 Questions and Answers

What is the attribute for indicate on the label element? Do you always have to use it? Why or why not? -The for attribute defines the use of the attribute and also allows you to wrap it.

What are 5 values for the type attribute of an input element and how do they work?

  • text
  • password
  • reset
  • submit
  • radio
@pvinthemix
pvinthemix / PaulVangelakos_ProfessionalDevelopment.md
Last active July 26, 2018 03:58
Professional Development - 1808 - Turing
  1. Pick out 3 behaviors that resonate with you in the list and describe why they resonate with you in a reflection (4-6 sentences).
  • Use Google Aggressively: The internet is a valuable resource for teaching and learning. Googling and using this tool resonates with me during this prework as I have often found myself needing another view of the what im learning during the last few days. During this time, I have been able to find multiple resources that I know I will be able to use throughout my path as a software engineer. These resources offer a different voice and strategy to learning different facets of what im trying to learn.

  • Always use the right tool for the job: I really like this behavior because it is one of the main reasons I was originally intriqued by software engineering. The tools of coding are always changing and improvements in how code is written changes very fast. One tool may be better than the other at doing what you have been tasked for and finding that is the key to success. Acknowled

@pvinthemix
pvinthemix / PaulVangelakos_GearUpPrework.md
Last active July 25, 2018 00:52
Turing Gear Up Prework -

Gear Up Pre-work - Turing Culture: Developing Empathetic Programmers

  • What role does empathy play in your life and how has it helped you?
  • - Empathy has played a important role in my life through the teaching and parenting of both my parents. Both my mom and dad have been career medical professionals working with sick children. My mom is an oncology nurse who gives cancer treatment to young children and my dad is a childrens physical theraphist who helps them recover. From a young age, I have been able to empthasize and understand that I was born healthy and lived my life not taking that for granted. By understanding that not all people are lucky to be able to learn or live a normal life in the same way due to complications with their heath I have been able to view life more emphatehically when dealt with troubling situations.
  • How does empathy help you build better software?
  • - Developing the skill of empathy and applying it in your job as a software engineer can help y
@pvinthemix
pvinthemix / PaulVangelakos_Prework.md
Last active August 2, 2018 23:14
Prework - 1808 Turing - Paul Vangelakos

Day 1

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

  • Describes the structure of pages on a screen by adding code words we want to appear on those pages.

What is the difference between an element and a tag?

  • Element: Tells the browser something about the information that sits between tags. It comprises the opening and closing tag and any content that lies between it
  • Tags: Are the containers of the element and usually are in pairs (an opening and a closing tag accompanied with a forward slash to indidicate the closing).

Why do we use attributes in HTML elements?