<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Here are the Reason&#039;s</title>
	<atom:link href="http://whyhireme.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://whyhireme.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 22 Dec 2011 04:00:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='whyhireme.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Here are the Reason&#039;s</title>
		<link>http://whyhireme.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://whyhireme.wordpress.com/osd.xml" title="Here are the Reason&#039;s" />
	<atom:link rel='hub' href='http://whyhireme.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Improperly Configured MySQL DB Module-Exception &#8211; Django &#8211; Windows 7</title>
		<link>http://whyhireme.wordpress.com/2011/12/22/improperly-configured-mysql-db-module-exception-django-windows-7/</link>
		<comments>http://whyhireme.wordpress.com/2011/12/22/improperly-configured-mysql-db-module-exception-django-windows-7/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 03:58:53 +0000</pubDate>
		<dc:creator>whyhireme</dc:creator>
				<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[mysql database]]></category>
		<category><![CDATA[MySQL Django Python]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://whyhireme.wordpress.com/?p=97</guid>
		<description><![CDATA[I had this error after I installed Django, created a project, modified the settings.py to use the MySQL database and while I tried to create the necessary tables in the MySQL by running the following command. python manage.py syncdb I &#8230; <a href="http://whyhireme.wordpress.com/2011/12/22/improperly-configured-mysql-db-module-exception-django-windows-7/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=97&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had this error after I installed Django, created a project, modified the settings.py to use the MySQL database and while I tried to create the necessary tables in the MySQL by running the following command.</p>
<pre style="font-size:12px;background:#f0f0f0;color:black;border-left:1px solid #ccc;line-height:20px;width:500px;overflow:auto;word-wrap:break-word;margin:20px 20px 20px 0;padding:0;"> python manage.py syncdb </pre>
<p>I got this exception </p>
<pre style="font-size:12px;background:#f0f0f0;color:red;border-left:1px solid #ccc;line-height:20px;width:500px;overflow:auto;word-wrap:break-word;margin:20px 20px 20px 0;padding:0;"> .......

backend = load_backend(db['ENGINE'])
  File "c:\Python27\lib\site-packages\django\db\utils.py", line 33, in load_backend
    return import_module('.base', backend_name)
  File "c:\Python27\lib\site-packages\django\utils\importlib.py", line 35, in import_module
    __import__(name)
  File "c:\Python27\lib\site-packages\django\db\backends\mysql\base.py", line 14, in
    raise ImproperlyConfigured("Error loading MySQLdb module: %s" % e)
django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module: No module named MySQLdb </pre>
<p>I was using Python 2.7 , so the solution was to use the MySQL Python connector. I downloaded it from <a href="http://www.lfd.uci.edu/~gohlke/pythonlibs/#mysql-python">here</a></p>
<p>After , I Installed the MySQL Python Connector, I created the MySQL database,(make sure you commit it) This seemed to work fine. </p>
<pre style="font-size:12px;background:#f0f0f0;color:black;border-left:1px solid #ccc;line-height:20px;width:500px;overflow:auto;word-wrap:break-word;margin:20px 20px 20px 0;padding:0;"> $ python manage.py syncdb
Creating tables ...
Creating table auth_permission
Creating table auth_group_permissions
Creating table auth_group
Creating table auth_user_user_permissions
Creating table auth_user_groups
Creating table auth_user
Creating table auth_message
Creating table django_content_type
Creating table django_session
Creating table django_site

You just installed Django's auth system, which means you don't have any superusers defined.
Would you like to create one now? (yes/no): yes
Username (Leave blank to use 'test'):
E-mail address: test@gmail.com
Password:
Password (again):
Superuser created successfully.
Installing custom SQL ...
Installing indexes ...
No fixtures found. </pre>
<p>Hopefully this helps.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/whyhireme.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/whyhireme.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/whyhireme.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/whyhireme.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/whyhireme.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/whyhireme.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/whyhireme.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/whyhireme.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/whyhireme.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/whyhireme.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/whyhireme.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/whyhireme.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/whyhireme.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/whyhireme.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=97&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://whyhireme.wordpress.com/2011/12/22/improperly-configured-mysql-db-module-exception-django-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02fab2989b0a565a87f7a3572890dcdb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">whyhireme</media:title>
		</media:content>
	</item>
		<item>
		<title>ERROR 2003 (HY000): Can&#8217;t connect to MySQL server on &#8216;localhost&#8217; (10061) &#8211; MySQL- Windows</title>
		<link>http://whyhireme.wordpress.com/2011/12/22/error-2003-hy000-cant-connect-to-mysql-server-on-localhost-10061-mysql-windows/</link>
		<comments>http://whyhireme.wordpress.com/2011/12/22/error-2003-hy000-cant-connect-to-mysql-server-on-localhost-10061-mysql-windows/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 01:23:43 +0000</pubDate>
		<dc:creator>whyhireme</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[MySQL Windows 7 Database]]></category>

		<guid isPermaLink="false">http://whyhireme.wordpress.com/?p=95</guid>
		<description><![CDATA[This happened to me while I was installing MySQL on my Windows 7 box. I had struggle installing the mysql daemon, because my User Access Control on Windows 7 Was not letting me install mysqld. After disabling UAC , I &#8230; <a href="http://whyhireme.wordpress.com/2011/12/22/error-2003-hy000-cant-connect-to-mysql-server-on-localhost-10061-mysql-windows/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=95&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This happened to me while I was installing MySQL on my Windows 7 box. I had struggle installing the mysql daemon, because my User Access Control on Windows 7 Was not letting me install mysqld. After disabling UAC , I was able to issue the following commands.</p>
<p><b> mysqld &#8211;install </b> followed by <b> mysqld &#8211;start</b></p>
<p>After executing the above commands, I had issues while trying to connect to mysql prompt.</p>
<p><b>ERROR 2003 (HY000): Can&#8217;t connect to MySQL server on &#8216;localhost&#8217; (10061)</b></p>
<p>I went to services UI and started the MySQL Service. Then i was able to get into MySQL Prompt</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/whyhireme.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/whyhireme.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/whyhireme.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/whyhireme.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/whyhireme.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/whyhireme.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/whyhireme.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/whyhireme.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/whyhireme.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/whyhireme.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/whyhireme.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/whyhireme.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/whyhireme.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/whyhireme.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=95&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://whyhireme.wordpress.com/2011/12/22/error-2003-hy000-cant-connect-to-mysql-server-on-localhost-10061-mysql-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02fab2989b0a565a87f7a3572890dcdb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">whyhireme</media:title>
		</media:content>
	</item>
		<item>
		<title>sqlplus: error while loading shared libraries: libsqlplus.so wrong ELF class</title>
		<link>http://whyhireme.wordpress.com/2010/12/28/sqlplus-error-while-loading-shared-libraries-libsqlplus-so-wrong-elf-class/</link>
		<comments>http://whyhireme.wordpress.com/2010/12/28/sqlplus-error-while-loading-shared-libraries-libsqlplus-so-wrong-elf-class/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 17:48:04 +0000</pubDate>
		<dc:creator>whyhireme</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Solution]]></category>

		<guid isPermaLink="false">http://whyhireme.wordpress.com/?p=88</guid>
		<description><![CDATA[sqlplus: error while loading shared libraries: libsqlplus.so wrong ELF class This error happens If you are working on a 64 bit operating system and pointing to a 32 bit library. So this is how your environment variables should look like. &#8230; <a href="http://whyhireme.wordpress.com/2010/12/28/sqlplus-error-while-loading-shared-libraries-libsqlplus-so-wrong-elf-class/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=88&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre style="font-size:12px;background:#f0f0f0;color:red;border-left:1px solid #ccc;line-height:20px;width:500px;word-wrap:break-word;white-space:normal;margin:20px 20px 20px 0;padding:0;">sqlplus: error while loading shared libraries: libsqlplus.so wrong ELF class </pre>
<p>This error happens If you are working on a 64 bit operating system and pointing to a 32 bit library.</p>
<p>So this is how your environment variables should look like.</p>
<pre style="font-size:12px;background:#f0f0f0;color:black;border-left:1px solid #ccc;line-height:20px;width:500px;overflow:auto;word-wrap:break-word;margin:20px 20px 20px 0;padding:0;">PATH=$PATH:$HOME/bin
ORACLE_HOME=/x/home/oracle/product/11.2.0.1
PATH=$ORACLE_HOME/bin:$PATH
PATH=$ORACLE_HOME/lib64:$PATH
LD_LIBRARY_PATH=$ORACLE_HOME/lib64
export ORACLE_HOME
export LD_LIBRARY_PATH
export PATH </pre>
<p>This will fix the issue.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/whyhireme.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/whyhireme.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/whyhireme.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/whyhireme.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/whyhireme.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/whyhireme.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/whyhireme.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/whyhireme.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/whyhireme.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/whyhireme.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/whyhireme.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/whyhireme.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/whyhireme.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/whyhireme.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=88&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://whyhireme.wordpress.com/2010/12/28/sqlplus-error-while-loading-shared-libraries-libsqlplus-so-wrong-elf-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02fab2989b0a565a87f7a3572890dcdb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">whyhireme</media:title>
		</media:content>
	</item>
		<item>
		<title>How to find whether ORACLE is installed on your linux box</title>
		<link>http://whyhireme.wordpress.com/2010/12/28/how-to-find-whether-oracle-is-installed-on-your-linux-box/</link>
		<comments>http://whyhireme.wordpress.com/2010/12/28/how-to-find-whether-oracle-is-installed-on-your-linux-box/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 17:39:43 +0000</pubDate>
		<dc:creator>whyhireme</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://whyhireme.wordpress.com/?p=84</guid>
		<description><![CDATA[I was wondering how to find whether oracle was installed on my office box. I found an easy way of doing it. vi /etc/oratab You can find the installation directory of the oracle instance here.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=84&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was wondering how to find whether oracle was installed on my office box. I found an easy way of doing it.</p>
<pre style="font-size:12px;background:#f0f0f0;color:black;border-left:1px solid #ccc;line-height:20px;width:500px;overflow:auto;word-wrap:break-word;margin:20px 20px 20px 0;padding:0;">

vi /etc/oratab </pre>
<p>You can find the installation directory of the oracle instance here.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/whyhireme.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/whyhireme.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/whyhireme.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/whyhireme.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/whyhireme.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/whyhireme.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/whyhireme.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/whyhireme.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/whyhireme.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/whyhireme.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/whyhireme.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/whyhireme.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/whyhireme.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/whyhireme.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=84&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://whyhireme.wordpress.com/2010/12/28/how-to-find-whether-oracle-is-installed-on-your-linux-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02fab2989b0a565a87f7a3572890dcdb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">whyhireme</media:title>
		</media:content>
	</item>
		<item>
		<title>Google beefs up its search with &#8220;How hot is your keyword&#8221;</title>
		<link>http://whyhireme.wordpress.com/2010/09/30/google-beefs-up-its-search-with-how-hot-is-your-keyword/</link>
		<comments>http://whyhireme.wordpress.com/2010/09/30/google-beefs-up-its-search-with-how-hot-is-your-keyword/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 12:35:13 +0000</pubDate>
		<dc:creator>whyhireme</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[trends]]></category>

		<guid isPermaLink="false">http://whyhireme.wordpress.com/?p=79</guid>
		<description><![CDATA[Google keyword hotness. <a href="http://whyhireme.wordpress.com/2010/09/30/google-beefs-up-its-search-with-how-hot-is-your-keyword/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=79&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Woke up with a morning surprise. Google doing more with its search. I saw google&#8217;s VP of product Meyer talking about the keyboard navigation of search results at Techcrunch Disrupt. But, &#8220;How hot is my keyword&#8221; is pretty cool than keyboard stuff (my perspective).</p>
<p>It gives me a perspective on what people are searching for. I typed in &#8220;Ayodhya Verdict&#8221; and this is what I got.<a href="http://whyhireme.files.wordpress.com/2010/09/google_keyword_hotness.png"><img class="aligncenter size-medium wp-image-80" title="Google_keyword_hotness" src="http://whyhireme.files.wordpress.com/2010/09/google_keyword_hotness.png?w=300&#038;h=139" alt="Google_How_hot_is_my_keyword" width="300" height="139" /></a>This is pretty similar to trending topics on twitter. I wonder how useful will this be the end user. I want relevant results, I&#8217;m least bothered about how normal I&#8217;m.  Let&#8217;s see where google goes from here. They seem a little clueless.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/whyhireme.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/whyhireme.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/whyhireme.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/whyhireme.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/whyhireme.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/whyhireme.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/whyhireme.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/whyhireme.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/whyhireme.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/whyhireme.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/whyhireme.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/whyhireme.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/whyhireme.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/whyhireme.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=79&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://whyhireme.wordpress.com/2010/09/30/google-beefs-up-its-search-with-how-hot-is-your-keyword/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02fab2989b0a565a87f7a3572890dcdb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">whyhireme</media:title>
		</media:content>

		<media:content url="http://whyhireme.files.wordpress.com/2010/09/google_keyword_hotness.png?w=300" medium="image">
			<media:title type="html">Google_keyword_hotness</media:title>
		</media:content>
	</item>
		<item>
		<title>Mikado Re-factoring</title>
		<link>http://whyhireme.wordpress.com/2010/08/26/mikado-re-factoring/</link>
		<comments>http://whyhireme.wordpress.com/2010/08/26/mikado-re-factoring/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 01:43:02 +0000</pubDate>
		<dc:creator>whyhireme</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Mikado]]></category>
		<category><![CDATA[Re-Factoring]]></category>

		<guid isPermaLink="false">http://whyhireme.wordpress.com/?p=74</guid>
		<description><![CDATA[Mikado the re-factoring approach <a href="http://whyhireme.wordpress.com/2010/08/26/mikado-re-factoring/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=74&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I came across the article for<a href="http://www.infoq.com/news/2010/08/large-scale-refactoring" target="_self"> large scale re-factoring</a> on <a style="color:blue;" href="http://www.infoq.com" target="_blank">InfoQ</a>.</p>
<p>I was really amazed how people can inspire methodologies from real world activities. I remember playing Mikado ( we used to call it something else, I can&#8217;t remember) during my school days. Then, it was just a game, now it makes a world of sense in the software world.</p>
<p>I have come across many people, who even after years of experience in the industry, they are scared to do some re-factoring. There are always two reasons to it,</p>
<ul>
<li>The code is so messed up, they don&#8217;t want to go through the pain of re-factoring it.</li>
<li>There was not enough tests, that becomes the safety-net when someone is trying to re-factor. (No one wants to be in the bad books of their bosses by breaking the Build <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</li>
</ul>
<p>For the people who fall into the former category, Re-factoring approaches will help them feel more comfortable . Few of the re-factoring approaches are <a href="http://www.infoq.com/news/2010/08/large-scale-refactoring" target="_self">listed here</a>. I always use divide and conquer approach for most of the scenarios that I face on the work.</p>
<p>One such approach is Mikado. Where you define your re-factoring goal using a graph and find the dependencies, till you reach the leaf node. Once you reach the leaf node, You can start re-factoring from the leaves, till you reach the goal. It makes a lot of sense to me. Here is how Mikado works,</p>
<p><a href="http://whyhireme.files.wordpress.com/2010/08/mikado-diagram1.jpg"><img class="aligncenter size-medium wp-image-76" title="mikado-diagram" src="http://whyhireme.files.wordpress.com/2010/08/mikado-diagram1.jpg?w=300&#038;h=221" alt="" width="300" height="221" /></a>The double lined node is the re-factoring goal. To read more on the mikado approach read up on <a href="http://pragprog.com/magazines/2010-06/the-mikado-method" target="_self">prag-prog (Awesome resource)</a>.</p>
<p>Like Mikado? Read more by downloading this <a href="http://mikadomethod.wordpress.com/2010/08/04/the-mikado-method-book/" target="_self">book</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/whyhireme.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/whyhireme.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/whyhireme.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/whyhireme.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/whyhireme.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/whyhireme.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/whyhireme.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/whyhireme.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/whyhireme.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/whyhireme.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/whyhireme.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/whyhireme.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/whyhireme.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/whyhireme.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=74&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://whyhireme.wordpress.com/2010/08/26/mikado-re-factoring/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02fab2989b0a565a87f7a3572890dcdb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">whyhireme</media:title>
		</media:content>

		<media:content url="http://whyhireme.files.wordpress.com/2010/08/mikado-diagram1.jpg?w=300" medium="image">
			<media:title type="html">mikado-diagram</media:title>
		</media:content>
	</item>
		<item>
		<title>SQLFeatureNotSupportedException &#8211; SOAP UI &#8211; Solution</title>
		<link>http://whyhireme.wordpress.com/2010/08/19/sqlfeaturenotsupportedexception-soap-ui-solution/</link>
		<comments>http://whyhireme.wordpress.com/2010/08/19/sqlfeaturenotsupportedexception-soap-ui-solution/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 00:12:22 +0000</pubDate>
		<dc:creator>whyhireme</dc:creator>
				<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Functional Testing]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[SOAP UI]]></category>
		<category><![CDATA[SQLFeatureNotSupportedException]]></category>
		<category><![CDATA[Test Automation]]></category>

		<guid isPermaLink="false">http://whyhireme.wordpress.com/?p=57</guid>
		<description><![CDATA[SQLFeatureNotSupportedException - SOAP UI - Solution <a href="http://whyhireme.wordpress.com/2010/08/19/sqlfeaturenotsupportedexception-soap-ui-solution/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=57&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi All,</p>
<p>I have been working on functional test automation for the API&#8217;s at work. We are using SoapUI for the automation of the functional tests. We wanted to invoke the test suite from the Junit test. When  I was trying to call the test case from JUnit. Strangely, I found that the test cases with JDBC steps failed.</p>
<p>Reason for failure :</p>
<pre style="font-size:12px;background:#f0f0f0;color:red;border-left:1px solid #ccc;line-height:20px;width:500px;overflow:auto;word-wrap:break-word;margin:20px 20px 20px 0;padding:0;">NoClassDefFoundError: java/sql/SqlFeatureNotSupportedException</pre>
<p>After some research online, this is what I found out.</p>
<pre style="font-size:12px;background:#f0f0f0;color:black;border-left:1px solid #ccc;line-height:20px;width:500px;overflow:auto;word-wrap:break-word;margin:20px 20px 20px 0;padding:0;">I was using Jdbc drivers for Java 6 and I was compiling my code with Java 5. So changing my project settings to use Java 6 libraries and making the Java compiler as Java 1.6 Compiler did the trick.</pre>
<p>I hope this helps someone out there. Let me know, If I made your day.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/whyhireme.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/whyhireme.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/whyhireme.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/whyhireme.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/whyhireme.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/whyhireme.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/whyhireme.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/whyhireme.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/whyhireme.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/whyhireme.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/whyhireme.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/whyhireme.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/whyhireme.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/whyhireme.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=57&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://whyhireme.wordpress.com/2010/08/19/sqlfeaturenotsupportedexception-soap-ui-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02fab2989b0a565a87f7a3572890dcdb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">whyhireme</media:title>
		</media:content>
	</item>
		<item>
		<title>Screencast Softwares for Mac OSX</title>
		<link>http://whyhireme.wordpress.com/2010/08/16/screencast-softwares-for-mac-osx/</link>
		<comments>http://whyhireme.wordpress.com/2010/08/16/screencast-softwares-for-mac-osx/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 05:13:06 +0000</pubDate>
		<dc:creator>whyhireme</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Screen Cast]]></category>
		<category><![CDATA[Softwares]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Softwares for Screen Cast]]></category>

		<guid isPermaLink="false">http://whyhireme.wordpress.com/?p=55</guid>
		<description><![CDATA[Screen Cast softwares for Mac OSX. How to do screen casts on Mac OSX. Jing, Copernius. <a href="http://whyhireme.wordpress.com/2010/08/16/screencast-softwares-for-mac-osx/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=55&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi All,</p>
<p>I was working on doing some Proof of concept for Functional Testing using SOAP UI Pro. I have got the Proof of Concept ready, But I was not leaning towards another long meeting, where people get tired of listening. So I got an idea of creating some screencasts of what I did. So that it will help our QA guys get started soon. And, Also this was the first time, I was trying to do some screen cast, So I&#8217;m excited.</p>
<ul>
<li><a title="Jing Project" href="http://jingproject.com" target="_self">Jin</a>g (Free Version &#8211; 5 Minutes videos only allowed -Allows you to create only SWF file (sigh) )</li>
<li><a title="Copernius" href="http://danicsoft.com/projects/copernicus/" target="_self">Copernius</a> (No Audio)</li>
<li><a title="ScreenCast o Matic" href="http://danicsoft.com/projects/copernicus/" target="_self">ScreenCast-O-Matic</a> (Yet to Try)</li>
</ul>
<p>Since I use Mac OSX, the screen cast softwares that was available to me was  <a title="Jing Project" href="http://jingproject.com" target="_self">Jing</a> and <a title="Copernius" href="http://danicsoft.com/projects/copernicus/" target="_self">Copernicus</a>.</p>
<p>I started using Jing and later realized, it allows me to create only 5 minutes videos in the free version of the software. I was not happy, But, I created small parts of the video, which might help viewers who have short attention spans. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  . And  also it allows me to create only swf videos (Sigh).</p>
<p>Copernicus was also something that I considered using, But, to my surprise it did not support Audio recordings. I was like, What the hell. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Anyways, For a first time novice, Jing solved me the problem of creating screen casts on Mac OSX. There was also another Software, that I did not have to time to check out. It was <a title="Screen Cast O Matic" href="http://www.screencast-o-matic.com./" target="_self">ScreenCast-O-Matic </a>, its a Java based tool. I should try it, when I have time. May be then I can create some lengthy videos.</p>
<p>When I started searching. This <a title="5 Apps - Windows + Mac" href="http://www.makeuseof.com/tag/5-free-screencasting-apps-for-creating-video-tutorials/" target="_self">link</a> gave me the heads up on what I can look for .</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/whyhireme.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/whyhireme.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/whyhireme.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/whyhireme.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/whyhireme.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/whyhireme.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/whyhireme.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/whyhireme.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/whyhireme.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/whyhireme.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/whyhireme.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/whyhireme.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/whyhireme.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/whyhireme.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=55&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://whyhireme.wordpress.com/2010/08/16/screencast-softwares-for-mac-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02fab2989b0a565a87f7a3572890dcdb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">whyhireme</media:title>
		</media:content>
	</item>
		<item>
		<title>Best Way to Learn Ruby</title>
		<link>http://whyhireme.wordpress.com/2010/08/13/best-way-to-learn-ruby/</link>
		<comments>http://whyhireme.wordpress.com/2010/08/13/best-way-to-learn-ruby/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 03:40:06 +0000</pubDate>
		<dc:creator>whyhireme</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://whyhireme.wordpress.com/?p=50</guid>
		<description><![CDATA[Ruby Tutorial for starters. <a href="http://whyhireme.wordpress.com/2010/08/13/best-way-to-learn-ruby/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=50&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Was looking around to get something very basic about Ruby. Thank God!! I got this. Not many will find it difficult to get here.<br />
But, I thought of sharing it.</p>
<p><a style="color:blue;" href="http://TryRuby.org/">Try Ruby.</a> Takes you from a novice to not a novice level <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/whyhireme.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/whyhireme.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/whyhireme.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/whyhireme.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/whyhireme.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/whyhireme.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/whyhireme.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/whyhireme.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/whyhireme.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/whyhireme.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/whyhireme.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/whyhireme.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/whyhireme.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/whyhireme.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=50&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://whyhireme.wordpress.com/2010/08/13/best-way-to-learn-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02fab2989b0a565a87f7a3572890dcdb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">whyhireme</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Ruby on Rails on Mac OS X 10.5</title>
		<link>http://whyhireme.wordpress.com/2010/08/13/installing-ruby-on-rails-on-mac-os-x-10-5/</link>
		<comments>http://whyhireme.wordpress.com/2010/08/13/installing-ruby-on-rails-on-mac-os-x-10-5/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 00:46:31 +0000</pubDate>
		<dc:creator>whyhireme</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[RubyGems]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[301 Error while Installing Rails]]></category>
		<category><![CDATA[Ruby Gems]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://whyhireme.wordpress.com/?p=44</guid>
		<description><![CDATA[Installing Ruby gems on Max OS X. Errors faced while installing Ruby on Rails on Mac OS X. <a href="http://whyhireme.wordpress.com/2010/08/13/installing-ruby-on-rails-on-mac-os-x-10-5/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=44&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi All,<br />
It&#8217;s time to learn a new language. I have learnt a lesson the hard way. On many occasions I have faced different problems and solved it. Few days later, I face the same problem. It strikes me at that moment, &#8221; I have seen this ERROR&#8221;. or &#8220;I know how to do this&#8221;. But, I still have to do the research that I did a few days back. So I thought it&#8217;s better to document, what I do, so that I can have it as a reference for the future.</p>
<p>My problems aside&#8230; Let&#8217;s get to the point.</p>
<p>I wanted to learn ruby on rails. oof.. the moment I said this. There were people saying.. oh another Web framework. But, I have done my research and I&#8217;m gonna learn Ruby on Rails.<br />
So let&#8217;s start.<br />
Where to start?<br />
<code><strong>Installation of Ruby on Mac OS X 10.5 :</strong></code></p>
<p>You can install Ruby on Rails on Mac OS X using GEM . What is GEM?</p>
<p>Gem is a package manager for Ruby on Rails. In Short its like a exe or dmg for Ruby programming language. All the libraries and sources are installed properly by gem.</p>
<p>Mac comes with Gem installed ( Which I was unaware of, after some reading, I found that out). But, I faced a problem while trying to install ruby with gems.</p>
<p>I issued the following command to install rails.</p>
<pre style="font-size:12px;background:#f0f0f0;border-left:1px solid #ccc;line-height:20px;width:500px;overflow:auto;margin:20px 20px 20px 0;padding:0;">gem install rails</pre>
<p>I got an error stating,</p>
<pre style="font-size:12px;background:#f0f0f0;color:red;border-left:1px solid #ccc;line-height:20px;width:500px;overflow:auto;margin:20px 20px 20px 0;padding:0;">ERROR:  While executing gem ... (Gem::RemoteSourceException)
    HTTP Response 301 fetching http://gems.rubyforge.org/yaml</pre>
<p>After doing some research online, I found that, may be my gems installation was out of date. So I decided to install gem.<br />
I downloaded <a style="color:blue;" href="http://rubyforge.org/frs/?group_id=126">RubyGems1.3.7</a></p>
<pre style="font-size:12px;background:#f0f0f0;border-left:1px solid #ccc;line-height:20px;width:500px;overflow:auto;margin:20px 20px 20px 0;padding:0;">1) Unzip the tar.

2) cd path/to/rubygems1.3.7

3) sudo ruby setup.rb</pre>
<p>After installing the fresh copy of Ruby gems, I was able to install rails by issuing</p>
<pre style="font-size:12px;background:#f0f0f0;border-left:1px solid #ccc;line-height:20px;width:500px;overflow:auto;margin:20px 20px 20px 0;padding:0;">sudo gem install rails</pre>
<p>Rails ready to go.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/whyhireme.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/whyhireme.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/whyhireme.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/whyhireme.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/whyhireme.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/whyhireme.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/whyhireme.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/whyhireme.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/whyhireme.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/whyhireme.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/whyhireme.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/whyhireme.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/whyhireme.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/whyhireme.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=whyhireme.wordpress.com&amp;blog=12017080&amp;post=44&amp;subd=whyhireme&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://whyhireme.wordpress.com/2010/08/13/installing-ruby-on-rails-on-mac-os-x-10-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02fab2989b0a565a87f7a3572890dcdb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">whyhireme</media:title>
		</media:content>
	</item>
	</channel>
</rss>
