- cd ~
- ls
- mkdir venv
- cd venv
- virtualenv ember2
- source bin/activate
- pip install nodeenv
- nodeenv
| def weather_report | |
| weather = ['sunny','cloudy','humid','windy','rainy','chilly','cold', | |
| 'snowy','foggy','feezing','sleeting'] | |
| puts "What type of party are you having?" | |
| party= gets.chomp | |
| puts "Find out what the weather will be like on the day of your #{party}." | |
| puts "Type in the words 'WEATHER REPORT' for a prediction." | |
| get_prediction = gets.chomp | |
| while get_prediction != "WEATHER REPORT" |
$ rails _5.0.0_ new railsgirls_signup --database=postgresql
$ rake db:create
$ rails generate scaffold User first_name:string last_name:string email:string twitter_handle:string phone:string zipcode:string twitter_handle:string over_21:boolean age:integer operating_system:string rating:string coach:string workshop:datetime accepted:boolean tutorial_progress:string
$ rake db:migrate
factory_girl_rails https://github.com/thoughtbot/factory_girl_railshello world
whatever!
| This is a really really really cool experiment really | |
| Cute little experiment | |
| Will it work maybe it will work do you think it will it will |
Markdown
Professional developers and designers use Git and GitHub version control as part of their collaborative workflow. This course offers an overview of Git and Github and is aimed at anyone who has heard of these technologies but has little or no first-hand experience with them or just wants to feel a bit more comfortable with it.
https://www.codecademy.com/en/courses/ruby-beginner-en-Zjd2y/0/1
$VERBOSE = nil
require 'prime'
def first_n_primes(n)
unless n.is_a? Integer