Skip to content

Instantly share code, notes, and snippets.

View kevxo's full-sized avatar

Kevin David Cuadros kevxo

  • Land O Lakes, FL
View GitHub Profile
@kevxo
kevxo / kevin_beginners_guide.md
Last active May 5, 2020 18:25
Beginners guide to data types

Ruby

Ruby data types

  1. Strings
  • "Hello"
  1. Integers/floats
  • 5 or 5.0
  1. Arrays
  • names = ["Bob", "Tom", "Chuck"]
  1. This will show Hashes example.

What is the value of a checklist?

The value of a checklist is huge beacuse it keeps you on track on what to do. It gives you priorties to focus on. The checlist will help on being more organized. I belive the checklists can help me work more fluently through the day beacuase ill be aware of what im working on.

What do you plan to improve upon while at Turing?

I plan to improve on my communication skills and technical skills. I want to be able to work in a group and get that experience with other classmates where we communicate and discuss problems regarding a project. I also want to improve my logic in the technical aspect as i see its been a challenge for me at the moment. I would like to also improve my interview skill as well.

@kevxo
kevxo / career_development.md
Last active January 20, 2021 20:37
Career Development Mod 0 Capstone

Page 1 Mod 0.

When you've worked towards a goal in the past, what systems or tools have been helpful for you in accomplishing that goal? How could you adapt those same systems/tools to use while at Turing?

When i work towards a goal, I like to keep myself motivated and also keep my mind in check. I like to right down what i need to do in order to get to that goal. This helps me to be organized and work accordingly to what i have planned. I could adapt this easily by having a mentor and a little notebook where i can list my thoughts to reach the goal i want. In turing if i keep myself motivated and my mind right i can get to the goals i want. I've doone it before.

What is your greatest strength and how do you know?

My greatest strength is my patience. When things dont come my way, im patient that they eventually will. I know this because when things are going wrong with me i reamain calm. I was in calculus and i didnt understand a subject

@kevxo
kevxo / empathy.md
Created May 9, 2020 19:51
Gear - Up pre - work questions

Reflections

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

Empathy has taught me to be more understanding of the other person that im interacting with. They explain their struggles in life and what feelings they have with certain subjects. Empathy teaches me different point of views and it helps me to comprehend different situations and implement them to my judgement. It helps grow as a person and think in various ways to approach an issue.

How does empathy help you build better software?

I believe empathy helps you build better software by approaching the issue in different ways

DTR: Define the Relationship Use this template 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? Utilize Test Driven Development Practice Algorithmic Thinking Create an Object Oriented solution to a problem without being given full specifications Work in a pair Use Pull Requests to collaborate with a partner

What is your collaboration style? How do you feel about pair programming vs. divide-and-conquer approaches?

We feel that we should use pair programming because it allows us to collaborate and learn more from each other.

@kevxo
kevxo / feedback_from_me.md
Last active September 16, 2020 21:12 — forked from megstang/feedback_from_me.md
Project Feedback (Mod 1 && Mod 2)

Project Feedback

Directions

  1. For every partner you have, make a copy of this gist
  2. Fill out the copied gists with feedback for each group project partner (one gist per partner)
  3. Send us your feedback for each partner using the form posted in slack/assignment tracker (one submission per partner)
  4. Individually slack your partners the link of the gist you filled out for them
  5. Spend some time reviewing your partner’s feedback that they sent you
  6. Get on a video call with your partner(s) for the in person partner retro to discuss feedback.
@kevxo
kevxo / feedback_from_me_2.md
Last active September 16, 2020 21:11
Project feedback

Project Feedback

Directions

  1. For every partner you have, make a copy of this gist
  2. Fill out the copied gists with feedback for each group project partner (one gist per partner)
  3. Send us your feedback for each partner using the form posted in slack/assignment tracker (one submission per partner)
  4. Individually slack your partners the link of the gist you filled out for them
  5. Spend some time reviewing your partner’s feedback that they sent you
  6. Get on a video call with your partner(s) for the in person partner retro to discuss feedback.
@kevxo
kevxo / feedback_from_me_3.md
Created September 16, 2020 21:09
Project feedback

Project Feedback

Directions

  1. For every partner you have, make a copy of this gist
  2. Fill out the copied gists with feedback for each group project partner (one gist per partner)
  3. Send us your feedback for each partner using the form posted in slack/assignment tracker (one submission per partner)
  4. Individually slack your partners the link of the gist you filled out for them
  5. Spend some time reviewing your partner’s feedback that they sent you
  6. Get on a video call with your partner(s) for the in person partner retro to discuss feedback.
@kevxo
kevxo / gist:85b04365e20578ad9bfddf9b1793f199
Last active October 2, 2020 22:33
Mod 2 Intermission work Kevin Cuadros 2008

B2 Intermission Work

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

HTML

  1. What is HTML?

HTML is the standard markup langauge for web pages.

@kevxo
kevxo / graphql.md
Last active December 23, 2020 20:18
Reading about GraphQL

What is GraphQL?

  • Is an open-source data query and manipulation language for APIS, and a runtime for fulfilling queries with existing data.

How can it be beneficial over RESTful crud endpoints?

  • GraphQL is more flexibale and efficient. It solves many of the shortcomings and inefficiencies that developers experience when interacting with REST APIs. You can get information that you specifically want with using one query. With rest we need to hit different endpoints to retrieve date we want and we mostly get unnecessary data.

Pros/Cons