Skip to content

Instantly share code, notes, and snippets.

Setting Group Expectations

Group Member Names: Katy Welczyko, Zach Landes, Max Stackhouse

  1. When are group members available to work together? What hours can each group member work individually? Are there any personal time commitments that need to be discussed? Plan to get things divided up for individual work time by the end of the day. Katy - Leave by 6 Zach - None Max - Leave by 6
  • How you've used agile as a process at Turing and what kind of project management tools you utilized. Address these questions:
    • What were you already doing?
      • Working off of lists to make sure I have everything done. Didn't havea good method.
    • What did you put into place in Module Two?
      • Using lists must more and started using tools like waffle & JIRA
      • Group meetings & assign items together
      • Working off User Stories
    • What was effective?
      • The waffle & JIRA tools have been very useful with team collaboration.
  • Planning work around User stories has been very easy.

I grew up playing hockey and this is where I discovered my skill at working as a team member. I was rarely the fastest, strongest or most skilled player on my team, but I was consistently picked for top compeditive teams, because of my ability to raise the level of play of my teammates. I did this by being flexible and well rounded, which allowed me to fill different roles depending on who I was teamed with.

As I grew up and time came to pick a profession I knew that technology is where I wanted to go. I always have had a knack for problem solving so tech was a good fit. I've been interested in many fields and at times I had dreamed about being a chemist, physicist, geologist and even got a degree in metallurgical engineering. I followed all of these because they were fascinating subjects and have I have moved away from wanting to pursue these careers when I realized what the work environments. A hugh time investment in research for little progress and huge ammounts of capital investments.

My first job ou

Meetups/Networking Events: Identify 1 meetup and/or other networking event that you'll attend between now and the end of Module 3. Answer these questions:
https://www.meetup.com/goFCIP/events/244456684/
Why will you attend this particular event?
I have several social connections that attend this one frequently.
Who do you hope to connect with at this event?
Make some contacts, maybe find a few leads on interesting companies in Ft Collins.
How will you follow-up with the people you connect at this event?
I will get their contact info & reach out.
* Date of feedback conversation:
<br>12/08/2017
* How did you prepare for the conversation?
<br>I looked at our individual goals over the project that we set in our DTR and reflected on whether or not we met those goals.
* How did the conversation go for you? What was easy about the conversation? What was more difficult?
<br>The conversation was easy for the most part. We had good communication throughout the project, so going into the convo there wasn't a lot of stress about what was going to be said.
<br>Working with this group was so easy, because we all were specific about what we were working on and made few assumptions.
<br>The more difficult part was when discussing areas we could each do better in. There wasn't a lot of feedback here. I'm guessing that it was because we didn't have a lot of conflict or clashing work styles.
http://backend.turing.io/module2/misc/complex_queries
## Find the average grade for each class
SELECT c.name, ROUND(AVG(e.grade),2) AS avg_grade
FROM classes c
INNER JOIN enrollments e ON c.id=e.class_id
GROUP BY c.name
;

Solar Calc

Pitch

A web tool that can be used to determine the size of a battery needed to store solar energy for a residential application.

Problem

During the day solar cells are producing more energy than ever before, but peak demand for electricity is in the evening time when solar cells are not producing. In order to meet peak demand, utility companies resort to producing energy from traditional sources. To combat this, a battery sizing tool will be build so that residential solar installations can college energy during the day for use at night to offset the need for utility companies to need produce. This problem is commonly referred to as the duck curve: https://en.wikipedia.org/wiki/Duck_curve

M4 Reflection

  • What brought you to Turing? Desire for a new engineering skill that would allow me more flexibility in where I was able to work. My previous engineering degree required an expensive laboratory to work in, which limited my potential job prospects to large corporations and highly specialized roles.
  • Where do you see yourself after Turing? Working for a mid to small sized company where I am required to contribute to multiple areas and not forced to specialize in my department's work.
  • From concepts taught in class or your personal learning, what technical concepts do you enjoy exploring most? Optimization and architecture. They go hand in hand and I really enjoy thinking through the problems and finding the best solution to meet our needs. Also, exploring refactoring solutions for large projects where many layers of abstraction are needed to build a solid program.
  • What technical concepts do you enjoy exploring least? Not many of them, but going through and learning syntax in clas