$ rvm 2.1.1
$ rvm gemset create teddy
Gemset 'teddy' created.
$ rvm 2.1.1
$ rvm gemset create teddy rosie
Gemset 'teddy' created.
Gemset 'rosie' created.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export MYSQL_PATH=/usr/local/Cellar/mysql/5.7.17 | |
export PATH=$PATH:$MYSQL_PATH/bin | |
export PYTHON_PATH=/usr/local/Cellar/python/3.6.4_4 | |
export PATH=$PATH:$PYTHON_PATH/bin | |
export PS1="$ " | |
alias ll="ls -halt" | |
alias l="ls" |
• Developers should have access to the source code, and be able to collaborate with the code (read: create a GitHub repo)
• Users should have the ability to input Vehicle details (year, make, model) into the application, and list them.
$ git config --global user.name "[name]"
--Sets the name you want attached to your commit transactions
$ git config --global user.email "[email address]"
--Sets the email you want attached to your commit transactions
$ git config --global color.ui auto
--Enables helpful colorization of command line output
The class needs your help. We need to pick what we want to eat on the last day of class. In an effort to follow the democratic process, we are going to let the people vote on what we will eat. Majority vote wins.
Your mission, should you accept it, is to build a voting application so that given a set of choices, a user is allowed to vote on a selection.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Model < ActiveRecord::Base | |
self.table_name = 'existing_table_name' | |
self.primary_key = 'table_id' | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vehicle_year | vehicle_make | vehicle_model | vehicle_vin | |
---|---|---|---|---|
1981 | DELOREAN | DMC-12 | SCEDT26T7BD006661 | |
1982 | MERCEDES-BENZ | 380SL | WDBBA45A2CB015234 | |
1982 | FERRARI | 308 | ZFFAA02A2C0040027 | |
1982 | PONTIAC | FIREBIRD | 1G2AS87H6CN521776 | |
1982 | MERCEDES-BENZ | 380SL | WDBBA45A7CB018159 | |
1982 | TOYOTA | LAND CRUISER | JT3FJ60G9C0027357 | |
1982 | AMC | EAGLE | 1ACCK3654CK161597 | |
1983 | LAND ROVER | DEFENDER | SALLDHAG7AA200495 | |
1983 | PORSCHE | 911 | WP0AA0914DS122237 |
NewerOlder