Skip to content

Instantly share code, notes, and snippets.

@jusrez
Last active April 7, 2022 04:49
Show Gist options
  • Save jusrez/0444163a3e3478198ff166f7fc72cbff to your computer and use it in GitHub Desktop.
Save jusrez/0444163a3e3478198ff166f7fc72cbff to your computer and use it in GitHub Desktop.

Plan for Mod 0

giphy

Monday through Wednesday

  1. Once work is over at 6 pm, go for a walk. When you return from your walk, have dinner.
  2. Twenty minutes before class, look over the session notes for the session you're about to begin.
  3. Open Terminal and follow along with the notes in order to get comfortable using the new commands/concepts.
  4. Once class is over, complete the survey and complete the HW for the session you just completed.

Thursday through Friday

  • Work on Mod 0 Project for two 1.5 hour sessions beginning at 7pm. Take a 45 minute break in between sessions.
  • Review your class notes so you can be sure to commit concepts/commands to memory.

Saturday and Sunday

  1. Work on Mod 0 Project for three 2 hours sessions.
  2. Begin the first session at 1 pm and take an hour long break in between sessions.

Things to Remember

  1. Make sure to use inline code block when you're sharing Terminal commands and history on a homework gist.

Example:

/Users/justin  🥴$cd cool_project
/Users/justin/cool_project  🥴$ls   
README.md	dank_codes	styles.css

  1. Start practicing writing code blocks for Ruby.

Example:

def test
  puts "Oh hey there"
  yield
  puts "Look at you writing code"
  yield
end
test {puts "Not too bad"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment