- screenshots of scores will be posted in comments
- screenshots of completed sections will be posted in comments
- Did you run into any issues?
- How do you open Atom from your Terminal?
- What is the file extension for a Ruby file?
- What is the Atom shortcut for hiding/ showing your file tree view?
- What is the Atom shortcut for quickly finding a file (fuzzy finder)?
- screenshots of your terminal after each exercise will be posted in comments
Day One Questions:
- What does pwd stand for, and how is this command helpful?
- What does hostname tell you, and what shows up in YOUR terminal when you type hostname?
IRB
- How do you start and stop irb?
- What might you use irb for?
Variables
- How do you create a variable?
- What did you learn about the rules for naming variables?
- How do you change the value of a variable?
Datatypes
- How can you find out the class of a variable?
- What are two string methods?
- How can you change an integer to a string?
Strings
- Why might you use double quotes instead of single quotes in Ruby?
- What is this used for in Ruby: #{}?
- How would you remove all the vowels from a string?
Input & Output
- What do 'print' and 'puts' do in Ruby?
- What does 'gets' do in Ruby?
- Add a screenshot in the comments of the program you created that uses 'puts' and 'gets', and give it the title, "I/O".
Numbers & Arithmetic
- What is the difference between integers and floats?
- Complete the challenge, and post a screenshot of your program in the comments with the title, "Numbers".
Booleans
- What do each of the following symbols mean?
- ==
-
=
- <=
- !=
- &&
- ||
- What are two Ruby methods that return booleans?
Conditionals
- What is flow control?
- What will the following code return?
apple_count = 4
if apple_count > 5
puts "Lots of apples!"
else
puts 'Not many apples...'
end
- What is an infinite loop, and how can you get out of one?
- Take a screenshot of your program and terminal showing two different outputs, and post it in the comments with the title, "Conditionals".
nil
- What is nil?
- Take a screenshot of your terminal after working through Step 4, and post it in the comments with the title, "nil".
Symbols
- How can symbols be beneficial in Ruby?
- Does naming symbols use the same rules for naming variables?
- Take a screenshot of your terminal after working through Step 4, and post it in the comments with the title, "Symbols".
Arrays
- What method can you call to find out how many elements are in an array?
- What is the index of pizza in this array: ["pizza", "ice cream", "cauliflower"]?
- What do 'push' and 'pop' do?
Hashes
- Describe some differences between arrays and hashes.
- What is a case when you might prefer an array? What is a case when you might prefer a hash?
-
- Take a screenshot of your terminal after working through Step 2, and post it in the comments with the title, "Hashes".
- Were you able to get through the work? Did you rush to finish, or take your time?
- What are you most looking forward to learning more about?
- What topics would you most like to see reinforced by instructors?
- What is most confusing to you about what you've learned?
- What questions do you have for your student mentor or for your instructors?
(Note: You will most likely only get to the following sections if you have more than a week for your pre-work. If you are doing the one week pre-work schedule, you may delete this section of the Gist.)
- Loops: Take a screenshot of your "Challenge" program, and post it as a comment in your Gist.
- What challenges did you try for "Summary: Basics"? Post a screenshot of one of your programs.
- Functions: How do you call a function and store the result in a variable?
- Describe the purpose of the following in Ruby classes: initialize method, new method, instance variables.
- How to Write a Program: Screenhero with your student mentor and share your program. Write a bit about what you found most challenging, and most enjoyable, in creating your program.
- screenshots will be posted in comments
- What are your three biggest takeaways from working through this book?
- screenshots will be posted in comments
- What are your two biggest takeaways from working through this tutorial?
- What is one question you have about Git & GitHub?
- Describe your thinking on effective workflow. What shortcuts do you think you'll find most useful? What would you like to learn or practice that will most help you improve your speed and workflow?
As you complete each section, respond to the related questions below (mostly taken directly from the tutorial exercises):
- 1.3: By reading the "man" page for echo, determine the command needed to print out “hello” without the trailing newline. How did you do it?
- 1.4: What do Ctrl-A, Ctrl-E, and Ctrl-U do?
- 1.5: What are the shortcuts for clearing your screen, and exiting your terminal?
- 2.1: What is the "cat" command used for? What is the "diff" command used for?
- 2.2: What command would you use to list all txt files? What command would you use to show all hidden files?
- 3.1: How can you download a file from the internet, using the command line?
- 3.3: Describe two commands you can use in conjunction with "less".
- 3.4: What are two things you can do with "grep"?
Rails Bridge: Exercises
1. Use the each method of Array to iterate over [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], and print out each value.
2. Same as above, but only print out values greater than 5.
3. Now, using the same array from #2, use the select method to extract all odd numbers into a new array.
4. Append "11" to the end of the original array. Prepend "0" to the beginning.
5. Get rid of "11". And append a "3".
6. Get rid of duplicates without specifically removing any one value.
7. What's the major difference between an Array and a Hash?
Hashes specify a key value instead of relying on numerical indexes like arrays. Prior to 1.9 Hashes did not maintain order.
8. Create a Hash using both Ruby syntax styles.
9. Suppose you have a hash
h = {a:1, b:2, c:3, d:4}
:b
.h[:b]
{e:5}
h[:e] = 5
h.delete_if { |k,v| v < 3.5 }
10. Can hash values be arrays? Can you have an array of hashes? (give examples)
Yes (so can their keys) and Yes:
11. Look at several Rails/Ruby online API sources and say which one you like best and why.
No sure what they mean by sources. References for building an API or API's built using RoR?
12. Given the following data structures. Write a program that moves the information from the array into the empty hash that applies to the correct person.
13. Using the hash you created from the previous exercise, demonstrate how you would access Joe's email and Sally's phone number?
contacts["Joe Smith"][:email]
contacts["Sally Johnson"][:phone]
14. In exercise 12, we manually set the contacts hash values one by one. Now, programmatically loop or iterate over the contacts hash from exercise 12, and populate the associated data from the contact_data array. Hint: you will probably need to iterate over ([:email, :address, :phone]), and some helpful methods might be the Array shift and first methods.
Using their:
each_with_index
15. Use Ruby's Array method delete_if and String method start_with? to delete all of the words that begin with an "s" in the following array. Then recreate the arr and get rid of all of the words that start with "s" or starts with "w".
16. Take the following array and turn it into a new array that consists of strings containing one word. (ex. ["white snow", etc...] → ["white", "snow", etc...]. Look into using Array's map and flatten methods, as well as String's split method.
17. What will the following program output?
Outputs "These hashes are the same!"