Answers

how to install heroku:

http://docs.heroku.com/heroku-command
sudo gem install heroku
$ heroku keys:add
Uploading ssh public key /Users/joe/.ssh/id_rsa.pub

generating a key (help from github):

http://help.github.com/linux-key-setup/

how to make an app using heroku:

http://github.com/adamwiggins/heroku-client
heroku create newapp
git clone git@heroku.com:newapp.git
cd newapp
rake db:migrate
script/server
[..work locally for a while..]
git add .
git commit -m “some changes made locally”
git push

authlogic

error: Invalid database url for heroku db:push
*answer: update gem

error: “RubyGem version error: rack(1.0.0 not ~> 1.0.1)”
answer: “gem install rack -v=1.0.1″

error: undefined method for comments – within: @comments = @post.comments.find(:all) in posts_controller.rb
answer: make sure you set up your models

————-

Illustrator notes

If you want to use the anchor points and you want to make a curve, draw one anchor point and then click and hold on to the second anchor point (move in direction you want to curve.)

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s