<?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>Charathram&#039;s Blog</title>
	<atom:link href="http://urjas.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://urjas.wordpress.com</link>
	<description>Technology tutorials, reviews and more.</description>
	<lastBuildDate>Sun, 13 Dec 2009 03:46:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='urjas.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Charathram&#039;s Blog</title>
		<link>http://urjas.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://urjas.wordpress.com/osd.xml" title="Charathram&#039;s Blog" />
	<atom:link rel='hub' href='http://urjas.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Installing a &#8220;private&#8221; copy of MySQL</title>
		<link>http://urjas.wordpress.com/2009/12/12/installing-a-private-copy-of-mysql/</link>
		<comments>http://urjas.wordpress.com/2009/12/12/installing-a-private-copy-of-mysql/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 01:46:45 +0000</pubDate>
		<dc:creator>Charath</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://urjas.wordpress.com/2009/12/12/installing-a-private-copy-of-mysql/</guid>
		<description><![CDATA[As part of the Ruby and Rails course that I talked about in my earlier post, I needed to install MySQL on my MacBook Pro. I also needed to &#8220;register&#8221; this MySQL installation in Netbeans so that it is relatively easy to start/stop the database and to create tables using the Netbeans interface. I initially [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=urjas.wordpress.com&amp;blog=4193173&amp;post=26&amp;subd=urjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As part of the Ruby and Rails course that I talked about in my earlier post, I needed to install MySQL on my MacBook Pro. I also needed to &#8220;register&#8221; this MySQL installation in Netbeans so that it is relatively easy to start/stop the database and to create tables using the Netbeans interface.
</p>
<p>I initially downloaded the Mac OS X package installer for MySQL 5.1 provided by MySQL. However, this installs MySQL in the /usr/local directory and requires a user with administrator privileges to administer the server. I got sick of running sudo for all my commands and decided that, at least while I was learning things, I would install a private copy of MySQL &#8211; something that would under my home directory and would not require any administrator privileges to administer.
</p>
<p>Thankfully, the folks at MySQL have a tarball that does just that. You merely untar the distribution in the directory of your choice, run the scripts to set up the initial data directory and off you go&#8230; or so I thought. Here are some of the things I had to do to get my &#8220;private&#8221; MySQL installation working.
</p>
<ol>
<li>
<div><strong>Download MySQL:</strong>
			</div>
<p>This is easy &#8211; just go to <a href="http://dev.mysql.com/downloads/mysql/5.1.html">http://dev.mysql.com/downloads/mysql/5.1.html#macosx</a>. I chose the version for Mac OS X 10.5 x86_64. Click on the link that says &#8220;Select a Mirror&#8221; and off you go.
</p>
</li>
<li>
<div><strong>Extract the tar file</strong>
			</div>
<p>Again an easy step &#8211; merely untar the file in a directory of your choice (I&#8217;m going to call it <span style="font-family:Courier New;font-size:10pt;">$MYSQL_HOME</span> from now on).
</p>
</li>
<li>
<div><strong>Run the Installation Script</strong>
			</div>
<p><span style="font-family:Courier New;font-size:10pt;">$ cd $MYSQL_HOME <br />$ ./scripts/mysql_install_db</span>
			</p>
<p>You&#8217;ll notice that the script has now created a directory called &#8220;data&#8221; under $MYSQL_HOME and within that directory are two subdirectories called &#8220;mysql&#8221; and &#8220;test&#8221;.
</p>
</li>
<li>
<div><strong>Create the configuration file</strong>
			</div>
<p>Create a file in your home directory called &#8221; <span style="font-family:Courier New;font-size:10pt;">.my.cnf</span>&#8221; with the following contents:
</p>
<p><span style="font-family:Courier New;font-size:12pt;">[mysqld]<br />
</span></p>
<p><span style="font-family:Courier New;font-size:12pt;">basedir=$MYSQL_HOME<br />
</span></p>
<p><span style="font-family:Courier New;font-size:12pt;">user=&lt;your username&gt;<br />
</span></p>
<p><strong>Remember to replace $MYSQL_HOME with the absolute path to the mysql directory from step 2 above. Also, replace &lt;your username&gt; with your login username.</strong>
			</p>
</li>
<li>
<div><strong>Start the server</strong>
			</div>
<p><span style="font-family:Courier New;font-size:12pt;">$ cd $MYSQL_HOME<br />
</span></p>
<p><span style="font-family:Courier New;font-size:12pt;">$ bin/mysqld_safe &amp;<br />
</span></p>
</li>
<li>
<div><strong>Stop the server</strong>
			</div>
<p><span style="font-family:Courier New;font-size:12pt;">$ cd $MYSQL_HOME<br />
</span></p>
<p><span style="font-family:Courier New;font-size:12pt;">$ bin/mysqladmin -u root shutdown<br />
</span></p>
</li>
</ol>
<p>
 </p>
<p>That&#8217;s all I have for now. In my next installment I&#8217;ll talk about how to &#8220;register&#8221; MySQL with Netbeans. While you&#8217;re waiting for the next installment, you might want to download the latest Netbeans IDE – the latest at the time of writing this blog is Netbeans v6.8.
</p>
<p>I prefer to always get the &#8220;All&#8221; bundle which is a chunky 200+MB download. So, go start the download and get some coffee. 
	</p>
<br />Posted in MySQL  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/urjas.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/urjas.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/urjas.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/urjas.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/urjas.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/urjas.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/urjas.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/urjas.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/urjas.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/urjas.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/urjas.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/urjas.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/urjas.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/urjas.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=urjas.wordpress.com&amp;blog=4193173&amp;post=26&amp;subd=urjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://urjas.wordpress.com/2009/12/12/installing-a-private-copy-of-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7489d35efdd36c52ff76eb91f5242831?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Charath</media:title>
		</media:content>
	</item>
		<item>
		<title>Learning Ruby&#8230; With Passion!</title>
		<link>http://urjas.wordpress.com/2009/12/12/learning-ruby-with-passion-2/</link>
		<comments>http://urjas.wordpress.com/2009/12/12/learning-ruby-with-passion-2/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 22:19:41 +0000</pubDate>
		<dc:creator>Charath</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[ruby with passion]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://urjas.wordpress.com/2009/12/12/learning-ruby-with-passion-2/</guid>
		<description><![CDATA[Now that I&#8217;m transitioning between jobs, I thought it would be a good time to learn something new. I had been looking at Ruby quite a bit when I was at Disney and so, I decided to take it for a spin. I&#8217;m using the free online course by Sang Shin of Learning Java with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=urjas.wordpress.com&amp;blog=4193173&amp;post=14&amp;subd=urjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Now that I&#8217;m transitioning between jobs, I thought it would be a good time to learn something new. I had been looking at Ruby quite a bit when I was at Disney and so, I decided to take it for a spin. I&#8217;m using the free online course by Sang Shin of Learning Java with Passion fame. More information on the online courses that Sang teaches can be found at his website &#8211; <a href="http://www.javapassion.com/">www.javapassion.com</a>. The home page for the Ruby course is <a href="http://www.javapassion.com/rubyonrails/">http://www.javapassion.com/rubyonrails/</p>
<p></a></p>
<p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=acf4a134-b366-8990-b9c7-282166804716" /></div>
<br />Posted in Ruby Tagged: Ruby, ruby with passion, tutorial <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/urjas.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/urjas.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/urjas.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/urjas.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/urjas.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/urjas.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/urjas.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/urjas.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/urjas.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/urjas.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/urjas.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/urjas.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/urjas.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/urjas.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=urjas.wordpress.com&amp;blog=4193173&amp;post=14&amp;subd=urjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://urjas.wordpress.com/2009/12/12/learning-ruby-with-passion-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7489d35efdd36c52ff76eb91f5242831?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Charath</media:title>
		</media:content>

		<media:content url="http://img.zemanta.com/pixy.gif?x-id=acf4a134-b366-8990-b9c7-282166804716" medium="image" />
	</item>
		<item>
		<title>ScribeFire on the Mac</title>
		<link>http://urjas.wordpress.com/2009/12/12/scribefire-on-the-mac/</link>
		<comments>http://urjas.wordpress.com/2009/12/12/scribefire-on-the-mac/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 21:39:58 +0000</pubDate>
		<dc:creator>Charath</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blog editors]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[scribefire]]></category>

		<guid isPermaLink="false">http://urjas.wordpress.com/2009/12/12/scribefire-on-the-mac/</guid>
		<description><![CDATA[I have been looking for a free blog editor for the Mac for a while now. People had suggested various options to me, but I think I found a winner &#8211; ScribeFire. It&#8217;s installed as a Firefox extension which means it can be used on almost any platform that Firefox runs on (at least the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=urjas.wordpress.com&amp;blog=4193173&amp;post=7&amp;subd=urjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been looking for a free blog editor for the Mac for a while now. People had suggested various options to me, but I think I found a winner &#8211; ScribeFire.</p>
<p>It&#8217;s installed as a Firefox extension which means it can be used on almost any platform that Firefox runs on (at least the ones that matter the most to me &#8211; Windows, Mac OS X and Linux).</p>
<p>Read more about it at http://www.scribefire.com/</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=cff96baa-9f9a-8128-a60c-3f2034025e91" /></div>
<p class="technorati-tags"><a href="http://technorati.com/tag/blog%20editor" rel="tag">blog editor</a>, <a href="http://technorati.com/tag/scribefire" rel="tag">scribefire</a>, <a href="http://technorati.com/tag/mac" rel="tag">mac</a>, <a href="http://technorati.com/tag/firefox" rel="tag">firefox</a></p>
<br />Posted in Uncategorized Tagged: blog editors, mac os x, scribefire <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/urjas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/urjas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/urjas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/urjas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/urjas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/urjas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/urjas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/urjas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/urjas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/urjas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/urjas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/urjas.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/urjas.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/urjas.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=urjas.wordpress.com&amp;blog=4193173&amp;post=7&amp;subd=urjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://urjas.wordpress.com/2009/12/12/scribefire-on-the-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7489d35efdd36c52ff76eb91f5242831?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Charath</media:title>
		</media:content>

		<media:content url="http://img.zemanta.com/pixy.gif?x-id=cff96baa-9f9a-8128-a60c-3f2034025e91" medium="image" />
	</item>
	</channel>
</rss>
