Tuesday, July 28, 2009

ATTENSION!! All computer users..

For everyone who works daily on a computer. The mistakes daily mouse and keyboard usage will result in Carpal Tunnel Syndrome! Use the mouse and keyboard correctly. View below for the surgery of a patient suffering from Carpal Tunnel Syndrome followed by the 
RIGHT TECHNIQUES for usage....











Hand exercises for Carpal Tunnel Syndrome





Thursday, June 18, 2009

How to install ruby and related gems on Mac OS X (Leopard)

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.



Tuesday, April 28, 2009

Applications on AppStore

Some of the applications developed by me are available on the AppStore for download. I would like to give their details:

1) GK Quiz (iTunes_url => http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=307483809&mt=8)
Amazing quiz to test and enhance your knowledge. Give correct answers to asked questions and score more and more points. Referred as one of the best GK application for kids.

Features
Three different quiz modes:
- country/capital
- country/currency
- country/nickname

2) Slots & Archer (iTunes_url => http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=308648167&mt=8)
This is a great application providing you fun in two different modes. 

*Bow and Arrow
Have you ever played Bow and Arrow on your personal computer, then its time to bring it on your iPhone too. Test the sharpness of your vision and shoot the target right in its middle. A good way to test your archery skills.

*Super Slots
Do you love gambling? Then why should waste your money when you can convert your iphone into a slot machine and bet virtual money without any hesitation.


3) LoveBirds (iTunes_url => http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=308790906&mt=8)
This is a love matching tools which combines the compatibility test results from Chinese Astrology, Western Zodiac and Feng Shui Kua matches to deliver the most objective and accurate compatibility advice for people. The Love Bird Report(LBR) enables to tell people about their most compatible mates. This unique and revolutionary tool is great for people joining the dating services and looking for a long-lasting relationship.

Tuesday, February 24, 2009

iPhone Application Development

Starting the development of application for iphone is one of the toughest job, specially for a new programmer. I have been learning about it for past few weeks and now I want to share my experiences with you all.
By the way, I am going to provide you links of some very good sites that helps any novice developer a lot to overcome this steep learning curve.

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.


3) http://www.appsamuck.com/

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".