Skip to content

Instantly share code, notes, and snippets.

View trishalanglois's full-sized avatar

Trisha Langlois trishalanglois

View GitHub Profile
# Template for DTR Memo
**Group Member Names:**
Trisha Langlois and Nick Dongoske
**What feedback did you get on Dog Party today? What was your biggest takeaway?**
Organization in HTML and layout. Refactoring JS and using percentages instead of pixels on the CSS.
**Goals and Expectations for the Project (You don't know the details of the project yet. But as you go into any project, how do YOU define success?)**
Organizing overall layout of page and direct communication with one another.

Empathy

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

I wish that I could say that I always act on my empathy, but after listening to Daniel Goleman's TEDTalk, I'm reflecting on all the instances when I could have done more. When I have a preexisting connection with someone, I think I tend to be more empathetic, but in instances where I'm interacting with strangers, I think my empathy levels decrease. Thinking about instances that are common in a city, I feel like I could especially do better with this: a driver who cuts me off, someone asking for money on a streetcorner, or even someone who seems a little grumpy. Having empathy for individuals is vital -- we don't know what's going on for that person, and we have the power to react in a way that will build someone up.

In the past, empathy has helped me, especially in work situations. Being a supervisor the last two years, I constantly reminded myself that everyone is doing their best. I also learned about and started t

Pairin Results

Pairin Results

What is your greatest strength and how do you know?

My biggest strengths are my organization and time management skills. This is where my "Objective-Analytical" and "Specialist" qualities come into play. In the last few years, I've supported a large caseload of teachers and students, and I was able to organize meetings, keep track of all their goals, follow up with resources and supports for each individual student, on top of my own administrative duties and completing my Master's Degree. I frequently received positive feedback about being "on it", and I followed through on everything that I was responsible for, through simple tools like checklists and backwards planning. I personally love organizing and finding efficiencies in what I'm doing, whether it's cooking, completing chores around the house, or going grocery shopping. It's almost like a game to me to f

Capstone Day 1

HTML and CSS: Design and Build Websites, Chapters 1-2

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

HTML is the language that we use to set up the structure of the webpage. It will include headings, paragraphs, titles, etc.

2. What is the difference between an element and a tag?

Although tag and element are sometimes used interchangeably, a tag and the content inside tags is an instance of an element. One tag will be at the beginning of some content, and the corresponding tag will be at the end of said content. A tag set is like a container that holds something (usually text) that we see on the webpage.

@trishalanglois
trishalanglois / mod_0_assessment_checklist.md
Last active July 10, 2019 20:57 — forked from damwhit/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.
Object: Ford Raptor
Attributes:
PowerType: "gas"
NumberOfSeats: 4
Color: "green"
GearShift: "stick"
NumberOfDoors: 4
Dirty: yes
Class: Vehicle
Attributes:
power_type (string)
number_of_seats (integer)
color (string)
gear_shift (string)
number_of_doors (integer)
dirty (Boolean)
1. start campfire
1.1 gather materials
1.1.1 gather firewood
1.1.2 gather kinding
1.1.3 get lighter fluid
1.1.4 get matches
1.2 build fire
1.2.1 gather large pieces of firewood
1.2.2 place one piece of firewood
1.2.3 lean another piece of firewood so the tops are touching

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.

The Beginner's Guide to Git

So, you're just starting out in the terminal and getting to know git? This is the perfect place for you. Check out this handy list of shortcuts to get you zooming around your Terminal in no time! Eat your heart out, Sonic.

Sonic the hedgehog

Action Commands

  • git init - initializes git to start tracking what you're doing. You're not tracking any changes yet, but you have the ability to do so.
  • git add - adds your file to the staging area. This means that your file is ready to be saved, but you haven't actually saved it yet. This is a crucial step before you commit or save your progress.