Skip to content

Instantly share code, notes, and snippets.

View javier-aguilar's full-sized avatar
💻
open to work

Javier Aguilar javier-aguilar

💻
open to work
View GitHub Profile

Instructions

  1. Fork this gist, then "edit" the gist
  2. Fill out the questions below
  3. Click the "Add file" button and add your source code to the gist
  4. Submit by the due time as instructed in Zoom

Do not publish your code on a public repl.it or repo or other public means.

Prompt

DTR: Define the Relationship

Project:

Drag Time

Group Member Names:

Javier A, Kyle W, Daniel A, Collin K, Travis B

Goals and Expectations for the Project (What does each group member hope to get out of this project? What do we want to achieve as a team? How will we know that we're successful?):

  • CK: Exposed to back-end. Explaining both backend and frontend. Code reviews together

Mod 4 Week 2

  • Describe the person that you want to become?
  • What have you done this week to work toward becoming that person?
  • What habits, processes, and knowledge have you identified this week that you will need to improve on or obtain in order to become that person?
  • What wins or appreciations do you have for this past week?
  • What struggles did you encounter?
  • How well did you stick to your calendar this past week? Did you spend more/less time in some areas than planned? If so, what areas and why?
  • Do you need to adjust your calendar for next week?
@javier-aguilar
javier-aguilar / b2_intermission_work.md
Last active March 13, 2020 20:51
B2 Intermission Work Submission

B2 Intermission Work

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

HTML

  1. What is HTML?

    HTML stands for Hypter Text Markup Language and is used for creation of websites.

  2. What is an HTML element?

@javier-aguilar
javier-aguilar / review.md
Last active February 27, 2020 18:55
Review for Call Stack and Ruby Object Model

Call Stack

What is the Stack data structure? What are the rules of interacting with a Stack?

A Stack data structure is a container of objects that are inserted(push) and removed(pop) according to the last-in first-out (LIFO) principle. Additionally, you can only see the top element and not the other lower elements.


What is The Call Stack? How does it work?

The Call stack represents each method call as an element on a stack. It keeps track of when a method calls another method, usually in the following order: outer method needs > inner method


@javier-aguilar
javier-aguilar / agile_and_reflection_feedback.md
Last active February 27, 2020 18:17
Agile & Feedback Reflection Guidelines

Agile & Feedback Reflection Guidelines

In interviews, you'll be asked about how you approach working in projects, and being able to describe how you utilize agile processes is a great way to help you stand out as a junior developer candidate. This reflection is meant to help you develop this skill.

With that in mind, please answer the following questions in your own gist about your group project:

  1. What have you learned about the use of agile vs. waterfall in software projects?
  • Both agile and waterfall are two approaches a team can take in regards to the development cycle of their software. Waterfall follows a linear sequence meanwhile Agile follows the same step process but in a different approach. Agile has no strict structure and follows an incremental iterative approach.

@javier-aguilar
javier-aguilar / feedback-from-me.md
Last active February 13, 2020 18:06
BE M1 Paired Peer Feedback Form

Project Reflection

Name: Javier Aguilar

What is one thing you appreciate about the way that you worked together during this project?

Our communication was very clear and direct, which made working together seamless. It also allowed us to be adaptable with our schedules, and stay on the same page.

In hindsight, is there anything you would have done differently?

@javier-aguilar
javier-aguilar / Battleship_DTR.md
Last active February 4, 2020 00:16
Battleship_DTR.md

Battleship DTR

Project:

Battleship


Group Member Names:

Whitney Kidd & Javier Aguilar


Summary
The goal of the project was to simulate a deck of flash cards which a user could see questions, make a guess and get feedback (correct/incorrect).
At the end of a round a user will get back a summary of their results.
Overall
One of my personal learning goals for this project was to understand the use and implementation of testing.
Technical
...
@javier-aguilar
javier-aguilar / beginners_guide_to_git.md
Last active December 5, 2019 19:43
Beginners Guide to Git

Beginners Guide to Git

alt text

What is Git?

Git is a distributed version-control system for tracking changes in code for software development.

Reasons to use Git

  1. Distrubted development