Monday, December 3, 2012

How to know ARC support

Just put this lines of code to know the ARC enabled or not.


#if __has_feature(objc_arc)
// ARC is On
#else
// ARC is Off
#endif


Happy coding :) B-)

Sunday, September 23, 2012

Configuring private-public key with git

I faced a problem while creating my private- public key pair with git.



the problem is related to my permission to private key file.

One can do to overcome this problem by


:) B-)















Installing bpython on MAC

Bpython is very friendly python editor. I like it very much. You can easily install it on your

Mac machine :

Ubuntu :
Sudo apt-get install bpython

:) B-)
Reference :