Skip to content

Instantly share code, notes, and snippets.

View danmoran-pro's full-sized avatar

Daniel "Danny" Moran danmoran-pro

View GitHub Profile

Mod 3 Week 5: Interview Prep

  1. Reflect on the module: What have you accomplished this module (do you know what you’re looking for?) What have you learned? Do you need to change anything about your approach? Where are you stuck (have you not been able to follow through on outreach? Is your resume not finished?)

  2. Getting unstuck with new strategies:

  • What new things will you try? What will you do differently in your strategy?
  • When will you have your resume completed? When will you have your portfolio updated on the Turing site? As you plan out your schedule for the week, think of how you'll hold yourself accountable to these goals.
  1. Interview Prep:
  • Pick a successful project and write about it with the STAR method:

DTR For Brownfield of Dreams Group Member Names: Daniel Moran, Stephanie Friend, Tony Gomes, Ben Fox.

Goals and Expectations for the Project:

  • Goals - Complete MVP.
  • No self merging to master
  • Will be resolving merge conflicts via local git/text editor.
  • Slack! Group ideas in channel & one on one over dm/call.

DTR For Brownfield of Dreams

Group Member Names: Daniel Moran & Margo Flewelling

Goals and Expectations for the Project:

  • Goals - tbd. Will be reviewing project first.
  • No self merging to master
  • Will be resolving merge conflicts via github.
  • Communiting will be done live over calls.
  • Zeke
    • I have been working on calculating distance between two points based on latitude and longitude and am beginning to work on the ActiveRecord query of our database that we have set up based on Danny’s rake task. I don’t anticipate that will take too long because there are no joins tables to worry about. I will timebox the ActiveRecord stuff to an hour: 9:30-10:30
  • Kathleen
    • I worked on the views of the app. I built out a navbar and the main view of the app with a map that renders on a users current location. Just incorporated the directions part of the map as well.
  • Danny
    • Seeding completed by creating a rake task that calls the refugge api
    • Bettween 9:30-1030 Will be creating more, this time for Boulder and Colorado springs.
  • DeMarcus
    • has been sick this weekend.Kept us updated the whole weekend.
  • Will be working with Kathleen to get pin dropping to work.
  • Zeke

    • working on google maps
    • research on pins
  • Demarcus

    • Working on landing page.
    • research on rendering map
  • Kathleen

    • Get Facebook ouath down
  • Fixing the redirect.

Login

  • As a user
  • When I visit welcome page
  • I see a section that says log in with facebook
  • then I am redirected to the search page.
  • and can see I have logged in

Search page

  • As a registered user

Functionality:

Testing(RSpec tests and development environment):

Related Issues: Closes #

PG Exercises

How can you limit which columns you select from a table?

  • After 'select' use the nmaes of columns you want to desire.

How can you limit which rows you select from a table?

  • Using keyword 'where'the the rows that is desired.

How can you give a selected column a different name in your output?

  • Using the keyword 'as'

How can you sort your output from a SQL statement?

  • Use 'order by' and then the column name

HTML

  1. What is HTML?
  • The standard markup language for web pages.
  • Stand for Hypertext Markup Language
  1. What is an HTML element?
  • usally contains a start and end tag with content in between.
  • also it's everything from the start to the end tag.
  • Elements can also be nested.

Vehicles and Passengers Prework

Iteration 1

Use TDD to create a Passenger class that responds to the following interaction pattern. For the adult? method, a Passenger is considered an adult if they are age 18 or older.

pry(main)> require './lib/passenger'
# => true