Skip to content

Instantly share code, notes, and snippets.

View corneliusellen's full-sized avatar

Ellen Cornelius corneliusellen

View GitHub Profile
@corneliusellen
corneliusellen / EllenCornelius_Prework.md
Last active November 28, 2017 14:02
Turing School Prework, Cohort 1711, Ellen Cornelius

Ellen's Prework, Cohort 1711

Daily Warm-Ups

Typing:

Day 1:

Day 1 Result

Day 2:

Day 2 Result

Day 3:

Day 3 Result

Day 4:

@corneliusellen
corneliusellen / EllenCornelius_CareerDevelopmentPrework.md
Last active November 22, 2017 13:56
Career Development Prework, Cohort 1711, Ellen Cornelius

Career Development Prework

  1. 29 Behaviors That Will Make You an Unstoppable Programmer

Three behaviors that resonated with me were #6, "Understand that code is cheap," #15,"Don’t count the number of hours," and #29 "Move Fast and Break Things."

#6

"But the experience gained from writing the (bad) code was actually the “output” vs. producing shippable code. It was simply part of the process that ultimately led to the result."

@corneliusellen
corneliusellen / EllenCornelius_GearUpPrework.md
Last active November 27, 2017 05:11
Gear Up Prework, Cohort 1711, Ellen Cornelius

FYI the “The Importance of Empathy in Our Services-Centric, People-Oriented Economy" requires an account to view the article.

Empathy Relection

Empathy helps you to anticipate and gauge user’s needs in order to build more user-friendly software. Empathy is important when working on a team because no one will want to build code with you if you’re a jerk.

Also, “empathetic listening increases our ability to receive information.”

I find it most difficult to be empathetic when dealing with management and trying to see their point of view. It’s easy to dislike your boss when you don’t actually recognize them as a person and view their decisions as insensitive.

Strengths & Storytelling Reflection Guidelines

Build on your professional story by thinking about how you're progressing at Turing. Answer the questions below in your own gist to use your StrengthsFinder themes to add to your story:

Write 1-2 paragraphs about your StrengthsFinder themes: How have you seen yourself using these strengths at Turing? Has your understanding of these strengths changed since you first reflected on them? If so, how?

My 5 Strengths:

  1. Includer
  2. Future
@corneliusellen
corneliusellen / Ellen Cornelius, M2, 1711BE
Created February 26, 2018 05:09
Module 2 Professional Development
#
@corneliusellen
corneliusellen / cfu2.md
Last active March 22, 2018 23:24
CFU Week 2 - Andy, Ellen and Megan

Week Two - Module 3 Some of these questions are from this week, some are from previous weeks, and some are new concepts. Try answering without research first. If you are not sure, take a guess but acknowledge that it's a guess (faking an answer in an interview without acknowledging it as a guess is a bad idea). Follow up with the necessary research to understand these concepts. These tend to be common themes during the job hunt and are worth having a solid understanding of.

What's OAuth?

  • Process of authenticating through a third party service.

What are some advantages/disadvantages of implementing OAuth? Advantages:

  • No need to store passwords
  • For users, it is less setup. You can inherit user's profile information and other data that is stored on the third party.
@corneliusellen
corneliusellen / Alterative_Road_Trip.md
Last active April 3, 2018 15:21
Personal Project Pitch

Alterative RoadTrip

Pitch

Alternative RoadTrip is the tool that lets alternative fuel vehicle owners realize the ranges that they can travel in their vehicle.

Problem

One of the main deterants of purchasing an alternative fuel vehicle are the low driving ranges. Buyers are also unaware of the potential savings of purchasing an alternative vehicle through state and federal incentives.

@corneliusellen
corneliusellen / wes_boss_prework.md
Last active April 30, 2018 12:59
Wes Boss JS in 30 Code Alongs

04 Array Cardio Day 1

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Array Cardio 💪</title>
</head>
<body>
  <p><em>Psst: have a look at the JavaScript Console</em> 💁</p>

M4 Capstone Project

Epi-Ready Questionnaire Builder

Pitch

This project is in partnership with the Colorado Department of Public Health and Environment (CDPHE). CDPHE aims to create an interactive, dynamic tool that guides foodborne outbreak investigators through building a tailored outbreak questionnaire. With this tool, investigators will have rapid access to a large, curated database of questionnaire modules, which they can navigate through using a guided, web-based interface to efficiently build a questionnaire that is specific to their outbreak scenario. I will be building a prototype of this tool that CDPHE plans to include in an upcoming grant application to leverage CDC funding to build the full-fledged product.

require 'pry'
x = [1, 2, 3, 4, 5]
############
sum = 0
for current_number in x do
sum += current_number