RIGHT TECHNIQUES for usage....







Hand exercises for Carpal Tunnel Syndrome




Ruby
Type these commands into Terminal:
curl -O ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p72.tar.gz
tar xzvf ruby-1.8.7-p72.tar.gz
cd ruby-1.8.7-p72
./configure --enable-shared --enable-pthread CFLAGS=-D_XOPEN_SOURCE=1
make
sudo make install
cd ..
To verify that Ruby is installed and in your path, just type:
which ruby
You should see:
/usr/local/bin/ruby
RubyGems
After installing ruby, move on to ruby gems the same way:
curl -O http://rubyforge.iasi.roedu.net/files/rubygems/rubygems-1.3.1.tgz
tar xzvf rubygems-1.3.1.tgz
cd rubygems-1.3.1
sudo /usr/local/bin/ruby setup.rb
cd ..
Ruby on Rails and other gems
Now you are ready to install important gems:
sudo gem install rails
sudo gem install mysql
or do it in a single step like:
sudo gem install RedCloth termios rspec sake capistrano mongrel
Congratulations! You are done with the basic setup of ruby and rails.
It is the newest online iPhone SDK tutorial database offering FREE home-made tutorials made by people just like you who have a single goal as - to share as much information about developing for the iPhone SDK as possible. All tutorials are divided in three sections: Beginner, Intermediate and Advanced.
2) http://www.iphonesdkarticles.com/
This site includes tutorials regarding various different aspects of iphone application starting from first iphone application and then gradually explaining UITabbars, UINavigation bars, single and multi touch, using SQLite for saving data, localization of iphone application, etc.
Sometimes people have a hard time writing their first application. It is easy to think that it will take too much time, and that it will be too hard. But that is simply not the case. But instead of telling people, this site shows them how easy it really is. This site contains codes of 31 simple applications. Someone considering writing their first iPhone application should be able to look at these applications and "get it".