Before you get to SF:
- Install Rails. Unless a critical mass of people are Pythonistas, we'll use Rails. (We'll use all manner of other tools, depending on the Fellows' skills and interests) but, as a baseline, make sure Rails is installed and working on your machine before you show up. (Instructions are below.)
- Send me a note ([email protected]), or comment on this gist about what tools you like to use to build things, whether it be Ruby, Python, R, JavaScript, etc, and we'll adjust our stack to how most people like to do things.
- Download the UTQGS data: http://cl.ly/0L2c152y2n2j, and take a look at it
- Develop some questions about the data that you'd want to see in an app. Example questions that come to mind:
- What are the safety ratings of the country's best-selling tires?
- How safe are the tires that come standard on the most common cars?
- Do tire costs correlate with safety?
- Look for problems in the data, and think of ways to fix (or work around) them. For example, the
size
column sometimes has an individual size value, such asP205/70R15
, and sometimes has values of "All sizes" or13
. - Look at some news apps. An good (and simple) one is ER Wait Watcher: http://projects.propublica.org/emergency/. Come with some ideas on how to turn the UTQGS data into an app.
###More Info about UTQGS More info about the Uniform Tire Quality Grading System (UTQGS)
Tire market profile:
###Installing Rails Install rails with this guide: http://blog.55minutes.com/2013/09/rails-os-x-install-guide/ , but make the following changes
- SKIP this step:
brew install apple-gcc42 autoconf pkg-config git postgresql qt
replace with
brew install git
- To add stuff to your ~/.bash_profile, you can use any text editor (the guide doesn't tell you how). So, for example, if you use TextWrangler, you can type
open ~/.bash_profile -a TextWrangler
to open the bash_profile in TextWrangler, save, close the file and open a new Terminal for the changes to take effect.
-
Skip everything in step 6 (Configure PostgreSQL). We'll be using SQLite instead.
-
At the very end, the
rails new myproject -d postgresql -T
command should just berails new myproject
I generally work in Python, using R for certain things (plotting, in general). Never coded in Ruby but hear it's not a huge leap away from Python?