Skip to content

Latest commit

 

History

History
64 lines (44 loc) · 1.75 KB

useful_resources.md

File metadata and controls

64 lines (44 loc) · 1.75 KB

HTML&CSS

Command Line Crash Course

Ruby

  • Learn Ruby the Hard Way by Zed Shaw

    • basics of Ruby (variables, if statements, loops)
    • what’s an object, class, inheritance?
    • writing tests
    • tons of exercises

    https://learnrubythehardway.org/book/

  • Ruby Koans

    • download the koans, reach the path to enlightenment by making the tests pass
    • learn Ruby syntax, structure, common functions and libraries

    http://rubykoans.com/

  • Exercises in Ruby (and other languages)

    • solve small problems
    • the tests are written for you, you just have to make them pass
    • other coders can review your code
    • you provide feedback to other coders

    http://exercism.io/

Ruby on Rails

  • Ruby on Rails tutorial by Michael Hartl

    • build an app and deploy to Heroku
    • intro to version control with Git
    • walks though all of the main components of Rails app
    • sessions, creating/updating users, testing, etc
    • interactive (you build an app with the tutorial)

    https://www.railstutorial.org/book

  • RailsCasts

    • awesome short tutorials about different parts of Rails development
    • controllers, models, testing, debugging, etc

    http://railscasts.com/

SQL If interested getting more comfortable with SQL