- Sum an array of numbers
- Implement your own version of Enumerable#collect
- Write a function that finds all the duplicate words in an abritrary amount of text
- Do FizzBuzz: "Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”."
- What's the difference between a class and a module?
- Implement HashWithIndifferentAccess
- Show two ways to render a list of Users’ names given
class User > ActiveRecord::Base
- Why is CSRF important?
- Implement a job that finds all Users who are overdue and create a file containing that information (Bonus question, this)
- Sketch out database/model schema for a blog w/ comments, authors, tags
- write a function that takes an int and prints the roman numeral version
- write a function that takes a string and returns the number of unique letters
- Write a function that return the Fibonacci sequence to a number of iterations.
- Write a function that returns the factorial of a given integer
- For a user model with a firstname and lastname, implement a fullname method in any way you would like.
- When might you use a mixin as opposed to inheritance?
- What is polymorphism and when might you use it?
- Add any new method to the String class.
- What might be a problem with including callbacks in your model?
- What path does a web request take through a Rails application?
Last active
May 8, 2017 20:23
-
-
Save dummied/5b0f9e073cbd311cac28 to your computer and use it in GitHub Desktop.
Contributed by the indy.rb community
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment