Skip to content

Instantly share code, notes, and snippets.

@BobGu
Last active June 6, 2017 22:12
Show Gist options
  • Save BobGu/eed239d422de185edfca4e84cee5c0f5 to your computer and use it in GitHub Desktop.
Save BobGu/eed239d422de185edfca4e84cee5c0f5 to your computer and use it in GitHub Desktop.

Talking technical

  • I see that you got into development recenlty how did you get into it?

  • Why do you like using Ruby on Rails? What don't you like about using Ruby on Rails?

  • When would you use a class method vs. a instance method? Why?

  • Ruby is a dynamically typed language, what does that mean?(Think duck typing) What are the benefits to a dynamically typed language.

  • Please write down the seven restful routes that are created for us when we do resource in the routes file. Pretend the resource is for an :item

  • HTTP VERB | Path | Controller#Action |

  • What is the difference between each and map in ruby?

  • A student can take many classes.

  • A professor can teach many classes.

  • A student has a grade for each class.

  • Can you show me how to build these relationships in Rails? Doesn't need to be syntax perfect.

  • Bonus what would you write in the rails console to get me all the students a teacher teaches?

  • Tell me the difference between authentication and authorization.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment