Skip to content

Instantly share code, notes, and snippets.

@Aferencz1987
Aferencz1987 / legacy.md
Created August 19, 2021 21:16
legacy intermission work

I would look at the on github, check the pull requests, clone the repo, and run the tests. This would let me know what was there and what was not. I know that I have a tendency to run before I walk so I would really look at the error code and the ticket for the error. I would consult other folks that have seen the error before to make sure I know what I am getting into. Running bundle install and dealing with the environment is also essential to making sure we can figure out the issue.

I chose to work on the limiting of text messages. The assumptions that I am making in order to work on this issue is that this app works to text folks. The assumption is that it is currently sending too many. I am assuming that there are failing tests and a way to see how it is failing or not. Running tests will allow me to have a starting point for looking at which files are involved.

Looking over the code I notice that they have graphsql and I have not used that before so I need to research that. I have been using VCR but I

@Aferencz1987
Aferencz1987 / partner_feedback.md
Last active July 16, 2021 13:40
Feedback for Aliya while working on Viewing Party

Project Feedback

Directions 3. Before tomorrow, 9am MT, take some time reviewing your partner’s feedback that they sent you. 4. Tomorrow at 9am you will get on a video call with your partner(s) for the in person partner retro to discuss feedback.

Partner: Aliya Merali

Project Reflection

Rails Database Development Checklist

Warning: This checklist does not rely on TDD to build up the rails app. It uses some MVC code snippets, so make sure to replace them with names you use on your project. Most references are from

https://backend.turing.io/module2/misc/blogger
https://github.com/turingschool-examples/task_manager_rails
  1. Create Rails Application
  • From the command line, start a new rails app. For example,
    rails new project_name -T -d="postgresql" --skip-spring --skip-turbolinks
    

B2 Intermission Work

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

HTML

  1. What is HTML?
    Hyper text markup language. It is the language for creating web pages and describes the structure of a web page.

  2. What is an HTML element?

1] pry(#<FoodTruck>)> @inventory
=> {#<Item:0x00007f920aa5bb00 @name="Peach Pie (Slice)", @price=3.75>=>35, #<Item:0x00007f920aa5b948 @name="Apple Pie (Slice)", @price=2.5>=>7}
[2] pry(#<FoodTruck>)> @inventory.each do |item|
[2] pry(#<FoodTruck>)*   (item.price)*(item.value)
[2] pry(#<FoodTruck>)* end  
NoMethodError: undefined method `price' for #<Array:0x00007f920a05d248>
from (pry):3:in `block (2 levels) in potential_revenue'
[3] pry(#<FoodTruck>)> @inventory.each do |item|
[3] pry(#<FoodTruck>)*   item.each do |info|

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.

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? A. I want to really grasp how classes and their tests interact and get comfortable writing things from scratch. L. I want to be able to retain how to write a method and I want to understand how to start projects. Passing is a huge drive but also the desire to learn and absorb skills.
  • What is your collaboration style? How do you feel about pair programming vs. divide-and-conquer approaches?
@Aferencz1987
Aferencz1987 / git_github.md
Created January 29, 2021 17:11 — forked from elyhess/git_github.md
Github cheatsheet
  • git is a distributed version control system
    • this means that multiple people can work on the same project at one time
  • github is a website that allows us to share git repos
  • In order to keep code safe we use branching workflow that allows us to make changes to multiple files before fully committing those changes

Commits

  • Unstaged
  • Staged
  • Committed

Alex's Personal development

Facing her fears one piece of code at a time!

image text

Super cool top heading

Other less cool but very important heading

  • Here is
  • My unnumbered
  • List
    • So cool
  1. Here is my numbered list