Skip to content

Instantly share code, notes, and snippets.

View StarPerfect's full-sized avatar

Corina Allen StarPerfect

View GitHub Profile

Description

Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.

Fixes # (issue)

Type of change

Please delete options that are not relevant.

@StarPerfect
StarPerfect / mod5.md
Last active January 11, 2020 01:39
Post Graduation Job Search Action Plan (Mod 5 Goals for Employment!)
  1. What motivates you?

The superficial motivation is that I HATE not having the ability to be self-sufficient so the closer I get to running out of money and the more I start to freakout. Another motivator is that I know I am finally following my passion and doing what I've been excited about since I was younger. Being oh-so-close to making my dreams come true, following in my father's footsteps, and doing what I should've done to begin with is so exciting. Finally, failure for me means returning to active addiction, homelessness, and a very depressing, tragic way of existing. Since that is NOT an option, the only other option is to succeed and find a job. This is where I belong!

  1. How will you keep yourself going when faced with rejection in the job search?

I know it's not personal. There are sooo many dev jobs out there and each 'no' is another step closer to my 'yes'. I believe things happen for a reason and if I get rejected from one job, it's because an even better one is waiting for me.

  1. How will
@StarPerfect
StarPerfect / mid-retro.md
Last active December 20, 2019 21:13
Cross-Poll Mid Project Retro - Community Connect

CommuntiyConnect - Corina Allen, Josh Sherwood, Kirk Veitch, Edwin Del Bosque

What did we do well, that we want to continue?

Communication, daily standups, being flexible with each side of the project. Overwhelming slack channel.

Why do we think it is important?

So everyone is on the same page, so everyone feels like there is progress occuring even during learning phases.

@StarPerfect
StarPerfect / cross-poll.md
Last active December 13, 2019 19:58
1906 Cross-Pollination Project "Define The Relationship"

Project: RestartResources

Group Member Names: Corina Allen, Josh Sherwood, Edwin Del Bosque, & Kirk Veitch

Project Expectations:

What does each group member hope to get out of this project? CA: EB: Learning new technology KV: A project that I can actually show off

@StarPerfect
StarPerfect / play_mid_retro.md
Created December 6, 2019 20:14
1906 B Mod 4 Paired Project - Play - Mid-Project Retro

What did we do well, that we want to continue?

Knocked out the sprints fairly easily. Pair program together very well. Communication is good even during differences of opinion.

Why do we think it is important?

Pair programming keeps us both on the same page and allows for a sharing of knowledge and a more thorough understanding of the concepts. Great communication is key to life.

What did we learn?

Project: Play

Group Member Names: Evette Telys & Corina Allen

Project Expectations: To have a solid project where both teammembers have achieved a level of comfortable understanding within the learning goals of the project

What does each group member hope to get out of this project? A further understanding of the JavaScript concepts

Goals and expectations: Have a functional project by Sunday and use next week to refactor and make improvements

@StarPerfect
StarPerfect / terrificus.md
Last active October 15, 2019 01:37
1906 Mod 3 Terrificus Idea Pitch

[PetHomes]

Pitch

An app to make it easier to connect pets who need new homes with those looking to add a furry family member.

Problem

Pet overpopulation is a big issue and too often families resort to just dumping animals in shelters or out in the streets. Also, mass breeding facilities are often not very humane places for the pets they breed.

@StarPerfect
StarPerfect / little_shop_drt.md
Created August 19, 2019 17:43
Mod 2 Little Shop Paired Project: Mack Halliday & Corina Allen

DTR: Define the Relationship

Use this template to when conducting DTR with your project partners. It's recommended that you copy/paste this template into your own gist each time you conduct a DTR to take notes on the conversation.

Guiding Questions to Define The Relationship:

  • What are each of our learning goals for this project? What drives us in this project?
  • What is your collaboration style? How do you feel about pair programming vs. divide-and-conquer approaches?
  • How do you communicate best? How do you appreciate receiving communication from others?
  • How would you describe your work style?
@StarPerfect
StarPerfect / mod_2_prework.md
Last active August 11, 2019 15:11
1906 BE Mod 2 Intermission/Pre-Work

B2 Intermission Work

Answer these Check for Understanding questions as you work through the assignments.

HTML

  1. What is HTML? Hyper Text Markup Language
  2. What is an HTML element? tags that tell the browswer how to display content, everything from the start tag to the end tag
  3. What is an HTML attribute? pieces of code added to a tag to provide additional info about the element, attributes are always specified in the start tag, usually come in name/value pairs
  4. What is the difference between a class and an id? When would you use one vs. the other? When you want to apply the same styling to multiple elements, you give them the same class, class names are case sensitive, JavaScript can also call the elements of the same class. ID attribute gives a unique ID for a particular element in the HTML document. An ID is only allowed to be given to one single element, cannot be shared across multiple elements like Class can. ID's are useful to create bookmarks in a long document so you can have links that w

Vehicles and Passengers Prework

Iteration 1

Use TDD to create a Passenger class that responds to the following interaction pattern. For the adult? method, a Passenger is considered an adult if they are age 18 or older.

pry(main)> require './lib/passenger'
# => true